diff --git a/Add-SW64-Linux-support.patch b/Add-SW64-Linux-support.patch new file mode 100644 index 0000000000000000000000000000000000000000..38bbff60df4006e107ddbab218d1e0055e395076 --- /dev/null +++ b/Add-SW64-Linux-support.patch @@ -0,0 +1,160519 @@ +From e04eb1c6366715df50ebd7991afa82478beb5124 Mon Sep 17 00:00:00 2001 +From: zlh +Date: Wed, 11 Dec 2024 16:07:30 +0000 +Subject: [PATCH] Add SW64 Linux support + +--- + .gitignore | 42 + + Makefile.all.am | 8 +- + Makefile.tool.am | 11 + + Makefile.vex.am | 20 +- + VEX/auxprogs/genoffsets.c | 41 +- + VEX/priv/guest_generic_bb_to_IR.c | 2 +- + VEX/priv/guest_sw64_defs.h | 81 + + VEX/priv/guest_sw64_helpers.c | 312 + + VEX/priv/guest_sw64_toIR.c | 3496 ++ + VEX/priv/host_amd64_defs.c | 2 +- + VEX/priv/host_amd64_defs.h | 2 +- + VEX/priv/host_arm64_defs.c | 2 +- + VEX/priv/host_arm64_defs.h | 2 +- + VEX/priv/host_arm_defs.c | 2 +- + VEX/priv/host_arm_defs.h | 2 +- + VEX/priv/host_mips_defs.c | 2 +- + VEX/priv/host_mips_defs.h | 2 +- + VEX/priv/host_nanomips_defs.c | 2 +- + VEX/priv/host_nanomips_defs.h | 2 +- + VEX/priv/host_ppc_defs.c | 2 +- + VEX/priv/host_ppc_defs.h | 2 +- + VEX/priv/host_s390_defs.c | 2 +- + VEX/priv/host_s390_defs.h | 2 +- + VEX/priv/host_sw64_defs.c | 3169 ++ + VEX/priv/host_sw64_defs.h | 687 + + VEX/priv/host_sw64_isel.c | 2591 ++ + VEX/priv/host_x86_defs.c | 2 +- + VEX/priv/host_x86_defs.h | 2 +- + VEX/priv/ir_defs.c | 16 + + VEX/priv/ir_opt.c | 26 + + VEX/priv/main_main.c | 138 +- + VEX/pub/libvex.h | 17 + + VEX/pub/libvex_basictypes.h | 4 + + VEX/pub/libvex_guest_sw64.h | 163 + + VEX/pub/libvex_ir.h | 10 + + cachegrind/cg_arch.c | 6 + + cachegrind/cg_branchpred.c | 3 +- + configure.ac | 39 +- + coregrind/Makefile.am | 6 + + coregrind/launcher-linux.c | 5 +- + coregrind/m_aspacemgr/aspacemgr-common.c | 3 +- + coregrind/m_aspacemgr/aspacemgr-linux.c | 1 + + coregrind/m_cache.c | 3 +- + coregrind/m_coredump/coredump-elf.c | 20 +- + coregrind/m_debuginfo/d3basics.c | 3 + + coregrind/m_debuginfo/debuginfo.c | 32 +- + coregrind/m_debuginfo/priv_storage.h | 3 +- + coregrind/m_debuginfo/readdwarf.c | 20 +- + coregrind/m_debuginfo/readelf.c | 4 +- + coregrind/m_debuginfo/storage.c | 3 +- + coregrind/m_debuglog.c | 30 + + coregrind/m_dispatch/dispatch-sw64-linux.S | 314 + + coregrind/m_gdbserver/target.c | 2 + + coregrind/m_gdbserver/valgrind-low-sw64.c | 257 + + coregrind/m_gdbserver/valgrind_low.h | 1 + + coregrind/m_initimg/initimg-linux.c | 26 +- + coregrind/m_libcassert.c | 22 + + coregrind/m_libcfile.c | 70 +- + coregrind/m_libcproc.c | 18 +- + coregrind/m_machine.c | 86 +- + coregrind/m_main.c | 68 +- + coregrind/m_options.c | 5 +- + coregrind/m_redir.c | 17 + + coregrind/m_scheduler/scheduler.c | 165 +- + coregrind/m_sigframe/sigframe-sw64-linux.c | 224 + + coregrind/m_signals.c | 39 +- + coregrind/m_stacktrace.c | 97 + + coregrind/m_swdiv.S | 724 + + coregrind/m_syscall.c | 34 + + coregrind/m_syswrap/priv_syswrap-linux.h | 8 + + coregrind/m_syswrap/priv_types_n_macros.h | 2 +- + coregrind/m_syswrap/syscall-sw64-linux.S | 158 + + coregrind/m_syswrap/syswrap-linux.c | 40 +- + coregrind/m_syswrap/syswrap-main.c | 81 + + coregrind/m_syswrap/syswrap-sw64-linux.c | 973 + + coregrind/m_trampoline.S | 131 + + coregrind/m_translate.c | 18 +- + coregrind/m_vki.c | 2 +- + coregrind/pub_core_aspacemgr.h | 3 +- + coregrind/pub_core_basics.h | 5 + + coregrind/pub_core_debuginfo.h | 4 + + coregrind/pub_core_initimg.h | 2 +- + coregrind/pub_core_machine.h | 9 + + coregrind/pub_core_mallocfree.h | 1 + + coregrind/pub_core_options.h | 4 + + coregrind/pub_core_scheduler.h | 3 + + coregrind/pub_core_syscall.h | 1 + + coregrind/pub_core_trampoline.h | 6 + + coregrind/pub_core_transtab.h | 3 +- + coregrind/pub_core_transtab_asm.h | 2 +- + coregrind/vgdb-invoker-ptrace.c | 7 + + drd/drd_bitmap.h | 3 +- + drd/drd_load_store.c | 2 + + drd/drd_main.c | 15 + + drd/tests/Makefile.am | 2 + + drd/tests/tc04_free_lock.stderr.exp-sw64 | 26 + + drd/tests/tc09_bad_unlock.stderr.exp-sw64 | 51 + + gdbserver_tests/Makefile.am | 2 + + gdbserver_tests/hgtls.stdinB.gdb | 2 + + gdbserver_tests/hgtls.stdoutB.exp-sw64 | 45 + + gdbserver_tests/mcinvokeWS.vgtest | 2 +- + gdbserver_tests/nlcontrolc.vgtest | 2 +- + gdbserver_tests/nlvgdbsigqueue.stderr.exp | 2 +- + .../nlvgdbsigqueue.stdoutB.exp-sw64 | 19 + + gdbserver_tests/nlvgdbsigqueue.vgtest | 2 +- + helgrind/tests/Makefile.am | 1 + + helgrind/tests/annotate_hbefore.c | 31 + + helgrind/tests/tc07_hbl1.c | 19 + + helgrind/tests/tc08_hbl2.c | 19 + + helgrind/tests/tc11_XCHG.c | 25 +- + .../tests/tc20_verifywrap.stderr.exp-sw64 | 250 + + include/Makefile.am | 3 + + include/pub_tool_basics.h | 13 +- + include/pub_tool_debuginfo.h | 2 + + include/pub_tool_guest.h | 3 + + include/pub_tool_machine.h | 6 + + include/pub_tool_vkiscnums_asm.h | 4 + + include/valgrind.h.in | 511 + + include/vki/vki-linux.h | 11 + + include/vki/vki-posixtypes-sw64-linux.h | 74 + + include/vki/vki-scnums-sw64-linux.h | 390 + + include/vki/vki-sw64-linux.h | 977 + + massif/tests/Makefile.am | 1 + + massif/tests/big-alloc.post.exp-sw64 | 54 + + memcheck/mc_machine.c | 83 + + memcheck/mc_translate.c | 16 + + memcheck/tests/Makefile.am | 6 +- + memcheck/tests/atomic_incs.c | 72 + + memcheck/tests/badjump2.c | 2 +- + memcheck/tests/leak-segv-jmp.c | 28 +- + memcheck/tests/leak.h | 29 + + memcheck/tests/sigkill.stderr.exp-sw64 | 197 + + memcheck/tests/sigprocmask.stderr.exp-sw64 | 6 + + memcheck/tests/sw64/Makefile.am | 16 + + memcheck/tests/sw64/arith-fp.stderr.exp | 1 + + memcheck/tests/sw64/arith-fp.stdout.exp | 1 + + memcheck/tests/sw64/arith-fp.stdout.exp-8a | 1 + + memcheck/tests/sw64/arith-fp.vgtest | 3 + + memcheck/tests/sw64/arith-int-imm.stderr.exp | 1 + + memcheck/tests/sw64/arith-int-imm.stdout.exp | 1 + + memcheck/tests/sw64/arith-int-imm.vgtest | 3 + + memcheck/tests/sw64/arith-int-reg.stderr.exp | 1 + + memcheck/tests/sw64/arith-int-reg.stdout.exp | 1 + + memcheck/tests/sw64/arith-int-reg.vgtest | 3 + + memcheck/tests/sw64/branch.stderr.exp | 1 + + memcheck/tests/sw64/branch.stdout.exp | 1 + + memcheck/tests/sw64/branch.vgtest | 3 + + memcheck/tests/sw64/filter_stderr | 3 + + memcheck/tests/sw64/loadstore-fp.stderr.exp | 1 + + memcheck/tests/sw64/loadstore-fp.stdout.exp | 1 + + memcheck/tests/sw64/loadstore-fp.vgtest | 3 + + memcheck/tests/sw64/stack.stderr.exp | 1 + + memcheck/tests/sw64/stack.stdout.exp | 1 + + memcheck/tests/sw64/stack.vgtest | 3 + + memcheck/tests/unit_libcbase.c | 3 +- + memcheck/tests/vbit-test/irops.c | 29 +- + memcheck/tests/vbit-test/vtest.h | 1 + + none/tests/Makefile.am | 16 +- + none/tests/allexec_prepare_prereq | 1 + + none/tests/cmdline2.stdout.exp | 5 + + none/tests/libvex_test.c | 5 + + none/tests/pause.c | 9 + + .../require-text-symbol-2.stderr.exp-sw64 | 9 + + none/tests/simple-func | Bin 0 -> 9048 bytes + none/tests/sw64-insn/.gitignore | 373 + + none/tests/sw64-insn/Makefile | 385 + + none/tests/sw64-insn/README.md | 5 + + none/tests/sw64-insn/addl-48.S | 12 + + none/tests/sw64-insn/addli-119.S | 11 + + none/tests/sw64-insn/addw-42.S | 12 + + none/tests/sw64-insn/addwi-113.S | 11 + + none/tests/sw64-insn/and-62.S | 11 + + none/tests/sw64-insn/andi-133.S | 10 + + none/tests/sw64-insn/basic-insn-list | 253 + + none/tests/sw64-insn/beq-352.S | 11 + + none/tests/sw64-insn/bge-357.S | 11 + + none/tests/sw64-insn/bgt-356.S | 11 + + none/tests/sw64-insn/bic-63.S | 12 + + none/tests/sw64-insn/bici-134.S | 11 + + none/tests/sw64-insn/bis-64.S | 12 + + none/tests/sw64-insn/bisi-135.S | 11 + + none/tests/sw64-insn/blbc-358.S | 11 + + none/tests/sw64-insn/blbs-359.S | 11 + + none/tests/sw64-insn/ble-355.S | 11 + + none/tests/sw64-insn/blt-354.S | 11 + + none/tests/sw64-insn/bne-353.S | 11 + + none/tests/sw64-insn/br-6.S | 11 + + none/tests/sw64-insn/bsr-7.S | 11 + + none/tests/sw64-insn/call-3.S | 16 + + none/tests/sw64-insn/cmpeq-57.S | 12 + + none/tests/sw64-insn/cmpeqi-128.S | 11 + + none/tests/sw64-insn/cmpgeb-102.S | 12 + + none/tests/sw64-insn/cmpgebi-170.S | 11 + + none/tests/sw64-insn/cmple-59.S | 12 + + none/tests/sw64-insn/cmplei-130.S | 11 + + none/tests/sw64-insn/cmplt-58.S | 12 + + none/tests/sw64-insn/cmplti-129.S | 11 + + none/tests/sw64-insn/cmpule-61.S | 12 + + none/tests/sw64-insn/cmpulei-132.S | 11 + + none/tests/sw64-insn/cmpult-60.S | 12 + + none/tests/sw64-insn/cmpulti-131.S | 11 + + none/tests/sw64-insn/ctlz-88.S | 12 + + none/tests/sw64-insn/ctlzow-247.S | 1 + + none/tests/sw64-insn/ctpop-87.S | 11 + + none/tests/sw64-insn/ctpopow-246.S | 1 + + none/tests/sw64-insn/cttz-89.S | 11 + + none/tests/sw64-insn/eqv-67.S | 12 + + none/tests/sw64-insn/eqvi-138.S | 11 + + none/tests/sw64-insn/exthb-83.S | 12 + + none/tests/sw64-insn/exthbi-154.S | 11 + + none/tests/sw64-insn/exthh-84.S | 13 + + none/tests/sw64-insn/exthhi-155.S | 12 + + none/tests/sw64-insn/exthl-86.S | 13 + + none/tests/sw64-insn/exthli-157.S | 12 + + none/tests/sw64-insn/exthw-85.S | 13 + + none/tests/sw64-insn/exthwi-156.S | 12 + + none/tests/sw64-insn/extlb-79.S | 12 + + none/tests/sw64-insn/extlbi-150.S | 11 + + none/tests/sw64-insn/extlh-80.S | 12 + + none/tests/sw64-insn/extlhi-151.S | 11 + + none/tests/sw64-insn/extll-82.S | 12 + + none/tests/sw64-insn/extlli-153.S | 11 + + none/tests/sw64-insn/extlw-81.S | 12 + + none/tests/sw64-insn/extlwi-152.S | 11 + + none/tests/sw64-insn/faddd-181.S | 15 + + none/tests/sw64-insn/fadds-180.S | 16 + + none/tests/sw64-insn/fbeq-360.S | 14 + + none/tests/sw64-insn/fbge-365.S | 49 + + none/tests/sw64-insn/fbgt-364.S | 49 + + none/tests/sw64-insn/fble-363.S | 49 + + none/tests/sw64-insn/fblt-362.S | 49 + + none/tests/sw64-insn/fbne-361.S | 49 + + none/tests/sw64-insn/fcmpeq-190.S | 36 + + none/tests/sw64-insn/fcmple-191.S | 36 + + none/tests/sw64-insn/fcmplt-192.S | 36 + + none/tests/sw64-insn/fcmpun-193.S | 36 + + none/tests/sw64-insn/fcpys-205.S | 39 + + none/tests/sw64-insn/fcpyse-206.S | 39 + + none/tests/sw64-insn/fcpysn-207.S | 39 + + none/tests/sw64-insn/fcvtdl-200.S | 18 + + none/tests/sw64-insn/fcvtdl_g-196.S | 37 + + none/tests/sw64-insn/fcvtdl_n-199.S | 37 + + none/tests/sw64-insn/fcvtdl_p-197.S | 37 + + none/tests/sw64-insn/fcvtdl_z-198.S | 37 + + none/tests/sw64-insn/fcvtds-195.S | 19 + + none/tests/sw64-insn/fcvtld-204.S | 18 + + none/tests/sw64-insn/fcvtls-203.S | 36 + + none/tests/sw64-insn/fcvtlw-202.S | 36 + + none/tests/sw64-insn/fcvtsd-194.S | 38 + + none/tests/sw64-insn/fcvtwl-201.S | 31 + + none/tests/sw64-insn/fdivd-187.S | 18 + + none/tests/sw64-insn/fdivs-186.S | 42 + + none/tests/sw64-insn/fimovd-104.S | 12 + + none/tests/sw64-insn/fimovs-103.S | 13 + + none/tests/sw64-insn/fldd-343.S | 51 + + none/tests/sw64-insn/flds-342.S | 17 + + none/tests/sw64-insn/fmad-217.S | 48 + + none/tests/sw64-insn/fmas-216.S | 52 + + none/tests/sw64-insn/fmsd-219.S | 48 + + none/tests/sw64-insn/fmss-218.S | 52 + + none/tests/sw64-insn/fmuld-185.S | 18 + + none/tests/sw64-insn/fmuls-184.S | 40 + + none/tests/sw64-insn/fnmad-221.S | 48 + + none/tests/sw64-insn/fnmas-220.S | 52 + + none/tests/sw64-insn/fnmsd-223.S | 48 + + none/tests/sw64-insn/fnmss-222.S | 52 + + none/tests/sw64-insn/fseleq-224.S | 15 + + none/tests/sw64-insn/fselge-229.S | 49 + + none/tests/sw64-insn/fselgt-228.S | 49 + + none/tests/sw64-insn/fselle-227.S | 49 + + none/tests/sw64-insn/fsellt-226.S | 49 + + none/tests/sw64-insn/fselne-225.S | 49 + + none/tests/sw64-insn/fsqrtd-189.S | 39 + + none/tests/sw64-insn/fsqrts-188.S | 42 + + none/tests/sw64-insn/fstd-351.S | 51 + + none/tests/sw64-insn/fsts-350.S | 52 + + none/tests/sw64-insn/fsubd-183.S | 13 + + none/tests/sw64-insn/fsubs-182.S | 41 + + none/tests/sw64-insn/halt-12.S | 10 + + none/tests/sw64-insn/ifmovd-209.S | 1 + + none/tests/sw64-insn/ifmovs-208.S | 1 + + none/tests/sw64-insn/imemb-9.S | 62 + + none/tests/sw64-insn/inshb-72.S | 11 + + none/tests/sw64-insn/inshbi-143.S | 10 + + none/tests/sw64-insn/inshh-73.S | 12 + + none/tests/sw64-insn/inshhi-144.S | 11 + + none/tests/sw64-insn/inshl-75.S | 12 + + none/tests/sw64-insn/inshli-146.S | 11 + + none/tests/sw64-insn/inshw-74.S | 12 + + none/tests/sw64-insn/inshwi-145.S | 11 + + none/tests/sw64-insn/inslb-68.S | 13 + + none/tests/sw64-insn/inslbi-139.S | 12 + + none/tests/sw64-insn/inslh-69.S | 13 + + none/tests/sw64-insn/inslhi-140.S | 12 + + none/tests/sw64-insn/insll-71.S | 13 + + none/tests/sw64-insn/inslli-142.S | 12 + + none/tests/sw64-insn/inslw-70.S | 13 + + none/tests/sw64-insn/inslwi-141.S | 12 + + none/tests/sw64-insn/insn-list | 367 + + none/tests/sw64-insn/jmp-5.S | 16 + + none/tests/sw64-insn/ldbu-336.S | 1 + + none/tests/sw64-insn/ldd_nc-31.S | 19 + + none/tests/sw64-insn/ldde-37.S | 52 + + none/tests/sw64-insn/ldhu-337.S | 1 + + none/tests/sw64-insn/ldi-366.S | 11 + + none/tests/sw64-insn/ldih-367.S | 1 + + none/tests/sw64-insn/ldl-339.S | 1 + + none/tests/sw64-insn/ldl_dec-24.S | 1 + + none/tests/sw64-insn/ldl_inc-22.S | 17 + + none/tests/sw64-insn/ldl_nc-30.S | 16 + + none/tests/sw64-insn/ldl_set-26.S | 1 + + none/tests/sw64-insn/ldl_u-340.S | 1 + + none/tests/sw64-insn/ldse-36.S | 56 + + none/tests/sw64-insn/ldw-338.S | 1 + + none/tests/sw64-insn/ldw_dec-23.S | 1 + + none/tests/sw64-insn/ldw_inc-21.S | 17 + + none/tests/sw64-insn/ldw_nc-29.S | 16 + + none/tests/sw64-insn/ldw_set-25.S | 1 + + none/tests/sw64-insn/ldwe-35.S | 29 + + none/tests/sw64-insn/lldl-20.S | 60 + + none/tests/sw64-insn/lldw-19.S | 60 + + none/tests/sw64-insn/lstl-28.S | 60 + + none/tests/sw64-insn/lstw-27.S | 60 + + none/tests/sw64-insn/maskhb-94.S | 13 + + none/tests/sw64-insn/maskhbi-162.S | 12 + + none/tests/sw64-insn/maskhh-95.S | 13 + + none/tests/sw64-insn/maskhhi-163.S | 12 + + none/tests/sw64-insn/maskhl-97.S | 13 + + none/tests/sw64-insn/maskhli-165.S | 12 + + none/tests/sw64-insn/maskhw-96.S | 13 + + none/tests/sw64-insn/maskhwi-164.S | 12 + + none/tests/sw64-insn/masklb-90.S | 12 + + none/tests/sw64-insn/masklbi-158.S | 11 + + none/tests/sw64-insn/masklh-91.S | 12 + + none/tests/sw64-insn/masklhi-159.S | 11 + + none/tests/sw64-insn/maskll-93.S | 12 + + none/tests/sw64-insn/masklli-161.S | 11 + + none/tests/sw64-insn/masklw-92.S | 12 + + none/tests/sw64-insn/masklwi-160.S | 11 + + none/tests/sw64-insn/memb-8.S | 60 + + none/tests/sw64-insn/mull-55.S | 12 + + none/tests/sw64-insn/mulli-126.S | 11 + + none/tests/sw64-insn/mulw-54.S | 12 + + none/tests/sw64-insn/mulwi-125.S | 11 + + none/tests/sw64-insn/not-found-insn.S | 74 + + none/tests/sw64-insn/ornot-65.S | 12 + + none/tests/sw64-insn/ornoti-136.S | 11 + + none/tests/sw64-insn/pri_ld-341.S | 1 + + none/tests/sw64-insn/pri_rcsr-16.S | 1 + + none/tests/sw64-insn/pri_ret-18.S | 1 + + none/tests/sw64-insn/pri_st-349.S | 1 + + none/tests/sw64-insn/pri_wcsr-17.S | 1 + + none/tests/sw64-insn/rcid-11.S | 12 + + none/tests/sw64-insn/rd_f-13.S | 60 + + none/tests/sw64-insn/ret-4.S | 18 + + none/tests/sw64-insn/rfpcr-210.S | 31 + + none/tests/sw64-insn/rtc-10.S | 12 + + none/tests/sw64-insn/rtid-15.S | 12 + + none/tests/sw64-insn/s4addl-50.S | 12 + + none/tests/sw64-insn/s4addli-121.S | 11 + + none/tests/sw64-insn/s4addw-44.S | 12 + + none/tests/sw64-insn/s4addwi-115.S | 11 + + none/tests/sw64-insn/s4subl-51.S | 12 + + none/tests/sw64-insn/s4subli-122.S | 11 + + none/tests/sw64-insn/s4subw-45.S | 12 + + none/tests/sw64-insn/s4subwi-116.S | 11 + + none/tests/sw64-insn/s8addl-52.S | 12 + + none/tests/sw64-insn/s8addli-123.S | 11 + + none/tests/sw64-insn/s8addw-46.S | 12 + + none/tests/sw64-insn/s8addwi-117.S | 11 + + none/tests/sw64-insn/s8subl-53.S | 12 + + none/tests/sw64-insn/s8subli-124.S | 11 + + none/tests/sw64-insn/s8subw-47.S | 12 + + none/tests/sw64-insn/s8subwi-118.S | 11 + + none/tests/sw64-insn/seleq-105.S | 12 + + none/tests/sw64-insn/seleqi-171.S | 11 + + none/tests/sw64-insn/selge-106.S | 12 + + none/tests/sw64-insn/selgei-172.S | 11 + + none/tests/sw64-insn/selgt-107.S | 12 + + none/tests/sw64-insn/selgti-173.S | 11 + + none/tests/sw64-insn/sellbc-111.S | 12 + + none/tests/sw64-insn/sellbci-177.S | 11 + + none/tests/sw64-insn/sellbs-112.S | 12 + + none/tests/sw64-insn/sellbsi-178.S | 11 + + none/tests/sw64-insn/selle-108.S | 12 + + none/tests/sw64-insn/sellei-174.S | 11 + + none/tests/sw64-insn/sellt-109.S | 12 + + none/tests/sw64-insn/sellti-175.S | 11 + + none/tests/sw64-insn/selne-110.S | 12 + + none/tests/sw64-insn/selnei-176.S | 11 + + none/tests/sw64-insn/setfpec0-212.S | 30 + + none/tests/sw64-insn/setfpec1-213.S | 30 + + none/tests/sw64-insn/setfpec2-214.S | 30 + + none/tests/sw64-insn/setfpec3-215.S | 30 + + none/tests/sw64-insn/sextb-100.S | 11 + + none/tests/sw64-insn/sextbi-168.S | 10 + + none/tests/sw64-insn/sexth-101.S | 11 + + none/tests/sw64-insn/sexthi-169.S | 10 + + none/tests/sw64-insn/sll-76.S | 12 + + none/tests/sw64-insn/slli-147.S | 11 + + none/tests/sw64-insn/sllow-242.S | 1 + + none/tests/sw64-insn/sllowi-266.S | 1 + + none/tests/sw64-insn/sra-78.S | 12 + + none/tests/sw64-insn/srai-149.S | 11 + + none/tests/sw64-insn/srl-77.S | 12 + + none/tests/sw64-insn/srli-148.S | 11 + + none/tests/sw64-insn/srlow-243.S | 1 + + none/tests/sw64-insn/srlowi-267.S | 1 + + none/tests/sw64-insn/stb-344.S | 16 + + none/tests/sw64-insn/std_nc-34.S | 19 + + none/tests/sw64-insn/sth-345.S | 16 + + none/tests/sw64-insn/stl-347.S | 23 + + none/tests/sw64-insn/stl_nc-33.S | 16 + + none/tests/sw64-insn/stl_u-348.S | 23 + + none/tests/sw64-insn/stw-346.S | 18 + + none/tests/sw64-insn/stw_nc-32.S | 16 + + none/tests/sw64-insn/subl-49.S | 12 + + none/tests/sw64-insn/subli-120.S | 11 + + none/tests/sw64-insn/subw-43.S | 12 + + none/tests/sw64-insn/subwi-114.S | 11 + + none/tests/sw64-insn/sys_call-2.S | 10 + + none/tests/sw64-insn/sys_call_b-1.S | 10 + + none/tests/sw64-insn/test-all.sh | 31 + + none/tests/sw64-insn/test-basic.sh | 31 + + none/tests/sw64-insn/tmp.S | 10 + + none/tests/sw64-insn/umulh-56.S | 11 + + none/tests/sw64-insn/umulhi-127.S | 10 + + none/tests/sw64-insn/vaddd-277.S | 52 + + none/tests/sw64-insn/vaddl-244.S | 1 + + none/tests/sw64-insn/vaddli-268.S | 1 + + none/tests/sw64-insn/vadds-276.S | 1 + + none/tests/sw64-insn/vaddw-230.S | 1 + + none/tests/sw64-insn/vaddwi-254.S | 1 + + none/tests/sw64-insn/vcmpeqw-233.S | 1 + + none/tests/sw64-insn/vcmpeqwi-257.S | 1 + + none/tests/sw64-insn/vcmpgew-232.S | 1 + + none/tests/sw64-insn/vcmpgewi-256.S | 1 + + none/tests/sw64-insn/vcmplew-234.S | 1 + + none/tests/sw64-insn/vcmplewi-258.S | 1 + + none/tests/sw64-insn/vcmpltw-235.S | 1 + + none/tests/sw64-insn/vcmpltwi-259.S | 1 + + none/tests/sw64-insn/vcmpulew-236.S | 1 + + none/tests/sw64-insn/vcmpulewi-260.S | 1 + + none/tests/sw64-insn/vcmpultw-237.S | 1 + + none/tests/sw64-insn/vcmpultwi-261.S | 1 + + none/tests/sw64-insn/vcond-317.S | 1 + + none/tests/sw64-insn/vcons-316.S | 1 + + none/tests/sw64-insn/vconw-314.S | 1 + + none/tests/sw64-insn/vcpyf-313.S | 1 + + none/tests/sw64-insn/vcpys-290.S | 1 + + none/tests/sw64-insn/vcpyse-291.S | 1 + + none/tests/sw64-insn/vcpysn-292.S | 1 + + none/tests/sw64-insn/vcpyw-312.S | 1 + + none/tests/sw64-insn/vdivd-283.S | 1 + + none/tests/sw64-insn/vdivs-282.S | 1 + + none/tests/sw64-insn/vextf-311.S | 1 + + none/tests/sw64-insn/vextw-310.S | 1 + + none/tests/sw64-insn/vfcmpeq-286.S | 1 + + none/tests/sw64-insn/vfcmple-287.S | 1 + + none/tests/sw64-insn/vfcmplt-288.S | 1 + + none/tests/sw64-insn/vfcmpun-289.S | 1 + + none/tests/sw64-insn/vfseleq-301.S | 1 + + none/tests/sw64-insn/vfselle-303.S | 1 + + none/tests/sw64-insn/vfsellt-302.S | 1 + + none/tests/sw64-insn/vinsf-309.S | 1 + + none/tests/sw64-insn/vinsw-308.S | 1 + + none/tests/sw64-insn/vldd-39.S | 52 + + none/tests/sw64-insn/vldd_nc-334.S | 1 + + none/tests/sw64-insn/vldd_u-326.S | 1 + + none/tests/sw64-insn/vlds-38.S | 53 + + none/tests/sw64-insn/vlds_u-324.S | 1 + + none/tests/sw64-insn/vldw_u-322.S | 1 + + none/tests/sw64-insn/vlogzz-179.S | 1 + + none/tests/sw64-insn/vmad-294.S | 1 + + none/tests/sw64-insn/vmas-293.S | 1 + + none/tests/sw64-insn/vmsd-296.S | 1 + + none/tests/sw64-insn/vmss-295.S | 1 + + none/tests/sw64-insn/vmuld-281.S | 1 + + none/tests/sw64-insn/vmuls-280.S | 1 + + none/tests/sw64-insn/vnmad-298.S | 1 + + none/tests/sw64-insn/vnmas-297.S | 1 + + none/tests/sw64-insn/vnmsd-300.S | 1 + + none/tests/sw64-insn/vnmss-299.S | 1 + + none/tests/sw64-insn/vrolw-241.S | 1 + + none/tests/sw64-insn/vrolwi-265.S | 1 + + none/tests/sw64-insn/vseleqw-304.S | 1 + + none/tests/sw64-insn/vseleqwi-318.S | 1 + + none/tests/sw64-insn/vsellbcw-305.S | 1 + + none/tests/sw64-insn/vsellbcwi-319.S | 1 + + none/tests/sw64-insn/vsellew-307.S | 1 + + none/tests/sw64-insn/vsellewi-321.S | 1 + + none/tests/sw64-insn/vselltw-306.S | 1 + + none/tests/sw64-insn/vselltwi-320.S | 1 + + none/tests/sw64-insn/vshfw-315.S | 1 + + none/tests/sw64-insn/vsllw-238.S | 1 + + none/tests/sw64-insn/vsllwi-262.S | 1 + + none/tests/sw64-insn/vsqrtd-285.S | 1 + + none/tests/sw64-insn/vsqrts-284.S | 1 + + none/tests/sw64-insn/vsraw-240.S | 1 + + none/tests/sw64-insn/vsrawi-264.S | 1 + + none/tests/sw64-insn/vsrlw-239.S | 1 + + none/tests/sw64-insn/vsrlwi-263.S | 1 + + none/tests/sw64-insn/vstd-41.S | 52 + + none/tests/sw64-insn/vstd_nc-335.S | 1 + + none/tests/sw64-insn/vstd_u-327.S | 1 + + none/tests/sw64-insn/vstd_uh-333.S | 1 + + none/tests/sw64-insn/vstd_ul-332.S | 1 + + none/tests/sw64-insn/vsts-40.S | 1 + + none/tests/sw64-insn/vsts_u-325.S | 1 + + none/tests/sw64-insn/vsts_uh-331.S | 1 + + none/tests/sw64-insn/vsts_ul-330.S | 1 + + none/tests/sw64-insn/vstw_u-323.S | 1 + + none/tests/sw64-insn/vstw_uh-329.S | 1 + + none/tests/sw64-insn/vstw_ul-328.S | 1 + + none/tests/sw64-insn/vsubd-279.S | 1 + + none/tests/sw64-insn/vsubl-245.S | 1 + + none/tests/sw64-insn/vsubli-269.S | 1 + + none/tests/sw64-insn/vsubs-278.S | 1 + + none/tests/sw64-insn/vsubw-231.S | 28 + + none/tests/sw64-insn/vsubwi-255.S | 1 + + none/tests/sw64-insn/vucaddb-252.S | 1 + + none/tests/sw64-insn/vucaddbi-274.S | 1 + + none/tests/sw64-insn/vucaddh-250.S | 1 + + none/tests/sw64-insn/vucaddhi-272.S | 1 + + none/tests/sw64-insn/vucaddw-248.S | 1 + + none/tests/sw64-insn/vucaddwi-270.S | 1 + + none/tests/sw64-insn/vucsubb-253.S | 1 + + none/tests/sw64-insn/vucsubbi-275.S | 1 + + none/tests/sw64-insn/vucsubh-251.S | 1 + + none/tests/sw64-insn/vucsubhi-273.S | 1 + + none/tests/sw64-insn/vucsubw-249.S | 1 + + none/tests/sw64-insn/vucsubwi-271.S | 1 + + none/tests/sw64-insn/wfpcr-211.S | 31 + + none/tests/sw64-insn/wr_f-14.S | 60 + + none/tests/sw64-insn/xor-66.S | 12 + + none/tests/sw64-insn/xori-137.S | 11 + + none/tests/sw64-insn/zap-98.S | 12 + + none/tests/sw64-insn/zapi-166.S | 11 + + none/tests/sw64-insn/zapnot-99.S | 13 + + none/tests/sw64-insn/zapnoti-167.S | 12 + + none/tests/sw64-linux/Makefile.am | 22 + + none/tests/sw64-linux/filter_stderr | 4 + + none/tests/sw64-linux/getcontext.c | 14 + + none/tests/sw64-linux/getcontext.stderr.exp | 0 + none/tests/sw64-linux/getcontext.stdout.exp | 2 + + none/tests/sw64-linux/getcontext.vgtest | 3 + + none/tests/sw64-linux/gethostname.c | 34 + + none/tests/sw64-linux/gethostname.stderr.exp | 3 + + none/tests/sw64-linux/gethostname.vgtest | 4 + + none/tests/sw64-linux/prctl.c | 16 + + none/tests/sw64-linux/prctl.stderr.exp | 3 + + none/tests/sw64-linux/prctl.vgtest | 4 + + none/tests/sw64-linux/readahead.c | 25 + + none/tests/sw64-linux/readahead.stderr.exp | 3 + + none/tests/sw64-linux/readahead.vgtest | 4 + + none/tests/sw64-linux/sigsuspend.c | 24 + + none/tests/sw64-linux/sigsuspend.stderr.exp | 2 + + none/tests/sw64-linux/sigsuspend.vgtest | 2 + + none/tests/sw64/8a-conv.c | 108 + + none/tests/sw64/8a-conv.stderr.exp | 0 + none/tests/sw64/8a-conv.stdout.exp | 676 + + none/tests/sw64/8a-conv.vgtest | 3 + + none/tests/sw64/8a-fp.c | 46 + + none/tests/sw64/8a-fp.stderr.exp | 0 + none/tests/sw64/8a-fp.stdout.exp | 175 + + none/tests/sw64/8a-fp.vgtest | 3 + + none/tests/sw64/8a-int.c | 192 + + none/tests/sw64/8a-int.stderr.exp | 0 + none/tests/sw64/8a-int.stdout.exp | 11212 +++++ + none/tests/sw64/8a-int.vgtest | 3 + + none/tests/sw64/8a-lock.c | 251 + + none/tests/sw64/8a-lock.stderr.exp | 0 + none/tests/sw64/8a-lock.stdout.exp | 24 + + none/tests/sw64/8a-lock.vgtest | 3 + + none/tests/sw64/8a-misc.c | 340 + + none/tests/sw64/8a-misc.stderr.exp | 0 + none/tests/sw64/8a-misc.stdout.exp | 152 + + none/tests/sw64/8a-misc.vgtest | 3 + + none/tests/sw64/Makefile.am | 70 + + none/tests/sw64/allexec.c | 1 + + none/tests/sw64/arith-fp.c | 284 + + none/tests/sw64/arith-fp.stderr.exp | 0 + none/tests/sw64/arith-fp.stdout.exp | 7190 +++ + none/tests/sw64/arith-fp.stdout.exp-8a | 7190 +++ + none/tests/sw64/arith-fp.vgtest | 2 + + none/tests/sw64/arith-int-imm.c | 232 + + none/tests/sw64/arith-int-imm.stderr.exp | 0 + none/tests/sw64/arith-int-imm.stdout.exp | 38176 ++++++++++++++++ + none/tests/sw64/arith-int-imm.vgtest | 2 + + none/tests/sw64/arith-int-reg.c | 214 + + none/tests/sw64/arith-int-reg.stderr.exp | 0 + none/tests/sw64/arith-int-reg.stdout.exp | 28398 ++++++++++++ + none/tests/sw64/arith-int-reg.vgtest | 2 + + none/tests/sw64/branch.c | 204 + + none/tests/sw64/branch.stderr.exp | 0 + none/tests/sw64/branch.stdout.exp | 1256 + + none/tests/sw64/branch.vgtest | 2 + + none/tests/sw64/common-sw64-standalone.h | 165 + + none/tests/sw64/div-by-zero.c | 26 + + none/tests/sw64/div-by-zero.stderr.exp | 0 + none/tests/sw64/div-by-zero.stdout.exp | 1 + + none/tests/sw64/div-by-zero.vgtest | 2 + + none/tests/sw64/filter_stderr | 4 + + none/tests/sw64/loadstore-fp.c | 119 + + none/tests/sw64/loadstore-fp.stderr.exp | 0 + none/tests/sw64/loadstore-fp.stdout.exp | 116 + + none/tests/sw64/loadstore-fp.vgtest | 2 + + none/tests/sw64/loadstore-lock.c | 126 + + none/tests/sw64/loadstore-lock.stderr.exp | 0 + none/tests/sw64/loadstore-lock.stdout.exp | 10 + + none/tests/sw64/loadstore-lock.vgtest | 2 + + none/tests/sw64/py-hash-double.c | 95 + + none/tests/sw64/py-hash-double.stderr.exp | 0 + none/tests/sw64/py-hash-double.stdout.exp | 7 + + none/tests/sw64/py-hash-double.vgtest | 3 + + none/tests/sw64/rcid.c | 18 + + none/tests/sw64/rcid.stderr.exp | 3 + + none/tests/sw64/rcid.vgtest | 4 + + none/tests/sw64/rounding.c | 70 + + none/tests/sw64/rounding.stderr.exp | 0 + none/tests/sw64/rounding.stdout.exp | 25 + + none/tests/sw64/rounding.vgtest | 2 + + none/tests/sw64/rtc.c | 18 + + none/tests/sw64/rtc.stderr.exp | 3 + + none/tests/sw64/rtc.vgtest | 4 + + none/tests/sw64/simd-fp.c | 231 + + none/tests/sw64/simd-fp.stderr.exp | 0 + none/tests/sw64/simd-fp.stdout.exp | 20468 +++++++++ + none/tests/sw64/simd-fp.vgtest.disable | 2 + + none/tests/sw64/simd-int.c | 209 + + none/tests/sw64/simd-int.stderr.exp | 0 + none/tests/sw64/simd-int.stdout.exp | 10468 +++++ + none/tests/sw64/simd-int.vgtest.disable | 2 + + none/tests/sw64/stack.c | 51 + + none/tests/sw64/stack.stderr.exp | 0 + none/tests/sw64/stack.stdout.exp | 0 + none/tests/sw64/stack.vgtest | 2 + + none/tests/sw64/unique.c | 98 + + none/tests/sw64/unique.stderr.exp | 0 + none/tests/sw64/unique.stdout.exp | 2 + + none/tests/sw64/unique.vgtest | 2 + + perf/bigcode.c | 2 +- + perf/tinycc.c | 3 +- + tests/arch_test.c | 3 + + tests/check_headers_and_includes | 5 +- + tests/platform_test | 1 + + 646 files changed, 153368 insertions(+), 133 deletions(-) + create mode 100644 VEX/priv/guest_sw64_defs.h + create mode 100644 VEX/priv/guest_sw64_helpers.c + create mode 100644 VEX/priv/guest_sw64_toIR.c + create mode 100644 VEX/priv/host_sw64_defs.c + create mode 100644 VEX/priv/host_sw64_defs.h + create mode 100644 VEX/priv/host_sw64_isel.c + create mode 100644 VEX/pub/libvex_guest_sw64.h + create mode 100644 coregrind/m_dispatch/dispatch-sw64-linux.S + create mode 100644 coregrind/m_gdbserver/valgrind-low-sw64.c + create mode 100644 coregrind/m_sigframe/sigframe-sw64-linux.c + create mode 100644 coregrind/m_swdiv.S + create mode 100644 coregrind/m_syswrap/syscall-sw64-linux.S + create mode 100644 coregrind/m_syswrap/syswrap-sw64-linux.c + create mode 100644 drd/tests/tc04_free_lock.stderr.exp-sw64 + create mode 100644 drd/tests/tc09_bad_unlock.stderr.exp-sw64 + create mode 100644 gdbserver_tests/hgtls.stdoutB.exp-sw64 + create mode 100644 gdbserver_tests/nlvgdbsigqueue.stdoutB.exp-sw64 + create mode 100644 helgrind/tests/tc20_verifywrap.stderr.exp-sw64 + create mode 100644 include/vki/vki-posixtypes-sw64-linux.h + create mode 100644 include/vki/vki-scnums-sw64-linux.h + create mode 100644 include/vki/vki-sw64-linux.h + create mode 100644 massif/tests/big-alloc.post.exp-sw64 + create mode 100644 memcheck/tests/sigkill.stderr.exp-sw64 + create mode 100644 memcheck/tests/sigprocmask.stderr.exp-sw64 + create mode 100644 memcheck/tests/sw64/Makefile.am + create mode 120000 memcheck/tests/sw64/arith-fp.stderr.exp + create mode 120000 memcheck/tests/sw64/arith-fp.stdout.exp + create mode 120000 memcheck/tests/sw64/arith-fp.stdout.exp-8a + create mode 100644 memcheck/tests/sw64/arith-fp.vgtest + create mode 120000 memcheck/tests/sw64/arith-int-imm.stderr.exp + create mode 120000 memcheck/tests/sw64/arith-int-imm.stdout.exp + create mode 100644 memcheck/tests/sw64/arith-int-imm.vgtest + create mode 120000 memcheck/tests/sw64/arith-int-reg.stderr.exp + create mode 120000 memcheck/tests/sw64/arith-int-reg.stdout.exp + create mode 100644 memcheck/tests/sw64/arith-int-reg.vgtest + create mode 120000 memcheck/tests/sw64/branch.stderr.exp + create mode 120000 memcheck/tests/sw64/branch.stdout.exp + create mode 100644 memcheck/tests/sw64/branch.vgtest + create mode 100755 memcheck/tests/sw64/filter_stderr + create mode 120000 memcheck/tests/sw64/loadstore-fp.stderr.exp + create mode 120000 memcheck/tests/sw64/loadstore-fp.stdout.exp + create mode 100644 memcheck/tests/sw64/loadstore-fp.vgtest + create mode 120000 memcheck/tests/sw64/stack.stderr.exp + create mode 120000 memcheck/tests/sw64/stack.stdout.exp + create mode 100644 memcheck/tests/sw64/stack.vgtest + create mode 100644 none/tests/pause.c + create mode 100644 none/tests/require-text-symbol-2.stderr.exp-sw64 + create mode 100755 none/tests/simple-func + create mode 100644 none/tests/sw64-insn/.gitignore + create mode 100644 none/tests/sw64-insn/Makefile + create mode 100644 none/tests/sw64-insn/README.md + create mode 100644 none/tests/sw64-insn/addl-48.S + create mode 100644 none/tests/sw64-insn/addli-119.S + create mode 100644 none/tests/sw64-insn/addw-42.S + create mode 100644 none/tests/sw64-insn/addwi-113.S + create mode 100644 none/tests/sw64-insn/and-62.S + create mode 100644 none/tests/sw64-insn/andi-133.S + create mode 100644 none/tests/sw64-insn/basic-insn-list + create mode 100644 none/tests/sw64-insn/beq-352.S + create mode 100644 none/tests/sw64-insn/bge-357.S + create mode 100644 none/tests/sw64-insn/bgt-356.S + create mode 100644 none/tests/sw64-insn/bic-63.S + create mode 100644 none/tests/sw64-insn/bici-134.S + create mode 100644 none/tests/sw64-insn/bis-64.S + create mode 100644 none/tests/sw64-insn/bisi-135.S + create mode 100644 none/tests/sw64-insn/blbc-358.S + create mode 100644 none/tests/sw64-insn/blbs-359.S + create mode 100644 none/tests/sw64-insn/ble-355.S + create mode 100644 none/tests/sw64-insn/blt-354.S + create mode 100644 none/tests/sw64-insn/bne-353.S + create mode 100644 none/tests/sw64-insn/br-6.S + create mode 100644 none/tests/sw64-insn/bsr-7.S + create mode 100644 none/tests/sw64-insn/call-3.S + create mode 100644 none/tests/sw64-insn/cmpeq-57.S + create mode 100644 none/tests/sw64-insn/cmpeqi-128.S + create mode 100644 none/tests/sw64-insn/cmpgeb-102.S + create mode 100644 none/tests/sw64-insn/cmpgebi-170.S + create mode 100644 none/tests/sw64-insn/cmple-59.S + create mode 100644 none/tests/sw64-insn/cmplei-130.S + create mode 100644 none/tests/sw64-insn/cmplt-58.S + create mode 100644 none/tests/sw64-insn/cmplti-129.S + create mode 100644 none/tests/sw64-insn/cmpule-61.S + create mode 100644 none/tests/sw64-insn/cmpulei-132.S + create mode 100644 none/tests/sw64-insn/cmpult-60.S + create mode 100644 none/tests/sw64-insn/cmpulti-131.S + create mode 100644 none/tests/sw64-insn/ctlz-88.S + create mode 120000 none/tests/sw64-insn/ctlzow-247.S + create mode 100644 none/tests/sw64-insn/ctpop-87.S + create mode 120000 none/tests/sw64-insn/ctpopow-246.S + create mode 100644 none/tests/sw64-insn/cttz-89.S + create mode 100644 none/tests/sw64-insn/eqv-67.S + create mode 100644 none/tests/sw64-insn/eqvi-138.S + create mode 100644 none/tests/sw64-insn/exthb-83.S + create mode 100644 none/tests/sw64-insn/exthbi-154.S + create mode 100644 none/tests/sw64-insn/exthh-84.S + create mode 100644 none/tests/sw64-insn/exthhi-155.S + create mode 100644 none/tests/sw64-insn/exthl-86.S + create mode 100644 none/tests/sw64-insn/exthli-157.S + create mode 100644 none/tests/sw64-insn/exthw-85.S + create mode 100644 none/tests/sw64-insn/exthwi-156.S + create mode 100644 none/tests/sw64-insn/extlb-79.S + create mode 100644 none/tests/sw64-insn/extlbi-150.S + create mode 100644 none/tests/sw64-insn/extlh-80.S + create mode 100644 none/tests/sw64-insn/extlhi-151.S + create mode 100644 none/tests/sw64-insn/extll-82.S + create mode 100644 none/tests/sw64-insn/extlli-153.S + create mode 100644 none/tests/sw64-insn/extlw-81.S + create mode 100644 none/tests/sw64-insn/extlwi-152.S + create mode 100644 none/tests/sw64-insn/faddd-181.S + create mode 100644 none/tests/sw64-insn/fadds-180.S + create mode 100644 none/tests/sw64-insn/fbeq-360.S + create mode 100644 none/tests/sw64-insn/fbge-365.S + create mode 100644 none/tests/sw64-insn/fbgt-364.S + create mode 100644 none/tests/sw64-insn/fble-363.S + create mode 100644 none/tests/sw64-insn/fblt-362.S + create mode 100644 none/tests/sw64-insn/fbne-361.S + create mode 100644 none/tests/sw64-insn/fcmpeq-190.S + create mode 100644 none/tests/sw64-insn/fcmple-191.S + create mode 100644 none/tests/sw64-insn/fcmplt-192.S + create mode 100644 none/tests/sw64-insn/fcmpun-193.S + create mode 100644 none/tests/sw64-insn/fcpys-205.S + create mode 100644 none/tests/sw64-insn/fcpyse-206.S + create mode 100644 none/tests/sw64-insn/fcpysn-207.S + create mode 100644 none/tests/sw64-insn/fcvtdl-200.S + create mode 100644 none/tests/sw64-insn/fcvtdl_g-196.S + create mode 100644 none/tests/sw64-insn/fcvtdl_n-199.S + create mode 100644 none/tests/sw64-insn/fcvtdl_p-197.S + create mode 100644 none/tests/sw64-insn/fcvtdl_z-198.S + create mode 100644 none/tests/sw64-insn/fcvtds-195.S + create mode 100644 none/tests/sw64-insn/fcvtld-204.S + create mode 100644 none/tests/sw64-insn/fcvtls-203.S + create mode 100644 none/tests/sw64-insn/fcvtlw-202.S + create mode 100644 none/tests/sw64-insn/fcvtsd-194.S + create mode 100644 none/tests/sw64-insn/fcvtwl-201.S + create mode 100644 none/tests/sw64-insn/fdivd-187.S + create mode 100644 none/tests/sw64-insn/fdivs-186.S + create mode 100644 none/tests/sw64-insn/fimovd-104.S + create mode 100644 none/tests/sw64-insn/fimovs-103.S + create mode 100644 none/tests/sw64-insn/fldd-343.S + create mode 100644 none/tests/sw64-insn/flds-342.S + create mode 100644 none/tests/sw64-insn/fmad-217.S + create mode 100644 none/tests/sw64-insn/fmas-216.S + create mode 100644 none/tests/sw64-insn/fmsd-219.S + create mode 100644 none/tests/sw64-insn/fmss-218.S + create mode 100644 none/tests/sw64-insn/fmuld-185.S + create mode 100644 none/tests/sw64-insn/fmuls-184.S + create mode 100644 none/tests/sw64-insn/fnmad-221.S + create mode 100644 none/tests/sw64-insn/fnmas-220.S + create mode 100644 none/tests/sw64-insn/fnmsd-223.S + create mode 100644 none/tests/sw64-insn/fnmss-222.S + create mode 100644 none/tests/sw64-insn/fseleq-224.S + create mode 100644 none/tests/sw64-insn/fselge-229.S + create mode 100644 none/tests/sw64-insn/fselgt-228.S + create mode 100644 none/tests/sw64-insn/fselle-227.S + create mode 100644 none/tests/sw64-insn/fsellt-226.S + create mode 100644 none/tests/sw64-insn/fselne-225.S + create mode 100644 none/tests/sw64-insn/fsqrtd-189.S + create mode 100644 none/tests/sw64-insn/fsqrts-188.S + create mode 100644 none/tests/sw64-insn/fstd-351.S + create mode 100644 none/tests/sw64-insn/fsts-350.S + create mode 100644 none/tests/sw64-insn/fsubd-183.S + create mode 100644 none/tests/sw64-insn/fsubs-182.S + create mode 100644 none/tests/sw64-insn/halt-12.S + create mode 120000 none/tests/sw64-insn/ifmovd-209.S + create mode 120000 none/tests/sw64-insn/ifmovs-208.S + create mode 100644 none/tests/sw64-insn/imemb-9.S + create mode 100644 none/tests/sw64-insn/inshb-72.S + create mode 100644 none/tests/sw64-insn/inshbi-143.S + create mode 100644 none/tests/sw64-insn/inshh-73.S + create mode 100644 none/tests/sw64-insn/inshhi-144.S + create mode 100644 none/tests/sw64-insn/inshl-75.S + create mode 100644 none/tests/sw64-insn/inshli-146.S + create mode 100644 none/tests/sw64-insn/inshw-74.S + create mode 100644 none/tests/sw64-insn/inshwi-145.S + create mode 100644 none/tests/sw64-insn/inslb-68.S + create mode 100644 none/tests/sw64-insn/inslbi-139.S + create mode 100644 none/tests/sw64-insn/inslh-69.S + create mode 100644 none/tests/sw64-insn/inslhi-140.S + create mode 100644 none/tests/sw64-insn/insll-71.S + create mode 100644 none/tests/sw64-insn/inslli-142.S + create mode 100644 none/tests/sw64-insn/inslw-70.S + create mode 100644 none/tests/sw64-insn/inslwi-141.S + create mode 100644 none/tests/sw64-insn/insn-list + create mode 100644 none/tests/sw64-insn/jmp-5.S + create mode 120000 none/tests/sw64-insn/ldbu-336.S + create mode 100644 none/tests/sw64-insn/ldd_nc-31.S + create mode 100644 none/tests/sw64-insn/ldde-37.S + create mode 120000 none/tests/sw64-insn/ldhu-337.S + create mode 100644 none/tests/sw64-insn/ldi-366.S + create mode 120000 none/tests/sw64-insn/ldih-367.S + create mode 120000 none/tests/sw64-insn/ldl-339.S + create mode 120000 none/tests/sw64-insn/ldl_dec-24.S + create mode 100644 none/tests/sw64-insn/ldl_inc-22.S + create mode 100644 none/tests/sw64-insn/ldl_nc-30.S + create mode 120000 none/tests/sw64-insn/ldl_set-26.S + create mode 120000 none/tests/sw64-insn/ldl_u-340.S + create mode 100644 none/tests/sw64-insn/ldse-36.S + create mode 120000 none/tests/sw64-insn/ldw-338.S + create mode 120000 none/tests/sw64-insn/ldw_dec-23.S + create mode 100644 none/tests/sw64-insn/ldw_inc-21.S + create mode 100644 none/tests/sw64-insn/ldw_nc-29.S + create mode 120000 none/tests/sw64-insn/ldw_set-25.S + create mode 100644 none/tests/sw64-insn/ldwe-35.S + create mode 100644 none/tests/sw64-insn/lldl-20.S + create mode 100644 none/tests/sw64-insn/lldw-19.S + create mode 100644 none/tests/sw64-insn/lstl-28.S + create mode 100644 none/tests/sw64-insn/lstw-27.S + create mode 100644 none/tests/sw64-insn/maskhb-94.S + create mode 100644 none/tests/sw64-insn/maskhbi-162.S + create mode 100644 none/tests/sw64-insn/maskhh-95.S + create mode 100644 none/tests/sw64-insn/maskhhi-163.S + create mode 100644 none/tests/sw64-insn/maskhl-97.S + create mode 100644 none/tests/sw64-insn/maskhli-165.S + create mode 100644 none/tests/sw64-insn/maskhw-96.S + create mode 100644 none/tests/sw64-insn/maskhwi-164.S + create mode 100644 none/tests/sw64-insn/masklb-90.S + create mode 100644 none/tests/sw64-insn/masklbi-158.S + create mode 100644 none/tests/sw64-insn/masklh-91.S + create mode 100644 none/tests/sw64-insn/masklhi-159.S + create mode 100644 none/tests/sw64-insn/maskll-93.S + create mode 100644 none/tests/sw64-insn/masklli-161.S + create mode 100644 none/tests/sw64-insn/masklw-92.S + create mode 100644 none/tests/sw64-insn/masklwi-160.S + create mode 100644 none/tests/sw64-insn/memb-8.S + create mode 100644 none/tests/sw64-insn/mull-55.S + create mode 100644 none/tests/sw64-insn/mulli-126.S + create mode 100644 none/tests/sw64-insn/mulw-54.S + create mode 100644 none/tests/sw64-insn/mulwi-125.S + create mode 100644 none/tests/sw64-insn/not-found-insn.S + create mode 100644 none/tests/sw64-insn/ornot-65.S + create mode 100644 none/tests/sw64-insn/ornoti-136.S + create mode 120000 none/tests/sw64-insn/pri_ld-341.S + create mode 120000 none/tests/sw64-insn/pri_rcsr-16.S + create mode 120000 none/tests/sw64-insn/pri_ret-18.S + create mode 120000 none/tests/sw64-insn/pri_st-349.S + create mode 120000 none/tests/sw64-insn/pri_wcsr-17.S + create mode 100644 none/tests/sw64-insn/rcid-11.S + create mode 100644 none/tests/sw64-insn/rd_f-13.S + create mode 100644 none/tests/sw64-insn/ret-4.S + create mode 100644 none/tests/sw64-insn/rfpcr-210.S + create mode 100644 none/tests/sw64-insn/rtc-10.S + create mode 100644 none/tests/sw64-insn/rtid-15.S + create mode 100644 none/tests/sw64-insn/s4addl-50.S + create mode 100644 none/tests/sw64-insn/s4addli-121.S + create mode 100644 none/tests/sw64-insn/s4addw-44.S + create mode 100644 none/tests/sw64-insn/s4addwi-115.S + create mode 100644 none/tests/sw64-insn/s4subl-51.S + create mode 100644 none/tests/sw64-insn/s4subli-122.S + create mode 100644 none/tests/sw64-insn/s4subw-45.S + create mode 100644 none/tests/sw64-insn/s4subwi-116.S + create mode 100644 none/tests/sw64-insn/s8addl-52.S + create mode 100644 none/tests/sw64-insn/s8addli-123.S + create mode 100644 none/tests/sw64-insn/s8addw-46.S + create mode 100644 none/tests/sw64-insn/s8addwi-117.S + create mode 100644 none/tests/sw64-insn/s8subl-53.S + create mode 100644 none/tests/sw64-insn/s8subli-124.S + create mode 100644 none/tests/sw64-insn/s8subw-47.S + create mode 100644 none/tests/sw64-insn/s8subwi-118.S + create mode 100644 none/tests/sw64-insn/seleq-105.S + create mode 100644 none/tests/sw64-insn/seleqi-171.S + create mode 100644 none/tests/sw64-insn/selge-106.S + create mode 100644 none/tests/sw64-insn/selgei-172.S + create mode 100644 none/tests/sw64-insn/selgt-107.S + create mode 100644 none/tests/sw64-insn/selgti-173.S + create mode 100644 none/tests/sw64-insn/sellbc-111.S + create mode 100644 none/tests/sw64-insn/sellbci-177.S + create mode 100644 none/tests/sw64-insn/sellbs-112.S + create mode 100644 none/tests/sw64-insn/sellbsi-178.S + create mode 100644 none/tests/sw64-insn/selle-108.S + create mode 100644 none/tests/sw64-insn/sellei-174.S + create mode 100644 none/tests/sw64-insn/sellt-109.S + create mode 100644 none/tests/sw64-insn/sellti-175.S + create mode 100644 none/tests/sw64-insn/selne-110.S + create mode 100644 none/tests/sw64-insn/selnei-176.S + create mode 100644 none/tests/sw64-insn/setfpec0-212.S + create mode 100644 none/tests/sw64-insn/setfpec1-213.S + create mode 100644 none/tests/sw64-insn/setfpec2-214.S + create mode 100644 none/tests/sw64-insn/setfpec3-215.S + create mode 100644 none/tests/sw64-insn/sextb-100.S + create mode 100644 none/tests/sw64-insn/sextbi-168.S + create mode 100644 none/tests/sw64-insn/sexth-101.S + create mode 100644 none/tests/sw64-insn/sexthi-169.S + create mode 100644 none/tests/sw64-insn/sll-76.S + create mode 100644 none/tests/sw64-insn/slli-147.S + create mode 120000 none/tests/sw64-insn/sllow-242.S + create mode 120000 none/tests/sw64-insn/sllowi-266.S + create mode 100644 none/tests/sw64-insn/sra-78.S + create mode 100644 none/tests/sw64-insn/srai-149.S + create mode 100644 none/tests/sw64-insn/srl-77.S + create mode 100644 none/tests/sw64-insn/srli-148.S + create mode 120000 none/tests/sw64-insn/srlow-243.S + create mode 120000 none/tests/sw64-insn/srlowi-267.S + create mode 100644 none/tests/sw64-insn/stb-344.S + create mode 100644 none/tests/sw64-insn/std_nc-34.S + create mode 100644 none/tests/sw64-insn/sth-345.S + create mode 100644 none/tests/sw64-insn/stl-347.S + create mode 100644 none/tests/sw64-insn/stl_nc-33.S + create mode 100644 none/tests/sw64-insn/stl_u-348.S + create mode 100644 none/tests/sw64-insn/stw-346.S + create mode 100644 none/tests/sw64-insn/stw_nc-32.S + create mode 100644 none/tests/sw64-insn/subl-49.S + create mode 100644 none/tests/sw64-insn/subli-120.S + create mode 100644 none/tests/sw64-insn/subw-43.S + create mode 100644 none/tests/sw64-insn/subwi-114.S + create mode 100644 none/tests/sw64-insn/sys_call-2.S + create mode 100644 none/tests/sw64-insn/sys_call_b-1.S + create mode 100755 none/tests/sw64-insn/test-all.sh + create mode 100755 none/tests/sw64-insn/test-basic.sh + create mode 100644 none/tests/sw64-insn/tmp.S + create mode 100644 none/tests/sw64-insn/umulh-56.S + create mode 100644 none/tests/sw64-insn/umulhi-127.S + create mode 100644 none/tests/sw64-insn/vaddd-277.S + create mode 120000 none/tests/sw64-insn/vaddl-244.S + create mode 120000 none/tests/sw64-insn/vaddli-268.S + create mode 120000 none/tests/sw64-insn/vadds-276.S + create mode 120000 none/tests/sw64-insn/vaddw-230.S + create mode 120000 none/tests/sw64-insn/vaddwi-254.S + create mode 120000 none/tests/sw64-insn/vcmpeqw-233.S + create mode 120000 none/tests/sw64-insn/vcmpeqwi-257.S + create mode 120000 none/tests/sw64-insn/vcmpgew-232.S + create mode 120000 none/tests/sw64-insn/vcmpgewi-256.S + create mode 120000 none/tests/sw64-insn/vcmplew-234.S + create mode 120000 none/tests/sw64-insn/vcmplewi-258.S + create mode 120000 none/tests/sw64-insn/vcmpltw-235.S + create mode 120000 none/tests/sw64-insn/vcmpltwi-259.S + create mode 120000 none/tests/sw64-insn/vcmpulew-236.S + create mode 120000 none/tests/sw64-insn/vcmpulewi-260.S + create mode 120000 none/tests/sw64-insn/vcmpultw-237.S + create mode 120000 none/tests/sw64-insn/vcmpultwi-261.S + create mode 120000 none/tests/sw64-insn/vcond-317.S + create mode 120000 none/tests/sw64-insn/vcons-316.S + create mode 120000 none/tests/sw64-insn/vconw-314.S + create mode 120000 none/tests/sw64-insn/vcpyf-313.S + create mode 120000 none/tests/sw64-insn/vcpys-290.S + create mode 120000 none/tests/sw64-insn/vcpyse-291.S + create mode 120000 none/tests/sw64-insn/vcpysn-292.S + create mode 120000 none/tests/sw64-insn/vcpyw-312.S + create mode 120000 none/tests/sw64-insn/vdivd-283.S + create mode 120000 none/tests/sw64-insn/vdivs-282.S + create mode 120000 none/tests/sw64-insn/vextf-311.S + create mode 120000 none/tests/sw64-insn/vextw-310.S + create mode 120000 none/tests/sw64-insn/vfcmpeq-286.S + create mode 120000 none/tests/sw64-insn/vfcmple-287.S + create mode 120000 none/tests/sw64-insn/vfcmplt-288.S + create mode 120000 none/tests/sw64-insn/vfcmpun-289.S + create mode 120000 none/tests/sw64-insn/vfseleq-301.S + create mode 120000 none/tests/sw64-insn/vfselle-303.S + create mode 120000 none/tests/sw64-insn/vfsellt-302.S + create mode 120000 none/tests/sw64-insn/vinsf-309.S + create mode 120000 none/tests/sw64-insn/vinsw-308.S + create mode 100644 none/tests/sw64-insn/vldd-39.S + create mode 120000 none/tests/sw64-insn/vldd_nc-334.S + create mode 120000 none/tests/sw64-insn/vldd_u-326.S + create mode 100644 none/tests/sw64-insn/vlds-38.S + create mode 120000 none/tests/sw64-insn/vlds_u-324.S + create mode 120000 none/tests/sw64-insn/vldw_u-322.S + create mode 120000 none/tests/sw64-insn/vlogzz-179.S + create mode 120000 none/tests/sw64-insn/vmad-294.S + create mode 120000 none/tests/sw64-insn/vmas-293.S + create mode 120000 none/tests/sw64-insn/vmsd-296.S + create mode 120000 none/tests/sw64-insn/vmss-295.S + create mode 120000 none/tests/sw64-insn/vmuld-281.S + create mode 120000 none/tests/sw64-insn/vmuls-280.S + create mode 120000 none/tests/sw64-insn/vnmad-298.S + create mode 120000 none/tests/sw64-insn/vnmas-297.S + create mode 120000 none/tests/sw64-insn/vnmsd-300.S + create mode 120000 none/tests/sw64-insn/vnmss-299.S + create mode 120000 none/tests/sw64-insn/vrolw-241.S + create mode 120000 none/tests/sw64-insn/vrolwi-265.S + create mode 120000 none/tests/sw64-insn/vseleqw-304.S + create mode 120000 none/tests/sw64-insn/vseleqwi-318.S + create mode 120000 none/tests/sw64-insn/vsellbcw-305.S + create mode 120000 none/tests/sw64-insn/vsellbcwi-319.S + create mode 120000 none/tests/sw64-insn/vsellew-307.S + create mode 120000 none/tests/sw64-insn/vsellewi-321.S + create mode 120000 none/tests/sw64-insn/vselltw-306.S + create mode 120000 none/tests/sw64-insn/vselltwi-320.S + create mode 120000 none/tests/sw64-insn/vshfw-315.S + create mode 120000 none/tests/sw64-insn/vsllw-238.S + create mode 120000 none/tests/sw64-insn/vsllwi-262.S + create mode 120000 none/tests/sw64-insn/vsqrtd-285.S + create mode 120000 none/tests/sw64-insn/vsqrts-284.S + create mode 120000 none/tests/sw64-insn/vsraw-240.S + create mode 120000 none/tests/sw64-insn/vsrawi-264.S + create mode 120000 none/tests/sw64-insn/vsrlw-239.S + create mode 120000 none/tests/sw64-insn/vsrlwi-263.S + create mode 100644 none/tests/sw64-insn/vstd-41.S + create mode 120000 none/tests/sw64-insn/vstd_nc-335.S + create mode 120000 none/tests/sw64-insn/vstd_u-327.S + create mode 120000 none/tests/sw64-insn/vstd_uh-333.S + create mode 120000 none/tests/sw64-insn/vstd_ul-332.S + create mode 120000 none/tests/sw64-insn/vsts-40.S + create mode 120000 none/tests/sw64-insn/vsts_u-325.S + create mode 120000 none/tests/sw64-insn/vsts_uh-331.S + create mode 120000 none/tests/sw64-insn/vsts_ul-330.S + create mode 120000 none/tests/sw64-insn/vstw_u-323.S + create mode 120000 none/tests/sw64-insn/vstw_uh-329.S + create mode 120000 none/tests/sw64-insn/vstw_ul-328.S + create mode 120000 none/tests/sw64-insn/vsubd-279.S + create mode 120000 none/tests/sw64-insn/vsubl-245.S + create mode 120000 none/tests/sw64-insn/vsubli-269.S + create mode 120000 none/tests/sw64-insn/vsubs-278.S + create mode 100644 none/tests/sw64-insn/vsubw-231.S + create mode 120000 none/tests/sw64-insn/vsubwi-255.S + create mode 120000 none/tests/sw64-insn/vucaddb-252.S + create mode 120000 none/tests/sw64-insn/vucaddbi-274.S + create mode 120000 none/tests/sw64-insn/vucaddh-250.S + create mode 120000 none/tests/sw64-insn/vucaddhi-272.S + create mode 120000 none/tests/sw64-insn/vucaddw-248.S + create mode 120000 none/tests/sw64-insn/vucaddwi-270.S + create mode 120000 none/tests/sw64-insn/vucsubb-253.S + create mode 120000 none/tests/sw64-insn/vucsubbi-275.S + create mode 120000 none/tests/sw64-insn/vucsubh-251.S + create mode 120000 none/tests/sw64-insn/vucsubhi-273.S + create mode 120000 none/tests/sw64-insn/vucsubw-249.S + create mode 120000 none/tests/sw64-insn/vucsubwi-271.S + create mode 100644 none/tests/sw64-insn/wfpcr-211.S + create mode 100644 none/tests/sw64-insn/wr_f-14.S + create mode 100644 none/tests/sw64-insn/xor-66.S + create mode 100644 none/tests/sw64-insn/xori-137.S + create mode 100644 none/tests/sw64-insn/zap-98.S + create mode 100644 none/tests/sw64-insn/zapi-166.S + create mode 100644 none/tests/sw64-insn/zapnot-99.S + create mode 100644 none/tests/sw64-insn/zapnoti-167.S + create mode 100644 none/tests/sw64-linux/Makefile.am + create mode 100755 none/tests/sw64-linux/filter_stderr + create mode 100644 none/tests/sw64-linux/getcontext.c + create mode 100644 none/tests/sw64-linux/getcontext.stderr.exp + create mode 100644 none/tests/sw64-linux/getcontext.stdout.exp + create mode 100644 none/tests/sw64-linux/getcontext.vgtest + create mode 100644 none/tests/sw64-linux/gethostname.c + create mode 100644 none/tests/sw64-linux/gethostname.stderr.exp + create mode 100644 none/tests/sw64-linux/gethostname.vgtest + create mode 100644 none/tests/sw64-linux/prctl.c + create mode 100644 none/tests/sw64-linux/prctl.stderr.exp + create mode 100644 none/tests/sw64-linux/prctl.vgtest + create mode 100644 none/tests/sw64-linux/readahead.c + create mode 100644 none/tests/sw64-linux/readahead.stderr.exp + create mode 100644 none/tests/sw64-linux/readahead.vgtest + create mode 100644 none/tests/sw64-linux/sigsuspend.c + create mode 100644 none/tests/sw64-linux/sigsuspend.stderr.exp + create mode 100644 none/tests/sw64-linux/sigsuspend.vgtest + create mode 100644 none/tests/sw64/8a-conv.c + create mode 100644 none/tests/sw64/8a-conv.stderr.exp + create mode 100644 none/tests/sw64/8a-conv.stdout.exp + create mode 100644 none/tests/sw64/8a-conv.vgtest + create mode 100644 none/tests/sw64/8a-fp.c + create mode 100644 none/tests/sw64/8a-fp.stderr.exp + create mode 100644 none/tests/sw64/8a-fp.stdout.exp + create mode 100644 none/tests/sw64/8a-fp.vgtest + create mode 100644 none/tests/sw64/8a-int.c + create mode 100644 none/tests/sw64/8a-int.stderr.exp + create mode 100644 none/tests/sw64/8a-int.stdout.exp + create mode 100644 none/tests/sw64/8a-int.vgtest + create mode 100644 none/tests/sw64/8a-lock.c + create mode 100644 none/tests/sw64/8a-lock.stderr.exp + create mode 100644 none/tests/sw64/8a-lock.stdout.exp + create mode 100644 none/tests/sw64/8a-lock.vgtest + create mode 100644 none/tests/sw64/8a-misc.c + create mode 100644 none/tests/sw64/8a-misc.stderr.exp + create mode 100644 none/tests/sw64/8a-misc.stdout.exp + create mode 100644 none/tests/sw64/8a-misc.vgtest + create mode 100644 none/tests/sw64/Makefile.am + create mode 120000 none/tests/sw64/allexec.c + create mode 100644 none/tests/sw64/arith-fp.c + create mode 100644 none/tests/sw64/arith-fp.stderr.exp + create mode 100644 none/tests/sw64/arith-fp.stdout.exp + create mode 100644 none/tests/sw64/arith-fp.stdout.exp-8a + create mode 100644 none/tests/sw64/arith-fp.vgtest + create mode 100644 none/tests/sw64/arith-int-imm.c + create mode 100644 none/tests/sw64/arith-int-imm.stderr.exp + create mode 100644 none/tests/sw64/arith-int-imm.stdout.exp + create mode 100644 none/tests/sw64/arith-int-imm.vgtest + create mode 100644 none/tests/sw64/arith-int-reg.c + create mode 100644 none/tests/sw64/arith-int-reg.stderr.exp + create mode 100644 none/tests/sw64/arith-int-reg.stdout.exp + create mode 100644 none/tests/sw64/arith-int-reg.vgtest + create mode 100644 none/tests/sw64/branch.c + create mode 100644 none/tests/sw64/branch.stderr.exp + create mode 100644 none/tests/sw64/branch.stdout.exp + create mode 100644 none/tests/sw64/branch.vgtest + create mode 100644 none/tests/sw64/common-sw64-standalone.h + create mode 100644 none/tests/sw64/div-by-zero.c + create mode 100644 none/tests/sw64/div-by-zero.stderr.exp + create mode 100644 none/tests/sw64/div-by-zero.stdout.exp + create mode 100644 none/tests/sw64/div-by-zero.vgtest + create mode 100755 none/tests/sw64/filter_stderr + create mode 100644 none/tests/sw64/loadstore-fp.c + create mode 100644 none/tests/sw64/loadstore-fp.stderr.exp + create mode 100644 none/tests/sw64/loadstore-fp.stdout.exp + create mode 100644 none/tests/sw64/loadstore-fp.vgtest + create mode 100644 none/tests/sw64/loadstore-lock.c + create mode 100644 none/tests/sw64/loadstore-lock.stderr.exp + create mode 100644 none/tests/sw64/loadstore-lock.stdout.exp + create mode 100644 none/tests/sw64/loadstore-lock.vgtest + create mode 100644 none/tests/sw64/py-hash-double.c + create mode 100644 none/tests/sw64/py-hash-double.stderr.exp + create mode 100644 none/tests/sw64/py-hash-double.stdout.exp + create mode 100644 none/tests/sw64/py-hash-double.vgtest + create mode 100644 none/tests/sw64/rcid.c + create mode 100644 none/tests/sw64/rcid.stderr.exp + create mode 100644 none/tests/sw64/rcid.vgtest + create mode 100644 none/tests/sw64/rounding.c + create mode 100644 none/tests/sw64/rounding.stderr.exp + create mode 100644 none/tests/sw64/rounding.stdout.exp + create mode 100644 none/tests/sw64/rounding.vgtest + create mode 100644 none/tests/sw64/rtc.c + create mode 100644 none/tests/sw64/rtc.stderr.exp + create mode 100644 none/tests/sw64/rtc.vgtest + create mode 100644 none/tests/sw64/simd-fp.c + create mode 100644 none/tests/sw64/simd-fp.stderr.exp + create mode 100644 none/tests/sw64/simd-fp.stdout.exp + create mode 100644 none/tests/sw64/simd-fp.vgtest.disable + create mode 100644 none/tests/sw64/simd-int.c + create mode 100644 none/tests/sw64/simd-int.stderr.exp + create mode 100644 none/tests/sw64/simd-int.stdout.exp + create mode 100644 none/tests/sw64/simd-int.vgtest.disable + create mode 100644 none/tests/sw64/stack.c + create mode 100644 none/tests/sw64/stack.stderr.exp + create mode 100644 none/tests/sw64/stack.stdout.exp + create mode 100644 none/tests/sw64/stack.vgtest + create mode 100644 none/tests/sw64/unique.c + create mode 100644 none/tests/sw64/unique.stderr.exp + create mode 100644 none/tests/sw64/unique.stdout.exp + create mode 100644 none/tests/sw64/unique.vgtest + +diff --git a/.gitignore b/.gitignore +index f743eb172..083eeec11 100644 +--- a/.gitignore ++++ b/.gitignore +@@ -55,6 +55,7 @@ + /auxprogs/getoff-mips32-linux + /auxprogs/getoff-mips64-linux + /auxprogs/getoff-nanomips-linux ++/auxprogs/getoff-sw64-linux + /auxprogs/getoff-amd64-solaris + /auxprogs/getoff-x86-solaris + /auxprogs/getoff-*-freebsd +@@ -1432,6 +1433,10 @@ + /memcheck/tests/x86-freebsd/posix_fadvise + /memcheck/tests/x86-freebsd/posix_fallocate + ++# /memcheck/tests/sw64 ++/memcheck/tests/sw64/Makefile ++/memcheck/tests/sw64/Makefile.in ++ + # /mpi/ + /mpi/*.dSYM + /mpi/*.so +@@ -1892,6 +1897,43 @@ + /none/tests/nanomips/move + /none/tests/nanomips/pc_instructions + ++# /none/tests/sw64/ ++/none/tests/sw64/*.stderr.diff ++/none/tests/sw64/*.stderr.out ++/none/tests/sw64/*.stdout.diff ++/none/tests/sw64/*.stdout.out ++/none/tests/sw64/Makefile ++/none/tests/sw64/Makefile.in ++/none/tests/sw64/.deps ++/none/tests/sw64/allexec ++/none/tests/sw64/arith-fp ++/none/tests/sw64/arith-int-imm ++/none/tests/sw64/arith-int-reg ++/none/tests/sw64/branch ++/none/tests/sw64/div-by-zero ++/none/tests/sw64/loadstore-fp ++/none/tests/sw64/py-hash-double ++/none/tests/sw64/rcid ++/none/tests/sw64/rounding ++/none/tests/sw64/rtc ++/none/tests/sw64/stack ++/none/tests/sw64/unique ++/none/tests/sw64/simd-fp ++/none/tests/sw64/simd-int ++ ++# /none/tests/sw64-linux/ ++/none/tests/sw64-linux/*.stderr.diff ++/none/tests/sw64-linux/*.stderr.out ++/none/tests/sw64-linux/*.stdout.diff ++/none/tests/sw64-linux/*.stdout.out ++/none/tests/sw64-linux/Makefile ++/none/tests/sw64-linux/Makefile.in ++/none/tests/sw64-linux/.deps ++/none/tests/sw64-linux/getcontext ++/none/tests/sw64-linux/gethostname ++/none/tests/sw64-linux/prctl ++/none/tests/sw64-linux/readahead ++ + # /none/tests/ppc32/ + /none/tests/ppc32/*.stderr.diff + /none/tests/ppc32/*.stderr.out +diff --git a/Makefile.all.am b/Makefile.all.am +index 94d65f2cc..d6aa20dac 100755 +--- a/Makefile.all.am ++++ b/Makefile.all.am +@@ -290,6 +290,12 @@ AM_CFLAGS_PSO_MIPS64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) \ + $(AM_CFLAGS_PSO_BASE) + AM_CCASFLAGS_MIPS64_LINUX = @FLAG_M64@ -g + ++AM_FLAG_M3264_SW64_LINUX = @FLAG_M64@ ++AM_CFLAGS_SW64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) ++AM_CFLAGS_PSO_SW64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) \ ++ $(AM_CFLAGS_PSO_BASE) ++AM_CCASFLAGS_SW64_LINUX = @FLAG_M64@ -g ++ + AM_FLAG_M3264_X86_SOLARIS = @FLAG_M32@ + AM_CFLAGS_X86_SOLARIS = @FLAG_M32@ @PREFERRED_STACK_BOUNDARY_2@ \ + $(AM_CFLAGS_BASE) -fomit-frame-pointer @SOLARIS_UNDEF_LARGESOURCE@ +@@ -350,6 +356,6 @@ PRELOAD_LDFLAGS_S390X_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@ + PRELOAD_LDFLAGS_MIPS32_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@ + PRELOAD_LDFLAGS_NANOMIPS_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@ + PRELOAD_LDFLAGS_MIPS64_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@ ++PRELOAD_LDFLAGS_SW64_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@ + PRELOAD_LDFLAGS_X86_SOLARIS = $(PRELOAD_LDFLAGS_COMMON_SOLARIS) @FLAG_M32@ + PRELOAD_LDFLAGS_AMD64_SOLARIS = $(PRELOAD_LDFLAGS_COMMON_SOLARIS) @FLAG_M64@ +- +diff --git a/Makefile.tool.am b/Makefile.tool.am +index 4ce6d5ab0..2f3f6dc3e 100644 +--- a/Makefile.tool.am ++++ b/Makefile.tool.am +@@ -80,6 +80,9 @@ TOOL_LDFLAGS_ARM64_LINUX = \ + TOOL_LDFLAGS_S390X_LINUX = \ + $(TOOL_LDFLAGS_COMMON_LINUX) @FLAG_M64@ @FLAG_S390_PGSTE@ + ++TOOL_LDFLAGS_SW64_LINUX = \ ++ $(TOOL_LDFLAGS_COMMON_LINUX) @FLAG_M64@ ++ + TOOL_LDFLAGS_X86_DARWIN = \ + $(TOOL_LDFLAGS_COMMON_DARWIN) -arch i386 + +@@ -167,6 +170,9 @@ LIBREPLACEMALLOC_MIPS32_LINUX = \ + LIBREPLACEMALLOC_MIPS64_LINUX = \ + $(top_builddir)/coregrind/libreplacemalloc_toolpreload-mips64-linux.a + ++LIBREPLACEMALLOC_SW64_LINUX = \ ++ $(top_builddir)/coregrind/libreplacemalloc_toolpreload-sw64-linux.a ++ + LIBREPLACEMALLOC_X86_SOLARIS = \ + $(top_builddir)/coregrind/libreplacemalloc_toolpreload-x86-solaris.a + +@@ -239,6 +245,11 @@ LIBREPLACEMALLOC_LDFLAGS_MIPS64_LINUX = \ + $(LIBREPLACEMALLOC_MIPS64_LINUX) \ + -Wl,--no-whole-archive + ++LIBREPLACEMALLOC_LDFLAGS_SW64_LINUX = \ ++ -Wl,--whole-archive \ ++ $(LIBREPLACEMALLOC_SW64_LINUX) \ ++ -Wl,--no-whole-archive ++ + LIBREPLACEMALLOC_LDFLAGS_X86_SOLARIS = \ + -Wl,--whole-archive \ + $(LIBREPLACEMALLOC_X86_SOLARIS) \ +diff --git a/Makefile.vex.am b/Makefile.vex.am +index 98d848359..d12eb7d17 100644 +--- a/Makefile.vex.am ++++ b/Makefile.vex.am +@@ -26,7 +26,8 @@ pkginclude_HEADERS = \ + pub/libvex_guest_s390x.h \ + pub/libvex_guest_mips32.h \ + pub/libvex_guest_mips64.h \ +- pub/libvex_s390x_common.h \ ++ pub/libvex_guest_sw64.h \ ++ pub/libvex_s390x_common.h \ + pub/libvex_ir.h \ + pub/libvex_trc_values.h \ + pub/libvex_inner.h +@@ -47,7 +48,8 @@ noinst_HEADERS = \ + priv/guest_arm64_defs.h \ + priv/guest_s390_defs.h \ + priv/guest_mips_defs.h \ +- priv/mips_defs.h \ ++ priv/guest_sw64_defs.h \ ++ priv/mips_defs.h \ + priv/guest_nanomips_defs.h \ + priv/host_generic_regs.h \ + priv/host_generic_simd64.h \ +@@ -60,7 +62,8 @@ noinst_HEADERS = \ + priv/host_arm_defs.h \ + priv/host_arm64_defs.h \ + priv/host_s390_defs.h \ +- priv/s390_disasm.h \ ++ priv/host_sw64_defs.h \ ++ priv/s390_disasm.h \ + priv/s390_defs.h \ + priv/host_mips_defs.h \ + priv/host_nanomips_defs.h \ +@@ -93,7 +96,8 @@ pub/libvex_guest_offsets.h: auxprogs/genoffsets.c \ + pub/libvex_guest_arm64.h \ + pub/libvex_guest_s390x.h \ + pub/libvex_guest_mips32.h \ +- pub/libvex_guest_mips64.h ++ pub/libvex_guest_mips64.h \ ++ pub/libvex_guest_sw64.h + rm -f auxprogs/genoffsets.s + $(mkdir_p) auxprogs pub + $(CC) $(CFLAGS_FOR_GENOFFSETS) \ +@@ -151,7 +155,9 @@ LIBVEX_SOURCES_COMMON = \ + priv/guest_mips_toIR.c \ + priv/guest_nanomips_helpers.c \ + priv/guest_nanomips_toIR.c \ +- priv/host_generic_regs.c \ ++ priv/guest_sw64_helpers.c \ ++ priv/guest_sw64_toIR.c \ ++ priv/host_generic_regs.c \ + priv/host_generic_simd64.c \ + priv/host_generic_simd128.c \ + priv/host_generic_simd256.c \ +@@ -174,7 +180,9 @@ LIBVEX_SOURCES_COMMON = \ + priv/host_mips_defs.c \ + priv/host_nanomips_defs.c \ + priv/host_mips_isel.c \ +- priv/host_nanomips_isel.c ++ priv/host_nanomips_isel.c \ ++ priv/host_sw64_isel.c \ ++ priv/host_sw64_defs.c + + LIBVEXMULTIARCH_SOURCES = priv/multiarch_main_main.c + +diff --git a/VEX/auxprogs/genoffsets.c b/VEX/auxprogs/genoffsets.c +index 54376dc90..34ecbbcb3 100644 +--- a/VEX/auxprogs/genoffsets.c ++++ b/VEX/auxprogs/genoffsets.c +@@ -53,6 +53,7 @@ + #include "../pub/libvex_guest_s390x.h" + #include "../pub/libvex_guest_mips32.h" + #include "../pub/libvex_guest_mips64.h" ++#include "../pub/libvex_guest_sw64.h" + + #define VG_STRINGIFZ(__str) #__str + #define VG_STRINGIFY(__str) VG_STRINGIFZ(__str) +@@ -206,7 +207,7 @@ void foo ( void ) + GENOFFSET(MIPS32,mips32,r13); + GENOFFSET(MIPS32,mips32,r14); + GENOFFSET(MIPS32,mips32,r15); +- GENOFFSET(MIPS32,mips32,r15); ++ GENOFFSET(MIPS32,mips32,r16); + GENOFFSET(MIPS32,mips32,r17); + GENOFFSET(MIPS32,mips32,r18); + GENOFFSET(MIPS32,mips32,r19); +@@ -243,7 +244,7 @@ void foo ( void ) + GENOFFSET(MIPS64,mips64,r13); + GENOFFSET(MIPS64,mips64,r14); + GENOFFSET(MIPS64,mips64,r15); +- GENOFFSET(MIPS64,mips64,r15); ++ GENOFFSET(MIPS64,mips64,r16); + GENOFFSET(MIPS64,mips64,r17); + GENOFFSET(MIPS64,mips64,r18); + GENOFFSET(MIPS64,mips64,r19); +@@ -262,6 +263,42 @@ void foo ( void ) + GENOFFSET(MIPS64,mips64,PC); + GENOFFSET(MIPS64,mips64,HI); + GENOFFSET(MIPS64,mips64,LO); ++ ++ //sw64 ++ GENOFFSET(SW64,sw64,r0); ++ GENOFFSET(SW64,sw64,r1); ++ GENOFFSET(SW64,sw64,r2); ++ GENOFFSET(SW64,sw64,r3); ++ GENOFFSET(SW64,sw64,r4); ++ GENOFFSET(SW64,sw64,r5); ++ GENOFFSET(SW64,sw64,r6); ++ GENOFFSET(SW64,sw64,r7); ++ GENOFFSET(SW64,sw64,r8); ++ GENOFFSET(SW64,sw64,r9); ++ GENOFFSET(SW64,sw64,r10); ++ GENOFFSET(SW64,sw64,r11); ++ GENOFFSET(SW64,sw64,r12); ++ GENOFFSET(SW64,sw64,r13); ++ GENOFFSET(SW64,sw64,r14); ++ GENOFFSET(SW64,sw64,r15); ++ GENOFFSET(SW64,sw64,r16); ++ GENOFFSET(SW64,sw64,r17); ++ GENOFFSET(SW64,sw64,r18); ++ GENOFFSET(SW64,sw64,r19); ++ GENOFFSET(SW64,sw64,r20); ++ GENOFFSET(SW64,sw64,r21); ++ GENOFFSET(SW64,sw64,r22); ++ GENOFFSET(SW64,sw64,r23); ++ GENOFFSET(SW64,sw64,r24); ++ GENOFFSET(SW64,sw64,r25); ++ GENOFFSET(SW64,sw64,r26); ++ GENOFFSET(SW64,sw64,r27); ++ GENOFFSET(SW64,sw64,r28); ++ GENOFFSET(SW64,sw64,r29); ++ GENOFFSET(SW64,sw64,r30); ++ GENOFFSET(SW64,sw64,r31); ++ GENOFFSET(SW64,sw64,PC); ++ + } + + /*--------------------------------------------------------------------*/ +diff --git a/VEX/priv/guest_generic_bb_to_IR.c b/VEX/priv/guest_generic_bb_to_IR.c +index 1b9821a7c..a0464f4c4 100644 +--- a/VEX/priv/guest_generic_bb_to_IR.c ++++ b/VEX/priv/guest_generic_bb_to_IR.c +@@ -994,7 +994,7 @@ static IRSB* disassemble_basic_block_till_stop( + imark->Ist.IMark.len = dres.len; + + /* Print the resulting IR, if needed. */ +- if (vex_traceflags & VEX_TRACE_FE) { ++ if (vex_traceflags & VEX_TRACE_FE /* debug logger */) { + for (Int i = first_stmt_idx; i < irbb->stmts_used; i++) { + vex_printf(" "); + ppIRStmt(irbb->stmts[i]); +diff --git a/VEX/priv/guest_sw64_defs.h b/VEX/priv/guest_sw64_defs.h +new file mode 100644 +index 000000000..0fe137bb8 +--- /dev/null ++++ b/VEX/priv/guest_sw64_defs.h +@@ -0,0 +1,81 @@ ++/*---------------------------------------------------------------*/ ++/*--- begin guest_sw64_defs.h ---*/ ++/*---------------------------------------------------------------*/ ++/* ++ This file is part of Valgrind, a dynamic binary instrumentation ++ framework. ++ ++ Copyright (C) 2013-2017 OpenWorks ++ info@open-works.net ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, see . ++ ++ The GNU General Public License is contained in the file COPYING. ++*/ ++ ++#ifndef __VEX_GUEST_SW64_DEFS_H ++#define __VEX_GUEST_SW64_DEFS_H ++ ++#include "libvex_basictypes.h" ++#include "libvex_guest_sw64.h" // VexGuestSW64State ++#include "guest_generic_bb_to_IR.h" // DisResult ++ ++/*---------------------------------------------------------*/ ++/*--- sw64 to IR conversion ---*/ ++/*---------------------------------------------------------*/ ++ ++/* Convert one SW64 insn to IR. See the type DisOneInstrFn in ++ guest_generic_bb_to_IR.h. */ ++ ++/* SW_NOT_COMPLETE */ ++extern ++DisResult disInstr_SW64 ( IRSB* irbb, ++ const UChar* guest_code, ++ Long delta, ++ Addr guest_IP, ++ VexArch guest_arch, ++ const VexArchInfo* archinfo, ++ const VexAbiInfo* abiinfo, ++ VexEndness host_endness, ++ Bool sigill_diag ); ++ ++extern ++Bool guest_sw64_state_requires_precise_mem_exns (Int, Int, ++ VexRegisterUpdates ); ++ ++extern IRExpr *guest_sw64_spechelper ( const HChar * function_name, ++ IRExpr ** args, ++ IRStmt ** precedingStmts, ++ Int n_precedingStmts); ++ ++extern void sw64_dirtyhelper_write_lockflag(void* gs, ULong src); ++ ++extern ULong sw64_dirtyhelper_rtc(void* gs); ++extern ULong sw64_dirtyhelper_rcid(void* gs); ++extern ULong sw64_dirtyhelper_calc_crc32b ( ULong acc, ULong bits ); ++extern ULong sw64_dirtyhelper_calc_crc32h ( ULong acc, ULong bits ); ++extern ULong sw64_dirtyhelper_calc_crc32w ( ULong acc, ULong bits ); ++extern ULong sw64_dirtyhelper_calc_crc32l ( ULong acc, ULong bits ); ++extern ULong sw64_dirtyhelper_calc_crc32cb ( ULong acc, ULong bits ); ++extern ULong sw64_dirtyhelper_calc_crc32ch ( ULong acc, ULong bits ); ++extern ULong sw64_dirtyhelper_calc_crc32cw ( ULong acc, ULong bits ); ++extern ULong sw64_dirtyhelper_calc_crc32cl ( ULong acc, ULong bits ); ++ ++extern VexGuestLayout sw64Guest_layout; ++ ++#endif /* __VEX_GUEST_SW64_DEFS_H */ ++ ++/*---------------------------------------------------------------*/ ++/*--- end guest_sw64_defs.h ---*/ ++/*---------------------------------------------------------------*/ +diff --git a/VEX/priv/guest_sw64_helpers.c b/VEX/priv/guest_sw64_helpers.c +new file mode 100644 +index 000000000..5ae65e4f5 +--- /dev/null ++++ b/VEX/priv/guest_sw64_helpers.c +@@ -0,0 +1,312 @@ ++ ++/*---------------------------------------------------------------*/ ++/*--- begin guest_sw64_helpers.c ---*/ ++/*---------------------------------------------------------------*/ ++ ++/* ++ This file is part of Valgrind, a dynamic binary instrumentation ++ framework. ++ ++ Copyright (C) 2010-2017 RT-RK ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, see . ++ ++ The GNU General Public License is contained in the file COPYING. ++*/ ++ ++#include "libvex_basictypes.h" ++#include "libvex_guest_sw64.h" ++#include "libvex_ir.h" ++#include "libvex.h" ++ ++#include "main_util.h" ++#include "main_globals.h" ++#include "guest_generic_bb_to_IR.h" ++#include "guest_sw64_defs.h" ++ ++void LibVEX_GuestSW64_initialise ( /*OUT*/ VexGuestSW64State * vex_state ) ++{ ++ vex_state->guest_r0 = 0; /* Values for function returns */ ++ vex_state->guest_r1 = 0; /* Temporaries */ /* t0-t7 */ ++ vex_state->guest_r2 = 0; ++ vex_state->guest_r3 = 0; ++ vex_state->guest_r4 = 0; ++ vex_state->guest_r5 = 0; ++ vex_state->guest_r6 = 0; ++ vex_state->guest_r7 = 0; ++ vex_state->guest_r8 = 0; ++ vex_state->guest_r9 = 0; /* Saved temporaries */ /* s0-s5 */ ++ vex_state->guest_r10 = 0; ++ vex_state->guest_r11 = 0; ++ vex_state->guest_r12 = 0; ++ vex_state->guest_r13 = 0; ++ vex_state->guest_r14 = 0; ++ vex_state->guest_r15 = 0; /* Frame pointer */ ++ vex_state->guest_r16 = 0; /* Function arguments */ /* a0-a5 */ ++ vex_state->guest_r17 = 0; ++ vex_state->guest_r18 = 0; ++ vex_state->guest_r19 = 0; ++ vex_state->guest_r20 = 0; ++ vex_state->guest_r21 = 0; ++ vex_state->guest_r22 = 0; /* Temporaries */ /* t8-t11 */ ++ vex_state->guest_r23 = 0; ++ vex_state->guest_r24 = 0; ++ vex_state->guest_r25 = 0; ++ vex_state->guest_r26 = 0; /* Return address */ ++ vex_state->guest_r27 = 0; /* Procedure value */ ++ vex_state->guest_r28 = 0; /* Assembler temporary */ ++ vex_state->guest_r29 = 0; /* Global pointer */ ++ vex_state->guest_r30 = 0; /* Stack pointer */ ++ vex_state->guest_r31 = 0; /* Hardwired to 0. */ ++ vex_state->guest_PC = 0; /* Program counter */ ++ vex_state->guest_CSR = 0; ++ ++ /* FPU Registers */ ++ vex_state->guest_f0 = 0x7ff800007ff80000ULL; /* Floting point registers */ ++ vex_state->guest_f1 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f2 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f3 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f4 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f5 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f6 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f7 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f8 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f9 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f10 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f11 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f12 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f13 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f14 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f15 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f16 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f17 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f18 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f19 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f20 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f21 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f22 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f23 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f24 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f25 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f26 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f27 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f28 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f29 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f30 = 0x7ff800007ff80000ULL; ++ vex_state->guest_f31 = 0x7ff800007ff80000ULL; ++ ++ vex_state->guest_FPCR = 0x680e000000000000ULL; /* FP control/status register */ ++ ++ /* Various pseudo-regs mandated by Vex or Valgrind. */ ++ /* Emulation notes */ ++ vex_state->guest_EMNOTE = 0; ++ ++ /* For clflush: record start and length of area to invalidate */ ++ vex_state->guest_CMSTART = 0; ++ vex_state->guest_CMLEN = 0; ++ vex_state->host_EvC_COUNTER = 0; ++ vex_state->host_EvC_FAILADDR = 0; ++ ++ /* Used to record the unredirected guest address at the start of ++ a translation whose start has been redirected. By reading ++ this pseudo-register shortly afterwards, the translation can ++ find out what the corresponding no-redirection address was. ++ Note, this is only set for wrap-style redirects, not for ++ replace-style ones. */ ++ vex_state->guest_NRADDR = 0; ++} ++ ++Bool guest_sw64_state_requires_precise_mem_exns ( ++ Int minoff, Int maxoff, VexRegisterUpdates pxControl ++ ) ++{ ++ Int sp_min = offsetof(VexGuestSW64State, guest_r30); ++ Int sp_max = sp_min + 8 - 1; ++ Int pc_min = offsetof(VexGuestSW64State, guest_PC); ++ Int pc_max = pc_min + 8 - 1; ++ ++ if ( maxoff < sp_min || minoff > sp_max ) { ++ /* no overlap with sp */ ++ if (pxControl == VexRegUpdSpAtMemAccess) ++ return False; /* We only need to check stack pointer. */ ++ } else { ++ return True; ++ } ++ ++ if ( maxoff < pc_min || minoff > pc_max ) { ++ /* no overlap with pc */ ++ } else { ++ return True; ++ } ++ ++ Int fp_min = offsetof(VexGuestSW64State, guest_r15); ++ Int fp_max = fp_min + 8 - 1; ++ ++ if ( maxoff < fp_min || minoff > fp_max ) { ++ /* no overlap with fp */ ++ } else { ++ return True; ++ } ++ ++ return False; ++} ++ ++IRExpr *guest_sw64_spechelper ( const HChar * function_name, IRExpr ** args, ++ IRStmt ** precedingStmts, ++ Int n_precedingStmts ) ++{ ++ return NULL; ++} ++ ++ ++#define ALWAYSDEFD64(field) \ ++ { offsetof(VexGuestSW64State, field), \ ++ (sizeof ((VexGuestSW64State*)0)->field) } ++VexGuestLayout sw64Guest_layout = { ++ /* Total size of the guest state, in bytes. */ ++ .total_sizeB = sizeof(VexGuestSW64State), ++ /* Describe the stack pointer. */ ++ .offset_SP = offsetof(VexGuestSW64State, guest_r30), ++ .sizeof_SP = 8, ++ /* Describe the frame pointer. */ ++ .offset_FP = offsetof(VexGuestSW64State, guest_r15), ++ .sizeof_FP = 8, ++ /* Describe the instruction pointer. */ ++ .offset_IP = offsetof(VexGuestSW64State, guest_PC), ++ .sizeof_IP = 8, ++ /* Describe any sections to be regarded by Memcheck as ++ 'always-defined'. */ ++ .n_alwaysDefd = 6, ++ /* ? :( */ ++ .alwaysDefd = { ++ /* 0 */ ALWAYSDEFD64 (guest_r31), ++ /* 1 */ ALWAYSDEFD64 (guest_f31), ++ /* 2 */ ALWAYSDEFD64 (guest_EMNOTE), ++ /* 3 */ ALWAYSDEFD64 (guest_CMSTART), ++ /* 4 */ ALWAYSDEFD64 (guest_CMLEN), ++ /* 5 */ ALWAYSDEFD64 (guest_NRADDR), ++ } ++}; ++#undef ALWAYSDEFD64 ++ ++extern void sw64_dirtyhelper_write_lockflag(void* gs, ULong src) ++{ ++ VexGuestSW64State *guest_state = (VexGuestSW64State *)gs; ++ ULong *addr = (ULong*)&guest_state->guest_r0; ++#if defined(VGP_sw64_linux) ++ __asm__ volatile ( ++ ".set noreorder" "\n\t" ++ "wr_f %0" "\n\t" ++ : ++ : "r" ((addr[src])) ++ ); ++#endif ++} ++ ++/* On non-sw64 platforms, return 1. */ ++ULong sw64_dirtyhelper_rtc(void* gs) { ++#if defined(VGP_sw64_linux) ++ ULong tc = 0; ++ __asm__ volatile ("rtc %0" : "=r" (tc) : :); ++ return tc; ++#else ++ return 1UL; ++#endif ++} ++ ++ULong sw64_dirtyhelper_rcid(void* gs) { ++#if defined(VGP_sw64_linux) ++ ULong cid = 0; ++ __asm__ volatile ("rcid %0" : "=r" (cid) : :); ++ return cid; ++#else ++ return 0UL; ++#endif ++} ++ ++ULong sw64_dirtyhelper_calc_crc32b ( ULong acc, ULong bits ) ++{ ++ UInt i; ++ ULong crc = (bits & 0xFFULL) ^ (acc & 0xFFFFFFFFULL); ++ for (i = 0; i < 8; i++) ++ crc = (crc >> 1) ^ ((crc & 1) ? 0xEDB88320ULL : 0); ++ return crc; ++} ++ ++ULong sw64_dirtyhelper_calc_crc32h ( ULong acc, ULong bits ) ++{ ++ UInt i; ++ ULong crc = (bits & 0xFFFFULL) ^ (acc & 0xFFFFFFFFULL); ++ for (i = 0; i < 16; i++) ++ crc = (crc >> 1) ^ ((crc & 1) ? 0xEDB88320ULL : 0); ++ return crc; ++} ++ ++ULong sw64_dirtyhelper_calc_crc32w ( ULong acc, ULong bits ) ++{ ++ UInt i; ++ ULong crc = (bits & 0xFFFFFFFFULL) ^ (acc & 0xFFFFFFFFULL); ++ for (i = 0; i < 32; i++) ++ crc = (crc >> 1) ^ ((crc & 1) ? 0xEDB88320ULL : 0); ++ return crc; ++} ++ ++ULong sw64_dirtyhelper_calc_crc32l ( ULong acc, ULong bits ) ++{ ++ UInt i; ++ ULong crc = bits ^ (acc & 0xFFFFFFFFULL); ++ for (i = 0; i < 64; i++) ++ crc = (crc >> 1) ^ ((crc & 1) ? 0xEDB88320ULL : 0); ++ return crc; ++} ++ ++ULong sw64_dirtyhelper_calc_crc32cb ( ULong acc, ULong bits ) ++{ ++ UInt i; ++ ULong crc = (bits & 0xFFULL) ^ (acc & 0xFFFFFFFFULL); ++ for (i = 0; i < 8; i++) ++ crc = (crc >> 1) ^ ((crc & 1) ? 0x82F63B78ULL : 0); ++ return crc; ++} ++ ++ULong sw64_dirtyhelper_calc_crc32ch ( ULong acc, ULong bits ) ++{ ++ UInt i; ++ ULong crc = (bits & 0xFFFFULL) ^ (acc & 0xFFFFFFFFULL); ++ for (i = 0; i < 16; i++) ++ crc = (crc >> 1) ^ ((crc & 1) ? 0x82F63B78ULL : 0); ++ return crc; ++} ++ ++ULong sw64_dirtyhelper_calc_crc32cw ( ULong acc, ULong bits ) ++{ ++ UInt i; ++ ULong crc = (bits & 0xFFFFFFFFULL) ^ (acc & 0xFFFFFFFFULL); ++ for (i = 0; i < 32; i++) ++ crc = (crc >> 1) ^ ((crc & 1) ? 0x82F63B78ULL : 0); ++ return crc; ++} ++ ++ULong sw64_dirtyhelper_calc_crc32cl ( ULong acc, ULong bits ) ++{ ++ UInt i; ++ ULong crc = bits ^ (acc & 0xFFFFFFFFULL); ++ for (i = 0; i < 64; i++) ++ crc = (crc >> 1) ^ ((crc & 1) ? 0x82F63B78ULL : 0); ++ return crc; ++} ++ ++/*---------------------------------------------------------------*/ ++/*--- end guest_sw64_helpers.c ---*/ ++/*---------------------------------------------------------------*/ +diff --git a/VEX/priv/guest_sw64_toIR.c b/VEX/priv/guest_sw64_toIR.c +new file mode 100644 +index 000000000..2e3244191 +--- /dev/null ++++ b/VEX/priv/guest_sw64_toIR.c +@@ -0,0 +1,3496 @@ ++ ++/*--------------------------------------------------------------------*/ ++/*--- begin guest_arm64_toIR.c ---*/ ++/*--------------------------------------------------------------------*/ ++ ++/* ++ This file is part of Valgrind, a dynamic binary instrumentation ++ framework. ++ ++ Copyright (C) 2013-2017 OpenWorks ++ info@open-works.net ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, see . ++ ++ The GNU General Public License is contained in the file COPYING. ++*/ ++ ++/* Translates SW64 code to IR. */ ++ ++#include "libvex_basictypes.h" ++#include "libvex_ir.h" ++#include "libvex.h" ++#include "libvex_guest_sw64.h" ++ ++#include "main_util.h" ++#include "main_globals.h" ++#include "guest_generic_bb_to_IR.h" ++#include "guest_sw64_defs.h" ++ ++/*------------------------------------------------------------*/ ++/*--- Globals ---*/ ++/*------------------------------------------------------------*/ ++ ++/* These are set at the start of the translation of a instruction, so ++ that we don't have to pass them around endlessly. CONST means does ++ not change during translation of the instruction. ++*/ ++ ++/* CONST: what is the host's endianness? We need to know this in ++ order to do sub-register accesses to the SIMD/FP registers ++ correctly. */ ++static VexEndness host_endness; ++ ++/* CONST: The guest address for the instruction currently being ++ translated. */ ++static Addr64 guest_PC_curr_instr; ++ ++/* MOD: The IRSB* into which we're generating code. */ ++static IRSB* irsb; ++ ++ ++ ++/*------------------------------------------------------------*/ ++/*--- Helpers for accessing guest registers. ---*/ ++/*------------------------------------------------------------*/ ++ ++#define OFFB_r0 offsetof(VexGuestSW64State,guest_r0) ++#define OFFB_r1 offsetof(VexGuestSW64State,guest_r1) ++#define OFFB_r2 offsetof(VexGuestSW64State,guest_r2) ++#define OFFB_r3 offsetof(VexGuestSW64State,guest_r3) ++#define OFFB_r4 offsetof(VexGuestSW64State,guest_r4) ++#define OFFB_r5 offsetof(VexGuestSW64State,guest_r5) ++#define OFFB_r6 offsetof(VexGuestSW64State,guest_r6) ++#define OFFB_r7 offsetof(VexGuestSW64State,guest_r7) ++#define OFFB_r8 offsetof(VexGuestSW64State,guest_r8) ++#define OFFB_r9 offsetof(VexGuestSW64State,guest_r9) ++#define OFFB_r10 offsetof(VexGuestSW64State,guest_r10) ++#define OFFB_r11 offsetof(VexGuestSW64State,guest_r11) ++#define OFFB_r12 offsetof(VexGuestSW64State,guest_r12) ++#define OFFB_r13 offsetof(VexGuestSW64State,guest_r13) ++#define OFFB_r14 offsetof(VexGuestSW64State,guest_r14) ++#define OFFB_r15 offsetof(VexGuestSW64State,guest_r15) ++#define OFFB_r16 offsetof(VexGuestSW64State,guest_r16) ++#define OFFB_r17 offsetof(VexGuestSW64State,guest_r17) ++#define OFFB_r18 offsetof(VexGuestSW64State,guest_r18) ++#define OFFB_r19 offsetof(VexGuestSW64State,guest_r19) ++#define OFFB_r20 offsetof(VexGuestSW64State,guest_r20) ++#define OFFB_r21 offsetof(VexGuestSW64State,guest_r21) ++#define OFFB_r22 offsetof(VexGuestSW64State,guest_r22) ++#define OFFB_r23 offsetof(VexGuestSW64State,guest_r23) ++#define OFFB_r24 offsetof(VexGuestSW64State,guest_r24) ++#define OFFB_r25 offsetof(VexGuestSW64State,guest_r25) ++#define OFFB_r26 offsetof(VexGuestSW64State,guest_r26) ++#define OFFB_r27 offsetof(VexGuestSW64State,guest_r27) ++#define OFFB_r28 offsetof(VexGuestSW64State,guest_r28) ++#define OFFB_r29 offsetof(VexGuestSW64State,guest_r29) ++#define OFFB_r30 offsetof(VexGuestSW64State,guest_r30) ++#define OFFB_r31 offsetof(VexGuestSW64State,guest_r31) ++#define OFFB_PC offsetof(VexGuestSW64State,guest_PC) ++#define OFFB_CSR offsetof(VexGuestSW64State,guest_CSR) ++ ++#define OFFB_f0 offsetof(VexGuestSW64State,guest_f0) ++#define OFFB_f1 offsetof(VexGuestSW64State,guest_f1) ++#define OFFB_f2 offsetof(VexGuestSW64State,guest_f2) ++#define OFFB_f3 offsetof(VexGuestSW64State,guest_f3) ++#define OFFB_f4 offsetof(VexGuestSW64State,guest_f4) ++#define OFFB_f5 offsetof(VexGuestSW64State,guest_f5) ++#define OFFB_f6 offsetof(VexGuestSW64State,guest_f6) ++#define OFFB_f7 offsetof(VexGuestSW64State,guest_f7) ++#define OFFB_f8 offsetof(VexGuestSW64State,guest_f8) ++#define OFFB_f9 offsetof(VexGuestSW64State,guest_f9) ++#define OFFB_f10 offsetof(VexGuestSW64State,guest_f10) ++#define OFFB_f11 offsetof(VexGuestSW64State,guest_f11) ++#define OFFB_f12 offsetof(VexGuestSW64State,guest_f12) ++#define OFFB_f13 offsetof(VexGuestSW64State,guest_f13) ++#define OFFB_f14 offsetof(VexGuestSW64State,guest_f14) ++#define OFFB_f15 offsetof(VexGuestSW64State,guest_f15) ++#define OFFB_f16 offsetof(VexGuestSW64State,guest_f16) ++#define OFFB_f17 offsetof(VexGuestSW64State,guest_f17) ++#define OFFB_f18 offsetof(VexGuestSW64State,guest_f18) ++#define OFFB_f19 offsetof(VexGuestSW64State,guest_f19) ++#define OFFB_f20 offsetof(VexGuestSW64State,guest_f20) ++#define OFFB_f21 offsetof(VexGuestSW64State,guest_f21) ++#define OFFB_f22 offsetof(VexGuestSW64State,guest_f22) ++#define OFFB_f23 offsetof(VexGuestSW64State,guest_f23) ++#define OFFB_f24 offsetof(VexGuestSW64State,guest_f24) ++#define OFFB_f25 offsetof(VexGuestSW64State,guest_f25) ++#define OFFB_f26 offsetof(VexGuestSW64State,guest_f26) ++#define OFFB_f27 offsetof(VexGuestSW64State,guest_f27) ++#define OFFB_f28 offsetof(VexGuestSW64State,guest_f28) ++#define OFFB_f29 offsetof(VexGuestSW64State,guest_f29) ++#define OFFB_f30 offsetof(VexGuestSW64State,guest_f30) ++#define OFFB_f31 offsetof(VexGuestSW64State,guest_f31) ++#define OFFB_FPCR offsetof(VexGuestSW64State,guest_FPCR) ++ ++#define OFFB_EMNOTE offsetof(VexGuestSW64State,guest_EMNOTE) ++#define OFFB_CMSTART offsetof(VexGuestSW64State,guest_CMSTART) ++#define OFFB_CMLEN offsetof(VexGuestSW64State,guest_CMLEN) ++#define OFFB_NRADDR offsetof(VexGuestSW64State,guest_NRADDR) ++ ++#define OFFB_LOCKFLAG offsetof(VexGuestSW64State,guest_LOCKFLAG) ++#define OFFB_LOCKVALID offsetof(VexGuestSW64State,guest_LOCKVALID) ++#define OFFB_LOCKSUCCESS offsetof(VexGuestSW64State,guest_LOCKSUCCESS) ++#define OFFB_LOCKSIZE offsetof(VexGuestSW64State,guest_LOCKSIZE) ++#define OFFB_LOCKADDR offsetof(VexGuestSW64State,guest_LOCKADDR) ++#define OFFB_LOCKDATA offsetof(VexGuestSW64State,guest_LOCKDATA) ++ ++#define OFFB_TID offsetof(VexGuestSW64State, guest_TID) ++ ++/* ---------------- Integer registers ---------------- */ ++ ++static Int offsetIReg ( UInt iregNo ) ++{ ++ switch (iregNo) { ++ case 0: return OFFB_r0; ++ case 1: return OFFB_r1; ++ case 2: return OFFB_r2; ++ case 3: return OFFB_r3; ++ case 4: return OFFB_r4; ++ case 5: return OFFB_r5; ++ case 6: return OFFB_r6; ++ case 7: return OFFB_r7; ++ case 8: return OFFB_r8; ++ case 9: return OFFB_r9; ++ case 10: return OFFB_r10; ++ case 11: return OFFB_r11; ++ case 12: return OFFB_r12; ++ case 13: return OFFB_r13; ++ case 14: return OFFB_r14; ++ case 15: return OFFB_r15; ++ case 16: return OFFB_r16; ++ case 17: return OFFB_r17; ++ case 18: return OFFB_r18; ++ case 19: return OFFB_r19; ++ case 20: return OFFB_r20; ++ case 21: return OFFB_r21; ++ case 22: return OFFB_r22; ++ case 23: return OFFB_r23; ++ case 24: return OFFB_r24; ++ case 25: return OFFB_r25; ++ case 26: return OFFB_r26; ++ case 27: return OFFB_r27; ++ case 28: return OFFB_r28; ++ case 29: return OFFB_r29; ++ case 30: return OFFB_r30; ++ case 31: return OFFB_r31; ++ default: vassert(0); ++ } ++} ++ ++/* ---------------- Float registers ---------------- */ ++ ++static Int offsetFReg ( UInt iregNo ) ++{ ++ switch (iregNo) { ++ case 0: return OFFB_f0; ++ case 1: return OFFB_f1; ++ case 2: return OFFB_f2; ++ case 3: return OFFB_f3; ++ case 4: return OFFB_f4; ++ case 5: return OFFB_f5; ++ case 6: return OFFB_f6; ++ case 7: return OFFB_f7; ++ case 8: return OFFB_f8; ++ case 9: return OFFB_f9; ++ case 10: return OFFB_f10; ++ case 11: return OFFB_f11; ++ case 12: return OFFB_f12; ++ case 13: return OFFB_f13; ++ case 14: return OFFB_f14; ++ case 15: return OFFB_f15; ++ case 16: return OFFB_f16; ++ case 17: return OFFB_f17; ++ case 18: return OFFB_f18; ++ case 19: return OFFB_f19; ++ case 20: return OFFB_f20; ++ case 21: return OFFB_f21; ++ case 22: return OFFB_f22; ++ case 23: return OFFB_f23; ++ case 24: return OFFB_f24; ++ case 25: return OFFB_f25; ++ case 26: return OFFB_f26; ++ case 27: return OFFB_f27; ++ case 28: return OFFB_f28; ++ case 29: return OFFB_f29; ++ case 30: return OFFB_f30; ++ case 31: return OFFB_f31; ++ default: vassert(0); ++ } ++} ++ ++/*------------------------------------------------------------*/ ++/*--- Debugging output ---*/ ++/*------------------------------------------------------------*/ ++ ++#define DIP(format, args...) \ ++ if (vex_traceflags & VEX_TRACE_FE) \ ++ vex_printf(format, ## args) ++ ++#define DIS(buf, format, args...) \ ++ if (vex_traceflags & VEX_TRACE_FE) \ ++ vex_sprintf(buf, format, ## args) ++ ++/*------------------------------------------------------------*/ ++/*--- Helper bits and pieces for deconstructing the ---*/ ++/*--- arm insn stream. ---*/ ++/*------------------------------------------------------------*/ ++ ++/* Do a little-endian load of a 32-bit word, regardless of the ++ endianness of the underlying host. */ ++static inline UInt fetch32 ( const UChar* p ) ++{ ++ UInt w = 0; ++ w = (w << 8) | p[3]; ++ w = (w << 8) | p[2]; ++ w = (w << 8) | p[1]; ++ w = (w << 8) | p[0]; ++ return w; ++} ++ ++/* Sign extend a N-bit value up to 64 bits, by copying ++ bit N-1 into all higher positions. */ ++static ULong SEXT_to_64 ( ULong x, UInt n ) ++{ ++ vassert(n > 1 && n < 64); ++ x <<= (64-n); ++ Long r = (Long)x; ++ r >>= (64-n); ++ return (ULong)r; ++} ++ ++static inline UInt extract(UInt instr, Int l, Int r) ++{ ++ vassert(l >= 0 && l <= 31); ++ vassert(r >= 0 && r <= 31); ++ vassert(l >= r); ++ return (instr << (31 - l)) >> (r + 31 - l); ++} ++ ++/*------------------------------------------------------------*/ ++/*--- Helper bits and pieces for getting imm, ra, rb, disp ---*/ ++/*------------------------ in different intructions format.---*/ ++/*------------------------------------------------------------*/ ++///branch insn format ++ /*|31 26 | 25 21 | 20 0|*/ ++ /*| opcode | ra | disp |*/ ++ ++///load/store insn format ++ /*|31 26 | 25 21 | 20 16| 15 0|*/ ++ /*| opcode | ra | rb | disp |*/ ++ ++///simple calculate insn format ++ /*|31 26 | 25 21 | 20 16| 15 13 |12 5| 4 0|*/ ++ /*| opcode | ra | rb | 000 | function | rc |*/ //register ++ /*| opcode | ra | imm | function | rc |*/ //immediate ++ ++///complex integer calculate insn format ++ /*|31 26 | 25 21 | 20 16| 15 13 |12 10| 9 5 | 4 0 |*/ ++ /*| opcode | ra | rb | 000 | function | rc | rd |*/ //register ++ /*| opcode | ra | imm | function | rc | rd |*/ //immediate ++ ++///complex float calculate insn format ++ /*|31 26 | 25 21 | 20 16| 15 10 |9 5| 4 0|*/ ++ /*| opcode | fa | fb | func | fc | fd |*/ //register ++ /*| opcode | fa | fb | func | imm | fd |*/ //immediate ++ ++/*------------------------------------------------------------*/ ++/*--- Helper bits and pieces for creating IR fragments. ---*/ ++/*------------------------------------------------------------*/ ++ ++static IRExpr* mkU8 ( UInt i ) ++{ ++ vassert(i < 256); ++ return IRExpr_Const(IRConst_U8( (UChar)i )); ++} ++static IRExpr* mkU32 ( UInt i ) ++{ ++ return IRExpr_Const(IRConst_U32(i)); ++} ++static IRExpr* mkU64 ( ULong i ) ++{ ++ return IRExpr_Const(IRConst_U64(i)); ++} ++static IRExpr* mkF64 ( Double i ) ++{ ++ return IRExpr_Const(IRConst_F64(i)); ++} ++/* Generate a new temporary of the given type. */ ++static IRTemp newTemp ( IRType ty ) ++{ ++ vassert(isPlausibleIRType(ty)); ++ return newIRTemp( irsb->tyenv, ty ); ++} ++static IRExpr* mkexpr ( IRTemp tmp ) ++{ ++ return IRExpr_RdTmp(tmp); ++} ++static IRExpr* unop ( IROp op, IRExpr* a ) ++{ ++ return IRExpr_Unop(op, a); ++} ++ ++static IRExpr* binop ( IROp op, IRExpr* a1, IRExpr* a2 ) ++{ ++ return IRExpr_Binop(op, a1, a2); ++} ++ ++static IRExpr* triop ( IROp op, IRExpr* a1, IRExpr* a2, IRExpr* a3 ) ++{ ++ return IRExpr_Triop(op, a1, a2, a3); ++} ++ ++static IRExpr* quaop( IROp op, IRExpr* a1, IRExpr* a2, IRExpr* a3, IRExpr* a4 ) ++{ ++ return IRExpr_Qop(op, a1, a2, a3, a4); ++} ++ ++static IRExpr* mkshiftbits( IRExpr* e ) ++{ ++ vassert(typeOfIRExpr(irsb->tyenv, e) == Ity_I64); ++ return binop(Iop_And8, unop(Iop_64to8, e), mkU8(0x3F)); ++} ++ ++static IRExpr* mkshiftbits32( IRExpr* e ) ++{ ++ vassert(typeOfIRExpr(irsb->tyenv, e) == Ity_I64); ++ return binop(Iop_And8, unop(Iop_64to8, e), mkU8(0x1F)); ++} ++ ++/*------------------------------------------------------------*/ ++/*--- Helper pieces of statement and expression. ---*/ ++/*------------------------------------------------------------*/ ++/* Add a statement to the list held by "irbb". */ ++static void stmt ( IRStmt* st ) ++{ ++ addStmtToIRSB( irsb, st ); ++} ++ ++static void assign ( IRTemp dst, IRExpr* e ) ++{ ++ stmt( IRStmt_WrTmp(dst, e) ); ++} ++ ++static void putPC ( IRExpr* e ) ++{ ++ vassert(typeOfIRExpr(irsb->tyenv, e) == Ity_I64); ++ stmt( IRStmt_Put(OFFB_PC, e) ); ++} ++ ++static IRExpr* getIReg ( UInt iregNo ) ++{ ++ vassert(iregNo < 32); ++ if(iregNo == 31) ++ return mkU64(0); ++ else ++ return IRExpr_Get( offsetIReg(iregNo), Ity_I64 ); ++} ++ ++static void putIReg ( UInt iregNo, IRExpr* e ) ++{ ++ vassert(iregNo < 32); ++ vassert(typeOfIRExpr(irsb->tyenv, e) == Ity_I64); ++ if (iregNo == 31) ++ stmt( IRStmt_NoOp() ); ++ else ++ stmt( IRStmt_Put(offsetIReg(iregNo), e) ); ++} ++ ++static IRExpr* getFReg ( UInt fegNo ) ++{ ++ vassert(fegNo < 32); ++ if(fegNo == 31) ++ return mkF64(0); ++ else ++ return IRExpr_Get( offsetFReg(fegNo), Ity_F64 ); ++} ++ ++static void putFReg ( UInt fegNo, IRExpr* e ) ++{ ++ vassert(fegNo < 32); ++ vassert(typeOfIRExpr(irsb->tyenv, e) == Ity_F64); ++ if (fegNo == 31) ++ stmt( IRStmt_NoOp() ); ++ else ++ stmt( IRStmt_Put(offsetFReg(fegNo), e) ); ++} ++ ++static inline IRExpr* load(IRType ty, IRExpr* addr) ++{ ++ return IRExpr_Load(Iend_LE, ty, addr); ++} ++static inline void store(IRExpr* addr, IRExpr* data) ++{ ++ stmt( IRStmt_Store(Iend_LE, addr, data)); ++} ++ ++/* U-widen 8/16/32/64 bit int expr to 64. */ ++static IRExpr* widenUto64 ( IRType srcTy, IRExpr* e ) ++{ ++ switch (srcTy) { ++ case Ity_I64: return e; ++ case Ity_I32: return unop(Iop_32Uto64, e); ++ case Ity_I16: return unop(Iop_16Uto64, e); ++ case Ity_I8: return unop(Iop_8Uto64, e); ++ default: vpanic("widenUto64(sw64)"); ++ } ++} ++ ++/* Narrow 64 bit int expr to 8/16/32/64. Clearly only some ++ of these combinations make sense. */ ++static IRExpr* narrowFrom64 ( IRType dstTy, IRExpr* e ) ++{ ++ switch (dstTy) { ++ case Ity_I64: return e; ++ case Ity_I32: return unop(Iop_64to32, e); ++ case Ity_I16: return unop(Iop_64to16, e); ++ case Ity_I8: return unop(Iop_64to8, e); ++ default: vpanic("narrowFrom64(sw64)"); ++ } ++} ++ ++static void condexit(IRExpr *cond, Addr iftrue) ++{ ++ vassert(typeOfIRExpr(irsb->tyenv, cond) == Ity_I1); ++ stmt(IRStmt_Exit(cond, ++ Ijk_Boring, ++ IRConst_U64(iftrue), ++ OFFB_PC)); ++} ++ ++/* ++ Check instruction is any one of below ++ 00 f0 fe af stl $r31,-4096(sp) ++ 00 d0 fe af stl $r31,-12288(sp) ++ 00 b0 fe af stl $r31,-20480(sp) ++ 00 90 fe af stl $r31,-28672(sp) ++ ++ Or is this sequence ++ 00 e0 f6 af stl $r31,-8192($r22) ++ 37 21 e0 4a subl $r23,0x1,$r23 ++ 00 e0 d6 fa ldi $r22,-8192($r22) ++ fc ff ff c6 bne $r23,-4 ++ ?? ?? d6 fb ldi sp,-n($r22) ++*/ ++static Bool is_stack_probe(const UChar* instr) ++{ ++ if (fetch32(instr) == 0xaffef000) { ++ return True; ++ } ++ if (fetch32(instr) == 0xaffed000) { ++ return True; ++ } ++ if (fetch32(instr) == 0xaffeb000) { ++ return True; ++ } ++ if (fetch32(instr) == 0xaffe9000) { ++ return True; ++ } ++ ++ if (fetch32(instr + 0) == 0xaff6e000 && ++ fetch32(instr + 4) == 0x4ae02137 && ++ fetch32(instr + 8) == 0xfad6e000 && ++ fetch32(instr + 12) == 0xc6fffffc && ++ fetch32(instr + 16) >> 16 == 0xfbd6) { ++ return True; ++ } ++ ++ return False; ++} ++ ++/* Generate IR for ((x & mask) >>u sh) | ((x << sh) & mask) */ ++static IRTemp math_SWAPHELPER ( IRTemp x, ULong mask, Int sh ) ++{ ++ IRTemp maskT = newTemp(Ity_I64); ++ IRTemp res = newTemp(Ity_I64); ++ vassert(sh >= 1 && sh <= 63); ++ assign(maskT, mkU64(mask)); ++ assign( res, ++ binop(Iop_Or64, ++ binop(Iop_Shr64, ++ binop(Iop_And64,mkexpr(x),mkexpr(maskT)), ++ mkU8(sh)), ++ binop(Iop_And64, ++ binop(Iop_Shl64,mkexpr(x),mkU8(sh)), ++ mkexpr(maskT)) ++ ) ++ ); ++ return res; ++} ++ ++/*------------------------------------------------------------*/ ++/*--- Front-End translate ---*/ ++/*------------------------------------------------------------*/ ++ ++static Bool dis_SW64_syscall(DisResult* dres, UInt insn) ++{ ++ UInt hmc = extract(insn, 7, 0); ++ ++ HChar const *desc; ++ switch (hmc) { ++ case 0x83: desc = "syscall"; break; ++ case 0x9e: desc = "read_unique"; break; ++ case 0x9f: desc = "write_unique"; break; ++ case 0x87: desc = "rwreg"; break; ++ case 0x86: desc = "imb"; break; ++ case 0x81: desc = "bugchk"; break; ++ case 0x80: desc = "bpt"; break; ++ case 0xaa: desc = "gentrap"; break; ++ case 0x02: desc = "draina"; break; ++ case 0x00: desc = "halt"; break; ++ default: return False; ++ } ++ ++ DIP("sys_call 0x%x: %s\n", hmc, desc); ++ ++ switch (hmc) { ++ case 0x83: /* syscall */ ++ putPC(mkU64(guest_PC_curr_instr + 4)); ++ dres->jk_StopHere = Ijk_Sys_syscall; ++ dres->whatNext = Dis_StopHere; ++ break; ++ case 0x9e: /* read_unique: r0 <- unique */ ++ putIReg(0, IRExpr_Get(OFFB_TID, Ity_I64)); ++ break; ++ case 0x9f: /* write_unique: unique <- r16 */ ++ stmt(IRStmt_Put(OFFB_TID, getIReg(16))); ++ break; ++ case 0x86: /* imb */ ++ stmt(IRStmt_MBE(Imbe_Fence)); ++ break; ++ case 0xaa: /* gentrap: raise SIGFPE */ ++ putPC(mkU64(guest_PC_curr_instr + 4)); ++ dres->whatNext = Dis_StopHere; ++ dres->jk_StopHere = Ijk_SigFPE_IntDiv; ++ break; ++ case 0x87: /* rwreg: marked as deprecated */ ++ case 0x81: /* bugchk: not implemented in kernel */ ++ case 0x80: /* bpt: not implemented in kernel */ ++ case 0x02: /* draina: not used and will not be implemented */ ++ case 0x00: /* halt: simply do nothings */ ++ stmt(IRStmt_NoOp()); ++ break; ++ default: ++ return False; ++ } ++ ++ return True; ++} ++ ++static Bool dis_SW64_branch(DisResult* dres, UInt insn) ++{ ++ UInt opcode = extract(insn, 31, 26); ++ UInt ra = extract(insn, 25, 21); ++ UInt disp = extract(insn, 20, 0); ++ UInt longdisp = extract(insn, 25, 0); ++ ++ ULong nextpc = guest_PC_curr_instr + 4; ++ ULong targpc = nextpc + (SEXT_to_64(disp, 21) << 2); ++ HChar const *nm = NULL; ++ IRExpr *cond = NULL; ++ switch(opcode) { ++ case 0x4: ++ nm = "BR"; ++ break; ++ case 0x5: ++ nm = "BSR"; ++ break; ++ case 0x1D: ++ nm = "LBR"; ++ targpc = nextpc + (SEXT_to_64(longdisp, 26) << 2); ++ break; ++ case 0x30: ++ nm = "BEQ"; ++ cond = binop(Iop_CmpEQ64, getIReg(ra), mkU64(0)); ++ break; ++ case 0x31: ++ nm = "BNE"; ++ cond = binop(Iop_CmpNE64, getIReg(ra), mkU64(0)); ++ break; ++ case 0x32: ++ nm = "BLT"; ++ cond = binop(Iop_CmpLT64S, getIReg(ra), mkU64(0)); ++ break; ++ case 0x33: ++ nm = "BLE"; ++ cond = binop(Iop_CmpLE64S, getIReg(ra), mkU64(0)); ++ break; ++ case 0x34: ++ nm = "BGT"; ++ cond = binop(Iop_CmpLT64S, mkU64(0), getIReg(ra)); ++ break; ++ case 0x35: ++ nm = "BGE"; ++ cond = binop(Iop_CmpLE64S, mkU64(0), getIReg(ra)); ++ break; ++ case 0x36: ++ nm = "BLBC"; ++ cond = binop(Iop_CmpEQ64, ++ binop(Iop_And64, getIReg(ra), mkU64(0x1)), mkU64(0)); ++ break; ++ case 0x37: ++ nm = "BLBS"; ++ cond = binop(Iop_CmpNE64, ++ binop(Iop_And64, getIReg(ra), mkU64(0x1)), mkU64(0)); ++ break; ++ case 0x38: ++ nm = "FBEQ"; ++ cond = binop(Iop_CmpFEQ64, getFReg(ra), mkF64(0)); ++ break; ++ case 0x39: ++ nm = "FBNE"; ++ cond = binop(Iop_CmpFNE64, getFReg(ra), mkF64(0)); ++ break; ++ case 0x3a: ++ nm = "FBLT"; ++ cond = binop(Iop_CmpFLT64, getFReg(ra), mkF64(0)); ++ break; ++ case 0x3b: ++ nm = "FBLE"; ++ cond = binop(Iop_CmpFLE64, getFReg(ra), mkF64(0)); ++ break; ++ case 0x3c: ++ nm = "FBGT"; ++ cond = binop(Iop_CmpFGT64, getFReg(ra), mkF64(0)); ++ break; ++ case 0x3d: ++ nm = "FBGE"; ++ cond = binop(Iop_CmpFGE64, getFReg(ra), mkF64(0)); ++ break; ++ default: ++ return False; ++ } ++ ++ /* optmize for 'BR 0' : no need to branch, just read PC */ ++ if (!cond && nextpc == targpc && opcode != 0x1D) { ++ DIP("%s r%u 0x%llx (READ PC)\n", nm, ra, targpc); ++ putIReg(ra, mkU64(nextpc)); ++ return True; ++ } ++ ++ if (opcode != 0x1D) { ++ DIP("%s r%u 0x%llx\n", nm, ra, targpc); ++ } else { ++ DIP("%s 0x%llx\n", nm, targpc); ++ } ++ ++ if (cond) { ++ /* condiction branch */ ++ condexit(cond, targpc); ++ putPC(mkU64(nextpc)); ++ } else { ++ /* uncondction branch */ ++ if (opcode != 0x1D) { ++ putIReg(ra, mkU64(nextpc)); ++ } ++ putPC(mkU64(targpc)); ++ } ++ ++ dres->whatNext = Dis_StopHere; ++ dres->jk_StopHere = Ijk_Boring; ++ return True; ++} ++ ++static Bool dis_SW64_jump(DisResult* dres, UInt insn) ++{ ++ UInt opcode = extract(insn, 31, 26); ++ UInt ra = extract(insn, 25, 21); ++ UInt rb = extract(insn, 20, 16); ++ ULong nextpc = guest_PC_curr_instr + 4; ++ ++ HChar const *nm; ++ IRJumpKind jk; ++ switch (opcode) { ++ case 0x1: ++ nm = "CALL"; ++ jk = Ijk_Call; ++ break; ++ case 0x2: ++ nm = "RET"; ++ jk = Ijk_Ret; ++ break; ++ case 0x3: ++ nm = "JMP"; ++ jk = Ijk_Boring; ++ break; ++ default: ++ return False; ++ } ++ ++ DIP("%s r%u, (r%u)\n", nm, ra, rb); ++ ++ /* ra 与 rb 可能指定了同一个寄存器,需将 rb 的运算结果保存至 IRTemp 后, ++ 才可更新 ra 的值,否则后续 PC 值不正确 */ ++ IRTemp vaddr = newTemp(Ity_I64); ++ assign(vaddr, binop(Iop_And64, ++ getIReg(rb), ++ unop(Iop_Not64, mkU64(0x3)))); ++ ++ putIReg(ra, mkU64(nextpc)); ++ putPC(mkexpr(vaddr)); ++ ++ dres->whatNext = Dis_StopHere; ++ dres->jk_StopHere = jk; ++ return True; ++} ++ ++static Bool dis_SW64_load_imm(DisResult* dres, UInt insn) ++{ ++ UInt opcode = extract(insn, 31, 26); ++ UInt ra = extract(insn, 25, 21); ++ UInt rb = extract(insn, 20, 16); ++ UInt disp = extract(insn, 15, 0); ++ ++ HChar const *nm; ++ ULong imm; ++ switch (opcode) { ++ case 0x3E: nm = "LDI"; imm = SEXT_to_64(disp, 16); break; ++ case 0x3F: nm = "LDIH"; imm = SEXT_to_64(disp, 16) << 16; break; ++ default: return False; ++ } ++ ++ DIP("%s r%u, 0x%x(r%u)\n", nm, ra, disp, rb); ++ ++ putIReg(ra, binop(Iop_Add64, getIReg(rb), mkU64(imm))); ++ return True; ++} ++ ++static Bool dis_SW64_integer_load(UInt opcode, UInt ra, UInt rb, UInt disp, ++ Bool autoinc) ++{ ++ IROp widen; ++ Bool align; ++ HChar const *nm; ++ IRType ity; ++ if (autoinc) { ++ switch (opcode) { ++ case 0x0: nm = "LDBU_A"; ity = Ity_I8; widen = Iop_8Uto64; align = True; break; ++ case 0x1: nm = "LDHU_A"; ity = Ity_I16; widen = Iop_16Uto64; align = True; break; ++ case 0x2: nm = "LDW_A"; ity = Ity_I32; widen = Iop_32Sto64; align = True; break; ++ case 0x3: nm = "LDL_A"; ity = Ity_I64; widen = Iop_INVALID; align = True; break; ++ default: return False; ++ } ++ } else { ++ switch (opcode) { ++ case 0x20: nm = "LDBU"; ity = Ity_I8; widen = Iop_8Uto64; align = True; break; ++ case 0x21: nm = "LDHU"; ity = Ity_I16; widen = Iop_16Uto64; align = True; break; ++ case 0x22: nm = "LDW"; ity = Ity_I32; widen = Iop_32Sto64; align = True; break; ++ case 0x23: nm = "LDL"; ity = Ity_I64; widen = Iop_INVALID; align = True; break; ++ case 0x24: nm = "LDL_U"; ity = Ity_I64; widen = Iop_INVALID; align = False; break; ++ default: return False; ++ } ++ } ++ ++ if (ra == 31 && !autoinc) { ++ DIP("%s r%u, 0x%x(r%u) (Ra == 31, NOP)\n", nm, ra, disp, rb); ++ stmt( IRStmt_NoOp() ); ++ return True; ++ } ++ ++ DIP("%s r%u, 0x%x(r%u)\n", nm, ra, disp, rb); ++ ++ IRExpr *vaddr; ++ if (autoinc) { ++ vaddr = getIReg(rb); ++ } else { ++ vaddr = binop(Iop_Add64, ++ getIReg(rb), ++ mkU64(SEXT_to_64(disp, 16))); ++ } ++ ++ if (!align) { ++ vaddr = binop(Iop_And64, vaddr, unop(Iop_Not64, mkU64(0x7))); ++ } ++ ++ IRExpr *e = load(ity, vaddr); ++ ++ if (widen != Iop_INVALID) { ++ e = unop(widen, e); ++ } ++ ++ putIReg(ra, e); ++ ++ if (autoinc) { ++ putIReg(rb, binop(Iop_Add64, getIReg(rb), mkU64(SEXT_to_64(disp, 12)))); ++ } ++ ++ return True; ++} ++ ++static Bool dis_SW64_integer_store(UInt opcode, UInt ra, UInt rb, UInt disp, ++ Bool autoinc) ++{ ++ IRType ity; ++ Bool align; ++ HChar const *nm; ++ if (autoinc) { ++ switch (opcode) { ++ case 0x6: nm = "STB_A"; ity = Ity_I8; align = True; break; ++ case 0x7: nm = "STH_A"; ity = Ity_I16; align = True; break; ++ case 0x8: nm = "STW_A"; ity = Ity_I32; align = True; break; ++ case 0x9: nm = "STL_A"; ity = Ity_I64; align = True; break; ++ default: return False; ++ } ++ } else { ++ switch (opcode) { ++ case 0x28: nm = "STB"; ity = Ity_I8; align = True; break; ++ case 0x29: nm = "STH"; ity = Ity_I16; align = True; break; ++ case 0x2A: nm = "STW"; ity = Ity_I32; align = True; break; ++ case 0x2B: nm = "STL"; ity = Ity_I64; align = True; break; ++ case 0x2C: nm = "STL_U"; ity = Ity_I64; align = False; break; ++ default: return False; ++ } ++ } ++ ++ if (!autoinc && is_stack_probe((const UChar *)guest_PC_curr_instr)) { ++ DIP("STL r%u, 0x%x(r%u) (stack probe, ignored)\n", ra, disp, rb); ++ stmt(IRStmt_NoOp()); ++ return True; ++ } ++ ++ DIP("%s r%u, 0x%x(r%u)\n", nm, ra, disp, rb); ++ ++ IRExpr *vaddr; ++ if (autoinc) { ++ vaddr = getIReg(rb); ++ } else { ++ vaddr = binop(Iop_Add64, ++ getIReg(rb), ++ mkU64(SEXT_to_64(disp, 16))); ++ } ++ ++ if (!align) { ++ vaddr = binop(Iop_And64, vaddr, unop(Iop_Not64, mkU64(0x7))); ++ } ++ ++ store(vaddr, narrowFrom64(ity, getIReg(ra))); ++ ++ if (autoinc) { ++ putIReg(rb, binop(Iop_Add64, getIReg(rb), mkU64(SEXT_to_64(disp, 12)))); ++ } ++ ++ return True; ++} ++ ++static Bool dis_SW64_float_load(UInt opcode, UInt fa, UInt rb, UInt disp, ++ Bool autoinc) ++{ ++ IRType ty; ++ HChar const *nm; ++ if (autoinc) { ++ switch (opcode) { ++ case 0x4: nm = "FLDS_A"; ty = Ity_F32; break; ++ case 0x5: nm = "FLDD_A"; ty = Ity_F64; break; ++ default: return False; ++ } ++ } else { ++ switch (opcode) { ++ case 0x26: nm = "FLDS"; ty = Ity_F32; break; ++ case 0x27: nm = "FLDD"; ty = Ity_F64; break; ++ default: return False; ++ } ++ } ++ ++ if (!autoinc && fa == 31) { ++ DIP("%s f%u, 0x%x(r%u) (Fa == 31, NOP)\n", nm, fa, disp, rb); ++ stmt( IRStmt_NoOp() ); ++ return True; ++ } ++ ++ DIP("%s f%u, 0x%x(r%u)\n", nm, fa, disp, rb); ++ ++ IRExpr *vaddr; ++ if (autoinc) { ++ vaddr = getIReg(rb); ++ } else { ++ vaddr = binop(Iop_Add64, ++ getIReg(rb), ++ mkU64(SEXT_to_64(disp, 16))); ++ } ++ ++ IRExpr *e = (ty == Ity_F32) ? unop(Iop_F32toF64, load(Ity_F32, vaddr)) : ++ (ty == Ity_F64) ? load(Ity_F64, vaddr) : ++ (vassert(0), NULL); ++ ++ putFReg(fa, e); ++ ++ if (autoinc) { ++ putIReg(rb, binop(Iop_Add64, getIReg(rb), mkU64(SEXT_to_64(disp, 12)))); ++ } ++ ++ return True; ++} ++ ++static Bool dis_SW64_float_store(UInt opcode, UInt fa, UInt rb, UInt disp, ++ Bool autoinc) ++{ ++ IRType ty; ++ HChar const *nm; ++ if (autoinc) { ++ switch (opcode) { ++ case 0xA: nm = "FSTS_A"; ty = Ity_F32; break; ++ case 0xB: nm = "FSTD_A"; ty = Ity_F64; break; ++ default: return False; ++ } ++ } else { ++ switch (opcode) { ++ case 0x2E: nm = "FSTS"; ty = Ity_F32; break; ++ case 0x2F: nm = "FSTD"; ty = Ity_F64; break; ++ default: return False; ++ } ++ } ++ ++ DIP("%s f%u, 0x%x(r%u)\n", nm, fa, disp, rb); ++ ++ IRExpr *vaddr; ++ if (autoinc) { ++ vaddr = getIReg(rb); ++ } else { ++ vaddr = binop(Iop_Add64, ++ getIReg(rb), ++ mkU64(SEXT_to_64(disp, 16))); ++ } ++ ++ IRExpr *e = (ty == Ity_F32) ? unop(Iop_TruncF64asF32, getFReg(fa)) : ++ (ty == Ity_F64) ? getFReg(fa) : ++ (vassert(0), NULL); ++ ++ store(vaddr, e); ++ ++ if (autoinc) { ++ putIReg(rb, binop(Iop_Add64, getIReg(rb), mkU64(SEXT_to_64(disp, 12)))); ++ } ++ ++ return True; ++} ++ ++static Bool dis_SW64_nc_load(UInt func, UInt ra, UInt rb, UInt uimm12) ++{ ++ IRExpr *vaddr = binop(Iop_Add64, ++ getIReg(rb), ++ mkU64(SEXT_to_64(uimm12, 12))); ++ switch (func) { ++ case 0xa: ++ DIP("LDW_NC r%u, 0x%x(r%u)\n", ra, uimm12, rb); ++ putIReg(ra, unop(Iop_32Sto64, load(Ity_I32, vaddr))); ++ return True; ++ case 0xb: ++ DIP("LDL_NC r%u, 0x%x(r%u)\n", ra, uimm12, rb); ++ putIReg(ra, load(Ity_I64, vaddr)); ++ return True; ++ case 0xc: ++ DIP("LDD_NC f%u, 0x%x(r%u)\n", ra, uimm12, rb); ++ putFReg(ra, load(Ity_F64, vaddr)); ++ return True; ++ default: ++ return False; ++ } ++} ++ ++static Bool dis_SW64_nc_store(UInt func, UInt ra, UInt rb, UInt uimm12) ++{ ++ IRExpr *vaddr = binop(Iop_Add64, ++ getIReg(rb), ++ mkU64(SEXT_to_64(uimm12, 12))); ++ switch (func) { ++ case 0xd: ++ DIP("STW_NC r%u, 0x%x(r%u)\n", ra, uimm12, rb); ++ store(vaddr, unop(Iop_64to32, getIReg(ra))); ++ return True; ++ case 0xe: ++ DIP("STL_NC r%u, 0x%x(r%u)\n", ra, uimm12, rb); ++ store(vaddr, getIReg(ra)); ++ return True; ++ case 0xf: ++ DIP("STD_NC f%u, 0x%x(r%u)\n", ra, uimm12, rb); ++ store(vaddr, getFReg(ra)); ++ return True; ++ default: ++ return False; ++ } ++} ++ ++static Bool dis_SW64_integer_add_sub(UInt opcode, UInt func, UInt ra, UInt rb, ++ UInt rc, UInt uimm8) ++{ ++ IROp iop; ++ UInt width, sbits; ++ HChar const *nm; ++ switch (func) { ++ case 0x0: iop = Iop_Add32; width = 32; sbits = 0; nm = "ADDW"; break; ++ case 0x1: iop = Iop_Sub32; width = 32; sbits = 0; nm = "SUBW"; break; ++ case 0x2: iop = Iop_Add32; width = 32; sbits = 2; nm = "S4ADDW"; break; ++ case 0x3: iop = Iop_Sub32; width = 32; sbits = 2; nm = "S4SUBW"; break; ++ case 0x4: iop = Iop_Add32; width = 32; sbits = 3; nm = "S8ADDW"; break; ++ case 0x5: iop = Iop_Sub32; width = 32; sbits = 3; nm = "S8SUBW"; break; ++ case 0x8: iop = Iop_Add64; width = 64; sbits = 0; nm = "ADDL"; break; ++ case 0x9: iop = Iop_Sub64; width = 64; sbits = 0; nm = "SUBL"; break; ++ case 0xA: iop = Iop_Add64; width = 64; sbits = 2; nm = "S4ADDL"; break; ++ case 0xB: iop = Iop_Sub64; width = 64; sbits = 2; nm = "S4SUBL"; break; ++ case 0xC: iop = Iop_Add64; width = 64; sbits = 3; nm = "S8ADDL"; break; ++ case 0xD: iop = Iop_Sub64; width = 64; sbits = 3; nm = "S8SUBL"; break; ++ default: return False; ++ } ++ ++ IRExpr *rbv; ++ if (opcode == 0x10) { ++ DIP("%s r%u, r%u, r%u\n", nm, ra, rb, rc); ++ rbv = getIReg(rb); ++ } else if (opcode == 0x12) { ++ DIP("%s r%u, %u, r%u\n", nm, ra, uimm8, rc); ++ rbv = mkU64(uimm8); ++ } else { ++ return False; ++ } ++ ++ IRExpr *rav = getIReg(ra); ++ if (sbits) ++ rav = binop(Iop_Shl64, rav, mkU8(sbits)); ++ ++ if (width == 64) ++ putIReg(rc, binop(iop, rav, rbv)); ++ else ++ putIReg(rc, unop(Iop_32Sto64, ++ binop(iop, ++ unop(Iop_64to32, rav), ++ unop(Iop_64to32, rbv)))); ++ ++ return True; ++} ++ ++static Bool dis_SW64_integer_mul(UInt opcode, UInt func, UInt ra, UInt rb, ++ UInt rc, UInt uimm8) ++{ ++ IRExpr *rbv; ++ if (opcode == 0x10) { ++ rbv = getIReg(rb); ++ } else if (opcode == 0x12) { ++ rbv = mkU64(uimm8); ++ } else { ++ return False; ++ } ++ ++ const HChar *nm; ++ IRExpr *expr; ++ switch(func) { ++ case 0x10: ++ nm = "MULW"; ++ expr = unop(Iop_32Sto64, binop(Iop_Mul32, ++ unop(Iop_64to32, getIReg(ra)), ++ unop(Iop_64to32, rbv))); ++ break; ++ case 0x18: ++ nm = "MULL"; ++ expr = binop(Iop_Mul64, getIReg(ra), rbv); ++ break; ++ case 0x19: ++ nm = "UMULH"; ++ expr = unop(Iop_128HIto64, binop(Iop_MullU64, ++ getIReg(ra), ++ rbv)); ++ break; ++ default: ++ return False; ++ } ++ ++ if (opcode == 0x10) { ++ DIP("%s r%u, r%u, r%u\n", nm, ra, rb, rc); ++ } else { ++ DIP("%s r%u, %u, r%u\n", nm, ra, uimm8, rc); ++ } ++ ++ putIReg(rc, expr); ++ return True; ++} ++ ++static Bool dis_SW64_integer_div(UInt func, UInt ra, UInt rb, UInt rc) ++{ ++ const HChar *nm; ++ IRExpr *expr; ++ switch(func) { ++ case 0x11: ++ nm = "DIVW"; ++ expr = unop(Iop_32Sto64, binop(Iop_DivS32, ++ unop(Iop_64to32, getIReg(ra)), ++ unop(Iop_64to32, getIReg(rb)))); ++ break; ++ case 0x12: ++ nm = "UDIVW"; ++ expr = unop(Iop_32Uto64, binop(Iop_DivU32, ++ unop(Iop_64to32, getIReg(ra)), ++ unop(Iop_64to32, getIReg(rb)))); ++ break; ++ case 0x13: ++ nm = "REMW"; ++ expr = unop(Iop_32Sto64, unop(Iop_64HIto32, ++ binop(Iop_DivModS32to32, ++ unop(Iop_64to32, getIReg(ra)), ++ unop(Iop_64to32, getIReg(rb))))); ++ break; ++ case 0x14: ++ nm = "UREMW"; ++ expr = unop(Iop_32Uto64, unop(Iop_64HIto32, ++ binop(Iop_DivModU32to32, ++ unop(Iop_64to32, getIReg(ra)), ++ unop(Iop_64to32, getIReg(rb))))); ++ break; ++ case 0x1A: ++ nm = "DIVL"; ++ expr = binop(Iop_DivS64, getIReg(ra), getIReg(rb)); ++ break; ++ case 0x1B: ++ nm = "UDIVL"; ++ expr = binop(Iop_DivU64, getIReg(ra), getIReg(rb)); ++ break; ++ case 0x1C: ++ nm = "REML"; ++ expr = unop(Iop_128HIto64, binop(Iop_DivModS64to64, getIReg(ra), getIReg(rb))); ++ break; ++ case 0x1D: ++ nm = "UREML"; ++ expr = unop(Iop_128HIto64, binop(Iop_DivModU64to64, getIReg(ra), getIReg(rb))); ++ break; ++ default: ++ return False; ++ } ++ ++ DIP("%s r%u, r%u, r%u\n", nm, ra, rb, rc); ++ putIReg(rc, expr); ++ return True; ++} ++ ++static Bool dis_SW64_addpi(UInt func, UInt rc, UInt imm13) ++{ ++ const HChar *nm; ++ IRExpr *expr; ++ ULong nextpc = guest_PC_curr_instr + 4; ++ ULong simm13 = SEXT_to_64(imm13, 13); ++ switch (func) { ++ case 0x1E: ++ nm = "ADDPI"; ++ expr = binop(Iop_Add64, ++ mkU64(nextpc), ++ binop(Iop_Shl64, mkU64(simm13), mkU8(2))); ++ break; ++ case 0x1F: ++ nm = "ADDPIS"; ++ expr = binop(Iop_Add64, ++ mkU64(nextpc & ~0xFFFFULL), ++ binop(Iop_Shl64, mkU64(simm13), mkU8(16))); ++ break; ++ default: return False; ++ } ++ ++ DIP("%s %u r%u\n", nm, imm13, rc); ++ putIReg(rc, expr); ++ return True; ++} ++ ++static Bool dis_SW64_crc32(UInt func, UInt ra, UInt rb, UInt rc) ++{ ++ HChar const *nm; ++ ULong (*fp)(ULong, ULong); ++ switch (func) { ++ case 0x20: nm = "CRC32B"; fp = &sw64_dirtyhelper_calc_crc32b; break; ++ case 0x21: nm = "CRC32H"; fp = &sw64_dirtyhelper_calc_crc32h; break; ++ case 0x22: nm = "CRC32W"; fp = &sw64_dirtyhelper_calc_crc32w; break; ++ case 0x23: nm = "CRC32L"; fp = &sw64_dirtyhelper_calc_crc32l; break; ++ case 0x24: nm = "CRC32CB"; fp = &sw64_dirtyhelper_calc_crc32cb; break; ++ case 0x25: nm = "CRC32CH"; fp = &sw64_dirtyhelper_calc_crc32ch; break; ++ case 0x26: nm = "CRC32CW"; fp = &sw64_dirtyhelper_calc_crc32cw; break; ++ case 0x27: nm = "CRC32CL"; fp = &sw64_dirtyhelper_calc_crc32cl; break; ++ default: return False; ++ } ++ ++ DIP("%s r%u, r%u, r%u\n", nm, ra, rb, rc); ++ ++ IRTemp dst = newTemp(Ity_I64); ++ stmt(IRStmt_Dirty(unsafeIRDirty_1_N(dst, 0, nm, fp, ++ mkIRExprVec_2(getIReg(ra), getIReg(rb))))); ++ ++ putIReg(rc, mkexpr(dst)); ++ return True; ++} ++ ++static Bool dis_SW64_integer_cmp(UInt opcode, UInt func, UInt ra, UInt rb, ++ UInt rc, UInt uimm8) ++{ ++ IROp iop; ++ HChar const *nm; ++ switch (func) { ++ case 0x28: iop = Iop_CmpEQ64; nm = "CMPEQ"; break; ++ case 0x29: iop = Iop_CmpLT64S; nm = "CMPLT"; break; ++ case 0x2A: iop = Iop_CmpLE64S; nm = "CMPLE"; break; ++ case 0x2B: iop = Iop_CmpLT64U; nm = "CMPULT"; break; ++ case 0x2C: iop = Iop_CmpLE64U; nm = "CMPULE"; break; ++ default: return False; ++ } ++ ++ IRExpr *rbv; ++ if (opcode == 0x10) { ++ DIP("%s r%u, r%u, r%u\n", nm, ra, rb, rc); ++ rbv = getIReg(rb); ++ } else if (opcode == 0x12) { ++ DIP("%s r%u, %u, r%u\n", nm, ra, uimm8, rc); ++ rbv = mkU64(uimm8); ++ } else { ++ return False; ++ } ++ ++ putIReg(rc, unop(Iop_1Uto64, binop(iop, getIReg(ra), rbv))); ++ return True; ++} ++ ++static Bool dis_SW64_bit_setclear(UInt opcode, UInt func, UInt ra, UInt rb, ++ UInt rc, UInt uimm8) ++{ ++ IRExpr *rbv; ++ if (opcode == 0x10) { ++ rbv = getIReg(rb); ++ } else if (opcode == 0x12) { ++ rbv = mkU64(uimm8); ++ } else { ++ return False; ++ } ++ ++ const HChar *nm; ++ UInt not; ++ IROp iop; ++ switch(func) { ++ case 0x2D: nm = "SBT"; iop = Iop_Or64; not = 0; break; ++ case 0x2E: nm = "CBT"; iop = Iop_And64; not = 1; break; ++ default: return False; ++ } ++ ++ IRExpr *mask = binop(Iop_Shl64, mkU64(1), mkshiftbits(rbv)); ++ if (not) { ++ mask = unop(Iop_Not64, mask); ++ } ++ ++ if (opcode == 0x10) { ++ DIP("%s r%u, r%u, r%u\n", nm, ra, rb, rc); ++ } else { ++ DIP("%s r%u, %u, r%u\n", nm, ra, uimm8, rc); ++ } ++ ++ putIReg(rc, binop(iop, getIReg(ra), mask)); ++ return True; ++} ++ ++static Bool dis_SW64_bits_logical(UInt opcode, UInt func, UInt ra, UInt rb, ++ UInt rc, UInt uimm8) ++{ ++ IRExpr *rbv; ++ if (opcode == 0x10) { ++ rbv = getIReg(rb); ++ } else if (opcode == 0x12) { ++ rbv = mkU64(uimm8); ++ } else { ++ return False; ++ } ++ ++ const HChar *nm; ++ UInt not; ++ IROp iop; ++ switch(func) { ++ case 0x38: nm = "AND"; iop = Iop_And64; not = 0; break; ++ case 0x39: nm = "BIC"; iop = Iop_And64; not = 1; break; ++ case 0x3A: nm = "BIS"; iop = Iop_Or64; not = 0; break; ++ case 0x3B: nm = "ORNOT"; iop = Iop_Or64; not = 1; break; ++ case 0x3C: nm = "XOR"; iop = Iop_Xor64; not = 0; break; ++ case 0x3D: nm = "EQV"; iop = Iop_Xor64; not = 1; break; ++ default: return False; ++ } ++ ++ if (not) { ++ rbv = unop(Iop_Not64, rbv); ++ } ++ ++ if (opcode == 0x10) { ++ DIP("%s r%u, r%u, r%u\n", nm, ra, rb, rc); ++ } else { ++ DIP("%s r%u, %u, r%u\n", nm, ra, uimm8, rc); ++ } ++ ++ putIReg(rc, binop(iop, getIReg(ra), rbv)); ++ return True; ++} ++ ++ ++static Bool dis_SW64_bits_shift(UInt opcode, UInt func, UInt ra, UInt rb, ++ UInt rc, UInt uimm8) ++{ ++ const HChar *nm; ++ IROp iop; ++ Int bits; ++ switch (func) { ++ case 0x48: iop = Iop_Shl64; bits = 64; nm = "SLL"; break; ++ case 0x49: iop = Iop_Shr64; bits = 64; nm = "SRL"; break; ++ case 0x4A: iop = Iop_Sar64; bits = 64; nm = "SRA"; break; ++ case 0x4B: iop = Iop_INVALID; bits = -1; nm = "ROLL"; break; ++ case 0x4C: iop = Iop_Shl32; bits = 32; nm = "SLLW"; break; ++ case 0x4D: iop = Iop_Shr32; bits = 32; nm = "SRLW"; break; ++ case 0x4E: iop = Iop_Sar32; bits = 32; nm = "SRAW"; break; ++ case 0x4F: iop = Iop_INVALID; bits = -1; nm = "ROLW"; break; ++ default: return False; ++ } ++ ++ IRExpr *rbv; ++ if (opcode == 0x10) { ++ DIP("%s r%u, r%u, r%u\n", nm, ra, rb, rc); ++ rbv = getIReg(rb); ++ } else if (opcode == 0x12) { ++ DIP("%s r%u, %u, r%u\n", nm, ra, uimm8, rc); ++ rbv = mkU64(uimm8); ++ } else { ++ return False; ++ } ++ ++ if (func == 0x4B) { ++ putIReg(rc, binop(Iop_Or64, ++ binop(Iop_Shl64, getIReg(ra), mkshiftbits(rbv)), ++ binop(Iop_Shr64, getIReg(ra), mkshiftbits(binop(Iop_Sub64, mkU64(0), rbv))))); ++ } else if (func == 0x4F) { ++ putIReg(rc, unop(Iop_32Sto64, ++ binop(Iop_Or32, ++ binop(Iop_Shl32, ++ unop(Iop_64to32, getIReg(ra)), ++ mkshiftbits32(rbv)), ++ binop(Iop_Shr32, ++ unop(Iop_64to32, getIReg(ra)), ++ mkshiftbits32(binop(Iop_Sub64, mkU64(0), rbv)))))); ++ } else { ++ if (bits == 64) { ++ putIReg(rc, binop(iop, getIReg(ra), mkshiftbits(rbv))); ++ } else { ++ putIReg(rc, unop(Iop_32Sto64, binop(iop, unop(Iop_64to32, getIReg(ra)), mkshiftbits32(rbv)))); ++ } ++ } ++ ++ return True; ++} ++ ++ ++static Bool dis_SW64_bits_pop(UInt opcode, UInt func, UInt ra, UInt rb, ++ UInt rc, UInt uimm8) ++{ ++ if (opcode != 0x10) /* no immediate version for those instructions */ ++ return False; ++ ++ const HChar *nm; ++ IROp iop; ++ switch (func) { ++ case 0x58: iop = Iop_PopCount64; nm = "CTPOP"; break; ++ case 0x59: iop = Iop_ClzNat64; nm = "CTLZ"; break; ++ case 0x5A: iop = Iop_CtzNat64; nm = "CTTZ"; break; ++ default: return False; ++ } ++ ++ DIP("%s r%u, r%u\n", nm, rb, rc); ++ ++ putIReg(rc, unop(iop, getIReg(rb))); ++ return True; ++} ++ ++ ++static Bool dis_SW64_byte_swap(UInt func, UInt rb, UInt rc) ++{ ++ const HChar *nm; ++ UInt sz; ++ switch (func) { ++ case 0x5B: sz = 16; nm = "REVBH"; break; ++ case 0x5C: sz = 32; nm = "REVBW"; break; ++ case 0x5D: sz = 64; nm = "REVBL"; break; ++ default: return False; ++ } ++ ++ DIP("%s r%u, r%u\n", nm, rb, rc); ++ ++ IRTemp val = newTemp(Ity_I64); ++ assign(val, getIReg(rb)); ++ ++ if (sz == 16) { ++ val = math_SWAPHELPER(val, 0xFF00, 8); ++ } else if (sz == 32) { ++ val = math_SWAPHELPER(val, 0xFF00FF00ULL, 8); ++ val = math_SWAPHELPER(val, 0xFFFF0000ULL, 16); ++ } else if (sz == 64) { ++ val = math_SWAPHELPER(val, 0xFF00FF00FF00FF00ULL, 8); ++ val = math_SWAPHELPER(val, 0xFFFF0000FFFF0000ULL, 16); ++ val = math_SWAPHELPER(val, 0xFFFFFFFF00000000ULL, 32); ++ } else { ++ vassert(0); ++ } ++ ++ if (sz == 32) { ++ /* result of REVBW require sign-extended */ ++ putIReg(rc, unop(Iop_32Sto64, narrowFrom64(Ity_I32, mkexpr(val)))); ++ } else { ++ putIReg(rc, mkexpr(val)); ++ } ++ return True; ++} ++ ++static Bool dis_SW64_bits_zap(UInt opcode, UInt func, UInt ra, UInt rb, ++ UInt rc, UInt uimm8) ++{ ++ static const HChar* nms[5] = {"ZAP", "ZAPNOT", "SEXTB", "SEXTH", "CMPGEB"}; ++ if (func < 0x68 || func > 0x6c) ++ return False; ++ ++ IRExpr *rbv; ++ if (opcode == 0x10) { ++ DIP("%s r%u, r%u, r%u\n", nms[func - 0x68], ra, rb, rc); ++ rbv = getIReg(rb); ++ } else if (opcode == 0x12) { ++ DIP("%s r%u, %u, r%u\n", nms[func - 0x68], ra, uimm8, rc); ++ rbv = mkU64(uimm8); ++ } else { ++ return False; ++ } ++ ++ /* fast path for: ++ ZAPNOT Ra, 0xf, Rc ++ ZAPNOT Ra, 0x3, Rc ++ ZAPNOT Ra, 0x1, Rc ++ */ ++ if (func == 0x69 && opcode == 0x12 && ++ (uimm8 == 0xf || uimm8 == 0x3 || uimm8 == 0x1)) { ++ ++ IRExpr *rav = getIReg(ra); ++ IRExpr *e; ++ switch (uimm8) { ++ case 0xf: e = unop(Iop_32Uto64, unop(Iop_64to32, rav)); break; ++ case 0x3: e = unop(Iop_16Uto64, unop(Iop_64to16, rav)); break; ++ case 0x1: e = unop(Iop_8Uto64, unop(Iop_64to8, rav)); break; ++ default: return False; ++ } ++ putIReg(rc, e); ++ return True; ++ } ++ ++ switch (func) { ++ /* ZAP ZAPNOT */ ++ case 0x68: ++ case 0x69: { ++ /* ++ if x > 0 and x <= 0x7F, ++ x<<42 | x<<35 | x<<28 | x<<21 | x<<14 | x<<7 | x ++ is equal to ++ x<<42 + x<<35 + x<<28 + x<<21 + x<<14 + x<<7 + x ++ is equal to ++ x*2^42 + x*2^35 + x*2^28 + x*2^21 + x*2^14 + x*2^7 + x ++ is equal to ++ x * (2^42 + 2^35 + 2^28 + 2^21 + 2^14 + 2^7 + 1) ++ is equal to ++ x * 4432676798593 ++ */ ++ IRTemp t0 = newTemp(Ity_I64); ++ assign(t0, binop(Iop_And64, ++ mkU64(0x0101010101010101ULL), ++ binop(Iop_Or64, ++ binop(Iop_Shl64, ++ rbv, ++ mkU8(49)), ++ binop(Iop_Mul64, ++ mkU64(4432676798593ULL), ++ binop(Iop_And64, ++ mkU64(0x7F), ++ rbv))))); ++ ++ IRTemp t1 = newTemp(Ity_I64); ++ assign(t1, binop(Iop_Or64, ++ mkexpr(t0), ++ binop(Iop_Shl64, ++ mkexpr(t0), ++ mkU8(1)))); ++ ++ IRTemp t2 = newTemp(Ity_I64); ++ assign(t2, binop(Iop_Or64, ++ mkexpr(t1), ++ binop(Iop_Shl64, ++ mkexpr(t1), ++ mkU8(2)))); ++ ++ IRExpr *e = binop(Iop_Or64, ++ mkexpr(t2), ++ binop(Iop_Shl64, ++ mkexpr(t2), ++ mkU8(4))); ++ ++ if (func == 0x68) ++ e = unop(Iop_Not64, e); /* ZAP */ ++ ++ putIReg(rc, binop(Iop_And64, getIReg(ra), e)); ++ return True; ++ } ++ ++ /* SEXTB */ ++ case 0x6A: { ++ putIReg(rc, unop(Iop_8Sto64, unop(Iop_64to8, rbv))); ++ return True; ++ } ++ ++ /* SEXTH */ ++ case 0x6B: { ++ putIReg(rc, unop(Iop_16Sto64, unop(Iop_64to16, rbv))); ++ return True; ++ } ++ ++ /* CMPGEB */ ++ case 0x6C: { ++ IRTemp res = newTemp(Ity_I64); ++ assign(res, mkU64(0)); ++ for(int i=0; i<8; i++) ++ { ++ IRTemp tmp = newTemp(Ity_I64); ++ assign(tmp, binop(Iop_Or64, mkexpr(res), ++ binop(Iop_Shl64, ++ unop(Iop_1Uto64, binop(Iop_CmpLE64U, ++ binop(Iop_And64, rbv, mkU64(0xFFULL << (i * 8))), ++ binop(Iop_And64, getIReg(ra), mkU64(0xFFULL << (i * 8))))), ++ mkU8(i)))); ++ res = tmp; ++ } ++ putIReg(rc, mkexpr(res)); ++ return True; ++ } ++ ++ default: ++ return False; ++ } ++} ++ ++ ++static Bool dis_SW64_bits_insert(UInt opcode, UInt func, UInt ra, UInt rb, ++ UInt rc, UInt uimm8) ++{ ++ Bool toleft; ++ UInt sz; ++ const HChar *nm; ++ switch (func) { ++ case 0x40: toleft = True; sz = 8; nm = "INSLB"; break; ++ case 0x41: toleft = True; sz = 16; nm = "INSLH"; break; ++ case 0x42: toleft = True; sz = 32; nm = "INSLW"; break; ++ case 0x43: toleft = True; sz = 64; nm = "INSLL"; break; ++ case 0x44: toleft = False; sz = 8; nm = "INSHB"; break; ++ case 0x45: toleft = False; sz = 16; nm = "INSHH"; break; ++ case 0x46: toleft = False; sz = 32; nm = "INSHW"; break; ++ case 0x47: toleft = False; sz = 64; nm = "INSHL"; break; ++ default: return False; ++ } ++ ++ IRExpr *rbv; ++ if (opcode == 0x10) { ++ DIP("%s r%u, r%u, r%u\n", nm, ra, rb, rc); ++ rbv = getIReg(rb); ++ } else if (opcode == 0x12) { ++ DIP("%s r%u, %u, r%u\n", nm, ra, uimm8, rc); ++ rbv = mkU64(uimm8); ++ } else { ++ return False; ++ } ++ ++ IRExpr *rav; ++ if (sz == 8) { ++ rav = unop(Iop_8Uto64, unop(Iop_64to8, getIReg(ra))); ++ } else if (sz == 16) { ++ rav = unop(Iop_16Uto64, unop(Iop_64to16, getIReg(ra))); ++ } else if (sz == 32) { ++ rav = unop(Iop_32Uto64, unop(Iop_64to32, getIReg(ra))); ++ } else { ++ rav = getIReg(ra); ++ } ++ ++ if (toleft) { ++ /* rc = rav << ((rbv << 3) & 0x3F) */ ++ putIReg(rc, binop(Iop_Shl64, ++ rav, ++ mkshiftbits(binop(Iop_Shl64, ++ rbv, ++ mkU8(3))))); ++ } else { ++ /* rc = (rav >> 8) >> ((-8 - (rbv << 3)) & 0x3F) */ ++ putIReg(rc, binop(Iop_Shr64, ++ binop(Iop_Shr64, ++ rav, ++ mkU8(8)), ++ mkshiftbits(binop(Iop_Sub64, ++ mkU64(-8), ++ binop(Iop_Shl64, ++ rbv, ++ mkU8(3)))))); ++ } ++ ++ return True; ++} ++ ++static Bool dis_SW64_bits_extract(UInt opcode, UInt func, UInt ra, UInt rb, ++ UInt rc, UInt uimm8) ++{ ++ Bool toright; ++ UInt sz; ++ const HChar *nm; ++ switch (func) { ++ case 0x50: toright = True; sz = 8; nm = "EXTLB"; break; ++ case 0x51: toright = True; sz = 16; nm = "EXTLH"; break; ++ case 0x52: toright = True; sz = 32; nm = "EXTLW"; break; ++ case 0x53: toright = True; sz = 64; nm = "EXTLL"; break; ++ case 0x54: toright = False; sz = 8; nm = "EXTHB"; break; ++ case 0x55: toright = False; sz = 16; nm = "EXTHH"; break; ++ case 0x56: toright = False; sz = 32; nm = "EXTHW"; break; ++ case 0x57: toright = False; sz = 64; nm = "EXTHL"; break; ++ default: return False; ++ } ++ ++ IRExpr *rbv; ++ if (opcode == 0x10) { ++ DIP("%s r%u, r%u, r%u\n", nm, ra, rb, rc); ++ rbv = getIReg(rb); ++ } else if (opcode == 0x12) { ++ DIP("%s r%u, %u, r%u\n", nm, ra, uimm8, rc); ++ rbv = mkU64(uimm8); ++ } else { ++ return False; ++ } ++ ++ IRExpr *e; ++ if (toright) { ++ /* sbits = (rbv << 3) & 0x3F */ ++ IRExpr *sbits = binop(Iop_And8, ++ unop(Iop_64to8, ++ binop(Iop_Shl64, ++ rbv, ++ mkU8(3))), ++ mkU8(0x3F)); ++ e = binop(Iop_Shr64, getIReg(ra), sbits); ++ } else { ++ /* sbits = (0 - (rbv << 3)) & 0x3F */ ++ IRExpr *sbits = binop(Iop_And8, ++ unop(Iop_64to8, ++ binop(Iop_Sub64, ++ mkU64(0), ++ binop(Iop_Shl64, ++ rbv, ++ mkU8(3)))), ++ mkU8(0x3F)); ++ e = binop(Iop_Shl64, getIReg(ra), sbits); ++ } ++ ++ if (sz == 8) { ++ e = unop(Iop_8Uto64, unop(Iop_64to8, e)); ++ } else if (sz == 16) { ++ e = unop(Iop_16Uto64, unop(Iop_64to16, e)); ++ } else if (sz == 32) { ++ e = unop(Iop_32Uto64, unop(Iop_64to32, e)); ++ } ++ ++ putIReg(rc, e); ++ return True; ++} ++ ++static Bool dis_SW64_bits_mask(UInt opcode, UInt func, UInt ra, UInt rb, ++ UInt rc, UInt uimm8) ++{ ++ Bool lo; ++ ULong mask; ++ const HChar *nm; ++ switch (func) { ++ case 0x60: lo = True; mask = 0x00000000000000FF; nm = "MASKLB"; break; ++ case 0x61: lo = True; mask = 0x000000000000FFFF; nm = "MASKLH"; break; ++ case 0x62: lo = True; mask = 0x00000000FFFFFFFF; nm = "MASKLW"; break; ++ case 0x63: lo = True; mask = 0xFFFFFFFFFFFFFFFF; nm = "MASKLL"; break; ++ case 0x64: lo = False; mask = 0x0000000000000000; nm = "MASKHB"; break; ++ case 0x65: lo = False; mask = 0x00000000000000FF; nm = "MASKHH"; break; ++ case 0x66: lo = False; mask = 0x0000000000FFFFFF; nm = "MASKHW"; break; ++ case 0x67: lo = False; mask = 0x00FFFFFFFFFFFFFF; nm = "MASKHL"; break; ++ default: return False; ++ } ++ ++ IRExpr *rbv; ++ if (opcode == 0x10) { ++ DIP("%s r%u, r%u, r%u\n", nm, ra, rb, rc); ++ rbv = getIReg(rb); ++ } else if (opcode == 0x12) { ++ DIP("%s r%u, %u, r%u\n", nm, ra, uimm8, rc); ++ rbv = mkU64(uimm8); ++ } else { ++ return False; ++ } ++ ++ IRExpr *t; ++ if (lo) { ++ /* t = mask >> ((Rbv & 0x7) * 8) */ ++ t = binop(Iop_Shl64, ++ mkU64(mask), ++ unop(Iop_64to8, ++ binop(Iop_Shl64, ++ binop(Iop_And64, ++ rbv, ++ mkU64(0x7)), ++ mkU8(3)))); ++ } else { ++ /* t = mask >> (56 - (Rbv & 0x7) * 8) */ ++ t = binop(Iop_Shr64, ++ mkU64(mask), ++ unop(Iop_64to8, ++ binop(Iop_Sub64, ++ mkU64(56), ++ binop(Iop_Shl64, ++ binop(Iop_And64, ++ rbv, ++ mkU64(0x7)), ++ mkU8(3))))); ++ } ++ ++ /* rc = AndNot(Rav, t) */ ++ putIReg(rc, binop(Iop_And64, getIReg(ra), unop(Iop_Not64, t))); ++ return True; ++} ++ ++static Bool dis_SW64_sel(UInt insn) ++{ ++ /* |31 26 | 25 21 | 20 16| 15 13 |12 10| 9 5 | 4 0 | */ ++ /* | opcode | ra | rb | 000 | function | rc | rd | */ ++ /* | opcode | ra | imm | function | rc | rd | */ ++ UInt opcode = extract(insn, 31, 26); ++ UInt func = extract(insn, 12, 10); ++ UInt ra = extract(insn, 25, 21); ++ UInt rb = extract(insn, 20, 16); ++ UInt rc = extract(insn, 9, 5); ++ UInt rd = extract(insn, 4, 0); ++ UInt imm = extract(insn, 20, 13); ++ ++ const HChar *nm; ++ IRExpr *guard; ++ switch(func) { ++ case 0x0: ++ nm = "SELEQ"; ++ guard = binop(Iop_CmpEQ64, getIReg(ra), mkU64(0)); ++ break; ++ case 0x1: ++ nm = "SELGE"; ++ guard = binop(Iop_CmpLE64S, mkU64(0), getIReg(ra)); ++ break; ++ case 0x2: ++ nm = "SELGT"; ++ guard = binop(Iop_CmpLT64S, mkU64(0), getIReg(ra)); ++ break; ++ case 0x3: ++ nm = "SELLE"; ++ guard = binop(Iop_CmpLE64S, getIReg(ra), mkU64(0)); ++ break; ++ case 0x4: ++ nm = "SELLT"; ++ guard = binop(Iop_CmpLT64S, getIReg(ra), mkU64(0)); ++ break; ++ case 0x5: ++ nm = "SELNE"; ++ guard = binop(Iop_CmpNE64, getIReg(ra), mkU64(0)); ++ break; ++ case 0x6: ++ nm = "SELLBC"; ++ guard = binop(Iop_CmpEQ64, ++ binop(Iop_And64, getIReg(ra), mkU64(0x1)), ++ mkU64(0)); ++ break; ++ case 0x7: ++ nm = "SELLBS"; ++ guard = binop(Iop_CmpEQ64, ++ binop(Iop_And64, getIReg(ra), mkU64(0x1)), ++ mkU64(1)); ++ break; ++ default: ++ return False; ++ } ++ ++ IRExpr *rbv; ++ if (opcode == 0x11) { ++ DIP("%s, r%u, r%u, r%u, r%u\n", nm, ra, rb, rc, rd); ++ rbv = getIReg(rb); ++ } else if (opcode == 0x13) { ++ DIP("%s, r%u, %u, r%u, r%u\n", nm, ra, imm, rc, rd); ++ rbv = mkU64(imm); ++ } else { ++ return False; ++ } ++ ++ putIReg(rd, IRExpr_ITE(guard, rbv, getIReg(rc))); ++ return True; ++} ++ ++/* ---------------- FPCR round mode ---------------- */ ++ ++/* Generate IR to get hold of the rounding mode bits in FPCR, and ++ convert them to IR format. Bind the final result to the ++ returned temp. */ ++static IRTemp mk_get_IR_rounding_mode ( void ) ++{ ++ /* The sw64 encoding for rounding mode bits is: ++ 00 to zero ++ 01 to -infinity ++ 10 to nearest ++ 11 to +infinity ++ We need to convert that to the IR encoding: ++ 00 to nearest (the default) ++ 10 to +infinity ++ 01 to -infinity ++ 11 to zero ++ ++ Boss Yu say: ++ IREncd = 0b11 & (0b10000111 >> ((sw_fpcr >> 57) & 0b110)); ++ */ ++ ++ IRTemp IREncd = newTemp(Ity_I32); ++ assign(IREncd, unop(Iop_64to32, ++ binop(Iop_And64, ++ mkU64(0b11), ++ binop(Iop_Shr64, ++ mkU64(0b10000111), ++ unop(Iop_64to8, ++ binop(Iop_And64, ++ binop(Iop_Shr64, ++ IRExpr_Get(OFFB_FPCR, Ity_I64), ++ mkU8(57)), ++ mkU64(0b110))))))); ++ ++ return IREncd; ++} ++ ++static Bool dis_SW64_float_arith(UInt func, UInt fa, UInt fb, UInt fc) ++{ ++ IROp iop; ++ HChar const *nm; ++ UInt sz; ++ switch (func) { ++ case 0x0: nm = "FADDS"; iop = Iop_AddF64; sz = 32; break; ++ case 0x1: nm = "FADDD"; iop = Iop_AddF64; sz = 64; break; ++ case 0x2: nm = "FSUBS"; iop = Iop_SubF64; sz = 32; break; ++ case 0x3: nm = "FSUBD"; iop = Iop_SubF64; sz = 64; break; ++ case 0x4: nm = "FMULS"; iop = Iop_MulF64; sz = 32; break; ++ case 0x5: nm = "FMULD"; iop = Iop_MulF64; sz = 64; break; ++ case 0x6: nm = "FDIVS"; iop = Iop_DivF64; sz = 32; break; ++ case 0x7: nm = "FDIVD"; iop = Iop_DivF64; sz = 64; break; ++ default: return False; ++ } ++ ++ DIP("%s f%u, f%u, f%u\n", nm, fa, fb, fc); ++ ++ IRExpr *e = triop(iop, ++ mkexpr(mk_get_IR_rounding_mode()), ++ getFReg(fa), ++ getFReg(fb)); ++ ++ if (sz == 32) ++ e = binop(Iop_RoundF64toF32, mkexpr(mk_get_IR_rounding_mode()), e); ++ ++ putFReg(fc, e); ++ return True; ++} ++ ++ ++static Bool dis_SW64_fsqrt(UInt func, UInt fb, UInt fc) ++{ ++ IROp iop; ++ HChar const *nm; ++ UInt sz; ++ switch (func) { ++ case 0x8: nm = "FSQRTS"; iop = Iop_SqrtF64; sz = 32; break; ++ case 0x9: nm = "FSQRTD"; iop = Iop_SqrtF64; sz = 64; break; ++ default: return False; ++ } ++ ++ DIP("%s f%u, f%u\n", nm, fb, fc); ++ ++ IRExpr *e = binop(iop, ++ mkexpr(mk_get_IR_rounding_mode()), ++ getFReg(fb)); ++ ++ if (sz == 32) ++ e = binop(Iop_RoundF64toF32, mkexpr(mk_get_IR_rounding_mode()), e); ++ ++ putFReg(fc, e); ++ return True; ++} ++ ++ ++static Bool dis_SW64_fcmp(UInt func, UInt fa, UInt fb, UInt fc) ++{ ++ IROp iop; ++ HChar const *nm; ++ switch(func) { ++ case 0x10: nm = "FCMPEQ"; iop = Iop_CmpFEQ64; break; ++ case 0x11: nm = "FCMPLE"; iop = Iop_CmpFLE64; break; ++ case 0x12: nm = "FCMPLT"; iop = Iop_CmpFLT64; break; ++ case 0x13: nm = "FCMPUN"; iop = Iop_CmpFUN64; break; ++ default: return False; ++ } ++ ++ DIP("%s f%u, f%u, f%u\n", nm, fa, fb, fc); ++ ++ putFReg(fc, IRExpr_ITE(binop(iop, getFReg(fa), getFReg(fb)), ++ mkF64(2), ++ mkF64(0))); ++ return True; ++} ++ ++ ++static Bool dis_SW64_fcvt(UInt func, UInt fb, UInt fc) ++{ ++ /* FCVTSD */ ++ if (func == 0x20) { ++ DIP("FCVTSD f%u, f%u\n", fb, fc); ++ putFReg(fc, unop(Iop_F32toF64, ++ unop(Iop_TruncF64asF32, getFReg(fb)))); ++ return True; ++ } ++ ++ /* FCVTDS */ ++ if (func == 0x21) { ++ DIP("FCVTDS f%u, f%u\n", fb, fc); ++ putFReg(fc, binop(Iop_RoundF64toF32, ++ mkexpr(mk_get_IR_rounding_mode()), ++ getFReg(fb))); ++ return True; ++ } ++ ++ /* FCVTDL_x */ ++ if (func >= 0x22 && func <= 0x25) { ++ HChar const *nm; ++ UInt rm; ++ switch (func) { ++ case 0x22: nm = "FCVTDL_G"; rm = Irrm_NEAREST; break; ++ case 0x23: nm = "FCVTDL_P"; rm = Irrm_PosINF; break; ++ case 0x24: nm = "FCVTDL_Z"; rm = Irrm_ZERO; break; ++ case 0x25: nm = "FCVTDL_N"; rm = Irrm_NegINF; break; ++ } ++ DIP("%s f%u, f%u\n", nm, fb, fc); ++ putFReg(fc, unop(Iop_ReinterpI64asF64, ++ binop(Iop_F64toI64S, ++ mkU32(rm), ++ getFReg(fb)))); ++ return True; ++ } ++ ++ /* FCVTDL */ ++ if (func == 0x27) { ++ DIP("FCVTDL f%u, f%u\n", fb, fc); ++ putFReg(fc, unop(Iop_ReinterpI64asF64, ++ binop(Iop_F64toI64S, ++ mkexpr(mk_get_IR_rounding_mode()), ++ getFReg(fb)))); ++ return True; ++ } ++ ++ ++ else if (func == 0x28) //FCVTWL ++ { ++ DIP("FCVTWL f%u, f%u\n", fb, fc); ++ IRTemp fbv = newTemp(Ity_I64); ++ assign(fbv, unop(Iop_ReinterpF64asI64,getFReg(fb))); ++ IRTemp fcv_31_0 = newTemp(Ity_I64); //fbv->fcv_31_0 ++ assign(fcv_31_0, binop(Iop_Or64, ++ binop(Iop_Shr64, ++ binop(Iop_And64, mkexpr(fbv), mkU64(0xC000000000000000ULL)), //63:62 ++ mkU8(32)), ++ binop(Iop_Shr64, ++ binop(Iop_And64, mkexpr(fbv), mkU64(0x07FFFFFFE0000000ULL)), //58:29 ++ mkU8(29)))); ++ putFReg(fc, unop(Iop_ReinterpI64asF64,binop(Iop_Sar64, ++ binop(Iop_Shl64, mkexpr(fcv_31_0), mkU8(32)), ++ mkU8(32)))); ++ ++ return True; ++ } ++ else if(func == 0x29) //FCVTLW ++ { ++ DIP("FCVTLW f%u, f%u\n", fb, fc); ++ IRTemp fbv = newTemp(Ity_I64); ++ assign(fbv, unop(Iop_ReinterpF64asI64,getFReg(fb))); ++ IRTemp fcv = newTemp(Ity_I64); //fbv->fcv ++ assign(fcv, binop(Iop_Or64, ++ binop(Iop_Or64, ++ binop(Iop_Shl64, ++ binop(Iop_And64, mkexpr(fbv), mkU64(0xC0000000ULL)), //31:30 ++ mkU8(32)), ++ binop(Iop_Shl64, ++ binop(Iop_And64, mkexpr(fbv), mkU64(0x3FFFFFFFULL)), //29:0 ++ mkU8(29))), ++ mkU64(0ULL))); ++ putFReg(fc, unop(Iop_ReinterpI64asF64, mkexpr(fcv))); ++ return True; ++ } ++ else if(func == 0x2D) //FCVTLS ++ { ++ DIP("FCVTLS f%u, f%u\n", fb, fc); ++ putFReg(fc, binop(Iop_RoundF64toF32, ++ mkexpr(mk_get_IR_rounding_mode()), ++ binop(Iop_I64StoF64, ++ mkexpr(mk_get_IR_rounding_mode()), ++ unop(Iop_ReinterpF64asI64, getFReg(fb))))); ++ return True; ++ } ++ else if(func == 0x2F) //FCVTLD ++ { ++ DIP("FCVTLD f%u, f%u\n", fb, fc); ++ putFReg(fc, binop(Iop_I64StoF64, ++ mkexpr(mk_get_IR_rounding_mode()), ++ unop(Iop_ReinterpF64asI64,getFReg(fb)))); ++ return True; ++ } ++ ++ return False; ++} ++ ++static Bool dis_SW64_fcpy(UInt func, UInt fa, UInt fb, UInt fc) ++{ ++ /* FCPYS */ ++ if (func == 0x30) { ++ DIP("FCPYS f%u, f%u, f%u\n", fa, fb, fc); ++ ++ /* "fcpys fa, fa, fc" is same as "mov fa, fc" */ ++ if (fa == fb) { ++ putFReg(fc, getFReg(fa)); ++ return True; ++ } ++ ++ /* "fcpys f31, fb, fc" is same as "abs fb, fc" */ ++ if (fa == 31) { ++ putFReg(fc, unop(Iop_AbsF64, getFReg(fb))); ++ return True; ++ } ++ ++ putFReg(fc, unop(Iop_ReinterpI64asF64, ++ binop(Iop_Or64, ++ binop(Iop_And64, ++ unop(Iop_ReinterpF64asI64, getFReg(fa)), ++ mkU64(0x8000000000000000ULL)), //63 ++ binop(Iop_And64, ++ unop(Iop_ReinterpF64asI64, getFReg(fb)), ++ mkU64(0x7FFFFFFFFFFFFFFFULL))))); //62:0 ++ return True; ++ } ++ ++ /* FCPYSE */ ++ if (func == 0x31) { ++ DIP("FCPYSE f%u, f%u, f%u\n", fa, fb, fc); ++ putFReg(fc, unop(Iop_ReinterpI64asF64, ++ binop(Iop_Or64, ++ binop(Iop_And64, ++ unop(Iop_ReinterpF64asI64, getFReg(fa)), ++ mkU64(0xFFF0000000000000ULL)), //63:52 ++ binop(Iop_And64, ++ unop(Iop_ReinterpF64asI64, getFReg(fb)), ++ mkU64(0xFFFFFFFFFFFFFULL))))); //51:0 ++ return True; ++ } ++ ++ /* FCPYSN */ ++ if (func == 0x32) { ++ DIP("FCPYSN f%u, f%u, f%u\n", fa, fb, fc); ++ ++ /* "fcpysn fa, fa, fc" is same as "neg fa, fc" */ ++ if (fa == fb) { ++ putFReg(fc, unop(Iop_NegF64, getFReg(fa))); ++ return True; ++ } ++ ++ putFReg(fc, unop(Iop_ReinterpI64asF64, ++ binop(Iop_Or64, ++ binop(Iop_And64, ++ unop(Iop_Not64, ++ unop(Iop_ReinterpF64asI64, getFReg(fa))), ++ mkU64(0x8000000000000000ULL)), //63 ++ binop(Iop_And64, ++ unop(Iop_ReinterpF64asI64, getFReg(fb)), ++ mkU64(0x7FFFFFFFFFFFFFFFULL))))); //62:0 ++ return True; ++ } ++ ++ return False; ++} ++ ++static Bool dis_SW64_intflt_transfer(UInt opcode, UInt func, UInt ra, UInt rc) ++{ ++ /* IFMOVS */ ++ if (opcode == 0x18 && func == 0x40) { ++ DIP("IFMOVS r%u, f%u\n", ra, rc); ++ putFReg(rc, unop(Iop_F32toF64, ++ unop(Iop_ReinterpI32asF32, ++ unop(Iop_64to32, getIReg(ra))))); ++ return True; ++ } ++ ++ /* IFMOVD */ ++ if (opcode == 0x18 && func == 0x41) { ++ DIP("IFMOVD r%u, f%u\n", ra, rc); ++ putFReg(rc, unop(Iop_ReinterpI64asF64,getIReg(ra))); ++ return True; ++ } ++ ++ /* FIMOVS */ ++ if (opcode == 0x10 && func == 0x70) { ++ DIP("FIMOVS f%u, r%u\n", ra, rc); ++ putIReg(rc, unop(Iop_32Sto64, ++ unop(Iop_ReinterpF32asI32, ++ unop(Iop_TruncF64asF32, getFReg(ra))))); ++ return True; ++ } ++ ++ /* FIMOVD */ ++ if (opcode == 0x10 && func == 0x78) { ++ DIP("FIMOVD f%u, r%u", ra, rc); ++ putIReg(rc, unop(Iop_ReinterpF64asI64, getFReg(ra))); ++ return True; ++ } ++ ++ return False; ++} ++ ++static Bool dis_SW64_intflt_convert(UInt opcode, UInt func, UInt rb, UInt fc) ++{ ++ IROp iop; ++ HChar const *nm; ++ UInt sbits, dbits; ++ switch(func) { ++ case 0x48: nm = "CMOVLS"; iop = Iop_I64StoF64; sbits = 64; dbits = 32; break; ++ case 0x49: nm = "CMOVWS"; iop = Iop_I32StoF64; sbits = 32; dbits = 32; break; ++ case 0x4a: nm = "CMOVLD"; iop = Iop_I64StoF64; sbits = 64; dbits = 64; break; ++ case 0x4b: nm = "CMOVWD"; iop = Iop_I32StoF64; sbits = 32; dbits = 64; break; ++ case 0x4c: nm = "CMOVULS"; iop = Iop_I64UtoF64; sbits = 64; dbits = 32; break; ++ case 0x4d: nm = "CMOVUWS"; iop = Iop_I32UtoF64; sbits = 32; dbits = 32; break; ++ case 0x4e: nm = "CMOVULD"; iop = Iop_I64UtoF64; sbits = 64; dbits = 64; break; ++ case 0x4f: nm = "CMOVUWD"; iop = Iop_I32UtoF64; sbits = 32; dbits = 64; break; ++ default: return False; ++ } ++ ++ DIP("%s r%u, f%u\n", nm, rb, fc); ++ ++ IRTemp rm = mk_get_IR_rounding_mode(); ++ ++ IRExpr *e = getIReg(rb); ++ ++ if (sbits == 32) ++ e = narrowFrom64(Ity_I32, e); ++ ++ if (sbits == 32) ++ e = unop(iop, e); ++ else ++ e = binop(iop, mkexpr(rm), e); ++ ++ if (dbits == 32) ++ e = binop(Iop_RoundF64toF32, mkexpr(rm), e); ++ ++ putFReg(fc, e); ++ return True; ++} ++ ++static Bool dis_SW64_fltint_convert(UInt opcode, UInt func, UInt fb, UInt rc) ++{ ++ HChar const *nm; ++ IROp iop; ++ IROp widen; ++ Int rm; ++ switch(func) { ++ case 0x72: nm = "CMOVDL"; iop = Iop_F64toI64S; widen = Iop_INVALID; rm = -1; break; ++ case 0x74: nm = "CMOVDL_G"; iop = Iop_F64toI64S; widen = Iop_INVALID; rm = Irrm_NEAREST; break; ++ case 0x7a: nm = "CMOVDL_P"; iop = Iop_F64toI64S; widen = Iop_INVALID; rm = Irrm_PosINF; break; ++ case 0x7c: nm = "CMOVDL_Z"; iop = Iop_F64toI64S; widen = Iop_INVALID; rm = Irrm_ZERO; break; ++ case 0x80: nm = "CMOVDL_N"; iop = Iop_F64toI64S; widen = Iop_INVALID; rm = Irrm_NegINF; break; ++ case 0x81: nm = "CMOVDLU"; iop = Iop_F64toI64U; widen = Iop_INVALID; rm = -1; break; ++ case 0x82: nm = "CMOVDLU_G"; iop = Iop_F64toI64U; widen = Iop_INVALID; rm = Irrm_NEAREST; break; ++ case 0x83: nm = "CMOVDLU_P"; iop = Iop_F64toI64U; widen = Iop_INVALID; rm = Irrm_PosINF; break; ++ case 0x84: nm = "CMOVDLU_Z"; iop = Iop_F64toI64U; widen = Iop_INVALID; rm = Irrm_ZERO; break; ++ case 0x85: nm = "CMOVDLU_N"; iop = Iop_F64toI64U; widen = Iop_INVALID; rm = Irrm_NegINF; break; ++ case 0x86: nm = "CMOVDWU"; iop = Iop_F64toI32U; widen = Iop_32Uto64; rm = -1; break; ++ case 0x87: nm = "CMOVDWU_G"; iop = Iop_F64toI32U; widen = Iop_32Uto64; rm = Irrm_NEAREST; break; ++ case 0x88: nm = "CMOVDWU_P"; iop = Iop_F64toI32U; widen = Iop_32Uto64; rm = Irrm_PosINF; break; ++ case 0x89: nm = "CMOVDWU_Z"; iop = Iop_F64toI32U; widen = Iop_32Uto64; rm = Irrm_ZERO; break; ++ case 0x8a: nm = "CMOVDWU_N"; iop = Iop_F64toI32U; widen = Iop_32Uto64; rm = Irrm_NegINF; break; ++ case 0x8b: nm = "CMOVDW"; iop = Iop_F64toI32S; widen = Iop_32Sto64; rm = -1; break; ++ case 0x8c: nm = "CMOVDW_G"; iop = Iop_F64toI32S; widen = Iop_32Sto64; rm = Irrm_NEAREST; break; ++ case 0x8d: nm = "CMOVDW_P"; iop = Iop_F64toI32S; widen = Iop_32Sto64; rm = Irrm_PosINF; break; ++ case 0x8e: nm = "CMOVDW_Z"; iop = Iop_F64toI32S; widen = Iop_32Sto64; rm = Irrm_ZERO; break; ++ case 0x8f: nm = "CMOVDW_N"; iop = Iop_F64toI32S; widen = Iop_32Sto64; rm = Irrm_NegINF; break; ++ default: return False; ++ } ++ ++ DIP("%s f%u, r%u\n", nm, fb, rc); ++ ++ IRTemp irrm; ++ if (rm == -1) { ++ irrm = mk_get_IR_rounding_mode(); ++ } else { ++ irrm = newTemp(Ity_I32); ++ assign(irrm, mkU32(rm)); ++ } ++ ++ IRExpr *e = binop(iop, mkexpr(irrm), getFReg(fb)); ++ ++ if (widen != Iop_INVALID) ++ e = unop(widen, e); ++ ++ putIReg(rc, e); ++ return True; ++} ++ ++static Bool dis_SW64_fpcr(UInt insn, UInt func) ++{ ++ /* ++ floating-point exception is not supported in Valgrind ++ always return 0 in exception flag bits ++ always return 1 in exception trapping bits ++ SETFPECx are No-Op ++ ++ floating-point rouding have a limited support ++ set and return those bits as-is ++ */ ++ UInt fa = extract(insn, 25, 21); ++ ++ /* RFPCR */ ++ if (func == 0x50) { ++ IRExpr *e; ++ DIP("RFPCR f%u\n", fa); ++ ++ e = IRExpr_Get(OFFB_FPCR, Ity_I64); ++ ++ /* clear bits other than rouding mode */ ++ e = binop(Iop_And64, mkU64(0xc00000000000000ULL), e); ++ ++ /* set exception trapping disable */ ++ e = binop(Iop_Or64, mkU64(0x600e000000000000ULL), e); ++ ++ putFReg(fa, unop(Iop_ReinterpI64asF64, e)); ++ return True; ++ } ++ ++ /* WFPCR */ ++ if (func == 0x51) { ++ IRExpr *e; ++ DIP("WFPCR f%u\n", fa); ++ ++ e = unop(Iop_ReinterpF64asI64, getFReg(fa)); ++ ++ /* clear bits other than rouding mode */ ++ e = binop(Iop_And64, mkU64(0xc00000000000000ULL), e); ++ ++ /* set exception trapping disable */ ++ e = binop(Iop_Or64, mkU64(0x600e000000000000ULL), e); ++ ++ stmt( IRStmt_Put(OFFB_FPCR, e) ); ++ return True; ++ } ++ ++ /* SETFPEC0 ~ SETFPEC3 */ ++ if (func >= 0x54 && func <= 0x57) { ++ DIP("SETFPEC%u\n", func - 0x54); ++ stmt(IRStmt_NoOp()); ++ return True; ++ } ++ ++ return False; ++} ++ ++static Bool dis_SW64_fpround(UInt func, UInt fb, UInt fc) ++{ ++ HChar const *nm; ++ UInt sz; ++ Int rm; ++ switch (func) { ++ case 0x5a: nm = "FRIS"; sz = 32; rm = -1; break; ++ case 0x5b: nm = "FRIS_G"; sz = 32; rm = Irrm_NEAREST; break; ++ case 0x5c: nm = "FRIS_P"; sz = 32; rm = Irrm_PosINF; break; ++ case 0x5d: nm = "FRIS_Z"; sz = 32; rm = Irrm_ZERO; break; ++ case 0x5f: nm = "FRIS_N"; sz = 32; rm = Irrm_NegINF; break; ++ case 0x60: nm = "FRID"; sz = 64; rm = -1; break; ++ case 0x61: nm = "FRID_G"; sz = 64; rm = Irrm_NEAREST; break; ++ case 0x62: nm = "FRID_P"; sz = 64; rm = Irrm_PosINF; break; ++ case 0x63: nm = "FRID_Z"; sz = 64; rm = Irrm_ZERO; break; ++ case 0x64: nm = "FRID_N"; sz = 64; rm = Irrm_NegINF; break; ++ default: return False; ++ } ++ ++ DIP("%s f%u, r%u\n", nm, fb, fc); ++ ++ IRTemp irrm; ++ if (rm == -1) { ++ irrm = mk_get_IR_rounding_mode(); ++ } else { ++ irrm = newTemp(Ity_I32); ++ assign(irrm, mkU32(rm)); ++ } ++ ++ IRExpr *e = binop(Iop_RoundF64toInt, mkexpr(irrm), getFReg(fb)); ++ ++ if (sz == 32) ++ e = binop(Iop_RoundF64toF32, mkexpr(irrm), e); ++ ++ putFReg(fc, e); ++ return True; ++} ++ ++static Bool dis_SW64_frec(UInt func, UInt fa, UInt fc) ++{ ++ HChar const *nm; ++ UInt sz; ++ ++ switch (func) { ++ case 0x58: nm = "FRECS"; sz = 32; break; ++ case 0x59: nm = "FRECD"; sz = 64; break; ++ default: return False; ++ } ++ ++ DIP("%s f%u, r%u\n", nm, fa, fc); ++ ++ IRExpr *e = triop(Iop_DivF64, mkU32(Irrm_ZERO), mkF64(1.0), getFReg(fa)); ++ if (sz == 32) ++ e = binop(Iop_RoundF64toF32, mkU32(Irrm_ZERO), e); ++ ++ putFReg(fc, e); ++ return True; ++} ++ ++static Bool dis_SW64_fma(UInt func, UInt fa, UInt fb, UInt fc, UInt fd) ++{ ++ IROp iop; ++ HChar const *nm; ++ Bool neg; ++ UInt sz; ++ switch (func) { ++ case 0x0: nm = "FMAS"; neg = False; iop = Iop_MAddF64; sz = 32; break; ++ case 0x1: nm = "FMAD"; neg = False; iop = Iop_MAddF64; sz = 64; break; ++ case 0x2: nm = "FMSS"; neg = False; iop = Iop_MSubF64; sz = 32; break; ++ case 0x3: nm = "FMSD"; neg = False; iop = Iop_MSubF64; sz = 64; break; ++ case 0x4: nm = "FNMAS"; neg = True; iop = Iop_MAddF64; sz = 32; break; ++ case 0x5: nm = "FNMAD"; neg = True; iop = Iop_MAddF64; sz = 64; break; ++ case 0x6: nm = "FNMSS"; neg = True; iop = Iop_MSubF64; sz = 32; break; ++ case 0x7: nm = "FNMSD"; neg = True; iop = Iop_MSubF64; sz = 64; break; ++ default: return False; ++ } ++ ++ DIP("%s f%u, f%u, f%u, f%u\n", nm, fa, fb, fc, fd); ++ ++ IRExpr *rav = getFReg(fa); ++ if (neg) ++ rav = unop(Iop_NegF64, rav); ++ ++ IRExpr *e = quaop(iop, ++ mkexpr(mk_get_IR_rounding_mode()), ++ rav, ++ getFReg(fb), ++ getFReg(fc)); ++ ++ if (sz == 32) ++ e = binop(Iop_RoundF64toF32, mkexpr(mk_get_IR_rounding_mode()), e); ++ ++ putFReg(fd, e); ++ return True; ++} ++ ++static Bool dis_SW64_fsel(UInt func, UInt fa, UInt fb, UInt fc, UInt fd) ++{ ++ IROp iop; ++ HChar const *nm; ++ switch (func) { ++ case 0x10: nm = "FSELEQ"; iop = Iop_CmpFEQ64; break; ++ case 0x11: nm = "FSELNE"; iop = Iop_CmpFNE64; break; ++ case 0x12: nm = "FSELLT"; iop = Iop_CmpFLT64; break; ++ case 0x13: nm = "FSELLE"; iop = Iop_CmpFLE64; break; ++ case 0x14: nm = "FSELGT"; iop = Iop_CmpFGT64; break; ++ case 0x15: nm = "FSELGE"; iop = Iop_CmpFGE64; break; ++ default: return False; ++ } ++ ++ DIP("%s f%u, f%u, f%u, f%u\n", nm, fa, fb, fc, fd); ++ ++ putFReg(fd, IRExpr_ITE(binop(iop, getFReg(fa), mkF64(0)), ++ getFReg(fb), ++ getFReg(fc))); ++ ++ return True; ++} ++ ++static Bool dis_SW64_lockload_fallback(UInt func, UInt ra, UInt rb, UInt disp) ++{ ++ IRType ty; ++ if (func == 0x0) { ++ DIP("LLDW r%u, 0x%x(r%u)\n", ra, disp, rb); ++ ty = Ity_I32; ++ } else if (func == 0x1) { ++ DIP("LLDL r%u, 0x%x(r%u)\n", ra, disp, rb); ++ ty = Ity_I64; ++ } else { ++ vassert(0); ++ } ++ ++ IRTemp vaddr = newTemp(Ity_I64); ++ assign(vaddr, binop(Iop_Add64, getIReg(rb), mkU64(disp))); ++ ++ IRTemp data = newTemp(Ity_I64); ++ if (ty == Ity_I32) ++ assign(data, unop(Iop_32Sto64, load(ty, mkexpr(vaddr)))); ++ else ++ assign(data, load(ty, mkexpr(vaddr))); ++ ++ /* ++ lock_valid <- 1 ++ lock_addr <- vaddr ++ lock_data <- data ++ lock_size <- 4 or 8 dependent on lldw or lldl ++ */ ++ stmt( IRStmt_Put(OFFB_LOCKVALID, mkU64(1)) ); ++ stmt( IRStmt_Put(OFFB_LOCKSIZE, mkU64(sizeofIRType(ty))) ); ++ stmt( IRStmt_Put(OFFB_LOCKADDR, mkexpr(vaddr)) ); ++ stmt( IRStmt_Put(OFFB_LOCKDATA, mkexpr(data)) ); ++ ++ /* changed in 8A (forward compatible with 6B): ++ lock_valid <- 1 */ ++ stmt( IRStmt_Put(OFFB_LOCKFLAG, mkU64(1)) ); ++ ++ putIReg(ra, mkexpr(data)); ++ return True; ++} ++ ++ ++static Bool dis_SW64_lockstore_fallback(UInt func, UInt ra, UInt rb, UInt disp) ++{ ++ /* ++ lock store go failed if any condition meet: ++ - state.lock_addr != lock_addr ++ - state.lock_size != lock_size ++ - state.lock_valid == 0 ++ - state.lock_flag == 0 ++ */ ++ ULong failaddr = guest_PC_curr_instr + 4; ++ ++ IRType ty; ++ if (func == 0x8) { ++ DIP("LSTW r%u, 0x%x(r%u)\n", ra, disp, rb); ++ ty = Ity_I32; ++ } else if (func == 0x9) { ++ DIP("LSTL r%u, 0x%x(r%u)\n", ra, disp, rb); ++ ty = Ity_I64; ++ } else { ++ vassert(0); ++ } ++ ++ IRTemp vaddr = newTemp(Ity_I64); ++ assign(vaddr, binop(Iop_Add64, getIReg(rb), mkU64(disp))); ++ ++ IRTemp storedata = newTemp(ty); ++ assign(storedata, narrowFrom64(ty, getIReg(ra))); ++ ++ /* set flags as failed first */ ++ stmt(IRStmt_Put(OFFB_LOCKSUCCESS, mkU64(0))); ++ /* Update Ra in 8A (not fully forward compatible to 6B) */ ++ putIReg(ra, mkU64(0)); ++ ++ condexit(binop(Iop_CmpEQ64, ++ IRExpr_Get(OFFB_LOCKVALID, Ity_I64), ++ mkU64(0)), failaddr); ++ ++ condexit(binop(Iop_CmpEQ64, ++ IRExpr_Get(OFFB_LOCKFLAG, Ity_I64), ++ mkU64(0)), failaddr); ++ ++ condexit(binop(Iop_CmpNE64, ++ IRExpr_Get(OFFB_LOCKSIZE, Ity_I64), ++ mkU64(sizeofIRType(ty))), failaddr); ++ ++ condexit(binop(Iop_CmpNE64, ++ IRExpr_Get(OFFB_LOCKADDR, Ity_I64), ++ mkexpr(vaddr)), failaddr); ++ ++ stmt( IRStmt_Put(OFFB_LOCKVALID, mkU64(0)) ); ++ stmt( IRStmt_Put(OFFB_LOCKFLAG, mkU64(0)) ); ++ ++ ++ // Try to CAS the new value in. ++ IRTemp old = newTemp(ty); ++ IRTemp expd = newTemp(ty); ++ assign(expd, narrowFrom64(ty, IRExpr_Get(OFFB_LOCKDATA, Ity_I64))); ++ stmt( IRStmt_CAS(mkIRCAS(IRTemp_INVALID, old, ++ Iend_LE, mkexpr(vaddr), ++ NULL, mkexpr(expd), ++ NULL, mkexpr(storedata) ++ ))); ++ ++ // Fail if the CAS failed (viz, old != expd) ++ condexit(binop(Iop_CmpNE64, ++ widenUto64(ty, mkexpr(old)), ++ widenUto64(ty, mkexpr(expd))), failaddr); ++ ++ // Otherwise we succeeded (!) ++ stmt( IRStmt_Put(OFFB_LOCKSUCCESS, mkU64(0x1)) ); ++ ++ /* Update Ra in 8A (not fully forward compatible to 6B) */ ++ putIReg(ra, mkU64(1)); ++ ++ return True; ++} ++ ++static Bool dis_SW64_memb_and_rtc_insn(UInt insn) ++{ ++ UInt func = extract(insn, 15, 0); ++ UInt ra = extract(insn, 25, 21); ++ ++ if (func == 0x0 || func == 0x1 || func == 0x2) { ++ /* there is only IRStmt_MBE(Imbe_Fence) in VEX IR. ++ All SW MEMB is convert to IRStmt_MBE(Imbe_Fence) */ ++ const HChar *nm = (func == 0x0) ? "MEMB" : ++ (func == 0x1) ? "IMEMB" : ++ (func == 0x2) ? "WMEMB" : ++ (vassert(0), NULL); ++ DIP("%s\n", nm); ++ stmt(IRStmt_MBE(Imbe_Fence)); ++ return True; ++ } ++ ++ if (func == 0x20) { ++ DIP("RTC r%u\n", ra); ++ IRDirty *d; ++ IRTemp v0 = newTemp(Ity_I64); ++ d = unsafeIRDirty_1_N(v0, 0, ++ "sw64_dirtyhelper_rtc", ++ &sw64_dirtyhelper_rtc, ++ mkIRExprVec_1(IRExpr_GSPTR())); ++ d->nFxState = 1; ++ vex_bzero(&d->fxState, sizeof(d->fxState)); ++ d->fxState[0].fx = Ifx_Read; /* read */ ++ d->fxState[0].offset = offsetof(VexGuestSW64State, guest_r0); ++ d->fxState[0].size = sizeof(ULong); ++ stmt(IRStmt_Dirty(d)); ++ putIReg(ra, mkexpr(v0)); ++ return True; ++ } ++ ++ if (func == 0x40) { ++ DIP("RCID r%u\n", ra); ++ IRDirty *d; ++ IRTemp v0 = newTemp(Ity_I64); ++ d = unsafeIRDirty_1_N(v0, 0, ++ "sw64_dirtyhelper_rcid", ++ &sw64_dirtyhelper_rcid, ++ mkIRExprVec_1(IRExpr_GSPTR())); ++ d->nFxState = 1; ++ vex_bzero(&d->fxState, sizeof(d->fxState)); ++ d->fxState[0].fx = Ifx_Read; /* read */ ++ d->fxState[0].offset = offsetof(VexGuestSW64State, guest_r0); ++ d->fxState[0].size = sizeof(ULong); ++ stmt(IRStmt_Dirty(d)); ++ putIReg(ra, mkexpr(v0)); ++ return True; ++ } ++ ++ if (func == 0x80) { ++ DIP("HALT\n"); ++ stmt(IRStmt_NoOp()); /* HALT is ignored */ ++ return True; ++ } ++ ++ if (func == 0x1000) { ++ DIP("RD_F r%u\n", ra); ++ putIReg(ra, IRExpr_Get(OFFB_LOCKSUCCESS, Ity_I64)); ++ return True; ++ } ++ ++ if (func == 0x1020) { ++ DIP("WR_F r%u\n", ra); ++ stmt(IRStmt_Put(OFFB_LOCKFLAG, getIReg(ra))); ++ return True; ++ } ++ ++ if (func == 0x1040) { ++ DIP("RTID r%u\n", ra); ++ putIReg(ra, IRExpr_Get(OFFB_TID, Ity_I64)); ++ return True; ++ } ++ ++ if (func >= 0xfc00 && func <= 0xffff) { ++ DIP("CSRWS/CSRWC/CSRR/CSRW (privilege, go failed)\n"); ++ return False; ++ } ++ ++ return False; ++} ++ ++static Bool dis_SW64_prefetch(UInt insn) ++{ ++ UInt opcode = extract(insn, 31, 26); ++ UInt ra = extract(insn, 25, 21); ++ UInt rb = extract(insn, 20, 16); ++ UInt disp = extract(insn, 15, 0); ++ ++ HChar const *nm; ++ switch (opcode) { ++ case 0x22: nm = "S_FILLCS"; break; /* S_FILLCS: LDW */ ++ case 0x23: nm = "S_FILLDE"; break; /* S_FILLDE: LDL */ ++ case 0x26: nm = "FILLDE"; break; /* FILLDE: FLDS */ ++ case 0x27: nm = "FILLDE_E"; break; /* FILLDE_E: FLDD */ ++ case 0x9: nm = "FILLCS"; break; /* FILLCS: LDWE */ ++ case 0xB: nm = "FILLCS_E"; break; /* FILLCS_E: LDDE */ ++ case 0xA: nm = "E_FILLCS"; break; /* E_FILLCS: LDSE */ ++ case 0xC: nm = "E_FILLDE"; break; /* E_FILLDE: VLDS */ ++ case 0x20: nm = "FLUSHD"; break; /* FLUSHD: LDBU */ ++ case 0x24: nm = "EVICTDL"; break; /* EVICTDL: LDL_U */ ++ case 0x21: nm = "EVICTDG"; break; /* EVICTDG: LDHU */ ++ case 0x1E: { ++ UInt func = extract(insn, 15, 12); ++ nm = (func == 0xE) ? "DPFHR" : ++ (func == 0xF) ? "DPFHR" : ++ (vassert(0), NULL); ++ disp = extract(insn, 11, 0); ++ break; ++ } ++ default: return False; ++ } ++ ++ vassert(ra == 31); ++ ++ DIP("%s %x(r%u) (prefetch)\n", nm, disp, rb); ++ stmt(IRStmt_NoOp()); /* can't do anything with prefetch */ ++ ++ return True; ++} ++ ++static Bool dis_SW64_cas(UInt opcode, UInt func, UInt ra, UInt rb, ++ UInt rc) ++{ ++ HChar const *nm; ++ IRType ty; ++ switch (func) { ++ case 0x5E: ty = Ity_I32; nm = "CASW"; break; ++ case 0x5F: ty = Ity_I64; nm = "CASL"; break; ++ default: return False; ++ } ++ ++ DIP("%s r%u r%u r%u\n", nm, ra, rb, rc); ++ ++ IRTemp old = newTemp(ty); ++ IRExpr *exp = getIReg(ra); ++ IRExpr *addr = getIReg(rb); ++ IRExpr *data = getIReg(rc); ++ ++ if (ty == Ity_I32) { ++ data = unop(Iop_64to32, data); ++ exp = unop(Iop_64to32, exp); ++ } ++ ++ stmt(IRStmt_CAS(mkIRCAS(IRTemp_INVALID, old, Iend_LE, addr, NULL, exp, NULL, data))); ++ ++ if (ty == Ity_I32) { ++ putIReg(rc, unop(Iop_32Sto64, mkexpr(old))); ++ } else { ++ putIReg(rc, mkexpr(old)); ++ } ++ ++ return True; ++} ++ ++/* Spot "Special" instructions (see valgrind.h). */ ++static Bool handle_special_instr(DisResult* dres) ++{ ++ const UChar* code = (const UChar *)guest_PC_curr_instr; ++ ++ /* 16-bytes preamble: ++ 4BE0691F sll $31,3, $31 ++ 4BE1A91F sll $31,13,$31 ++ 4BE3A91F sll $31,29,$31 ++ 4BE2691F sll $31,19,$31 ++ */ ++ if (fetch32(code + 0) != 0x4BE0691F) ++ return False; ++ if (fetch32(code + 4) != 0x4BE1A91F) ++ return False; ++ if (fetch32(code + 8) != 0x4BE3A91F) ++ return False; ++ if (fetch32(code + 12) != 0x4BE2691F) ++ return False; ++ ++ /* 4-bytes type: ++ r4 = client_request ( r5 ): ++ 40C60746 bis $6, $6, $6 ++ ++ r4 = guest_NRADDR: ++ 40E70747 bis $7, $7, $7 ++ ++ branch-and-link-to-noredir r27: ++ 41080748 bis $8, $8, $8 ++ ++ IR injection: ++ 40840744 bis $4, $4, $4 ++ */ ++ UInt type = fetch32(code + 16); ++ ++ if (type == 0x40C60746) { ++ DIP("r4 = client_request ( r5 )\n"); ++ putPC(mkU64( guest_PC_curr_instr + 20 )); ++ dres->len = 20; ++ dres->jk_StopHere = Ijk_ClientReq; ++ dres->whatNext = Dis_StopHere; ++ return True; ++ } ++ ++ if (type == 0x40E70747) { ++ DIP("r4 = guest_NRADDR\n"); ++ putIReg(4, IRExpr_Get( OFFB_NRADDR, Ity_I64 )); ++ dres->len = 20; ++ dres->jk_StopHere = Ijk_INVALID; ++ dres->whatNext = Dis_Continue; ++ return True; ++ } ++ ++ if (type == 0x41080748) { ++ DIP("branch-and-link-to-noredir r27\n"); ++ putIReg(26, mkU64(guest_PC_curr_instr + 20)); ++ putPC(getIReg(27)); ++ dres->len = 20; ++ dres->jk_StopHere = Ijk_NoRedir; ++ dres->whatNext = Dis_StopHere; ++ return True; ++ } ++ ++ if (type == 0x40840744) { ++ DIP("IR injection\n"); ++ vex_inject_ir(irsb, Iend_LE); ++ // Invalidate the current insn. The reason is that the IRop we're ++ // injecting here can change. In which case the translation has to ++ // be redone. For ease of handling, we simply invalidate all the ++ // time. ++ stmt(IRStmt_Put(OFFB_CMSTART, mkU64(guest_PC_curr_instr))); ++ stmt(IRStmt_Put(OFFB_CMLEN, mkU64(20))); ++ putPC(mkU64( guest_PC_curr_instr + 20 )); ++ dres->len = 20; ++ dres->whatNext = Dis_StopHere; ++ dres->jk_StopHere = Ijk_InvalICache; ++ return True; ++ } ++ ++ return False; ++} ++ ++ ++/*------------------------------------------------------------*/ ++/*--- Disassemble a single SW64 instruction ---*/ ++/*------------------------------------------------------------*/ ++ ++/* Disassemble a single SW64 instruction into IR. The instruction ++ has is located at |guest_instr| and has guest IP of ++ |guest_PC_curr_instr|, which will have been set before the call ++ here. Returns True iff the instruction was decoded, in which case ++ *dres will be set accordingly, or False, in which case *dres should ++ be ignored by the caller. */ ++ ++static ++Bool disInstr_SW64_WRK ( ++ /*MB_OUT*/DisResult* dres, ++ const UChar* guest_instr, ++ const VexArchInfo* archinfo, ++ const VexAbiInfo* abiinfo, ++ Bool sigill_diag ++ ) ++{ ++ /* At least this is simple on SW64: insns are all 4 bytes long, and ++ 4-aligned. So just fish the whole thing out of memory right now ++ and have done. */ ++ UInt insn = fetch32( guest_instr ); ++ ++ DIP("\t(sw64) 0x%llx: ", (ULong)guest_PC_curr_instr); ++ ++ if (handle_special_instr(dres)) { ++ return True; ++ } ++ ++ /* Main SW64 instruction decoder starts here. */ ++ ++ UInt opcode = extract(insn, 31, 26); ++ ++ switch (opcode) { ++ /* SYSCALL */ ++ case 0x0: { ++ return dis_SW64_syscall(dres, insn); ++ } ++ ++ /* CALL RET JMP */ ++ case 0x1: ++ case 0x2: ++ case 0x3: { ++ return dis_SW64_jump(dres, insn); ++ } ++ ++ /* BR BSR */ ++ case 0x4: ++ case 0x5: ++ /* LBR */ ++ case 0x1D: ++ /* BEQ BNE BLT BLE BGT BGE BLBC BLBS */ ++ case 0x30: ++ case 0x31: ++ case 0x32: ++ case 0x33: ++ case 0x34: ++ case 0x35: ++ case 0x36: ++ case 0x37: ++ /* FBEQ FBNE FBLT FBLE FBGT FBGE */ ++ case 0x38: ++ case 0x39: ++ case 0x3A: ++ case 0x3B: ++ case 0x3C: ++ case 0x3D: { ++ return dis_SW64_branch(dres, insn); ++ } ++ ++ case 0x6: { ++ return dis_SW64_memb_and_rtc_insn(insn); ++ } ++ ++ /* LL/SC ATOM NC*/ ++ case 0x8: { ++ UInt ra = extract(insn, 25,21); ++ UInt rb = extract(insn, 20,16); ++ UInt func = extract(insn, 15,12); ++ UInt disp = extract(insn, 11,0); ++ ++ switch (func) { ++ /* LLDW LLDL */ ++ case 0x0: ++ case 0x1: { ++ return dis_SW64_lockload_fallback(func, ra, rb, disp); ++ } ++ ++ /* LSTW LSTL */ ++ case 0x8: ++ case 0x9: { ++ return dis_SW64_lockstore_fallback(func, ra, rb, disp); ++ } ++ ++ /* LDW_INC LDL_INC LDW_DEC LDL_DEC LDW_SET LDL_SET */ ++ case 0x2: ++ case 0x3: ++ case 0x4: ++ case 0x5: ++ case 0x6: ++ case 0x7: { ++ /* Removed in SW6B */ ++ return False; ++ } ++ ++ /* LDW_NC LDL_NC LDD_NC */ ++ case 0xA: ++ case 0xB: ++ case 0xC: { ++ return dis_SW64_nc_load(func, ra, rb, disp); ++ } ++ ++ /* STW_NC STL_NC STD_NC */ ++ case 0xD: ++ case 0xE: ++ case 0xF: { ++ return dis_SW64_nc_store(func, ra, rb, disp); ++ } ++ ++ default: { ++ return False; ++ } ++ } ++ } ++ ++ /* LDWE LDSE LDDE VLDS VLDD */ ++ case 0x9: ++ case 0xA: ++ case 0xB: ++ case 0xC: ++ case 0xD: { ++ UInt ra = extract(insn, 25, 21); ++ if (ra == 31) ++ return dis_SW64_prefetch(insn); ++ else ++ return False; /* TODO: SW64_SIMD */ ++ } ++ ++ /* VSTS VSTD */ ++ case 0xE: ++ case 0xF: { ++ return False; /* TODO: SW64_SIMD */ ++ } ++ ++ /* integer arthimetics: 3 register */ ++ case 0x10: ++ /* integer arthimetics: 2 register + 1 imm */ ++ case 0x12: { ++ UInt ra = extract(insn, 25, 21); ++ UInt rb = extract(insn, 20, 16); ++ UInt imm = extract(insn, 20, 13); ++ UInt func = extract(insn, 12, 5); ++ UInt rc = extract(insn, 4, 0); ++ ++ switch (func) { ++ /* ADDW SUBW S4ADDW S4SUBW S8ADDW S8SUBW */ ++ case 0x0: ++ case 0x1: ++ case 0x2: ++ case 0x3: ++ case 0x4: ++ case 0x5: ++ /* ADDW SUBW S4ADDW S4SUBW S8ADDW S8SUBW */ ++ case 0x8: ++ case 0x9: ++ case 0xA: ++ case 0xB: ++ case 0xC: ++ case 0xD: { ++ return dis_SW64_integer_add_sub(opcode, func, ra, rb, rc, imm); ++ } ++ ++ case 0x10: ++ case 0x18: ++ case 0x19: { ++ return dis_SW64_integer_mul(opcode, func, ra, rb, rc, imm); ++ } ++ ++ case 0x11: ++ case 0x12: ++ case 0x13: ++ case 0x14: ++ case 0x1A: ++ case 0x1B: ++ case 0x1C: ++ case 0x1D: { ++ if (opcode == 0x12) { ++ /* no immediate variant */ ++ return False; ++ } ++ return dis_SW64_integer_div(func, ra, rb, rc); ++ } ++ ++ case 0x1E: ++ case 0x1F: { ++ if (opcode == 0x10) { ++ /* only immediate variant, and used 0x10 as opcode */ ++ return dis_SW64_addpi(func, rc, extract(insn, 25, 13)); ++ } ++ return False; ++ } ++ ++ case 0x20: ++ case 0x21: ++ case 0x22: ++ case 0x23: ++ case 0x24: ++ case 0x25: ++ case 0x26: ++ case 0x27: { ++ if (opcode == 0x12) { ++ /* no immediate variant */ ++ return False; ++ } ++ return dis_SW64_crc32(func, ra, rb, rc); ++ } ++ ++ case 0x28: ++ case 0x29: ++ case 0x2A: ++ case 0x2B: ++ case 0x2C: { ++ return dis_SW64_integer_cmp(opcode, func, ra, rb, rc, imm); ++ } ++ ++ case 0x2D: ++ case 0x2E: { ++ return dis_SW64_bit_setclear(opcode, func, ra, rb, rc, imm); ++ } ++ ++ case 0x38: ++ case 0x39: ++ case 0x3A: ++ case 0x3B: ++ case 0x3C: ++ case 0x3D: { ++ return dis_SW64_bits_logical(opcode, func, ra, rb, rc, imm); ++ } ++ ++ case 0x40: ++ case 0x41: ++ case 0x42: ++ case 0x43: ++ case 0x44: ++ case 0x45: ++ case 0x46: ++ case 0x47: { ++ return dis_SW64_bits_insert(opcode, func, ra, rb, rc, imm); ++ } ++ ++ case 0x48: ++ case 0x49: ++ case 0x4A: ++ case 0x4B: ++ case 0x4C: ++ case 0x4D: ++ case 0x4E: ++ case 0x4F: { ++ return dis_SW64_bits_shift(opcode, func, ra, rb, rc, imm); ++ } ++ ++ case 0x50: ++ case 0x51: ++ case 0x52: ++ case 0x53: ++ case 0x54: ++ case 0x55: ++ case 0x56: ++ case 0x57: { ++ return dis_SW64_bits_extract(opcode, func, ra, rb, rc, imm); ++ } ++ ++ case 0x58: ++ case 0x59: ++ case 0x5A: { ++ return dis_SW64_bits_pop(opcode, func, ra, rb, rc, imm); ++ } ++ ++ case 0x5B: ++ case 0x5C: ++ case 0x5D: { ++ if (opcode == 0x12) { ++ /* no immediate variant */ ++ return False; ++ } ++ return dis_SW64_byte_swap(func, rb, rc); ++ } ++ ++ case 0x5E: ++ case 0x5F: { ++ return dis_SW64_cas(opcode, func, ra, rb, rc); ++ } ++ ++ case 0x60: ++ case 0x61: ++ case 0x62: ++ case 0x63: ++ case 0x64: ++ case 0x65: ++ case 0x66: ++ case 0x67: { ++ return dis_SW64_bits_mask(opcode, func, ra, rb, rc, imm); ++ } ++ ++ case 0x68: ++ case 0x69: ++ case 0x6A: ++ case 0x6B: ++ case 0x6C: { ++ return dis_SW64_bits_zap(opcode, func, ra, rb, rc, imm); ++ } ++ ++ case 0x70: ++ case 0x78: { ++ return dis_SW64_intflt_transfer(opcode, func, ra, rc); ++ } ++ ++ case 0x72: ++ case 0x74: ++ case 0x7a: ++ case 0x7c: ++ case 0x80: ++ case 0x81: ++ case 0x82: ++ case 0x83: ++ case 0x84: ++ case 0x85: ++ case 0x86: ++ case 0x87: ++ case 0x88: ++ case 0x89: ++ case 0x8a: ++ case 0x8b: ++ case 0x8c: ++ case 0x8d: ++ case 0x8e: ++ case 0x8f: { ++ return dis_SW64_fltint_convert(opcode, func, rb, rc); ++ } ++ ++ default: { ++ return False; ++ } ++ } ++ } ++ ++ /* SELxx */ ++ case 0x11: ++ /* SELIxx*/ ++ case 0x13: { ++ return dis_SW64_sel(insn); ++ } ++ ++ /* VLOGzz */ ++ case 0x14: ++ case 0x15: ++ case 0x16: ++ case 0x17: { ++ return False; /* TODO: SW64_SIMD */ ++ } ++ ++ /* float calculation - 3 register */ ++ case 0x18: { ++ UInt func = extract(insn, 12, 5); ++ UInt fa = extract(insn, 25, 21); ++ UInt fb = extract(insn, 20, 16); ++ UInt fc = extract(insn, 4, 0); ++ switch (func) { ++ /* FADDS FADDD FSUBS FSUBD */ ++ case 0x0: ++ case 0x1: ++ case 0x2: ++ case 0x3: ++ /* FMULS FMULD FDIVS FDIVD */ ++ case 0x4: ++ case 0x5: ++ case 0x6: ++ case 0x7: { ++ return dis_SW64_float_arith(func, fa, fb, fc); ++ } ++ ++ /* FSQRTS FSQRTD */ ++ case 0x8: ++ case 0x9: { ++ return dis_SW64_fsqrt(func, fb, fc); ++ } ++ ++ /* FCMPEQ FCMPLE FCMPLT FCMPUN */ ++ case 0x10: ++ case 0x11: ++ case 0x12: ++ case 0x13: { ++ return dis_SW64_fcmp(func, fa, fb, fc); ++ } ++ ++ /* FCVTSD FCVTDS */ ++ case 0x20: ++ case 0x21: ++ /* FCVTDL_G FCVTDL_P FCVTDL_Z FCVTDL_N */ ++ case 0x22: ++ case 0x23: ++ case 0x24: ++ case 0x25: ++ /* FCVTDL FCVTWL FCVTLW */ ++ case 0x27: ++ case 0x28: ++ case 0x29: ++ /* FCVTLS FCVTLD */ ++ case 0x2D: ++ case 0x2F: { ++ return dis_SW64_fcvt(func, fb, fc); ++ } ++ ++ /* FCPYS FCPYSE FCPYSN */ ++ case 0x30: ++ case 0x31: ++ case 0x32: { ++ return dis_SW64_fcpy(func, fa, fb, fc); ++ } ++ ++ /* IFMOVS IFMOVD */ ++ case 0x40: ++ case 0x41: { ++ return dis_SW64_intflt_transfer(opcode, func, fa, fc); ++ } ++ ++ /* CMOVLS CMOVWS CMOVLD CMOVWD CMOVULS CMOVUWS CMOVULD CMOVUWD */ ++ case 0x48: ++ case 0x49: ++ case 0x4a: ++ case 0x4b: ++ case 0x4c: ++ case 0x4d: ++ case 0x4e: ++ case 0x4f: { ++ return dis_SW64_intflt_convert(opcode, func, fb, fc); ++ } ++ ++ /* RFPCR WFPCR SETFPEC0 SETFPEC1 SETFPEC2 SETFPEC3 */ ++ case 0x50: ++ case 0x51: ++ case 0x54: ++ case 0x55: ++ case 0x56: ++ case 0x57: { ++ return dis_SW64_fpcr(insn, func); ++ } ++ ++ /* FRECS FRECD */ ++ case 0x58: ++ case 0x59: { ++ return dis_SW64_frec(func, fa, fc); ++ } ++ ++ /* FRIS FRID FRIS_x FRID_x */ ++ case 0x5a: ++ case 0x5b: ++ case 0x5c: ++ case 0x5d: ++ case 0x5f: ++ case 0x60: ++ case 0x61: ++ case 0x62: ++ case 0x63: ++ case 0x64: { ++ return dis_SW64_fpround(func, fb, fc); ++ } ++ ++ default: { ++ return False; ++ } ++ } /* switch (func) */ ++ } ++ ++ /* float calculation - 4 register */ ++ case 0x19: { ++ UInt func = extract(insn, 15, 10); ++ UInt fa = extract(insn, 25, 21); ++ UInt fb = extract(insn, 20, 16); ++ UInt fc = extract(insn, 9, 5); ++ UInt fd = extract(insn, 4, 0); ++ switch (func) { ++ /* FMAS FMAD FMSS FMSD */ ++ case 0x0: ++ case 0x1: ++ case 0x2: ++ case 0x3: ++ /* FNMAS FNMAD FNMSS FNMSD */ ++ case 0x4: ++ case 0x5: ++ case 0x6: ++ case 0x7: { ++ return dis_SW64_fma(func, fa, fb, fc, fd); ++ } ++ ++ /* FSELEQ FSELNE FSELLT FSELLE FSELGT FSELGE */ ++ case 0x10: ++ case 0x11: ++ case 0x12: ++ case 0x13: ++ case 0x14: ++ case 0x15: { ++ return dis_SW64_fsel(func, fa, fb, fc, fd); ++ } ++ ++ default: { ++ return False; ++ } ++ } ++ } ++ ++ /* SIMD calculation - 3 register */ ++ case 0x1A: { ++ return False; /* TODO: SW64_SIMD */ ++ } ++ ++ /* SIMD calculation - 4 register */ ++ case 0x1B: { ++ return False; /* TODO: SW64_SIMD */ ++ } ++ ++ /* SIMD load/store - with function code */ ++ case 0x1C: { ++ return False; /* TODO: SW64_SIMD */ ++ } ++ ++ /* scalar load/store - with auto address increasing */ ++ case 0x1E: { ++ UInt ra = extract(insn, 25, 21); ++ UInt rb = extract(insn, 20, 16); ++ UInt func = extract(insn, 15, 12); ++ UInt disp = extract(insn, 11, 0); ++ switch (func) { ++ case 0x0: ++ case 0x1: ++ case 0x2: ++ case 0x3: { ++ return dis_SW64_integer_load(func, ra, rb, disp, True); ++ } ++ case 0x4: ++ case 0x5: { ++ return dis_SW64_float_load(func, ra, rb, disp, True); ++ } ++ case 0x6: ++ case 0x7: ++ case 0x8: ++ case 0x9: { ++ return dis_SW64_integer_store(func, ra, rb, disp, True); ++ } ++ case 0xA: ++ case 0xB: { ++ return dis_SW64_float_store(func, ra, rb, disp, True); ++ } ++ case 0xE: ++ case 0xF: { ++ return dis_SW64_prefetch(insn); ++ } ++ default: return False; ++ } ++ } ++ ++ /* LDBU LDHU LDW LDL LDL_U */ ++ case 0x20: ++ case 0x21: ++ case 0x22: ++ case 0x23: ++ case 0x24: { ++ UInt ra = extract(insn, 25, 21); ++ UInt rb = extract(insn, 20, 16); ++ UInt disp = extract(insn, 15, 0); ++ if (ra == 31) ++ return dis_SW64_prefetch(insn); ++ else ++ return dis_SW64_integer_load(opcode, ra, rb, disp, False); ++ } ++ ++ /* PRI_RET PRI_LD PRI_ST */ ++ case 0x7: ++ case 0x25: ++ case 0x2D: { ++ /* */ ++ return False; ++ } ++ ++ /* FLDS FLDD */ ++ case 0x26: ++ case 0x27: { ++ UInt fa = extract(insn, 25, 21); ++ UInt rb = extract(insn, 20, 16); ++ UInt disp = extract(insn, 15, 0); ++ if (fa == 31) ++ return dis_SW64_prefetch(insn); ++ else ++ return dis_SW64_float_load(opcode, fa, rb, disp, False); ++ } ++ ++ /* STB STH STW STL STL_U */ ++ case 0x28: ++ case 0x29: ++ case 0x2A: ++ case 0x2B: ++ case 0x2C: { ++ UInt ra = extract(insn, 25, 21); ++ UInt rb = extract(insn, 20, 16); ++ UInt disp = extract(insn, 15, 0); ++ return dis_SW64_integer_store(opcode, ra, rb, disp, False); ++ } ++ ++ /* FSTS FSTD */ ++ case 0x2E: ++ case 0x2F: { ++ UInt fa = extract(insn, 25, 21); ++ UInt rb = extract(insn, 20, 16); ++ UInt disp = extract(insn, 15, 0); ++ return dis_SW64_float_store(opcode, fa, rb, disp, False); ++ } ++ ++ /* LDI LDIH */ ++ case 0x3E: ++ case 0x3F: { ++ return dis_SW64_load_imm(dres, insn); ++ } ++ ++ default: { ++ return False; ++ } ++ } ++} ++ ++ ++/*------------------------------------------------------------*/ ++/*--- Top-level fn ---*/ ++/*------------------------------------------------------------*/ ++ ++/* Disassemble a single instruction into IR. The instruction ++ is located in host memory at &guest_code[delta]. */ ++ ++DisResult disInstr_SW64 ( IRSB* irsb_IN, ++ const UChar* guest_code_IN, ++ Long delta_IN, ++ Addr guest_IP, ++ VexArch guest_arch, ++ const VexArchInfo* archinfo, ++ const VexAbiInfo* abiinfo, ++ VexEndness host_endness_IN, ++ Bool sigill_diag_IN ) ++{ ++ DisResult dres; ++ vex_bzero(&dres, sizeof(dres)); ++ ++ /* Set globals (see top of this file) */ ++ vassert(guest_arch == VexArchSW64); ++ ++ /* instructions should already aligned to 4-bytes in guest memory */ ++ vassert(0 == (guest_IP & 3ULL)); ++ ++ irsb = irsb_IN; ++ host_endness = host_endness_IN; ++ guest_PC_curr_instr = (Addr64)guest_IP; ++ ++ dres.len = 4; ++ dres.jk_StopHere = Ijk_INVALID; ++ dres.whatNext = Dis_Continue; ++ dres.hint = Dis_HintNone; ++ ++ /* Try to decode */ ++ Bool ok = disInstr_SW64_WRK( &dres, ++ &guest_code_IN[delta_IN], ++ archinfo, abiinfo, sigill_diag_IN ); ++ ++ if (ok) { ++ /* All decode successes end up here. */ ++ vassert(dres.len == 4 || dres.len == 20); ++ switch (dres.whatNext) { ++ case Dis_Continue: ++ putPC( mkU64(dres.len + guest_PC_curr_instr) ); ++ break; ++ case Dis_StopHere: ++ break; ++ default: ++ vassert(0); ++ } ++ DIP("\n"); ++ } else { ++ /* All decode failures end up here. */ ++ if (sigill_diag_IN) { ++ vex_printf("disInstr(sw64): unhandled instruction: %02x %02x %02x %02x (opcode: %x)\n", ++ guest_code_IN[delta_IN + 0], ++ guest_code_IN[delta_IN + 1], ++ guest_code_IN[delta_IN + 2], ++ guest_code_IN[delta_IN + 3], ++ ((UInt)guest_code_IN[delta_IN + 3]) >> 2); ++ } ++ ++ /* Tell the dispatcher that this insn cannot be decoded, and so ++ has not been executed, and (is currently) the next to be ++ executed. PC should be up-to-date since it is made so at the ++ start of each insn, but nevertheless be paranoid and update ++ it again right now. */ ++ putPC( mkU64(guest_PC_curr_instr) ); ++ dres.len = 0; ++ dres.whatNext = Dis_StopHere; ++ dres.jk_StopHere = Ijk_NoDecode; ++ } ++ return dres; ++} ++ ++ ++/*--------------------------------------------------------------------*/ ++/*--- end guest_sw64_toIR.c ---*/ ++/*--------------------------------------------------------------------*/ +diff --git a/VEX/priv/host_amd64_defs.c b/VEX/priv/host_amd64_defs.c +index 69afab739..4dbff80ae 100644 +--- a/VEX/priv/host_amd64_defs.c ++++ b/VEX/priv/host_amd64_defs.c +@@ -2529,7 +2529,7 @@ static UChar* do_ffree_st ( UChar* p, Int n ) + instruction was a profiler inc, set *is_profInc to True, else + leave it unchanged. */ + +-Int emit_AMD64Instr ( /*MB_MOD*/Bool* is_profInc, ++Int emit_AMD64Instr ( /*MB_MOD*/Bool* is_profInc, /*MB_MOD*/Bool* is_8aligned, + UChar* buf, Int nbuf, const AMD64Instr* i, + Bool mode64, VexEndness endness_host, + const void* disp_cp_chain_me_to_slowEP, +diff --git a/VEX/priv/host_amd64_defs.h b/VEX/priv/host_amd64_defs.h +index e2ed2613b..25a9f57c0 100644 +--- a/VEX/priv/host_amd64_defs.h ++++ b/VEX/priv/host_amd64_defs.h +@@ -814,7 +814,7 @@ extern void ppAMD64Instr ( const AMD64Instr*, Bool ); + of the underlying instruction set. */ + extern void getRegUsage_AMD64Instr ( HRegUsage*, const AMD64Instr*, Bool ); + extern void mapRegs_AMD64Instr ( HRegRemap*, AMD64Instr*, Bool ); +-extern Int emit_AMD64Instr ( /*MB_MOD*/Bool* is_profInc, ++extern Int emit_AMD64Instr ( /*MB_MOD*/Bool* is_profInc, /*MB_MOD*/Bool* is_8aligned, + UChar* buf, Int nbuf, + const AMD64Instr* i, + Bool mode64, +diff --git a/VEX/priv/host_arm64_defs.c b/VEX/priv/host_arm64_defs.c +index 39c6aaa46..f4a083744 100644 +--- a/VEX/priv/host_arm64_defs.c ++++ b/VEX/priv/host_arm64_defs.c +@@ -3621,7 +3621,7 @@ static UInt* do_load_or_store64 ( UInt* p, + instruction was a profiler inc, set *is_profInc to True, else + leave it unchanged. */ + +-Int emit_ARM64Instr ( /*MB_MOD*/Bool* is_profInc, ++Int emit_ARM64Instr ( /*MB_MOD*/Bool* is_profInc, /*MB_MOD*/Bool* is_8aligned, + UChar* buf, Int nbuf, const ARM64Instr* i, + Bool mode64, VexEndness endness_host, + const void* disp_cp_chain_me_to_slowEP, +diff --git a/VEX/priv/host_arm64_defs.h b/VEX/priv/host_arm64_defs.h +index dc686dff7..6fadcf5d9 100644 +--- a/VEX/priv/host_arm64_defs.h ++++ b/VEX/priv/host_arm64_defs.h +@@ -1109,7 +1109,7 @@ extern void ppARM64Instr ( const ARM64Instr* ); + of the underlying instruction set. */ + extern void getRegUsage_ARM64Instr ( HRegUsage*, const ARM64Instr*, Bool ); + extern void mapRegs_ARM64Instr ( HRegRemap*, ARM64Instr*, Bool ); +-extern Int emit_ARM64Instr ( /*MB_MOD*/Bool* is_profInc, ++extern Int emit_ARM64Instr ( /*MB_MOD*/Bool* is_profInc, /*MB_MOD*/Bool* is_8aligned, + UChar* buf, Int nbuf, const ARM64Instr* i, + Bool mode64, + VexEndness endness_host, +diff --git a/VEX/priv/host_arm_defs.c b/VEX/priv/host_arm_defs.c +index e30336583..2df0560b1 100644 +--- a/VEX/priv/host_arm_defs.c ++++ b/VEX/priv/host_arm_defs.c +@@ -3067,7 +3067,7 @@ static UInt* do_load_or_store32 ( UInt* p, + instruction was a profiler inc, set *is_profInc to True, else + leave it unchanged. */ + +-Int emit_ARMInstr ( /*MB_MOD*/Bool* is_profInc, ++Int emit_ARMInstr ( /*MB_MOD*/Bool* is_profInc, /*MB_MOD*/Bool* is_8aligned, + UChar* buf, Int nbuf, const ARMInstr* i, + Bool mode64, VexEndness endness_host, + const void* disp_cp_chain_me_to_slowEP, +diff --git a/VEX/priv/host_arm_defs.h b/VEX/priv/host_arm_defs.h +index 0f4b51951..32bf07407 100644 +--- a/VEX/priv/host_arm_defs.h ++++ b/VEX/priv/host_arm_defs.h +@@ -1054,7 +1054,7 @@ extern void ppARMInstr ( const ARMInstr* ); + of the underlying instruction set. */ + extern void getRegUsage_ARMInstr ( HRegUsage*, const ARMInstr*, Bool ); + extern void mapRegs_ARMInstr ( HRegRemap*, ARMInstr*, Bool ); +-extern Int emit_ARMInstr ( /*MB_MOD*/Bool* is_profInc, ++extern Int emit_ARMInstr ( /*MB_MOD*/Bool* is_profInc, /*MB_MOD*/Bool* is_8aligned, + UChar* buf, Int nbuf, const ARMInstr* i, + Bool mode64, + VexEndness endness_host, +diff --git a/VEX/priv/host_mips_defs.c b/VEX/priv/host_mips_defs.c +index 7641ccf62..64f830416 100644 +--- a/VEX/priv/host_mips_defs.c ++++ b/VEX/priv/host_mips_defs.c +@@ -3765,7 +3765,7 @@ static UChar *mkMoveReg(UChar * p, UInt r_dst, UInt r_src) + imperative to emit position-independent code. If the emitted + instruction was a profiler inc, set *is_profInc to True, else + leave it unchanged. */ +-Int emit_MIPSInstr ( /*MB_MOD*/Bool* is_profInc, ++Int emit_MIPSInstr ( /*MB_MOD*/Bool* is_profInc, /*MB_MOD*/Bool* is_8aligned, + UChar* buf, Int nbuf, const MIPSInstr* i, + Bool mode64, + VexEndness endness_host, +diff --git a/VEX/priv/host_mips_defs.h b/VEX/priv/host_mips_defs.h +index 96ab2f9a4..0687ea424 100644 +--- a/VEX/priv/host_mips_defs.h ++++ b/VEX/priv/host_mips_defs.h +@@ -1003,7 +1003,7 @@ extern void ppMIPSInstr(const MIPSInstr *, Bool mode64); + of the underlying instruction set. */ + extern void getRegUsage_MIPSInstr (HRegUsage *, const MIPSInstr *, Bool); + extern void mapRegs_MIPSInstr (HRegRemap *, MIPSInstr *, Bool mode64); +-extern Int emit_MIPSInstr (/*MB_MOD*/Bool* is_profInc, ++extern Int emit_MIPSInstr (/*MB_MOD*/Bool* is_profInc, /*MB_MOD*/Bool* is_8aligned, + UChar* buf, Int nbuf, const MIPSInstr* i, + Bool mode64, + VexEndness endness_host, +diff --git a/VEX/priv/host_nanomips_defs.c b/VEX/priv/host_nanomips_defs.c +index b356d09d8..74d844590 100755 +--- a/VEX/priv/host_nanomips_defs.c ++++ b/VEX/priv/host_nanomips_defs.c +@@ -1341,7 +1341,7 @@ static UChar *mkLoadImm(UChar * p, UInt r_dst, UInt imm) + imperative to emit position-independent code. If the emitted + instruction was a profiler inc, set *is_profInc to True, else + leave it unchanged. */ +-Int emit_NANOMIPSInstr ( /*MB_MOD*/Bool* is_profInc, ++Int emit_NANOMIPSInstr ( /*MB_MOD*/Bool* is_profInc, /*MB_MOD*/Bool* is_8aligned, + UChar* buf, Int nbuf, + const NANOMIPSInstr* i, + Bool mode64, +diff --git a/VEX/priv/host_nanomips_defs.h b/VEX/priv/host_nanomips_defs.h +index 87219dab5..15c8f94bd 100644 +--- a/VEX/priv/host_nanomips_defs.h ++++ b/VEX/priv/host_nanomips_defs.h +@@ -391,7 +391,7 @@ extern HInstrArray *iselSB_NANOMIPS(const IRSB*, + Bool chainingAllowed, + Bool addProfInc, + Addr max_ga); +-extern Int emit_NANOMIPSInstr (/*MB_MOD*/Bool* is_profInc, ++extern Int emit_NANOMIPSInstr (/*MB_MOD*/Bool* is_profInc, /*MB_MOD*/Bool* is_8aligned, + UChar* buf, Int nbuf, + const NANOMIPSInstr* i, + Bool mode64, +diff --git a/VEX/priv/host_ppc_defs.c b/VEX/priv/host_ppc_defs.c +index ea140621e..208fcfc73 100644 +--- a/VEX/priv/host_ppc_defs.c ++++ b/VEX/priv/host_ppc_defs.c +@@ -4152,7 +4152,7 @@ static UChar* mkFormVA ( UChar* p, UInt opc1, UInt r1, UInt r2, + instruction was a profiler inc, set *is_profInc to True, else leave + it unchanged. + */ +-Int emit_PPCInstr ( /*MB_MOD*/Bool* is_profInc, ++Int emit_PPCInstr ( /*MB_MOD*/Bool* is_profInc, /*MB_MOD*/Bool* is_8aligned, + UChar* buf, Int nbuf, const PPCInstr* i, + Bool mode64, VexEndness endness_host, + const void* disp_cp_chain_me_to_slowEP, +diff --git a/VEX/priv/host_ppc_defs.h b/VEX/priv/host_ppc_defs.h +index 39dca08a2..190c0e3b1 100644 +--- a/VEX/priv/host_ppc_defs.h ++++ b/VEX/priv/host_ppc_defs.h +@@ -1266,7 +1266,7 @@ extern void ppPPCInstr(const PPCInstr*, Bool mode64); + of the underlying instruction set. */ + extern void getRegUsage_PPCInstr ( HRegUsage*, const PPCInstr*, Bool mode64 ); + extern void mapRegs_PPCInstr ( HRegRemap*, PPCInstr* , Bool mode64); +-extern Int emit_PPCInstr ( /*MB_MOD*/Bool* is_profInc, ++extern Int emit_PPCInstr ( /*MB_MOD*/Bool* is_profInc, /*MB_MOD*/Bool* is_8aligned, + UChar* buf, Int nbuf, const PPCInstr* i, + Bool mode64, + VexEndness endness_host, +diff --git a/VEX/priv/host_s390_defs.c b/VEX/priv/host_s390_defs.c +index 471be8cb2..45790e4f5 100644 +--- a/VEX/priv/host_s390_defs.c ++++ b/VEX/priv/host_s390_defs.c +@@ -11770,7 +11770,7 @@ s390_insn_vec_replicate_emit(UChar *buf, const s390_insn *insn) + + + Int +-emit_S390Instr(Bool *is_profinc, UChar *buf, Int nbuf, const s390_insn *insn, ++emit_S390Instr(Bool *is_profinc, /*MB_MOD*/Bool* is_8aligned, UChar *buf, Int nbuf, const s390_insn *insn, + Bool mode64, VexEndness endness_host, + const void *disp_cp_chain_me_to_slowEP, + const void *disp_cp_chain_me_to_fastEP, +diff --git a/VEX/priv/host_s390_defs.h b/VEX/priv/host_s390_defs.h +index 375cc8402..dbb5a4e5e 100644 +--- a/VEX/priv/host_s390_defs.h ++++ b/VEX/priv/host_s390_defs.h +@@ -877,7 +877,7 @@ UInt ppHRegS390(HReg); + of the underlying instruction set. */ + void getRegUsage_S390Instr( HRegUsage *, const s390_insn *, Bool ); + void mapRegs_S390Instr ( HRegRemap *, s390_insn *, Bool ); +-Int emit_S390Instr ( Bool *, UChar *, Int, const s390_insn *, Bool, ++Int emit_S390Instr ( Bool *, Bool *, UChar *, Int, const s390_insn *, Bool, + VexEndness, const void *, const void *, + const void *, const void *); + const RRegUniverse *getRRegUniverse_S390( void ); +diff --git a/VEX/priv/host_sw64_defs.c b/VEX/priv/host_sw64_defs.c +new file mode 100644 +index 000000000..45ec45e60 +--- /dev/null ++++ b/VEX/priv/host_sw64_defs.c +@@ -0,0 +1,3169 @@ ++/*---------------------------------------------------------------*/ ++/*--- begin host_sw64_defs.c ---*/ ++/*---------------------------------------------------------------*/ ++ ++/* ++ This file is part of Valgrind, a dynamic binary instrumentation ++ framework. ++ ++ Copyright (C) 2013-2017 OpenWorks ++ info@open-works.net ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, see . ++ ++ The GNU General Public License is contained in the file COPYING. ++*/ ++ ++#include "libvex_basictypes.h" ++#include "libvex.h" ++#include "libvex_trc_values.h" ++ ++#include "main_util.h" ++#include "host_generic_regs.h" ++#include "host_sw64_defs.h" ++ ++/* --------- Registers. --------- */ ++ ++/* The usual HReg abstraction. We use the following classes only: ++ R regs (64 bit int) ++ F regs (64 bit float, also used for 32 bit float) ++*/ ++ ++const RRegUniverse* getRRegUniverse_SW64 ( void ) ++{ ++ /* The real-register universe is a big constant, so we just want to ++ initialise it once. ++ rRegUniverse_SW64_initted values: 0=not initted, 1=initted */ ++ static RRegUniverse rRegUniverse_SW64; ++ static Bool rRegUniverse_SW64_initted = False; ++ ++ /* Handy shorthand, nothing more */ ++ RRegUniverse* ru = &rRegUniverse_SW64; ++ ++ /* This isn't thread-safe. Sigh. */ ++ if (LIKELY(rRegUniverse_SW64_initted)) ++ return ru; ++ ++ RRegUniverse__init(ru); ++ ++ /* Add the registers. The initial segment of this array must be ++ those available for allocation by reg-alloc, and those that ++ follow are not available for allocation. */ ++ ru->allocable_start[HRcInt64] = ru->size; ++ ru->regs[ru->size++] = hregSW64_R16(); ++ ru->regs[ru->size++] = hregSW64_R17(); ++ ru->regs[ru->size++] = hregSW64_R18(); ++ ru->regs[ru->size++] = hregSW64_R19(); ++ ru->regs[ru->size++] = hregSW64_R20(); ++ ru->regs[ru->size++] = hregSW64_R21(); ++ ru->regs[ru->size++] = hregSW64_R22(); ++ ru->regs[ru->size++] = hregSW64_R23(); ++ ru->regs[ru->size++] = hregSW64_R24(); ++ ru->regs[ru->size++] = hregSW64_R25(); ++ ru->regs[ru->size++] = hregSW64_R3(); ++ ru->regs[ru->size++] = hregSW64_R4(); ++ ru->regs[ru->size++] = hregSW64_R5(); ++ ru->regs[ru->size++] = hregSW64_R6(); ++ ru->regs[ru->size++] = hregSW64_R7(); ++ ru->regs[ru->size++] = hregSW64_R8(); ++ ru->regs[ru->size++] = hregSW64_R9(); ++ ru->regs[ru->size++] = hregSW64_R10(); ++ ru->regs[ru->size++] = hregSW64_R11(); ++ ru->regs[ru->size++] = hregSW64_R12(); ++ ru->allocable_end[HRcInt64] = ru->size - 1; ++ ++ /* F64 regs, all of which are callee-saved */ ++ ru->allocable_start[HRcFlt64] = ru->size; ++ ru->regs[ru->size++] = hregSW64_F2(); ++ ru->regs[ru->size++] = hregSW64_F3(); ++ ru->regs[ru->size++] = hregSW64_F4(); ++ ru->regs[ru->size++] = hregSW64_F5(); ++ ru->regs[ru->size++] = hregSW64_F6(); ++ ru->regs[ru->size++] = hregSW64_F7(); ++ ru->regs[ru->size++] = hregSW64_F8(); ++ ru->regs[ru->size++] = hregSW64_F9(); ++ ru->allocable_end[HRcFlt64] = ru->size - 1; ++ ++ ru->allocable = ru->size; ++ ++ /* And other regs, not available to the allocator. */ ++ ++ /* temporary, may use in ProcInc XDirect XIndir XAssisted LoadImm etc... */ ++ ru->regs[ru->size++] = hregSW64_R0(); ++ ru->regs[ru->size++] = hregSW64_R1(); ++ ru->regs[ru->size++] = hregSW64_R2(); ++ ++ /* reserved for future use */ ++ ru->regs[ru->size++] = hregSW64_R13(); ++ ru->regs[ru->size++] = hregSW64_R14(); ++ ++ /* used as guest pointer */ ++ ru->regs[ru->size++] = hregSW64_R15(); ++ ++ /* not available to allocator, of cause */ ++ ru->regs[ru->size++] = hregSW64_R26(); ++ ru->regs[ru->size++] = hregSW64_R27(); ++ ru->regs[ru->size++] = hregSW64_R28(); ++ ru->regs[ru->size++] = hregSW64_R29(); ++ ru->regs[ru->size++] = hregSW64_R30(); ++ ru->regs[ru->size++] = hregSW64_R31(); ++ ru->regs[ru->size++] = hregSW64_F31(); ++ ++ rRegUniverse_SW64_initted = True; ++ ++ RRegUniverse__check_is_sane(ru); ++ return ru; ++} ++ ++UInt ppHRegSW64(HReg reg) ++{ ++ Int r; ++ /* Be generic for all virtual regs. */ ++ if (hregIsVirtual(reg)) { ++ return ppHReg(reg); ++ } ++ /* But specific for real regs. */ ++ switch (hregClass(reg)) { ++ case HRcInt64: ++ r = hregEncoding(reg); ++ vassert(r >= 0 && r < 32); ++ if (r == 30) return vex_printf("sp"); ++ if (r == 29) return vex_printf("gp"); ++ if (r == 15) return vex_printf("fp"); ++ return vex_printf("r%d", r); ++ case HRcFlt64: ++ r = hregEncoding(reg); ++ vassert(r >= 0 && r < 32); ++ return vex_printf("f%d", r); ++ default: ++ vpanic("ppHRegSW64"); ++ } ++} ++ ++/* --------- SW64AMode: memory address expressions. --------- */ ++ ++SW64AModeRI *SW64AModeRI_IR(Int disp, HReg base) ++{ ++ SW64AModeRI *am = LibVEX_Alloc_inline(sizeof(SW64AModeRI)); ++ am->base = base; ++ am->disp = disp; ++ return am; ++} ++ ++void ppSW64AModeRI(SW64AModeRI * am) ++{ ++ if (am->disp == 0) ++ vex_printf("("); ++ else ++ vex_printf("%d(", (Int) am->disp); ++ ppHRegSW64(am->base); ++ vex_printf(")"); ++ return; ++} ++ ++/* --------- Helpers for register allocation. --------- */ ++ ++static void addRegUsage_SW64AModeRI(HRegUsage * u, SW64AModeRI * am) ++{ ++ addHRegUse(u, HRmRead, am->base); ++} ++ ++static void addRegUsage_SW64Cond(HRegUsage * u, SW64Cond * cond) ++{ ++ if (cond->code != SW64cc_AL) ++ addHRegUse(u, HRmRead, cond->reg); ++} ++ ++static void mapRegs_SW64AModeRI(HRegRemap * m, SW64AModeRI * am) ++{ ++ am->base = lookupHRegRemap(m, am->base); ++} ++ ++static void mapRegs_SW64Cond(HRegRemap * m, SW64Cond * cond) ++{ ++ if (cond->code != SW64cc_AL) ++ cond->reg = lookupHRegRemap(m, cond->reg); ++} ++ ++/* --------- Operand, which can be a reg or a u8. --------- */ ++ ++SW64RI8 *SW64RI8_Imm(UChar imm8) ++{ ++ SW64RI8 *op = LibVEX_Alloc_inline(sizeof(SW64RI8)); ++ op->tag = Sri8_Imm; ++ op->Sri8.Imm.imm8 = imm8; ++ return op; ++} ++ ++SW64RI8 *SW64RI8_Reg(HReg reg) ++{ ++ SW64RI8 *op = LibVEX_Alloc_inline(sizeof(SW64RI8)); ++ op->tag = Sri8_Reg; ++ op->Sri8.Reg.reg = reg; ++ return op; ++} ++ ++void ppSW64RI8(SW64RI8 * op) ++{ ++ SW64RI8Tag tag = op->tag; ++ switch (tag) { ++ case Sri8_Imm: ++ vex_printf("%u", (UInt)op->Sri8.Imm.imm8); ++ return; ++ case Sri8_Reg: ++ ppHRegSW64(op->Sri8.Reg.reg); ++ return; ++ default: ++ vpanic("ppSW64RI8"); ++ break; ++ } ++} ++ ++/* An SW64RH can only be used in a "read" context (what would it mean ++ to write or modify a literal?) and so we enumerate its registers ++ accordingly. */ ++static void addRegUsage_SW64RI8(HRegUsage * u, SW64RI8 * op) ++{ ++ switch (op->tag) { ++ case Sri8_Imm: ++ return; ++ case Sri8_Reg: ++ addHRegUse(u, HRmRead, op->Sri8.Reg.reg); ++ return; ++ default: ++ vpanic("addRegUsage_SW64RI8"); ++ break; ++ } ++} ++ ++static void mapRegs_SW64RI8(HRegRemap * m, SW64RI8 * op) ++{ ++ switch (op->tag) { ++ case Sri8_Imm: ++ return; ++ case Sri8_Reg: ++ op->Sri8.Reg.reg = lookupHRegRemap(m, op->Sri8.Reg.reg); ++ return; ++ default: ++ vpanic("mapRegs_SW64RI8"); ++ break; ++ } ++} ++ ++/*-----Integer load and store------*/ ++SW64Instr *SW64Instr_Load(SW64LoadOp op, HReg dst, SW64AModeRI *addr) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_Load; ++ i->SW64in.Load.op = op; ++ i->SW64in.Load.dst = dst; ++ i->SW64in.Load.addr = addr; ++ return i; ++} ++ ++SW64Instr *SW64Instr_Store(SW64StoreOp op, HReg src, SW64AModeRI *addr) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_Store; ++ i->SW64in.Store.op = op; ++ i->SW64in.Store.src = src; ++ i->SW64in.Store.addr = addr; ++ return i; ++} ++ ++/*-----Float load and store------*/ ++SW64Instr *SW64Instr_FpLoad(SW64FpLoadOp op, HReg dst, SW64AModeRI *addr) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_FpLoad; ++ i->SW64in.FpLoad.op = op; ++ i->SW64in.FpLoad.dst = dst; ++ i->SW64in.FpLoad.addr = addr; ++ return i; ++} ++ ++SW64Instr *SW64Instr_FpStore(SW64FpStoreOp op, HReg src, SW64AModeRI *addr) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_FpStore; ++ i->SW64in.FpStore.op = op; ++ i->SW64in.FpStore.src = src; ++ i->SW64in.FpStore.addr = addr; ++ return i; ++} ++ ++SW64Instr *SW64Instr_LoadImm(HReg dst, ULong imm64) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_LoadImm; ++ i->SW64in.LoadImm.imm64 = imm64; ++ i->SW64in.LoadImm.dst = dst; ++ return i; ++} ++ ++SW64Instr *SW64Instr_Cas(UChar sz, HReg res, HReg old, HReg addr, HReg expd, HReg data) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_CAS; ++ i->SW64in.Cas.sz = sz; ++ i->SW64in.Cas.old = old; ++ i->SW64in.Cas.addr = addr; ++ i->SW64in.Cas.expd = expd; ++ i->SW64in.Cas.data = data; ++ return i; ++} ++ ++SW64Instr *SW64Instr_UnOperate(SW64UnOp op, HReg dst, HReg src) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_UnOperate; ++ i->SW64in.UnOperate.op = op; ++ i->SW64in.UnOperate.src = src; ++ i->SW64in.UnOperate.dst = dst; ++ return i; ++} ++ ++SW64Instr *SW64Instr_FpArith(SW64FpArithOp op, HReg dst, HReg srcL, HReg srcR) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_FpArith; ++ i->SW64in.FpArith.op = op; ++ i->SW64in.FpArith.dst = dst; ++ i->SW64in.FpArith.srcL = srcL; ++ i->SW64in.FpArith.srcR = srcR; ++ return i; ++} ++ ++SW64Instr *SW64Instr_FpCpy(SW64FpCpyOp op, HReg dst, HReg src1, HReg src2) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_FpCpy; ++ i->SW64in.FpCpy.op = op; ++ i->SW64in.FpCpy.dst = dst; ++ i->SW64in.FpCpy.src1 = src1; ++ i->SW64in.FpCpy.src2 = src2; ++ return i; ++} ++ ++SW64Instr *SW64Instr_FpQuary(SW64FpQuaryOp op, HReg dst, HReg src1, HReg src2, HReg src3) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_FpQuary; ++ i->SW64in.FpQuary.op = op; ++ i->SW64in.FpQuary.dst = dst; ++ i->SW64in.FpQuary.src1 = src1; ++ i->SW64in.FpQuary.src2 = src2; ++ i->SW64in.FpQuary.src3 = src3; ++ return i; ++} ++ ++SW64Instr *SW64Instr_FpUnary(SW64FpUnaryOp op, HReg dst, HReg src) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_FpUnary; ++ i->SW64in.FpUnary.op = op; ++ i->SW64in.FpUnary.dst = dst; ++ i->SW64in.FpUnary.src = src; ++ return i; ++} ++ ++SW64Instr *SW64Instr_FpGpMove(SW64FpGpMoveOp op, HReg dst, HReg src) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_FpGpMove; ++ i->SW64in.FpGpMove.op = op; ++ i->SW64in.FpGpMove.src = src; ++ i->SW64in.FpGpMove.dst = dst; ++ return i; ++} ++ ++SW64Instr *SW64Instr_FpSel(SW64FpSelOp op, HReg dst, HReg iftrue, HReg iffalse, HReg cond ) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_FpSel; ++ i->SW64in.FpSel.op = op; ++ i->SW64in.FpSel.cond = cond; ++ i->SW64in.FpSel.dst = dst; ++ i->SW64in.FpSel.iftrue = iftrue; ++ i->SW64in.FpSel.iffalse = iffalse; ++ return i; ++} ++ ++SW64Instr *SW64Instr_FpCmp(SW64FpCmpOp op, HReg dst, HReg srcL, HReg srcR) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_FpCmp; ++ i->SW64in.FpCmp.op = op; ++ i->SW64in.FpCmp.dst = dst; ++ i->SW64in.FpCmp.srcL = srcL; ++ i->SW64in.FpCmp.srcR = srcR; ++ return i; ++} ++ ++SW64Instr *SW64Instr_FpCvt(SW64FpCvtOp op, HReg dst, HReg src) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_FpCvt; ++ i->SW64in.FpCvt.op = op; ++ i->SW64in.FpCvt.src = src; ++ i->SW64in.FpCvt.dst = dst; ++ return i; ++} ++ ++SW64Instr *SW64Instr_RFPCR (HReg dst) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_RFPCR; ++ i->SW64in.RFPCR.dst = dst; ++ return i; ++} ++ ++SW64Instr *SW64Instr_WFPCR (HReg src) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_WFPCR; ++ i->SW64in.WFPCR.src = src; ++ return i; ++} ++ ++SW64Instr *SW64Instr_Logic(SW64LogicOp op, HReg dst, HReg srcL, SW64RI8 * srcR) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_Logic; ++ i->SW64in.Logic.op = op; ++ i->SW64in.Logic.dst = dst; ++ i->SW64in.Logic.srcL = srcL; ++ i->SW64in.Logic.srcR = srcR; ++ return i; ++} ++ ++SW64Instr *SW64Instr_Cmp(SW64CmpOp op, HReg dst, HReg srcL, SW64RI8 * srcR) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_Cmp; ++ i->SW64in.Cmp.op = op; ++ i->SW64in.Cmp.dst = dst; ++ i->SW64in.Cmp.srcL = srcL; ++ i->SW64in.Cmp.srcR = srcR; ++ return i; ++} ++ ++SW64Instr *SW64Instr_Shft(SW64ShftOp op, HReg dst, HReg srcL, SW64RI8 *srcR) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_Shft; ++ i->SW64in.Shft.op = op; ++ i->SW64in.Shft.dst = dst; ++ i->SW64in.Shft.srcL = srcL; ++ i->SW64in.Shft.srcR = srcR; ++ return i; ++} ++ ++SW64Instr *SW64Instr_Arith(SW64ArithOp op, HReg dst, HReg srcL, SW64RI8 *srcR) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_Arith; ++ i->SW64in.Arith.op = op; ++ i->SW64in.Arith.dst = dst; ++ i->SW64in.Arith.srcL = srcL; ++ i->SW64in.Arith.srcR = srcR; ++ return i; ++} ++ ++SW64Instr *SW64Instr_IntDiv(SW64IntDivOp op, HReg dst, HReg srcL, HReg srcR) ++{ ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_IntDiv; ++ i->SW64in.IntDiv.op = op; ++ i->SW64in.IntDiv.dst = dst; ++ i->SW64in.IntDiv.srcL = srcL; ++ i->SW64in.IntDiv.srcR = srcR; ++ return i; ++} ++ ++SW64Instr *SW64Instr_XDirect ( Addr64 dstGA, SW64AModeRI* amPC, ++ SW64Cond* cond, Bool toFastEP ) { ++ SW64Instr* i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_XDirect; ++ i->SW64in.XDirect.dstGA = dstGA; ++ i->SW64in.XDirect.amPC = amPC; ++ i->SW64in.XDirect.cond = cond; ++ i->SW64in.XDirect.toFastEP = toFastEP; ++ return i; ++} ++ ++SW64Instr *SW64Instr_XIndir ( HReg dstGA, SW64AModeRI* amPC, ++ SW64Cond* cond ) { ++ SW64Instr* i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_XIndir; ++ i->SW64in.XIndir.dstGA = dstGA; ++ i->SW64in.XIndir.amPC = amPC; ++ i->SW64in.XIndir.cond = cond; ++ return i; ++} ++ ++SW64Instr *SW64Instr_XAssisted ( HReg dstGA, SW64AModeRI* amPC, ++ SW64Cond* cond, IRJumpKind jk ) { ++ SW64Instr* i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_XAssisted; ++ i->SW64in.XAssisted.dstGA = dstGA; ++ i->SW64in.XAssisted.amPC = amPC; ++ i->SW64in.XAssisted.cond = cond; ++ i->SW64in.XAssisted.jk = jk; ++ return i; ++} ++ ++SW64Instr* SW64Instr_CondSel ( SW64CondSelOp op, HReg dst, HReg iftrue, HReg iffalse, HReg cond) ++{ ++ SW64Instr* i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_CondSel; ++ i->SW64in.CondSel.op = op; ++ i->SW64in.CondSel.dst = dst; ++ i->SW64in.CondSel.iftrue = iftrue; ++ i->SW64in.CondSel.iffalse = iffalse; ++ i->SW64in.CondSel.cond = cond; ++ return i; ++} ++ ++SW64Instr *SW64Instr_EvCheck ( SW64AModeRI* amCounter, SW64AModeRI* amFailAddr ) ++{ ++ SW64Instr* i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_EvCheck; ++ i->SW64in.EvCheck.amCounter = amCounter; ++ i->SW64in.EvCheck.amFailAddr = amFailAddr; ++ return i; ++} ++ ++SW64Instr* SW64Instr_ProfInc ( void ) ++{ ++ SW64Instr* i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_ProfInc; ++ return i; ++} ++ ++SW64Instr *SW64Instr_Call ( SW64Cond* cond, ++ Addr64 target, UInt argiregs, RetLoc rloc ) ++{ ++ UInt mask; ++ SW64Instr *i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_Call; ++ i->SW64in.Call.cond = cond; ++ i->SW64in.Call.target = target; ++ i->SW64in.Call.argiregs = argiregs; ++ i->SW64in.Call.rloc = rloc; ++ /* Only $16 .. $21 inclusive may be used as arg regs. */ ++ UInt base = 16; ++ mask = (1 << (16-base)) | (1 << (17-base)) | (1 << (18-base)) | (1 << (19-base)) | (1 << (20-base)) | (1 << (21-base)); ++ vassert(0 == (argiregs & ~mask)); ++ vassert(is_sane_RetLoc(rloc)); ++ return i; ++} ++ ++SW64Instr* SW64Instr_MFence(void) ++{ ++ SW64Instr* i = LibVEX_Alloc_inline(sizeof(SW64Instr)); ++ i->tag = SW64in_Mfence; ++ return i; ++} ++ ++SW64Cond *SW64Cond_Cond(SW64CondCode code, HReg reg) ++{ ++ SW64Cond* c = LibVEX_Alloc_inline(sizeof(SW64Cond)); ++ c->code = code; ++ c->reg = reg; ++ return c; ++} ++ ++SW64Cond *SW64Cond_ALWAYS(void) ++{ ++ SW64Cond* c = LibVEX_Alloc_inline(sizeof(SW64Cond)); ++ c->code = SW64cc_AL; ++ c->reg = INVALID_HREG; ++ return c; ++} ++ ++void ppSW64Cond(const SW64Cond *cond) ++{ ++ if (cond->code == SW64cc_AL) { ++ vex_printf("if (true) "); ++ } else { ++ const char *str = (cond->code == SW64cc_EQ ) ? " == 0)" : ++ (cond->code == SW64cc_NE ) ? " != 0)" : ++ (cond->code == SW64cc_LT ) ? " < 0)" : ++ (cond->code == SW64cc_LE ) ? " <= 0)" : ++ (cond->code == SW64cc_GT ) ? " > 0)" : ++ (cond->code == SW64cc_GE ) ? " >= 0)" : ++ (cond->code == SW64cc_FEQ) ? " == 0.0)" : ++ (cond->code == SW64cc_FNE) ? " != 0.0)" : ++ (cond->code == SW64cc_FLT) ? " < 0.0)" : ++ (cond->code == SW64cc_FLE) ? " <= 0.0)" : ++ (cond->code == SW64cc_FGT) ? " > 0.0)" : ++ (cond->code == SW64cc_FGE) ? " >= 0.0)" : ++ (vassert(0), NULL); ++ vex_printf("if ("); ++ ppHRegSW64(cond->reg); ++ vex_printf("%s ", str); ++ } ++} ++ ++const HChar *showSW64LoadOp(SW64LoadOp op) ++{ ++ switch (op) { ++ case SW64in_LDBU: return "ldbu"; ++ case SW64in_LDHU: return "ldhu"; ++ case SW64in_LDW: return "ldw"; ++ case SW64in_LDL: return "ldl"; ++ default: vpanic("showSW64LoadOp"); ++ } ++} ++ ++const HChar *showSW64StoreOp(SW64StoreOp op) ++{ ++ switch (op) { ++ case SW64in_STB: return "stb"; ++ case SW64in_STH: return "sth"; ++ case SW64in_STW: return "stw"; ++ case SW64in_STL: return "stl"; ++ default: vpanic("showSW64StoreOp"); ++ } ++} ++ ++const HChar *showSW64FpLoadOp(SW64FpLoadOp op) ++{ ++ switch (op) { ++ case SW64in_FLDS: return "flds"; ++ case SW64in_FLDD: return "fldd"; ++ default: vpanic("showSW64FpLoadOp"); ++ } ++} ++ ++const HChar *showSW64FpStoreOp(SW64FpStoreOp op) ++{ ++ switch (op) { ++ case SW64in_FSTS: return "fsts"; ++ case SW64in_FSTD: return "fstd"; ++ default: vpanic("showSW64FpStoreOp"); ++ } ++} ++ ++const HChar *showSW64CmpOp(SW64CmpOp op) ++{ ++ switch(op) { ++ case SW64in_CMPEQ: return "cmpeq"; ++ case SW64in_CMPLT: return "cmplt"; ++ case SW64in_CMPLE: return "cmple"; ++ case SW64in_CMPULT: return "cmpult"; ++ case SW64in_CMPULE: return "cmpule"; ++ default: vpanic("showSW64CmpOp"); ++ } ++} ++ ++const HChar *showSW64CondSelOp(SW64CondSelOp op) ++{ ++ switch(op) { ++ case SW64in_SELEQ: return "seleq"; ++ case SW64in_SELGE: return "selge"; ++ case SW64in_SELGT: return "selgt"; ++ case SW64in_SELLE: return "selle"; ++ case SW64in_SELLT: return "sellt"; ++ case SW64in_SELNE: return "selne"; ++ case SW64in_SELLBC: return "sellbc"; ++ case SW64in_SELLBS: return "sellbs"; ++ default: vpanic("showSW64CondSelOp"); ++ } ++} ++ ++const HChar *showSW64LogicOp(SW64LogicOp op) ++{ ++ switch (op) { ++ case SW64in_AND: return "and"; ++ case SW64in_OR: return "bis"; ++ case SW64in_XOR: return "xor"; ++ case SW64in_ORNOT: return "ornot"; ++ case SW64in_BIC: return "bic"; ++ default: vpanic("showSW64LogicOp"); ++ } ++} ++ ++const HChar *showSW64ArithOp(SW64ArithOp op) ++{ ++ switch (op) { ++ case SW64in_ADDW: return "addw"; ++ case SW64in_SUBW: return "subw"; ++ case SW64in_S4ADDW: return "s4addw"; ++ case SW64in_S4SUBW: return "s4subw"; ++ case SW64in_S8ADDW: return "s8addw"; ++ case SW64in_S8SUBW: return "s8subw"; ++ case SW64in_ADDL: return "addl"; ++ case SW64in_SUBL: return "subl"; ++ case SW64in_S4ADDL: return "s4addl"; ++ case SW64in_S4SUBL: return "s4subl"; ++ case SW64in_S8ADDL: return "s8addl"; ++ case SW64in_S8SUBL: return "s8subl"; ++ case SW64in_MULW: return "mulw"; ++ case SW64in_MULL: return "mull"; ++ case SW64in_UMULH: return "umulh"; ++ case SW64in_ZAP: return "zap"; ++ case SW64in_ZAPNOT: return "zapnot"; ++ case SW64in_SEXTB: return "sextb"; ++ case SW64in_SEXTH: return "sexth"; ++ default: vpanic("showSW64ArithOp"); ++ } ++} ++ ++const HChar *showSW64IntDivOp(SW64IntDivOp op) ++{ ++ switch (op) { ++ case SW64in_DIVW: return "divw"; ++ case SW64in_UDIVW: return "udivw"; ++ case SW64in_REMW: return "remw"; ++ case SW64in_UREMW: return "uremw"; ++ case SW64in_DIVL: return "divl"; ++ case SW64in_UDIVL: return "udivl"; ++ case SW64in_REML: return "reml"; ++ case SW64in_UREML: return "ureml"; ++ default: vpanic("showSW64IntDivOp"); ++ } ++} ++ ++const HChar *showSW64UnaryOp(SW64UnOp op) ++{ ++ switch (op) { ++ case SW64in_POP: return "ctpop"; ++ case SW64in_CLZ: return "ctlz"; ++ case SW64in_CTZ: return "cttz"; ++ default: vpanic("showSW64UnaryOp"); ++ } ++} ++ ++const HChar *showSW64ShftOp(SW64ShftOp op) ++{ ++ switch (op) { ++ case SW64in_SLL: return "sll"; ++ case SW64in_SRL: return "srl"; ++ case SW64in_SRA: return "sra"; ++ default: vpanic("showSW64ShftOp"); ++ } ++} ++ ++const HChar *showSW64FpArithOp(SW64FpArithOp op) ++{ ++ switch (op) { ++ case SW64in_FADDS: return "fadds"; ++ case SW64in_FADDD: return "faddd"; ++ case SW64in_FSUBS: return "fsubs"; ++ case SW64in_FSUBD: return "fsubd"; ++ case SW64in_FMULS: return "fmuls"; ++ case SW64in_FMULD: return "fmuld"; ++ case SW64in_FDIVS: return "fdivs"; ++ case SW64in_FDIVD: return "fdivd"; ++ default: vpanic("showSW64FpArithOp"); ++ } ++} ++ ++const HChar *showSW64FpGpMoveOp(SW64FpGpMoveOp op) ++{ ++ switch (op) { ++ case SW64in_FIMOVS: return "fimovs"; ++ case SW64in_FIMOVD: return "fimovd"; ++ case SW64in_IFMOVS: return "ifmovs"; ++ case SW64in_IFMOVD: return "ifmovd"; ++ case SW64in_CMOVDL: return "cmovdl"; ++ case SW64in_CMOVDL_G: return "cmovdl_g"; ++ case SW64in_CMOVDL_P: return "cmovdl_p"; ++ case SW64in_CMOVDL_Z: return "cmovdl_z"; ++ case SW64in_CMOVDL_N: return "cmovdl_n"; ++ case SW64in_CMOVDLU: return "cmovdlu"; ++ case SW64in_CMOVDLU_G: return "cmovdlu_g"; ++ case SW64in_CMOVDLU_P: return "cmovdlu_p"; ++ case SW64in_CMOVDLU_Z: return "cmovdlu_z"; ++ case SW64in_CMOVDLU_N: return "cmovdlu_n"; ++ case SW64in_CMOVDWU: return "cmovdwu"; ++ case SW64in_CMOVDWU_G: return "cmovdwu_g"; ++ case SW64in_CMOVDWU_P: return "cmovdwu_p"; ++ case SW64in_CMOVDWU_Z: return "cmovdwu_z"; ++ case SW64in_CMOVDWU_N: return "cmovdwu_n"; ++ case SW64in_CMOVDW: return "cmovdw"; ++ case SW64in_CMOVDW_G: return "cmovdw_g"; ++ case SW64in_CMOVDW_P: return "cmovdw_p"; ++ case SW64in_CMOVDW_Z: return "cmovdw_z"; ++ case SW64in_CMOVDW_N: return "cmovdw_n"; ++ case SW64in_CMOVLS: return "cmovls"; ++ case SW64in_CMOVWS: return "cmovws"; ++ case SW64in_CMOVLD: return "cmovld"; ++ case SW64in_CMOVWD: return "cmovwd"; ++ case SW64in_CMOVULS: return "cmovuls"; ++ case SW64in_CMOVUWS: return "cmovuws"; ++ case SW64in_CMOVULD: return "cmovuld"; ++ case SW64in_CMOVUWD: return "cmovuwd"; ++ default: vpanic("showSW64FpGpMoveOp"); ++ } ++} ++ ++const HChar *showSW64FpCpyOp(SW64FpCpyOp op) ++{ ++ switch (op) { ++ case SW64in_FCPYS: return "fcpys"; ++ case SW64in_FCPYSE: return "fcpyse"; ++ case SW64in_FCPYSN: return "fcpysn"; ++ default: vpanic("showSW64FpCpyOp"); ++ } ++} ++ ++const HChar *showSW64FpQuaryOp(SW64FpQuaryOp op) ++{ ++ switch (op) { ++ case SW64in_MADDS: return "madds"; ++ case SW64in_MADDD: return "maddd"; ++ case SW64in_MSUBS: return "msubs"; ++ case SW64in_MSUBD: return "msubd"; ++ default: vpanic("showSW64FpQuaryOp"); ++ } ++} ++ ++const HChar *showSW64FpUnaryOp(SW64FpUnaryOp op) ++{ ++ switch (op) { ++ case SW64in_FSQRTS: return "fsqrts"; ++ case SW64in_FSQRTD: return "fsqrtd"; ++ case SW64in_FRECS: return "frecs"; ++ case SW64in_FRECD: return "frecd"; ++ case SW64in_FRIS: return "fris"; ++ case SW64in_FRIS_G: return "fris_g"; ++ case SW64in_FRIS_P: return "fris_p"; ++ case SW64in_FRIS_Z: return "fris_z"; ++ case SW64in_FRIS_N: return "fris_n"; ++ case SW64in_FRID: return "frid"; ++ case SW64in_FRID_G: return "frid_g"; ++ case SW64in_FRID_P: return "frid_p"; ++ case SW64in_FRID_Z: return "frid_z"; ++ case SW64in_FRID_N: return "frid_n"; ++ default: vpanic("showSW64FpUnaryOp"); ++ } ++} ++ ++const HChar *showSW64FpCmpOp(SW64FpCmpOp op) ++{ ++ switch (op) { ++ case SW64in_CMPFEQ: return "fcmpeq"; ++ case SW64in_CMPFLE: return "fcmple"; ++ case SW64in_CMPFLT: return "fcmplt"; ++ case SW64in_CMPFUN: return "fcmpun"; ++ default: vpanic("showSW64FpCmpOp"); ++ } ++} ++ ++const HChar *showSW64FpSelOp(SW64FpSelOp op) ++{ ++ switch(op) { ++ case SW64in_FSELEQ: return "fseleq"; ++ case SW64in_FSELNE: return "fselne"; ++ case SW64in_FSELLT: return "fsellt"; ++ case SW64in_FSELLE: return "fselle"; ++ case SW64in_FSELGT: return "fselgt"; ++ case SW64in_FSELGE: return "fselge"; ++ default: vpanic("showSW64FpSelOp"); ++ } ++} ++ ++const HChar *showSW64FpCvtOp(SW64FpCvtOp op) ++{ ++ switch (op) { ++ case SW64in_FCVTSD: return "fcvtsd"; ++ case SW64in_FCVTDS: return "fcvtds"; ++ case SW64in_FCVTDL: return "fcvtdl"; ++ case SW64in_FCVTLS: return "fcvtls"; ++ case SW64in_FCVTLD: return "fcvtld"; ++ case SW64in_FCVTDL_G: return "fcvtdl_g"; ++ case SW64in_FCVTDL_P: return "fcvtdl_p"; ++ case SW64in_FCVTDL_Z: return "fcvtdl_z"; ++ case SW64in_FCVTDL_N: return "fcvtdl_n"; ++ default: vpanic("showSW64FpCvtOp"); ++ } ++} ++ ++/*-----print sw64 instr----*/ ++void ppSW64Instr(const SW64Instr *i) ++{ ++ switch(i->tag) ++ { ++ case SW64in_Load: ++ { ++ vex_printf("%s ", showSW64LoadOp(i->SW64in.Load.op)); ++ ppHRegSW64(i->SW64in.Load.dst); ++ vex_printf(","); ++ ppSW64AModeRI(i->SW64in.Load.addr); ++ return; ++ } ++ case SW64in_Store: ++ { ++ vex_printf("%s ", showSW64StoreOp(i->SW64in.Store.op)); ++ ppHRegSW64(i->SW64in.Store.src); ++ vex_printf(","); ++ ppSW64AModeRI(i->SW64in.Store.addr); ++ return; ++ } ++ case SW64in_FpLoad: ++ { ++ vex_printf("%s ", showSW64FpLoadOp(i->SW64in.FpLoad.op)); ++ ppHRegSW64(i->SW64in.FpLoad.dst); ++ vex_printf(","); ++ ppSW64AModeRI(i->SW64in.FpLoad.addr); ++ return; ++ } ++ case SW64in_FpStore: ++ { ++ vex_printf("%s ", showSW64FpStoreOp(i->SW64in.FpStore.op)); ++ ppHRegSW64(i->SW64in.FpStore.src); ++ vex_printf(","); ++ ppSW64AModeRI(i->SW64in.FpStore.addr); ++ return; ++ } ++ case SW64in_LoadImm: ++ { ++ vex_printf("ldi "); ++ ppHRegSW64(i->SW64in.LoadImm.dst); ++ vex_printf(",0x%016llx($31)", i->SW64in.LoadImm.imm64); ++ return; ++ } ++ case SW64in_CAS: ++ { ++ /* ++ 0: lld* %[old], 0(%[addr]) ++ cmpeq %[old], %[expd], $1 ++ wr_f $1 ++ mov %[data], $2 ++ lst* $2, 0(%[addr]) ++ rd_f $2 ++ beq $1, 1f ++ beq $2, 0b ++ 1: ++ */ ++ UChar sz = i->SW64in.Cas.sz; ++ vassert(sz == 4 || sz == 8); ++ ++ vex_printf("0: lld%c ", sz == 4 ? 'w' : 'l'); ++ ppHRegSW64(i->SW64in.Cas.old); ++ vex_printf(", 0("); ++ ppHRegSW64(i->SW64in.Cas.addr); ++ vex_printf(")\n"); ++ ++ vex_printf(" cmpeq "); ++ ppHRegSW64(i->SW64in.Cas.old); ++ vex_printf(", "); ++ ppHRegSW64(i->SW64in.Cas.expd); ++ vex_printf(", r1\n"); ++ ++ vex_printf(" wr_f r1\n"); ++ ++ vex_printf(" mov "); ++ ppHRegSW64(i->SW64in.Cas.data); ++ vex_printf(", r2\n"); ++ ++ vex_printf(" lst%c r2, 0(", sz == 4 ? 'w' : 'l'); ++ ppHRegSW64(i->SW64in.Cas.addr); ++ vex_printf(")\n"); ++ ++ vex_printf(" rd_f r2\n"); ++ ++ vex_printf(" beq r1, 1f\n"); ++ ++ vex_printf(" beq r2, 0b\n"); ++ ++ vex_printf("1: "); ++ return; ++ } ++ case SW64in_UnOperate: ++ { ++ vex_printf("%s ", showSW64UnaryOp(i->SW64in.UnOperate.op)); ++ ppHRegSW64(i->SW64in.UnOperate.src); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.UnOperate.dst); ++ return; ++ } ++ case SW64in_Logic: ++ { ++ vex_printf("%s ", showSW64LogicOp(i->SW64in.Logic.op)); ++ ppHRegSW64(i->SW64in.Logic.srcL); ++ vex_printf(","); ++ ppSW64RI8(i->SW64in.Logic.srcR); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.Logic.dst); ++ return; ++ } ++ case SW64in_Cmp: ++ { ++ vex_printf("%s ", showSW64CmpOp(i->SW64in.Cmp.op)); ++ ppHRegSW64(i->SW64in.Cmp.srcL); ++ vex_printf(","); ++ ppSW64RI8(i->SW64in.Cmp.srcR); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.Cmp.dst); ++ return; ++ } ++ case SW64in_Shft: ++ { ++ vex_printf("%s ", showSW64ShftOp(i->SW64in.Shft.op)); ++ ppHRegSW64(i->SW64in.Shft.srcL); ++ vex_printf(","); ++ ppSW64RI8(i->SW64in.Shft.srcR); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.Shft.dst); ++ return; ++ } ++ case SW64in_Arith: ++ { ++ vex_printf("%s ", showSW64ArithOp(i->SW64in.Arith.op)); ++ ppHRegSW64(i->SW64in.Arith.srcL); ++ vex_printf(","); ++ ppSW64RI8(i->SW64in.Arith.srcR); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.Arith.dst); ++ return; ++ } ++ case SW64in_IntDiv: ++ { ++ vex_printf("%s ", showSW64IntDivOp(i->SW64in.IntDiv.op)); ++ ppHRegSW64(i->SW64in.IntDiv.srcL); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.IntDiv.srcR); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.IntDiv.dst); ++ return; ++ } ++ case SW64in_CondSel: ++ { ++ vex_printf("%s ", showSW64CondSelOp(i->SW64in.CondSel.op)); ++ ppHRegSW64(i->SW64in.CondSel.cond); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.CondSel.iftrue); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.CondSel.iffalse); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.CondSel.dst); ++ return; ++ } ++ case SW64in_FpArith: ++ { ++ vex_printf("%s ", showSW64FpArithOp(i->SW64in.FpArith.op)); ++ ppHRegSW64(i->SW64in.FpArith.srcL); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpArith.srcR); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpArith.dst); ++ return; ++ } ++ case SW64in_FpCpy: ++ { ++ vex_printf("%s ", showSW64FpCpyOp(i->SW64in.FpCpy.op)); ++ ppHRegSW64(i->SW64in.FpCpy.src1); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpCpy.src2); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpCpy.dst); ++ return; ++ } ++ case SW64in_FpQuary: ++ { ++ vex_printf("%s ", showSW64FpQuaryOp(i->SW64in.FpQuary.op)); ++ ppHRegSW64(i->SW64in.FpQuary.src1); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpQuary.src2); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpQuary.src3); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpQuary.dst); ++ return; ++ } ++ case SW64in_FpUnary: ++ { ++ vex_printf("%s ", showSW64FpUnaryOp(i->SW64in.FpUnary.op)); ++ ppHRegSW64(i->SW64in.FpUnary.dst); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpUnary.src); ++ return; ++ } ++ case SW64in_FpGpMove: ++ { ++ vex_printf("%s ", showSW64FpGpMoveOp(i->SW64in.FpGpMove.op)); ++ ppHRegSW64(i->SW64in.FpGpMove.src); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpGpMove.dst); ++ return; ++ } ++ case SW64in_FpSel: ++ { ++ vex_printf("%s ", showSW64FpSelOp(i->SW64in.FpSel.op)); ++ ppHRegSW64(i->SW64in.FpSel.cond); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpSel.iftrue); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpSel.iffalse); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpSel.dst); ++ return; ++ } ++ case SW64in_FpCmp: ++ { ++ vex_printf("%s ", showSW64FpCmpOp(i->SW64in.FpCmp.op)); ++ ppHRegSW64(i->SW64in.FpCmp.srcL); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpCmp.srcR); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpCmp.dst); ++ return; ++ } ++ case SW64in_FpCvt: ++ { ++ vex_printf("%s ", showSW64FpCvtOp(i->SW64in.FpCvt.op)); ++ ppHRegSW64(i->SW64in.FpCvt.src); ++ vex_printf(","); ++ ppHRegSW64(i->SW64in.FpCvt.dst); ++ return; ++ } ++ case SW64in_RFPCR: ++ { ++ vex_printf("rfpcr "); ++ ppHRegSW64(i->SW64in.RFPCR.dst); ++ return; ++ } ++ case SW64in_WFPCR: ++ { ++ vex_printf("wfpcr "); ++ ppHRegSW64(i->SW64in.WFPCR.src); ++ return; ++ } ++ case SW64in_XDirect: ++ { ++ vex_printf("(xDirect) "); ++ ppSW64Cond(i->SW64in.XDirect.cond); ++ vex_printf("{ ldi r2, 0x%llx", i->SW64in.XDirect.dstGA); ++ vex_printf("; stl r2, "); ++ ppSW64AModeRI(i->SW64in.XDirect.amPC); ++ vex_printf("; ldi r2, disp_cp_chain_me_to_%sEP; jmp r1, (r2); }", ++ i->SW64in.XDirect.toFastEP ? "fast" : "slow"); ++ return; ++ } ++ case SW64in_XIndir: ++ { ++ vex_printf("(xIndir) "); ++ ppSW64Cond(i->SW64in.XIndir.cond); ++ vex_printf("{ stl "); ++ ppHRegSW64(i->SW64in.XIndir.dstGA); ++ vex_printf(", "); ++ ppSW64AModeRI(i->SW64in.XIndir.amPC); ++ vex_printf("; ldi r2, disp_indir; jmp r31, (r2); }"); ++ return; ++ } ++ case SW64in_XAssisted: ++ { ++ vex_printf("(xAssisted) "); ++ ppSW64Cond(i->SW64in.XAssisted.cond); ++ vex_printf("{ stl "); ++ ppHRegSW64(i->SW64in.XAssisted.dstGA); ++ vex_printf(", "); ++ ppSW64AModeRI(i->SW64in.XAssisted.amPC); ++ vex_printf("; ldi r0, IRJumpKind_to_TRCVAL(%d)", ++ (Int)i->SW64in.XAssisted.jk); ++ vex_printf("; ldi r2, disp_assisted; jmp r31, (r2);}"); ++ return; ++ } ++ case SW64in_EvCheck: ++ { ++ vex_printf("(evCheck) ldw r2, "); ++ ppSW64AModeRI(i->SW64in.EvCheck.amCounter); ++ vex_printf("; subl r2,1,r2"); ++ vex_printf("; stw r2, "); ++ ppSW64AModeRI(i->SW64in.EvCheck.amCounter); ++ vex_printf("; bgez r2, nofail"); ++ vex_printf("; ldl r2, "); ++ ppSW64AModeRI(i->SW64in.EvCheck.amFailAddr); ++ vex_printf("; jmp r31, (r2)"); ++ vex_printf("; nofail:"); ++ return; ++ } ++ case SW64in_ProfInc: ++ { ++ vex_printf("(profInc) ldi r2, ($NotKnownYet); " ++ "ldl r1, 0(r2); " ++ "addl r1, 1, r1; " ++ "stl r1, 0(r2); "); ++ return; ++ } ++ case SW64in_Call: ++ { ++ Int n; ++ vex_printf("call: "); ++ ppSW64Cond(i->SW64in.Call.cond); ++ vex_printf("{ ldi "); ++ ppHRegSW64(hregSW64_R27()); ++ vex_printf(",0x%016llx($31)", i->SW64in.Call.target); ++ ++ vex_printf(" ; JMP $26, $27; # args ["); ++ for (n = 16; n < 32; n++) { ++ if (i->SW64in.Call.argiregs & (1 << (n-16))) { ++ vex_printf("$%d", n); ++ if ((i->SW64in.Call.argiregs >> (n-16)) > 1) ++ vex_printf(","); ++ } ++ } ++ vex_printf("]; "); ++ ++ break; ++ } ++ case SW64in_Mfence: ++ { ++ vex_printf("MEMB;"); ++ vex_printf("IMEMB;\n"); ++ } ++ default: ++ break; ++ } ++} ++ ++/* --------- Helpers for register allocation. --------- */ ++ ++void getRegUsage_SW64Instr(HRegUsage * u, const SW64Instr * i) ++{ ++ initHRegUsage(u); ++ switch (i->tag) ++ { ++ /*----load/store----*/ ++ case SW64in_Load: ++ addHRegUse(u, HRmWrite, i->SW64in.Load.dst); ++ addRegUsage_SW64AModeRI(u, i->SW64in.Load.addr); ++ return; ++ case SW64in_Store: ++ addHRegUse(u, HRmRead, i->SW64in.Store.src); ++ addRegUsage_SW64AModeRI(u, i->SW64in.Store.addr); ++ return; ++ case SW64in_FpLoad: ++ addHRegUse(u, HRmWrite, i->SW64in.FpLoad.dst); ++ addRegUsage_SW64AModeRI(u, i->SW64in.FpLoad.addr); ++ return; ++ case SW64in_FpStore: ++ addHRegUse(u, HRmRead, i->SW64in.FpStore.src); ++ addRegUsage_SW64AModeRI(u, i->SW64in.FpStore.addr); ++ return; ++ case SW64in_LoadImm: ++ addHRegUse(u, HRmWrite, i->SW64in.LoadImm.dst); ++ return; ++ ++ case SW64in_CAS: ++ addHRegUse(u, HRmWrite, i->SW64in.Cas.old); ++ addHRegUse(u, HRmRead, i->SW64in.Cas.expd); ++ addHRegUse(u, HRmRead, i->SW64in.Cas.data); ++ addHRegUse(u, HRmRead, i->SW64in.Cas.addr); ++ return; ++ ++ /*----unop data process----*/ ++ case SW64in_UnOperate: ++ addHRegUse(u, HRmRead, i->SW64in.UnOperate.src); ++ addHRegUse(u, HRmWrite, i->SW64in.UnOperate.dst); ++ return; ++ ++ /*----integer data process----*/ ++ case SW64in_Logic: ++ addHRegUse(u, HRmRead, i->SW64in.Logic.srcL); ++ addRegUsage_SW64RI8(u, i->SW64in.Logic.srcR); ++ addHRegUse(u, HRmWrite, i->SW64in.Logic.dst); ++ return; ++ case SW64in_Cmp: ++ addHRegUse(u, HRmRead, i->SW64in.Cmp.srcL); ++ addRegUsage_SW64RI8(u, i->SW64in.Cmp.srcR); ++ addHRegUse(u, HRmWrite, i->SW64in.Cmp.dst); ++ return; ++ case SW64in_Shft: ++ addHRegUse(u, HRmRead, i->SW64in.Shft.srcL); ++ addRegUsage_SW64RI8(u, i->SW64in.Shft.srcR); ++ addHRegUse(u, HRmWrite, i->SW64in.Shft.dst); ++ return; ++ case SW64in_Arith: ++ addHRegUse(u, HRmRead, i->SW64in.Arith.srcL); ++ addRegUsage_SW64RI8(u, i->SW64in.Arith.srcR); ++ addHRegUse(u, HRmWrite, i->SW64in.Arith.dst); ++ return; ++ case SW64in_IntDiv: ++ addHRegUse(u, HRmRead, i->SW64in.IntDiv.srcL); ++ addHRegUse(u, HRmRead, i->SW64in.IntDiv.srcR); ++ addHRegUse(u, HRmWrite, i->SW64in.IntDiv.dst); ++ return; ++ ++ /*----float data process----*/ ++ case SW64in_FpArith: ++ addHRegUse(u, HRmRead, i->SW64in.FpArith.srcL); ++ addHRegUse(u, HRmRead, i->SW64in.FpArith.srcR); ++ addHRegUse(u, HRmWrite, i->SW64in.FpArith.dst); ++ return; ++ case SW64in_FpGpMove: ++ addHRegUse(u, HRmRead, i->SW64in.FpGpMove.src); ++ addHRegUse(u, HRmWrite, i->SW64in.FpGpMove.dst); ++ return; ++ case SW64in_FpCpy: ++ addHRegUse(u, HRmRead, i->SW64in.FpCpy.src1); ++ addHRegUse(u, HRmRead, i->SW64in.FpCpy.src2); ++ addHRegUse(u, HRmWrite, i->SW64in.FpCpy.dst); ++ return; ++ case SW64in_FpQuary: ++ addHRegUse(u, HRmRead, i->SW64in.FpQuary.src1); ++ addHRegUse(u, HRmRead, i->SW64in.FpQuary.src2); ++ addHRegUse(u, HRmRead, i->SW64in.FpQuary.src3); ++ addHRegUse(u, HRmWrite, i->SW64in.FpQuary.dst); ++ return; ++ case SW64in_FpUnary: ++ addHRegUse(u, HRmRead, i->SW64in.FpUnary.src); ++ addHRegUse(u, HRmWrite, i->SW64in.FpUnary.dst); ++ return; ++ case SW64in_FpSel: ++ addHRegUse(u, HRmRead, i->SW64in.FpSel.iftrue); ++ addHRegUse(u, HRmRead, i->SW64in.FpSel.iffalse); ++ addHRegUse(u, HRmRead, i->SW64in.FpSel.cond); ++ addHRegUse(u, HRmWrite, i->SW64in.FpSel.dst); ++ return; ++ case SW64in_FpCmp: ++ addHRegUse(u, HRmRead, i->SW64in.FpCmp.srcL); ++ addHRegUse(u, HRmRead, i->SW64in.FpCmp.srcR); ++ addHRegUse(u, HRmWrite, i->SW64in.FpCmp.dst); ++ return; ++ case SW64in_FpCvt: ++ addHRegUse(u, HRmRead, i->SW64in.FpCvt.src); ++ addHRegUse(u, HRmWrite, i->SW64in.FpCvt.dst); ++ return; ++ case SW64in_RFPCR: ++ addHRegUse(u, HRmWrite, i->SW64in.RFPCR.dst); ++ return; ++ case SW64in_WFPCR: ++ addHRegUse(u, HRmRead, i->SW64in.WFPCR.src); ++ return; ++ ++ /*----code link----*/ ++ case SW64in_XDirect: ++ addRegUsage_SW64AModeRI(u, i->SW64in.XDirect.amPC); ++ addRegUsage_SW64Cond(u, i->SW64in.XDirect.cond); ++ return; ++ case SW64in_XIndir: ++ addHRegUse(u, HRmRead, i->SW64in.XIndir.dstGA); ++ addRegUsage_SW64AModeRI(u, i->SW64in.XIndir.amPC); ++ addRegUsage_SW64Cond(u, i->SW64in.XIndir.cond); ++ return; ++ case SW64in_XAssisted: ++ addHRegUse(u, HRmRead, i->SW64in.XAssisted.dstGA); ++ addRegUsage_SW64AModeRI(u, i->SW64in.XAssisted.amPC); ++ addRegUsage_SW64Cond(u, i->SW64in.XAssisted.cond); ++ return; ++ ++ /*----cond select ----*/ ++ case SW64in_CondSel: ++ addHRegUse(u, HRmRead, i->SW64in.CondSel.iftrue); ++ addHRegUse(u, HRmRead, i->SW64in.CondSel.iffalse); ++ addHRegUse(u, HRmRead, i->SW64in.CondSel.cond); ++ addHRegUse(u, HRmWrite, i->SW64in.CondSel.dst); ++ return; ++ ++ /*----other ----*/ ++ case SW64in_EvCheck: ++ /* We expect both amodes only to mention %ebp, so this is in ++ fact pointless, since %ebp isn't allocatable, but anyway.. */ ++ addRegUsage_SW64AModeRI(u, i->SW64in.EvCheck.amCounter); ++ addRegUsage_SW64AModeRI(u, i->SW64in.EvCheck.amFailAddr); ++ return; ++ case SW64in_ProfInc: ++ /* does not use any registers. */ ++ return; ++ case SW64in_Call: ++ { ++ /* Logic and comments copied/modified from x86, ppc and arm back end. ++ First off, claim it trashes all the caller-saved regs ++ which fall within the register allocator's jurisdiction. */ ++ addRegUsage_SW64Cond(u, i->SW64in.Call.cond); ++ ++ UInt argir; ++ addHRegUse(u, HRmWrite, hregSW64_R31()); ++ ++ addHRegUse(u, HRmWrite, hregSW64_R28()); ++ addHRegUse(u, HRmWrite, hregSW64_R0()); ++ ++ addHRegUse(u, HRmWrite, hregSW64_R16()); ++ addHRegUse(u, HRmWrite, hregSW64_R17()); ++ addHRegUse(u, HRmWrite, hregSW64_R18()); ++ addHRegUse(u, HRmWrite, hregSW64_R19()); ++ addHRegUse(u, HRmWrite, hregSW64_R20()); ++ addHRegUse(u, HRmWrite, hregSW64_R21()); ++ ++ addHRegUse(u, HRmWrite, hregSW64_R1()); ++ addHRegUse(u, HRmWrite, hregSW64_R2()); ++ addHRegUse(u, HRmWrite, hregSW64_R3()); ++ addHRegUse(u, HRmWrite, hregSW64_R4()); ++ addHRegUse(u, HRmWrite, hregSW64_R5()); ++ addHRegUse(u, HRmWrite, hregSW64_R6()); ++ addHRegUse(u, HRmWrite, hregSW64_R7()); ++ addHRegUse(u, HRmWrite, hregSW64_R8()); ++ addHRegUse(u, HRmWrite, hregSW64_R22()); ++ addHRegUse(u, HRmWrite, hregSW64_R23()); ++ addHRegUse(u, HRmWrite, hregSW64_R24()); ++ addHRegUse(u, HRmWrite, hregSW64_R25()); ++ ++ addHRegUse(u, HRmWrite, hregSW64_R26()); ++ ++ /* Now we have to state any parameter-carrying registers ++ which might be read. This depends on the argiregs field. */ ++ argir = i->SW64in.Call.argiregs; ++ UInt base = 16; ++ if (argir & (1<<(21-base))) addHRegUse(u, HRmRead, hregSW64_R21()); ++ if (argir & (1<<(20-base))) addHRegUse(u, HRmRead, hregSW64_R20()); ++ if (argir & (1<<(19-base))) addHRegUse(u, HRmRead, hregSW64_R19()); ++ if (argir & (1<<(18-base))) addHRegUse(u, HRmRead, hregSW64_R18()); ++ if (argir & (1<<(17-base))) addHRegUse(u, HRmRead, hregSW64_R17()); ++ if (argir & (1<<(16-base))) addHRegUse(u, HRmRead, hregSW64_R16()); ++ ++ vassert(0 == (argir & ~((1 << 0) | (1 << 1) | (1 << 2) ++ | (1 << 3) | (1 << 4) | (1 << 5) ))); ++ ++ return; ++ } ++ ++ case SW64in_Mfence: ++ /* does not use any registers. */ ++ return; ++ ++ default: ++ break; ++ } ++} ++ ++/* local helper */ ++static void mapReg(HRegRemap * m, HReg * r) ++{ ++ *r = lookupHRegRemap(m, *r); ++} ++ ++void mapRegs_SW64Instr(HRegRemap * m, SW64Instr * i) ++{ ++ switch (i->tag) ++ { ++ /*----load/store----*/ ++ case SW64in_Load: ++ mapReg(m, &i->SW64in.Load.dst); ++ mapRegs_SW64AModeRI(m, i->SW64in.Load.addr); ++ return; ++ case SW64in_Store: ++ mapReg(m, &i->SW64in.Store.src); ++ mapRegs_SW64AModeRI(m, i->SW64in.Store.addr); ++ return; ++ case SW64in_FpLoad: ++ mapReg(m, &i->SW64in.FpLoad.dst); ++ mapRegs_SW64AModeRI(m, i->SW64in.FpLoad.addr); ++ return; ++ case SW64in_FpStore: ++ mapReg(m, &i->SW64in.FpStore.src); ++ mapRegs_SW64AModeRI(m, i->SW64in.FpStore.addr); ++ return; ++ case SW64in_LoadImm: ++ mapReg(m, &i->SW64in.LoadImm.dst); ++ return; ++ ++ case SW64in_CAS: ++ mapReg(m, &i->SW64in.Cas.old); ++ mapReg(m, &i->SW64in.Cas.data); ++ mapReg(m, &i->SW64in.Cas.expd); ++ mapReg(m, &i->SW64in.Cas.addr); ++ return; ++ ++ /*----unop data process----*/ ++ case SW64in_UnOperate: ++ mapReg(m, &i->SW64in.UnOperate.src); ++ mapReg(m, &i->SW64in.UnOperate.dst); ++ return; ++ ++ /*----integer data process----*/ ++ case SW64in_Logic: ++ mapReg(m, &i->SW64in.Logic.srcL); ++ mapRegs_SW64RI8(m, i->SW64in.Logic.srcR); ++ mapReg(m, &i->SW64in.Logic.dst); ++ return; ++ case SW64in_Cmp: ++ mapReg(m, &i->SW64in.Cmp.srcL); ++ mapRegs_SW64RI8(m, i->SW64in.Cmp.srcR); ++ mapReg(m, &i->SW64in.Cmp.dst); ++ return; ++ case SW64in_Shft: ++ mapReg(m, &i->SW64in.Shft.srcL); ++ mapRegs_SW64RI8(m, i->SW64in.Shft.srcR); ++ mapReg(m, &i->SW64in.Shft.dst); ++ return; ++ case SW64in_Arith: ++ mapReg(m, &i->SW64in.Arith.srcL); ++ mapRegs_SW64RI8(m, i->SW64in.Arith.srcR); ++ mapReg(m, &i->SW64in.Arith.dst); ++ return; ++ case SW64in_IntDiv: ++ mapReg(m, &i->SW64in.IntDiv.srcL); ++ mapReg(m, &i->SW64in.IntDiv.srcR); ++ mapReg(m, &i->SW64in.IntDiv.dst); ++ return; ++ ++ /*----float data process----*/ ++ case SW64in_FpArith: ++ mapReg(m, &i->SW64in.FpArith.srcL); ++ mapReg(m, &i->SW64in.FpArith.srcR); ++ mapReg(m, &i->SW64in.FpArith.dst); ++ return; ++ case SW64in_FpGpMove: ++ mapReg(m, &i->SW64in.FpGpMove.src); ++ mapReg(m, &i->SW64in.FpGpMove.dst); ++ return; ++ case SW64in_FpCpy: ++ mapReg(m, &i->SW64in.FpCpy.src1); ++ mapReg(m, &i->SW64in.FpCpy.src2); ++ mapReg(m, &i->SW64in.FpCpy.dst); ++ return; ++ case SW64in_FpQuary: ++ mapReg(m, &i->SW64in.FpQuary.src1); ++ mapReg(m, &i->SW64in.FpQuary.src2); ++ mapReg(m, &i->SW64in.FpQuary.src3); ++ mapReg(m, &i->SW64in.FpQuary.dst); ++ return; ++ case SW64in_FpUnary: ++ mapReg(m, &i->SW64in.FpUnary.src); ++ mapReg(m, &i->SW64in.FpUnary.dst); ++ return; ++ case SW64in_FpSel: ++ mapReg(m, &i->SW64in.FpSel.iftrue); ++ mapReg(m, &i->SW64in.FpSel.iffalse); ++ mapReg(m, &i->SW64in.FpSel.cond); ++ mapReg(m, &i->SW64in.FpSel.dst); ++ return; ++ case SW64in_FpCmp: ++ mapReg(m, &i->SW64in.FpCmp.srcL); ++ mapReg(m, &i->SW64in.FpCmp.srcR); ++ mapReg(m, &i->SW64in.FpCmp.dst); ++ return; ++ case SW64in_FpCvt: ++ mapReg(m, &i->SW64in.FpCvt.src); ++ mapReg(m, &i->SW64in.FpCvt.dst); ++ return; ++ case SW64in_RFPCR: ++ mapReg(m, &i->SW64in.RFPCR.dst); ++ return; ++ case SW64in_WFPCR: ++ mapReg(m, &i->SW64in.WFPCR.src); ++ return; ++ ++ /*----code link----*/ ++ case SW64in_XDirect: ++ mapRegs_SW64AModeRI(m, i->SW64in.XDirect.amPC); ++ mapRegs_SW64Cond(m, i->SW64in.XDirect.cond); ++ return; ++ case SW64in_XIndir: ++ mapReg(m, &i->SW64in.XIndir.dstGA); ++ mapRegs_SW64AModeRI(m, i->SW64in.XIndir.amPC); ++ mapRegs_SW64Cond(m, i->SW64in.XIndir.cond); ++ return; ++ case SW64in_XAssisted: ++ mapReg(m, &i->SW64in.XAssisted.dstGA); ++ mapRegs_SW64AModeRI(m, i->SW64in.XAssisted.amPC); ++ mapRegs_SW64Cond(m, i->SW64in.XAssisted.cond); ++ return; ++ ++ /*----cond select ----*/ ++ case SW64in_CondSel: ++ mapReg(m, &i->SW64in.CondSel.iftrue); ++ mapReg(m, &i->SW64in.CondSel.iffalse); ++ mapReg(m, &i->SW64in.CondSel.cond); ++ mapReg(m, &i->SW64in.CondSel.dst); ++ return; ++ ++ /*----other ----*/ ++ case SW64in_EvCheck: ++ /* We expect both modes only to mention %ebp, so this is in ++ fact pointless, since %ebp isn't allocatable, but anyway.. */ ++ mapRegs_SW64AModeRI(m, i->SW64in.EvCheck.amCounter); ++ mapRegs_SW64AModeRI(m, i->SW64in.EvCheck.amFailAddr); ++ return; ++ case SW64in_ProfInc: ++ /* does not use any registers. */ ++ return; ++ ++ case SW64in_Call: ++ mapRegs_SW64Cond(m, i->SW64in.Call.cond); ++ return; ++ ++ case SW64in_Mfence: ++ /* does not use any registers. */ ++ return; ++ ++ default: ++ ppSW64Instr(i); ++ vpanic("mapRegs_SW64Instr"); ++ break; ++ } ++} ++ ++/* Generate sw64 spill/reload instructions under the direction of the ++ register allocator. */ ++void genSpill_SW64( /*OUT*/ HInstr ** i1, /*OUT*/ HInstr ** i2, HReg rreg, ++ Int offsetB) ++{ ++ vassert(offsetB >= 0); ++ vassert(!hregIsVirtual(rreg)); ++ *i1 = *i2 = NULL; ++ SW64AModeRI *addr = SW64AModeRI_IR(offsetB, SW64GuestStateHreg()); ++ ++ switch (hregClass(rreg)) { ++ case HRcInt64: ++ *i1 = SW64Instr_Store(SW64in_STL, rreg, addr); ++ break; ++ case HRcFlt64: ++ *i1 = SW64Instr_FpStore(SW64in_FSTD, rreg, addr); ++ break; ++ default: ++ ppHRegClass(hregClass(rreg)); ++ vpanic("genSpill_SW64: unimplemented regclass"); ++ break; ++ } ++} ++ ++void genReload_SW64( /*OUT*/ HInstr ** i1, /*OUT*/ HInstr ** i2, HReg rreg, ++ Int offsetB) ++{ ++ vassert(!hregIsVirtual(rreg)); ++ SW64AModeRI *addr = SW64AModeRI_IR(offsetB, SW64GuestStateHreg()); ++ ++ switch (hregClass(rreg)) ++ { ++ case HRcInt64: ++ *i1 = SW64Instr_Load(SW64in_LDL, rreg, addr); ++ break; ++ case HRcFlt64: ++ *i1 = SW64Instr_FpLoad(SW64in_FLDD, rreg, addr); ++ break; ++ default: ++ ppHRegClass(hregClass(rreg)); ++ vpanic("genReload_SW64: unimplemented regclass"); ++ break; ++ } ++} ++ ++SW64Instr* genMove_SW64(HReg from, HReg to) ++{ ++ switch (hregClass(from)) ++ { ++ case HRcInt32: ++ case HRcInt64: ++ return SW64Instr_Logic(SW64in_OR, to, from, SW64RI8_Imm(0)); ++ default: ++ ppHRegClass(hregClass(from)); ++ vpanic("genMove_SW64: unimplemented regclass"); ++ } ++} ++ ++/* --------- The sw64 assembler --------- */ ++ ++inline static UInt iregNo(HReg r) ++{ ++ UInt n; ++ vassert(hregClass(r) == HRcInt64); ++ vassert(!hregIsVirtual(r)); ++ n = hregEncoding(r); ++ vassert(n <= 32); ++ return n; ++} ++ ++inline static UInt fregNo(HReg r) ++{ ++ UInt n; ++ vassert(hregClass(r) == HRcFlt64); ++ vassert(!hregIsVirtual(r)); ++ n = hregEncoding(r); ++ vassert(n <= 31); ++ return n; ++} ++ ++inline static UInt toImm(Int simm, Int bits) ++{ ++ vassert(bits <= 31); ++ vassert(simm >= -(1 << (bits - 1)) && simm < (1 << (bits - 1))); ++ return simm & ((1u << bits) - 1); ++} ++ ++/* Emit 32bit instruction */ ++static UChar *emit32(UChar * p, UInt w32) ++{ ++ *p++ = toUChar(w32 & 0x000000FF); ++ *p++ = toUChar((w32 >> 8) & 0x000000FF); ++ *p++ = toUChar((w32 >> 16) & 0x000000FF); ++ *p++ = toUChar((w32 >> 24) & 0x000000FF); ++ return p; ++} ++ ++static Bool is_8_aligned(const UChar* p) ++{ ++ ULong tmp = (((ULong)(p)) & ((ULong)0x7)); ++ return (0 == tmp); ++} ++ ++/* Fetch an instruction */ ++static UInt fetch32 (const UChar* p) ++{ ++ UInt w32 = 0; ++ w32 |= ((0xFF & (UInt)p[0]) << 0); ++ w32 |= ((0xFF & (UInt)p[1]) << 8); ++ w32 |= ((0xFF & (UInt)p[2]) << 16); ++ w32 |= ((0xFF & (UInt)p[3]) << 24); ++ return w32; ++} ++ ++///branch insn format ++/*|31 26 | 25 21 | 20 0|*/ ++/*| opcode | ra | disp |*/ ++static inline UInt X_branch_6_5_21(UInt op, UInt ra, UInt disp) ++{ ++ vassert(6+5+21 == 32); ++ vassert(op < (1<<6)); ++ vassert(ra < (1<<5)); ++ vassert(disp < (1<<21)); ++ UInt w = 0; ++ w = (w << 6) | op; ++ w = (w << 5) | ra; ++ w = (w << 21) | disp; ++ return w; ++} ++ ++///load/store insn format ++/*|31 26 | 25 21 | 20 16| 15 0|*/ ++/*| opcode | ra | rb | disp |*/ ++static inline UInt X_ldst_6_5_5_16(UInt op, UInt ra, UInt rb, UInt disp) ++{ ++ vassert(6+5+5+16 == 32); ++ vassert(op < (1<<6)); ++ vassert(ra < (1<<5)); ++ vassert(rb < (1<<5)); ++ vassert(disp < (1<<16)); ++ UInt w = 0; ++ w = (w << 6) | op; ++ w = (w << 5) | ra; ++ w = (w << 5) | rb; ++ w = (w << 16) | disp; ++ return w; ++} ++ ++///load/store with func insn format ++/*|31 26 | 25 21 | 20 16| 15 12| 11 0|*/ ++/*| opcode | ra | rb | func | disp |*/ ++static inline UInt X_ldst_6_5_5_4_12(UInt op, UInt ra, UInt rb, UInt func, UInt disp) ++{ ++ vassert(6+5+5+4+12 == 32); ++ vassert(op < (1<<6)); ++ vassert(ra < (1<<5)); ++ vassert(rb < (1<<5)); ++ vassert(func < (1<<4)); ++ vassert(disp < (1<<12)); ++ UInt w = 0; ++ w = (w << 6) | op; ++ w = (w << 5) | ra; ++ w = (w << 5) | rb; ++ w = (w << 4) | func; ++ w = (w << 12) | disp; ++ return w; ++} ++ ++///simple calculate insn format ++ /*|31 26 | 25 21 | 20 16| 15 13 |12 5| 4 0|*/ ++ /*| opcode | ra | rb | 000 | function | rc |*/ //register ++static inline UInt X_simreg_6_5_5_3_8_5(UInt op, UInt ra, UInt rb, ++ UInt func, UInt rc) ++{ ++ vassert(op == 0x10 || op == 0x18); ++ vassert(6+5+5+3+8+5 == 32); ++ vassert(op < (1<<6)); ++ vassert(ra < (1<<5)); ++ vassert(rb < (1<<5)); ++ vassert(func < (1<<8)); ++ vassert(rc < (1<<5)); ++ UInt w = 0; ++ w = (w << 6) | op; ++ w = (w << 5) | ra; ++ w = (w << 5) | rb; ++ w = (w << 3) | 0; ++ w = (w << 8) | func; ++ w = (w << 5) | rc; ++ return w; ++} ++ ++///simple calculate insn format ++ /*|31 26 | 25 21 | 20 16| 15 13 |12 5| 4 0|*/ ++ /*| opcode | ra | imm | function | rc |*/ //immediate ++static inline UInt X_simimm_6_5_8_8_5(UInt op, UInt ra, UInt imm, ++ UInt func, UInt rc) ++{ ++ vassert(op == 0x12); ++ vassert(6+5+8+8+5 == 32); ++ vassert(op < (1<<6)); ++ vassert(ra < (1<<5)); ++ vassert(imm < (1<<8)); ++ vassert(func < (1<<8)); ++ vassert(rc < (1<<5)); ++ UInt w = 0; ++ w = (w << 6) | op; ++ w = (w << 5) | ra; ++ w = (w << 8) | imm; ++ w = (w << 8) | func; ++ w = (w << 5) | rc; ++ return w; ++} ++ ++///complex integer calculate insn format ++ /*|31 26 | 25 21 | 20 16| 15 13 |12 10| 9 5 | 4 0 |*/ ++ /*| opcode | ra | rb | 000 | function | rc | rd |*/ //register ++static inline UInt X_comreg_6_5_5_3_3_5_5(UInt op, UInt ra, UInt rb, ++ UInt func, UInt rc, UInt rd) ++{ ++ vassert(op == 0x11); ++ vassert(6+5+5+3+3+5+5 == 32); ++ vassert(op < (1<<6)); ++ vassert(ra < (1<<5)); ++ vassert(rb < (1<<5)); ++ vassert(func < (1<<3)); ++ vassert(rc < (1<<5)); ++ vassert(rd < (1<<5)); ++ UInt w = 0; ++ w = (w << 6) | op; ++ w = (w << 5) | ra; ++ w = (w << 5) | rb; ++ w = (w << 3) | 0; ++ w = (w << 3) | func; ++ w = (w << 5) | rc; ++ w = (w << 5) | rd; ++ return w; ++} ++ ++///complex integer calculate insn format ++ /*|31 26 | 25 21 | 20 16| 15 13 |12 10| 9 5 | 4 0 |*/ ++ /*| opcode | ra | imm | function | rc | rd |*/ //immediate ++static inline UInt X_comimm_6_5_8_3_5_5(UInt op, UInt ra, UInt imm, ++ UInt func, UInt rc, UInt rd) ++{ ++ vassert(op == 0x13); ++ vassert(6+5+8+3+5+5 == 32); ++ vassert(op < (1<<6)); ++ vassert(ra < (1<<5)); ++ vassert(imm < (1<<8)); ++ vassert(func < (1<<3)); ++ vassert(rc < (1<<5)); ++ vassert(rd < (1<<5)); ++ UInt w = 0; ++ w = (w << 6) | op; ++ w = (w << 5) | ra; ++ w = (w << 8) | imm; ++ w = (w << 3) | func; ++ w = (w << 5) | rc; ++ w = (w << 5) | rd; ++ return w; ++} ++ ++///complex float calculate insn format ++ /*|31 26 | 25 21 | 20 16| 15 10 |9 5| 4 0|*/ ++ /*| opcode | fa | fb | func | fc | fd |*/ //register ++static inline UInt X_comfloat_6_5_5_6_5_5(UInt op, UInt fa, UInt fb, ++ UInt func, UInt fc, UInt fd) ++{ ++ vassert(op == 0x19); ++ vassert(6+5+5+6+5+5 == 32); ++ vassert(op < (1<<6)); ++ vassert(fa < (1<<5)); ++ vassert(fb < (1<<5)); ++ vassert(func < (1<<6)); ++ vassert(fc < (1<<5)); ++ vassert(fd < (1<<5)); ++ UInt w = 0; ++ w = (w << 6) | op; ++ w = (w << 5) | fa; ++ w = (w << 5) | fb; ++ w = (w << 6) | func; ++ w = (w << 5) | fc; ++ w = (w << 5) | fd; ++ return w; ++} ++ ++static inline UInt X_nop(void) ++{ ++ /* nop: bis $31, 0, $31 */ ++ return X_simimm_6_5_8_8_5(0x12, 31, 0x0, 0x3A, 31); ++} ++ ++/* Load any 64-bit immediate number, with instructions not above 5, ++ If `fixedsize' is True, emit 5 instructions (20 bytes) exactly. ++ ++ emit instructions below: ++ ++ ldih ra, x3(r31) ++ ldi ra, x2(ra) ++ sll ra, 32, ra ++ ldih ra, x1(ra) ++ ldi ra, x0(ra) ++ ++ Instruction that have no effect will be skipped, which means number of ++ emit instructions may less than 5 if `fixedsize' is False. ++ ++*/ ++static UChar *do_load_imm(UChar * p, UInt ra, ULong imm64, Bool fixedsize) ++{ ++ UChar *begin = p; ++ ++ /* The only crucial part is, ++ how to calculate x[0], x[1], x[2], x[3] from `imm64' ++ ++ ldi/ldih is signed-extend, if x[i] is negative, 0xffffffffffffffff will ++ add higher bits. ++ ++ For cancel out this effect of signed-extend, if x[i] is negative, ++ x[i+1] need to add by one. ++ ++ But this `add-by-1' caused tow tricky problems: ++ 1. add-by-1 may produced a carry, THIS CARRY MUST BE TRANSMITTED TO ++ ALL HIGHER BITS. So, treat all higher bits as a whole number when ++ doing this add-by-1. ++ 2. Because of carry is transmitted to all higher bits, the signed-bit ++ of x[i+1] x[i+2] x[i+3] may changed too. Use this changed value, ++ not origin value, as judging condition of negativity. Because ++ signed-extend is perform on changed value, not origin value. ++ */ ++ UShort x[4]; ++ for (Int i = 0; i < 4; i++) { ++ x[i] = imm64; ++ imm64 >>= 16; ++ if (x[i] >= 0x8000) ++ imm64++; ++ } ++ ++ if (x[3]) ++ p = emit32(p, X_ldst_6_5_5_16(0x3F, ra, begin == p ? 31 : ra, x[3])); ++ ++ if (x[2]) ++ p = emit32(p, X_ldst_6_5_5_16(0x3E, ra, begin == p ? 31 : ra, x[2])); ++ ++ if (p != begin) ++ p = emit32(p, X_simimm_6_5_8_8_5(0x12, ra, 32, 0x48, ra)); ++ ++ if (x[1]) ++ p = emit32(p, X_ldst_6_5_5_16(0x3F, ra, begin == p ? 31 : ra, x[1])); ++ ++ if (x[0] || p == begin) ++ p = emit32(p, X_ldst_6_5_5_16(0x3E, ra, begin == p ? 31 : ra, x[0])); ++ ++ /* Use NOP as padding, which not making extra value dependency */ ++ if (fixedsize) ++ while (p < begin + 20) ++ p = emit32(p, X_nop()); ++ ++ return p; ++} ++ ++static Bool is_load_imm(UChar * p, UInt ra, ULong imm64, Bool fixedsize) ++{ ++ UChar expected[20]; ++ UChar *end = do_load_imm(expected, ra, imm64, fixedsize); ++ ++ for (UInt i = 0; i < end - expected; i += 4) { ++ if (fetch32(p + i) != fetch32(expected + i)) ++ return False; ++ } ++ ++ return True; ++} ++ ++static UChar *do_condition_code_link(UChar *p, ULong delta, SW64Cond *cond) ++{ ++ vassert(fetch32(p) == 0); ++ ++ delta = delta / 4 - 1; ++ vassert(delta >= 0 && delta <= 40); ++ ++ /* condition is reversed */ ++ UInt opc; ++ UInt regNo; ++ switch (cond->code) { ++ case SW64cc_EQ: opc = 0x31; regNo = iregNo(cond->reg); break; ++ case SW64cc_NE: opc = 0x30; regNo = iregNo(cond->reg); break; ++ case SW64cc_LT: opc = 0x35; regNo = iregNo(cond->reg); break; ++ case SW64cc_LE: opc = 0x34; regNo = iregNo(cond->reg); break; ++ case SW64cc_GT: opc = 0x33; regNo = iregNo(cond->reg); break; ++ case SW64cc_GE: opc = 0x32; regNo = iregNo(cond->reg); break; ++ case SW64cc_FEQ: opc = 0x39; regNo = fregNo(cond->reg); break; ++ case SW64cc_FNE: opc = 0x38; regNo = fregNo(cond->reg); break; ++ case SW64cc_FLT: opc = 0x3D; regNo = fregNo(cond->reg); break; ++ case SW64cc_FLE: opc = 0x3C; regNo = fregNo(cond->reg); break; ++ case SW64cc_FGT: opc = 0x3B; regNo = fregNo(cond->reg); break; ++ case SW64cc_FGE: opc = 0x3A; regNo = fregNo(cond->reg); break; ++ default: ++ vassert(0); ++ } ++ ++ return emit32(p, X_branch_6_5_21(opc, regNo, delta)); ++} ++ ++Int emit_SW64Instr ( /*MB_MOD*/Bool* is_profInc, ++ /*MB_MOD*/Bool* is_8aligned, ++ UChar* buf, Int nbuf, const SW64Instr* i, ++ Bool mode64, VexEndness endness_host, ++ const void* disp_cp_chain_me_to_slowEP, ++ const void* disp_cp_chain_me_to_fastEP, ++ const void* disp_cp_xindir, ++ const void* disp_cp_xassisted ) ++{ ++ UChar *p = &buf[0]; ++ vassert(nbuf >= 32); ++ ++ switch (i->tag) ++ { ++ /*----load/store----*/ ++ case SW64in_Load: ++ { ++ UInt dst = iregNo(i->SW64in.Load.dst); ++ UInt base = iregNo(i->SW64in.Load.addr->base); ++ UInt disp = toImm(i->SW64in.Load.addr->disp, 16); ++ UInt opcode = (i->SW64in.Load.op == SW64in_LDBU) ? 0x20 : ++ (i->SW64in.Load.op == SW64in_LDHU) ? 0x21 : ++ (i->SW64in.Load.op == SW64in_LDW) ? 0x22 : ++ (i->SW64in.Load.op == SW64in_LDL) ? 0x23 : ++ (vassert(0), 0); ++ p = emit32(p, X_ldst_6_5_5_16(opcode, dst, base, disp)); ++ goto done; ++ } ++ case SW64in_Store: ++ { ++ UInt src = iregNo(i->SW64in.Store.src); ++ UInt base = iregNo(i->SW64in.Store.addr->base); ++ UInt disp = toImm(i->SW64in.Store.addr->disp, 16); ++ UInt opcode = (i->SW64in.Store.op == SW64in_STB) ? 0x28 : ++ (i->SW64in.Store.op == SW64in_STH) ? 0x29 : ++ (i->SW64in.Store.op == SW64in_STW) ? 0x2A : ++ (i->SW64in.Store.op == SW64in_STL) ? 0x2B : ++ (vassert(0), 0); ++ p = emit32(p, X_ldst_6_5_5_16(opcode, src, base, disp)); ++ goto done; ++ } ++ case SW64in_FpLoad: ++ { ++ UInt dst = fregNo(i->SW64in.FpLoad.dst); ++ UInt base = iregNo(i->SW64in.FpLoad.addr->base); ++ UInt disp = toImm(i->SW64in.FpLoad.addr->disp, 16); ++ UInt opcode = (i->SW64in.FpLoad.op == SW64in_FLDS) ? 0x26 : ++ (i->SW64in.FpLoad.op == SW64in_FLDD) ? 0x27 : ++ (vassert(0), 0); ++ p = emit32(p, X_ldst_6_5_5_16(opcode, dst, base, disp)); ++ goto done; ++ } ++ case SW64in_FpStore: ++ { ++ UInt src = fregNo(i->SW64in.FpStore.src); ++ UInt base = iregNo(i->SW64in.FpStore.addr->base); ++ UInt disp = toImm(i->SW64in.FpStore.addr->disp, 16); ++ UInt opcode = (i->SW64in.FpStore.op == SW64in_FSTS) ? 0x2E : ++ (i->SW64in.FpStore.op == SW64in_FSTD) ? 0x2F : ++ (vassert(0), 0); ++ p = emit32(p, X_ldst_6_5_5_16(opcode, src, base, disp)); ++ goto done; ++ } ++ case SW64in_LoadImm: ++ { ++ UInt rDst = iregNo(i->SW64in.LoadImm.dst); ++ p = do_load_imm(p, rDst, i->SW64in.LoadImm.imm64, False); ++ goto done; ++ } ++ ++ case SW64in_CAS: ++ { ++ vassert(!(*is_8aligned)); ++ vassert(!sameHReg(i->SW64in.Cas.old, i->SW64in.Cas.data)); ++ vassert(!sameHReg(i->SW64in.Cas.old, i->SW64in.Cas.expd)); ++ vassert(!sameHReg(i->SW64in.Cas.old, i->SW64in.Cas.addr)); ++ ++ UInt old = iregNo(i->SW64in.Cas.old); ++ UInt expd = iregNo(i->SW64in.Cas.expd); ++ UInt data = iregNo(i->SW64in.Cas.data); ++ UInt addr = iregNo(i->SW64in.Cas.addr); ++ Bool isSize4 = toBool(i->SW64in.Cas.sz == 4); ++ ++ /* */ ++ if (!is_8_aligned(p)) { ++ p = emit32(p, X_nop()); ++ } ++ ++ /* ++ 0: lld* %[old], 0(%[addr]) ++ cmpeq %[old], %[expd], $1 ++ wr_f $1 ++ mov %[data], $2 ++ lst* $2, 0(%[addr]) ++ rd_f $2 ++ beq $1, 1f # data != expd, fail ++ beq $2, 0b # CAS failed, try again ++ 1: ++ */ ++ p = emit32(p, X_ldst_6_5_5_4_12(0x08, old, addr, isSize4? 0x0: 0x1, 0x0)); ++ p = emit32(p, X_simreg_6_5_5_3_8_5(0x10, old, expd, 0x28, 1)); ++ p = emit32(p, X_ldst_6_5_5_16(0x06, 1, 31, 0x1020)); ++ p = emit32(p, X_simimm_6_5_8_8_5(0x12, data, 0x0, 0x3A, 2)); ++ p = emit32(p, X_ldst_6_5_5_4_12(0x08, 2, addr, isSize4? 0x8: 0x9, 0x0)); ++ p = emit32(p, X_ldst_6_5_5_16(0x06, 2, 31, 0x1000)); ++ p = emit32(p, X_branch_6_5_21(0x30, 1, 0x1)); ++ p = emit32(p, X_branch_6_5_21(0x30, 2, 0x1ffff8)); ++ ++ *is_8aligned = True; ++ goto done; ++ } ++ ++ /*----unop data process----*/ ++ case SW64in_UnOperate: ++ { ++ UInt rDst = iregNo(i->SW64in.UnOperate.dst); ++ UInt rSrc = iregNo(i->SW64in.UnOperate.src); ++ switch (i->SW64in.UnOperate.op) ++ { ++ case SW64in_POP: ++ { ++ /*CTPOP rb(src), rc(dst) */ ++ /*opcode=0x10, func=0x58 */ ++ UInt instr = X_simreg_6_5_5_3_8_5(0x10, 0, rSrc, 0x58, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ case SW64in_CLZ: ++ { ++ /*CTLZ rb(src), rc(dst)*/ ++ /*opcode=0x10, func=0x59 */ ++ UInt instr = X_simreg_6_5_5_3_8_5(0x10, 0, rSrc, 0x59, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ case SW64in_CTZ: ++ { ++ /*CTTZ rb(src), rc(dst) */ ++ /*opcode=0x10, func=0x5A */ ++ UInt instr = X_simreg_6_5_5_3_8_5(0x10, 0, rSrc, 0x5A, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ default: ++ break; ++ } ++ goto bad; ++ } ++ ++ /*----integer data process----*/ ++ case SW64in_Logic: ++ { ++ UInt rSrcL = iregNo(i->SW64in.Logic.srcL); ++ UInt rDst = iregNo(i->SW64in.Logic.dst); ++ vassert(rSrcL < 32); ++ vassert(rDst < 32); ++ SW64RI8* srcR = i->SW64in.Logic.srcR; ++ ++ UInt func = 0x00; /* invalid */ ++ switch (i->SW64in.Logic.op) ++ { ++ case SW64in_AND: func = 0x38; break; ++ case SW64in_BIC: func = 0x39; break; ++ case SW64in_OR: func = 0x3A; break; ++ case SW64in_ORNOT: func = 0x3B; break; ++ case SW64in_XOR: func = 0x3C; break; ++ default: break; ++ } ++ vassert(func != 0); ++ switch(srcR->tag) ++ { ++ case Sri8_Imm: ++ { ++ UInt opcode = 0x12; ++ UInt imm = (UInt)srcR->Sri8.Imm.imm8; ++ UInt instr = X_simimm_6_5_8_8_5(opcode, rSrcL, imm, func, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ case Sri8_Reg: ++ { ++ UInt opcode = 0x10; ++ UInt rb = iregNo(srcR->Sri8.Reg.reg); ++ UInt instr = X_simreg_6_5_5_3_8_5(opcode, rSrcL, rb, func, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ default: break; ++ } ++ ++ goto bad; ++ } ++ case SW64in_Cmp: ++ { ++ UInt rSrcL = iregNo(i->SW64in.Cmp.srcL); ++ UInt rDst = iregNo(i->SW64in.Cmp.dst); ++ vassert(rSrcL < 32); ++ vassert(rDst < 32); ++ ++ SW64RI8 *srcR = i->SW64in.Cmp.srcR; ++ vassert(srcR->tag == Sri8_Reg || srcR->tag == Sri8_Imm); ++ ++ UInt func; ++ switch (i->SW64in.Cmp.op) { ++ case SW64in_CMPEQ: func = 0x28; break; ++ case SW64in_CMPLT: func = 0x29; break; ++ case SW64in_CMPLE: func = 0x2A; break; ++ case SW64in_CMPULT: func = 0x2B; break; ++ case SW64in_CMPULE: func = 0x2C; break; ++ default: vassert(0); ++ } ++ ++ if (srcR->tag == Sri8_Reg) { ++ UInt rSrcR = iregNo(srcR->Sri8.Reg.reg); ++ p = emit32(p, X_simreg_6_5_5_3_8_5(0x10, rSrcL, rSrcR, func, rDst)); ++ } else { ++ UInt imm = srcR->Sri8.Imm.imm8; ++ p = emit32(p, X_simimm_6_5_8_8_5(0x12, rSrcL, imm, func, rDst)); ++ } ++ ++ goto done; ++ } ++ case SW64in_Shft: ++ { ++ UInt rSrcL = iregNo(i->SW64in.Shft.srcL); ++ UInt rDst = iregNo(i->SW64in.Shft.dst); ++ vassert(rSrcL < 32); ++ vassert(rDst < 32); ++ SW64RI8* srcR = i->SW64in.Shft.srcR; ++ ++ UInt func = 0x00; /* invalid */ ++ switch (i->SW64in.Shft.op) ++ { ++ case SW64in_SLL: func = 0x48; break; ++ case SW64in_SRL: func = 0x49; break; ++ case SW64in_SRA: func = 0x4A; break; ++ default: break; ++ } ++ vassert(func != 0); ++ switch(srcR->tag) ++ { ++ case Sri8_Imm: ++ { ++ UInt opcode = 0x12; ++ UInt imm = (UInt)srcR->Sri8.Imm.imm8; ++ UInt instr = X_simimm_6_5_8_8_5(opcode, rSrcL, imm, func, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ case Sri8_Reg: ++ { ++ UInt opcode = 0x10; ++ UInt rb = iregNo(srcR->Sri8.Reg.reg); ++ UInt instr = X_simreg_6_5_5_3_8_5(opcode, rSrcL, rb, func, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ default: break; ++ } ++ ++ goto bad; ++ } ++ case SW64in_Arith: ++ { ++ UInt rSrcL = iregNo(i->SW64in.Arith.srcL); ++ UInt rDst = iregNo(i->SW64in.Arith.dst); ++ vassert(rSrcL < 32); ++ vassert(rDst < 32); ++ SW64RI8* srcR = i->SW64in.Arith.srcR; ++ ++ UInt func = 0xFF; /* invalid */ ++ switch (i->SW64in.Arith.op) ++ { ++ case SW64in_ADDW: func = 0x00; break; ++ case SW64in_SUBW: func = 0x01; break; ++ case SW64in_S4ADDW: func = 0x02; break; ++ case SW64in_S4SUBW: func = 0x03; break; ++ case SW64in_S8ADDW: func = 0x04; break; ++ case SW64in_S8SUBW: func = 0x05; break; ++ case SW64in_ADDL: func = 0x08; break; ++ case SW64in_SUBL: func = 0x09; break; ++ case SW64in_S4ADDL: func = 0x0A; break; ++ case SW64in_S4SUBL: func = 0x0B; break; ++ case SW64in_S8ADDL: func = 0x0C; break; ++ case SW64in_S8SUBL: func = 0x0D; break; ++ case SW64in_MULW: func = 0x10; break; ++ case SW64in_MULL: func = 0x18; break; ++ case SW64in_UMULH: func = 0x19; break; ++ case SW64in_ZAP: func = 0x68; break; ++ case SW64in_ZAPNOT: func = 0x69; break; ++ case SW64in_SEXTB: func = 0x6A; break; ++ case SW64in_SEXTH: func = 0x6B; break; ++ default: break; ++ } ++ vassert(func != 0xFF); ++ switch(srcR->tag) ++ { ++ case Sri8_Imm: ++ { ++ UInt opcode = 0x12; ++ UInt imm = (UInt)srcR->Sri8.Imm.imm8; ++ UInt instr = X_simimm_6_5_8_8_5(opcode, rSrcL, imm, func, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ case Sri8_Reg: ++ { ++ UInt opcode = 0x10; ++ UInt rb = iregNo(srcR->Sri8.Reg.reg); ++ UInt instr = X_simreg_6_5_5_3_8_5(opcode, rSrcL, rb, func, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ default: break; ++ } ++ ++ goto bad; ++ } ++ case SW64in_IntDiv: ++ { ++ UInt rSrcL = iregNo(i->SW64in.IntDiv.srcL); ++ UInt rSrcR = iregNo(i->SW64in.IntDiv.srcR); ++ UInt rDst = iregNo(i->SW64in.IntDiv.dst); ++ ++ vassert(rSrcL < 32); ++ vassert(rSrcR < 32); ++ vassert(rDst < 32); ++ ++ UInt func = 0xFF; /* invalid */ ++ switch (i->SW64in.IntDiv.op) ++ { ++ case SW64in_DIVW: func = 0x11; break; ++ case SW64in_UDIVW: func = 0x12; break; ++ case SW64in_REMW: func = 0x13; break; ++ case SW64in_UREMW: func = 0x14; break; ++ case SW64in_DIVL: func = 0x1A; break; ++ case SW64in_UDIVL: func = 0x1B; break; ++ case SW64in_REML: func = 0x1C; break; ++ case SW64in_UREML: func = 0x1D; break; ++ default: break; ++ } ++ vassert(func != 0xFF); ++ ++ UInt opcode = 0x10; ++ UInt instr = X_simreg_6_5_5_3_8_5(opcode, rSrcL, rSrcR, func, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ ++ /*----float data process----*/ ++ case SW64in_FpArith: ++ { ++ UInt rSrcL = fregNo(i->SW64in.FpArith.srcL); ++ UInt rSrcR = fregNo(i->SW64in.FpArith.srcR); ++ UInt rDst = fregNo(i->SW64in.FpArith.dst); ++ vassert(rSrcL < 32); ++ vassert(rSrcR < 32); ++ vassert(rDst < 32); ++ vassert(rSrcL != rDst && rSrcR != rDst); ++ ++ UInt opcode = 0x18; ++ UInt func = 0xFF; /* INVALID */ ++ switch (i->SW64in.FpArith.op) ++ { ++ case SW64in_FADDS: func = 0x00; break; ++ case SW64in_FADDD: func = 0x01; break; ++ case SW64in_FSUBS: func = 0x02; break; ++ case SW64in_FSUBD: func = 0x03; break; ++ case SW64in_FMULS: func = 0x04; break; ++ case SW64in_FMULD: func = 0x05; break; ++ case SW64in_FDIVS: func = 0x06; break; ++ case SW64in_FDIVD: func = 0x07; break; ++ default: break; ++ } ++ vassert(func != 0xFF); ++ ++ /*op fa, fb, fc*/ ++ UInt instr = X_simreg_6_5_5_3_8_5(opcode, rSrcL, rSrcR, func, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ ++ /* move/convert between GPR and FPR */ ++ case SW64in_FpGpMove: ++ { ++ UInt rSrc = 32; ++ UInt rDst = 32; ++ UInt opcode = 0xFF; ++ switch(i->SW64in.FpGpMove.op) ++ { ++ case SW64in_FIMOVS: ++ case SW64in_FIMOVD: ++ case SW64in_CMOVDL: ++ case SW64in_CMOVDL_G: ++ case SW64in_CMOVDL_P: ++ case SW64in_CMOVDL_Z: ++ case SW64in_CMOVDL_N: ++ case SW64in_CMOVDLU: ++ case SW64in_CMOVDLU_G: ++ case SW64in_CMOVDLU_P: ++ case SW64in_CMOVDLU_Z: ++ case SW64in_CMOVDLU_N: ++ case SW64in_CMOVDWU: ++ case SW64in_CMOVDWU_G: ++ case SW64in_CMOVDWU_P: ++ case SW64in_CMOVDWU_Z: ++ case SW64in_CMOVDWU_N: ++ case SW64in_CMOVDW: ++ case SW64in_CMOVDW_G: ++ case SW64in_CMOVDW_P: ++ case SW64in_CMOVDW_Z: ++ case SW64in_CMOVDW_N: ++ { ++ rSrc = fregNo(i->SW64in.FpGpMove.src); ++ rDst = iregNo(i->SW64in.FpGpMove.dst); ++ opcode = 0x10; ++ break; ++ } ++ case SW64in_IFMOVS: ++ case SW64in_IFMOVD: ++ case SW64in_CMOVLS: ++ case SW64in_CMOVWS: ++ case SW64in_CMOVLD: ++ case SW64in_CMOVWD: ++ case SW64in_CMOVULS: ++ case SW64in_CMOVUWS: ++ case SW64in_CMOVULD: ++ case SW64in_CMOVUWD: ++ { ++ rSrc = iregNo(i->SW64in.FpGpMove.src); ++ rDst = fregNo(i->SW64in.FpGpMove.dst); ++ opcode = 0x18; ++ break; ++ } ++ default: break; ++ } ++ vassert(rSrc < 32); ++ vassert(rDst < 32); ++ vassert(opcode != 0xFF); ++ ++ UInt func; ++ UInt ra = 0; ++ UInt rb = 0; ++ switch (i->SW64in.FpGpMove.op) ++ { ++ case SW64in_FIMOVS: func = 0x70; ra = rSrc; break; ++ case SW64in_FIMOVD: func = 0x78; ra = rSrc; break; ++ case SW64in_IFMOVS: func = 0x40; ra = rSrc; break; ++ case SW64in_IFMOVD: func = 0x41; ra = rSrc; break; ++ case SW64in_CMOVDL: func = 0x72; rb = rSrc; break; ++ case SW64in_CMOVDL_G: func = 0x74; rb = rSrc; break; ++ case SW64in_CMOVDL_P: func = 0x7a; rb = rSrc; break; ++ case SW64in_CMOVDL_Z: func = 0x7c; rb = rSrc; break; ++ case SW64in_CMOVDL_N: func = 0x80; rb = rSrc; break; ++ case SW64in_CMOVDLU: func = 0x81; rb = rSrc; break; ++ case SW64in_CMOVDLU_G: func = 0x82; rb = rSrc; break; ++ case SW64in_CMOVDLU_P: func = 0x83; rb = rSrc; break; ++ case SW64in_CMOVDLU_Z: func = 0x84; rb = rSrc; break; ++ case SW64in_CMOVDLU_N: func = 0x85; rb = rSrc; break; ++ case SW64in_CMOVDWU: func = 0x86; rb = rSrc; break; ++ case SW64in_CMOVDWU_G: func = 0x87; rb = rSrc; break; ++ case SW64in_CMOVDWU_P: func = 0x88; rb = rSrc; break; ++ case SW64in_CMOVDWU_Z: func = 0x89; rb = rSrc; break; ++ case SW64in_CMOVDWU_N: func = 0x8a; rb = rSrc; break; ++ case SW64in_CMOVDW: func = 0x8b; rb = rSrc; break; ++ case SW64in_CMOVDW_G: func = 0x8c; rb = rSrc; break; ++ case SW64in_CMOVDW_P: func = 0x8d; rb = rSrc; break; ++ case SW64in_CMOVDW_Z: func = 0x8e; rb = rSrc; break; ++ case SW64in_CMOVDW_N: func = 0x8f; rb = rSrc; break; ++ case SW64in_CMOVLS: func = 0x48; rb = rSrc; break; ++ case SW64in_CMOVWS: func = 0x49; rb = rSrc; break; ++ case SW64in_CMOVLD: func = 0x4a; rb = rSrc; break; ++ case SW64in_CMOVWD: func = 0x4b; rb = rSrc; break; ++ case SW64in_CMOVULS: func = 0x4c; rb = rSrc; break; ++ case SW64in_CMOVUWS: func = 0x4d; rb = rSrc; break; ++ case SW64in_CMOVULD: func = 0x4e; rb = rSrc; break; ++ case SW64in_CMOVUWD: func = 0x4f; rb = rSrc; break; ++ default: vassert(0); ++ } ++ ++ UInt instr = X_simreg_6_5_5_3_8_5(opcode, ra, rb, func, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ case SW64in_FpCpy: ++ { ++ UInt rSrcA = fregNo(i->SW64in.FpCpy.src1); ++ UInt rSrcB = fregNo(i->SW64in.FpCpy.src2); ++ UInt rDst = fregNo(i->SW64in.FpCpy.dst); ++ vassert(rSrcA < 32); ++ vassert(rSrcB < 32); ++ vassert(rDst < 32); ++ vassert(rSrcA != rDst && rSrcB != rDst); ++ ++ SW64FpCpyOp op = i->SW64in.FpCpy.op; ++ UInt func = (op == SW64in_FCPYS) ? 0x30 : ++ (op == SW64in_FCPYSE) ? 0x31 : ++ (op == SW64in_FCPYSN) ? 0x32 : ++ (vassert(0), 0); ++ ++ UInt instr = X_simreg_6_5_5_3_8_5(0x18, rSrcA, rSrcB, func, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ case SW64in_FpQuary: ++ { ++ UInt rSrc1 = fregNo(i->SW64in.FpQuary.src1); //fa ++ UInt rSrc2 = fregNo(i->SW64in.FpQuary.src2); //fb ++ UInt rSrc3 = fregNo(i->SW64in.FpQuary.src3); //fc ++ UInt rDst = fregNo(i->SW64in.FpQuary.dst); //fd ++ vassert(rSrc1 < 32); ++ vassert(rSrc2 < 32); ++ vassert(rSrc3 < 32); ++ vassert(rDst < 32); ++ vassert(rSrc1 != rDst && rSrc2 != rDst && rSrc3 != rDst); ++ ++ UInt opcode = 0x19; ++ UInt func = 0xFF; /* INVALID */ ++ switch (i->SW64in.FpQuary.op) ++ { ++ case SW64in_MADDS: func = 0x00; break; ++ case SW64in_MSUBS: func = 0x02; break; ++ case SW64in_MADDD: func = 0x01; break; ++ case SW64in_MSUBD: func = 0x03; break; ++ default: break; ++ } ++ vassert(func != 0xFF); ++ ++ /*op fa, fb, fc, fd*/ ++ UInt instr = X_comfloat_6_5_5_6_5_5(opcode, rSrc1, rSrc2, ++ func, rSrc3, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ case SW64in_FpUnary: ++ { ++ UInt rSrc = fregNo(i->SW64in.FpUnary.src); /* fb */ ++ UInt rDst = fregNo(i->SW64in.FpUnary.dst); /* fc */ ++ vassert(rSrc < 32); ++ vassert(rDst < 32); ++ vassert(rSrc != rDst); ++ ++ SW64FpUnaryOp op = i->SW64in.FpUnary.op; ++ UInt func = (op == SW64in_FSQRTS) ? 0x8 : ++ (op == SW64in_FSQRTD) ? 0x9 : ++ (op == SW64in_FRECS) ? 0x58 : ++ (op == SW64in_FRECD) ? 0x59 : ++ (op == SW64in_FRIS) ? 0x5a : ++ (op == SW64in_FRIS_G) ? 0x5b : ++ (op == SW64in_FRIS_P) ? 0x5c : ++ (op == SW64in_FRIS_Z) ? 0x5d : ++ (op == SW64in_FRIS_N) ? 0x5f : ++ (op == SW64in_FRID) ? 0x60 : ++ (op == SW64in_FRID_G) ? 0x61 : ++ (op == SW64in_FRID_P) ? 0x62 : ++ (op == SW64in_FRID_Z) ? 0x63 : ++ (op == SW64in_FRID_N) ? 0x64 : ++ (vassert(0), 0); ++ ++ UInt instr = X_simreg_6_5_5_3_8_5(0x18, rSrc, rSrc, func, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ case SW64in_FpCmp: ++ { ++ UInt rSrcL = fregNo(i->SW64in.FpCmp.srcL); ++ UInt rSrcR = fregNo(i->SW64in.FpCmp.srcR); ++ UInt rDst = fregNo(i->SW64in.FpCmp.dst); ++ vassert(rSrcL < 32); ++ vassert(rSrcR < 32); ++ vassert(rDst < 32); ++ vassert(rSrcL != rDst && rSrcR != rDst); ++ ++ UInt opcode = 0x18; ++ UInt func = 0xFF; /* INVALID */ ++ switch (i->SW64in.FpCmp.op) ++ { ++ case SW64in_CMPFEQ: func = 0x10; break; ++ case SW64in_CMPFLE: func = 0x11; break; ++ case SW64in_CMPFLT: func = 0x12; break; ++ case SW64in_CMPFUN: func = 0x13; break; ++ default: break; ++ } ++ vassert(func != 0xFF); ++ ++ /*op fa, fb, fc*/ ++ UInt instr = X_simreg_6_5_5_3_8_5(opcode, rSrcL, rSrcR, func, rDst); ++ p = emit32(p, instr); ++ ++ goto done; ++ } ++ case SW64in_FpCvt: ++ { ++ UInt rSrc = fregNo(i->SW64in.FpCvt.src); ++ UInt rDst = fregNo(i->SW64in.FpCvt.dst); ++ vassert(rSrc < 32); ++ vassert(rDst < 32); ++ vassert(rSrc != rDst); ++ ++ UInt opcode = 0x18; ++ UInt func = 0xFF; /* INVALID */ ++ switch (i->SW64in.FpCvt.op) ++ { ++ case SW64in_FCVTSD: func = 0x20; break; ++ case SW64in_FCVTDS: func = 0x21; break; ++ case SW64in_FCVTDL: func = 0x27; break; ++ case SW64in_FCVTLS: func = 0x2D; break; ++ case SW64in_FCVTLD: func = 0x2F; break; ++ case SW64in_FCVTDL_G: func = 0x22; break; ++ case SW64in_FCVTDL_P: func = 0x23; break; ++ case SW64in_FCVTDL_Z: func = 0x24; break; ++ case SW64in_FCVTDL_N: func = 0x25; break; ++ default: break; ++ } ++ vassert(func != 0xFF); ++ UInt instr = X_simreg_6_5_5_3_8_5(opcode, 0, rSrc, func, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ case SW64in_RFPCR: ++ { ++ UInt rDst = fregNo(i->SW64in.RFPCR.dst); ++ UInt instr = X_simreg_6_5_5_3_8_5(0x18, rDst, 0, 0x50, 0); ++ p = emit32(p, instr); ++ goto done; ++ } ++ case SW64in_WFPCR: ++ { ++ UInt rSrc = fregNo(i->SW64in.WFPCR.src); ++ UInt instr = X_simreg_6_5_5_3_8_5(0x18, rSrc, 0, 0x51, 0); ++ p = emit32(p, instr); ++ goto done; ++ } ++ ++ /*----code link----*/ ++ case SW64in_XDirect: ++ { ++ /* NB: what goes on here has to be very closely coordinated ++ with the chainXDirect_SW64 and unchainXDirect_SW64 below. */ ++ /* We're generating chain-me requests here, so we need to be ++ sure this is actually allowed -- no-redir translations ++ can't use chain-me's. Hence: */ ++ vassert(disp_cp_chain_me_to_slowEP != NULL); ++ vassert(disp_cp_chain_me_to_fastEP != NULL); ++ ++ /* Use ptmp for backpatching conditional jumps. */ ++ UChar *ptmp = NULL; ++ ++ /* First off, if this is conditional, create a conditional ++ jump over the rest of it. Or at least, leave a space for ++ it that we will shortly fill in. */ ++ if (i->SW64in.XDirect.cond->code != SW64cc_AL) ++ { ++ ptmp = p; ++ p = emit32(p, 0); ++ } ++ ++ /* Update the guest PC. */ ++ /* ldi r2, XDirect.dstGA */ ++ p = do_load_imm(p, 2, i->SW64in.XDirect.dstGA, False); ++ ++ /* stl r2, XDirect.amPC */ ++ p = emit32(p, X_ldst_6_5_5_16(0x2B, 2, ++ iregNo(i->SW64in.XDirect.amPC->base), ++ toImm(i->SW64in.XDirect.amPC->disp, 16))); ++ ++ /* --- FIRST PATCHABLE BYTE follows --- */ ++ /* VG_(disp_cp_chain_me_to_{slowEP,fastEP}) (where we're ++ calling to) backs up the return address, so as to find the ++ address of the first patchable byte. So: don't change the ++ number of instructions (3) below. */ ++ /* move r2, VG_(disp_cp_chain_me_to_{slowEP,fastEP}) */ ++ ++ const void* disp_cp_chain_me ++ = i->SW64in.XDirect.toFastEP ? disp_cp_chain_me_to_fastEP ++ : disp_cp_chain_me_to_slowEP; ++ ++ /* ldi r2, disp_cp_chain_me */ ++ p = do_load_imm(p, 2, (Addr)disp_cp_chain_me, True); ++ ++ /* jmp r1, (r2) */ ++ UInt instr = X_ldst_6_5_5_16(0x3, 1, 2, 0); ++ p = emit32(p, instr); ++ /* --- END of PATCHABLE BYTES --- */ ++ ++ /* Fix up the conditional jump, if there was one. */ ++ if (i->SW64in.XDirect.cond->code != SW64cc_AL) ++ do_condition_code_link(ptmp, p - ptmp, ++ i->SW64in.XDirect.cond); ++ ++ goto done; ++ } ++ case SW64in_XIndir: ++ { ++ /* We're generating transfers that could lead indirectly to a ++ chain-me, so we need to be sure this is actually allowed -- ++ no-redir translations are not allowed to reach normal ++ translations without going through the scheduler. That means ++ no XDirects or XIndirs out from no-redir translations. ++ Hence: */ ++ vassert(disp_cp_xindir != NULL); ++ ++ /* Use ptmp for backpatching conditional jumps. */ ++ UChar *ptmp = NULL; ++ ++ /* First off, if this is conditional, create a conditional ++ jump over the rest of it. */ ++ if (i->SW64in.XIndir.cond->code != SW64cc_AL) { ++ ptmp = p; ++ p = emit32(p, 0); ++ } ++ ++ /* stl XIndir.dstGA, XIndir.amPC */ ++ p = emit32(p, X_ldst_6_5_5_16(0x2B, iregNo(i->SW64in.XIndir.dstGA), ++ iregNo(i->SW64in.XIndir.amPC->base), ++ toImm(i->SW64in.XIndir.amPC->disp, 16))); ++ ++ /* ldi r2, disp_cp_xindir */ ++ p = do_load_imm(p, 2, (ULong)disp_cp_xindir, False); ++ ++ /* jmp r31, (r2) */ ++ UInt instr = X_ldst_6_5_5_16(0x3, 31, 2, 0); ++ p = emit32(p, instr); ++ ++ /* Fix up the conditional jump, if there was one. */ ++ if (i->SW64in.XIndir.cond->code != SW64cc_AL) ++ do_condition_code_link(ptmp, p - ptmp, ++ i->SW64in.XIndir.cond); ++ ++ goto done; ++ } ++ case SW64in_XAssisted: ++ { ++ /* Use ptmp for backpatching conditional jumps. */ ++ UChar *ptmp = NULL; ++ ++ /* First off, if this is conditional, create a conditional ++ jump over the rest of it. */ ++ if (i->SW64in.XAssisted.cond->code != SW64cc_AL) ++ { ++ ptmp = p; ++ p = emit32(p, 0); ++ } ++ ++ /* stl XAssisted.dstGA, XAssisted.amPC */ ++ p = emit32(p, X_ldst_6_5_5_16(0x2B, iregNo(i->SW64in.XAssisted.dstGA), ++ iregNo(i->SW64in.XAssisted.amPC->base), ++ toImm(i->SW64in.XAssisted.amPC->disp, 16))); ++ ++ /* imm32/64 r31, $magic_number */ ++ UInt trcval = 0; ++ switch (i->SW64in.XAssisted.jk) { ++ case Ijk_ClientReq: trcval = VEX_TRC_JMP_CLIENTREQ; break; ++ case Ijk_Sys_syscall: trcval = VEX_TRC_JMP_SYS_SYSCALL; break; ++ /* case Ijk_Sys_int128: trcval = VEX_TRC_JMP_SYS_INT128; break; */ ++ case Ijk_Yield: trcval = VEX_TRC_JMP_YIELD; break; ++ case Ijk_EmWarn: trcval = VEX_TRC_JMP_EMWARN; break; ++ case Ijk_EmFail: trcval = VEX_TRC_JMP_EMFAIL; break; ++ /* case Ijk_MapFail: trcval = VEX_TRC_JMP_MAPFAIL; break; */ ++ case Ijk_NoDecode: trcval = VEX_TRC_JMP_NODECODE; break; ++ case Ijk_InvalICache: trcval = VEX_TRC_JMP_INVALICACHE; break; ++ case Ijk_NoRedir: trcval = VEX_TRC_JMP_NOREDIR; break; ++ case Ijk_SigILL: trcval = VEX_TRC_JMP_SIGILL; break; ++ case Ijk_SigTRAP: trcval = VEX_TRC_JMP_SIGTRAP; break; ++ /* case Ijk_SigSEGV: trcval = VEX_TRC_JMP_SIGSEGV; break; */ ++ case Ijk_SigBUS: trcval = VEX_TRC_JMP_SIGBUS; break; ++ case Ijk_SigFPE_IntDiv: trcval = VEX_TRC_JMP_SIGFPE_INTDIV; break; ++ case Ijk_SigFPE_IntOvf: trcval = VEX_TRC_JMP_SIGFPE_INTOVF; break; ++ case Ijk_Boring: trcval = VEX_TRC_JMP_BORING; break; ++ /* We don't expect to see the following being assisted. ++ case Ijk_Ret: ++ case Ijk_Call: ++ fallthrough */ ++ default: ++ ppIRJumpKind(i->SW64in.XAssisted.jk); ++ vpanic("emit_SW64Instr.SW64in_XAssisted: unexpected jump kind"); ++ } ++ vassert(trcval != 0); ++ ++ p = do_load_imm(p, SW64GuestStateRegno(), trcval, False); ++ ++ /* ldi r2, disp_cp_xassisted */ ++ p = do_load_imm(p, 2, (ULong)disp_cp_xassisted, False); ++ ++ /* jmp r31, (r2) */ ++ UInt instr = X_ldst_6_5_5_16(0x3, 31, 2, 0); ++ p = emit32(p, instr); ++ ++ /* Fix up the conditional jump, if there was one. */ ++ if (i->SW64in.XAssisted.cond->code != SW64cc_AL) ++ do_condition_code_link(ptmp, p - ptmp, ++ i->SW64in.XAssisted.cond); ++ ++ goto done; ++ } ++ ++ /*----cond select ----*/ ++ case SW64in_CondSel: ++ { ++ UInt rIftrue = iregNo(i->SW64in.CondSel.iftrue); ++ UInt rIffalse = iregNo(i->SW64in.CondSel.iffalse); ++ UInt rCond = iregNo(i->SW64in.CondSel.cond); ++ UInt rDst = iregNo(i->SW64in.CondSel.dst); ++ vassert(rCond < 32); ++ vassert(rIftrue < 32); ++ vassert(rIffalse < 32); ++ vassert(rDst < 32); ++ ++ UInt opcode; ++ switch (i->SW64in.CondSel.op) { ++ case SW64in_SELEQ: opcode = 0x0; break; ++ case SW64in_SELGE: opcode = 0x1; break; ++ case SW64in_SELGT: opcode = 0x2; break; ++ case SW64in_SELLE: opcode = 0x3; break; ++ case SW64in_SELLT: opcode = 0x4; break; ++ case SW64in_SELNE: opcode = 0x5; break; ++ case SW64in_SELLBC: opcode = 0x6; break; ++ case SW64in_SELLBS: opcode = 0x7; break; ++ default: vassert(0); ++ } ++ ++ UInt instr = X_comreg_6_5_5_3_3_5_5(0x11, rCond, rIftrue, opcode, rIffalse, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ case SW64in_FpSel: ++ { ++ UInt rcond = fregNo(i->SW64in.FpSel.cond); //cond, Ity_F64 ++ UInt rIftrue = fregNo(i->SW64in.FpSel.iftrue); ++ UInt rIffalse = fregNo(i->SW64in.FpSel.iffalse); ++ UInt rDst = fregNo(i->SW64in.FpSel.dst); ++ vassert(rcond < 32); ++ vassert(rIftrue < 32); ++ vassert(rIffalse < 32); ++ vassert(rDst < 32); ++ ++ UInt func = (i->SW64in.FpSel.op == SW64in_FSELEQ) ? 0x10 : ++ (i->SW64in.FpSel.op == SW64in_FSELNE) ? 0x11 : ++ (i->SW64in.FpSel.op == SW64in_FSELLT) ? 0x12 : ++ (i->SW64in.FpSel.op == SW64in_FSELLE) ? 0x13 : ++ (i->SW64in.FpSel.op == SW64in_FSELGT) ? 0x14 : ++ (i->SW64in.FpSel.op == SW64in_FSELGE) ? 0x15 : ++ (vassert(0), 0); ++ ++ UInt instr = X_comfloat_6_5_5_6_5_5(0x19, rcond, rIftrue, func, rIffalse, rDst); ++ p = emit32(p, instr); ++ goto done; ++ } ++ ++ /*----other ----*/ ++ case SW64in_EvCheck: ++ { ++ /* This requires a 32-bit dec/test in 32 mode. */ ++ /* We generate: ++ ldw r2, amCounter ++ subl r2, 1, r2 ++ stw r2, amCounter ++ bge r2, nofail ++ ldl r2, amFailAddr ++ jmp r31, (r2) ++ nofail: ++ */ ++ UChar* p0 = p; ++ UInt instr = 0; ++ /* ldw r2, amCounter */ ++ p = emit32(p, X_ldst_6_5_5_16(0x22, 2, ++ iregNo(i->SW64in.EvCheck.amCounter->base), ++ toImm(i->SW64in.EvCheck.amCounter->disp, 16))); ++ ++ /* subl r2, 1, r2 */ ++ instr = X_simimm_6_5_8_8_5(0x12, 2, 1, 0x09, 2); ++ p = emit32(p, instr); ++ ++ /* stw r2, amCounter */ ++ p = emit32(p, X_ldst_6_5_5_16(0x2A, 2, ++ iregNo(i->SW64in.EvCheck.amCounter->base), ++ toImm(i->SW64in.EvCheck.amCounter->disp, 16))); ++ ++ /* bge r2, nofail */ ++ instr = X_branch_6_5_21(0x35, 2, 2); ++ p = emit32(p, instr); ++ ++ /* ldl r2, amFailAddr */ ++ p = emit32(p, X_ldst_6_5_5_16(0x23, 2, ++ iregNo(i->SW64in.EvCheck.amFailAddr->base), ++ toImm(i->SW64in.EvCheck.amFailAddr->disp, 16))); ++ ++ /* jmp r31, (r2) */ ++ instr = X_ldst_6_5_5_16(0x3, 31, 2, 0); ++ p = emit32(p, instr); ++ /* nofail: */ ++ ++ /* Crosscheck */ ++ vassert(evCheckSzB_SW64() == (UChar*)p - (UChar*)p0); ++ goto done; ++ } ++ case SW64in_ProfInc: ++ { ++ /* Generate a code template to increment a memory location whose ++ address will be known later as an immediate value. This code ++ template will be patched once the memory location is known. ++ For now we do this with address == 0x65556555. */ ++ ++ /* 64-bit: ++ move r2, 0x6555655565556555ULL ++ ldl r1, 0(r2) ++ addl r1, 1, r1 ++ stl r1, 0(r2) */ ++ ++ UInt instr = 0; ++ ++ /* move r2, 0x6555655565556555ULL */ ++ p = do_load_imm(p, 2, 0x6555655565556555ULL, True); ++ ++ /* ldl r1, 0(r2) */ ++ instr = X_ldst_6_5_5_16(0x23, 1, 2, 0); ++ p = emit32(p, instr); ++ ++ /* addl r1, 1, r1 */ ++ instr = X_simimm_6_5_8_8_5(0x12, 1, 1, 0x08, 1); ++ p = emit32(p, instr); ++ ++ /* stl r1, 0(r2) */ ++ instr = X_ldst_6_5_5_16(0x2B, 1, 2, 0); ++ p = emit32(p, instr); ++ ++ /* Tell the caller .. */ ++ vassert(!(*is_profInc)); ++ *is_profInc = True; ++ goto done; ++ } ++ ++ case SW64in_Call: ++ { ++ if (i->SW64in.Call.cond->code != SW64cc_AL ++ && i->SW64in.Call.rloc.pri != RLPri_None) ++ { ++ /* The call might not happen (it isn't unconditional) and ++ it returns a result. In this case we will need to ++ generate a control flow diamond to put 0x555..555 in ++ the return register(s) in the case where the call ++ doesn't happen. If this ever becomes necessary, maybe ++ copy code from the ARM equivalent. Until that day, ++ just give up. */ ++ goto bad; ++ } ++ ++ /* Use ptmp for backpatching conditional jumps. */ ++ UChar *ptmp = NULL; ++ ++ /* First off, if this is conditional, create a conditional ++ jump over the rest of it. */ ++ if (i->SW64in.Call.cond->code != SW64cc_AL) ++ { ++ ptmp = p; ++ p = emit32(p, 0); ++ } ++ ++ /* ldi $27, target */ ++ p = do_load_imm(p, 27, i->SW64in.Call.target, False); ++ ++ /* prefer use call, not jmp, for better return address prediction */ ++ /* call $26, ($27) */ ++ p = emit32(p, X_ldst_6_5_5_16(0x1, 26, 27, 0)); ++ ++ /* Fix up the conditional jump, if there was one. */ ++ if (i->SW64in.Call.cond->code != SW64cc_AL) ++ do_condition_code_link(ptmp, p - ptmp, ++ i->SW64in.Call.cond); ++ ++ goto done; ++ } ++ ++ case SW64in_Mfence: ++ { ++ /* MEMB */ ++ UInt instr = X_ldst_6_5_5_16(0x06, 0x0, 0x0, 0x0); ++ p = emit32(p, instr); ++ /* IMEMB */ ++ instr = X_ldst_6_5_5_16(0x06, 0x0, 0x0, 0x1); ++ p = emit32(p, instr); ++ goto done; ++ } ++ ++ default: ++ goto bad; ++ } ++ ++ bad: ++ vex_printf("\n=> "); ++ ppSW64Instr(i); ++ vpanic("emit_SW64Instr"); ++ /* NOTREACHED */ ++ done: ++ /* debug logger */ ++ // vex_printf("\n=> "); ++ // ppSW64Instr(i); ++ ++ /* vex_printf("p-&buf[0] = %ld\n", (p - &buf[0])); */ ++ vassert(p - &buf[0] <= 256); ++ return (p - &buf[0]); ++} ++ ++ ++/* How big is an event check? See case for Min_EvCheck in ++ emit_SW64Instr just above. That crosschecks what this returns, so ++ we can tell if we're inconsistent. */ ++Int evCheckSzB_SW64 (void) ++{ ++ UInt kInstrSize = 4; ++ return 6 * kInstrSize; ++} ++ ++/* NB: what goes on here has to be very closely coordinated with the ++ emitInstr case for XDirect, above. */ ++VexInvalRange chainXDirect_SW64 ( VexEndness endness_host, ++ void* place_to_chain, ++ const void* disp_cp_chain_me_EXPECTED, ++ const void* place_to_jump_to) ++{ ++ vassert(endness_host == VexEndnessLE); ++ UChar* p = (UChar*)place_to_chain; ++ vassert(0 == (3 & (HWord)p)); ++ ++ /* What we're expecting to see is: ++ --- ++ ldi r2, disp_cp_chain_me # 20 bytes ++ jmp r1, (r2) # 4 bytes ++ --- ++ And we patch them to either: ++ --- (prefer, faster) ++ br place_to_jump_to ++ nop ++ nop ++ nop ++ nop ++ nop ++ --- (fallback) ++ ldi r2, place_to_jump_to # 20 bytes ++ jmp r31, (r2) # 4 bytes ++ --- ++ */ ++ ++ vassert(is_load_imm(p, 2, (Addr)disp_cp_chain_me_EXPECTED, True)); ++ vassert(fetch32(p + 20) == X_ldst_6_5_5_16(0x3, 1, 2, 0)); ++ ++ ULong disp = (ULong)place_to_jump_to - (ULong)place_to_chain - 4; ++ vassert((disp & 0x3) == 0); ++ disp >>= 2; ++ ++ if (disp >= ~0xFFFFFULL || disp <= 0xFFFFFULL) { ++ p = emit32(p, X_branch_6_5_21(0x4, 31, disp)); ++ p = emit32(p, X_nop()); ++ p = emit32(p, X_nop()); ++ p = emit32(p, X_nop()); ++ p = emit32(p, X_nop()); ++ p = emit32(p, X_nop()); ++ } else { ++ p = do_load_imm(p, 2, (Addr)place_to_jump_to, True); ++ p = emit32(p, X_ldst_6_5_5_16(0x3, 31, 2, 0)); ++ } ++ ++ UInt len = p - (UChar*)place_to_chain; ++ vassert(len == 24); /* stay sane */ ++ VexInvalRange vir = {(HWord)place_to_chain, len}; ++ return vir; ++} ++ ++/* NB: what goes on here has to be very closely coordinated with the ++ emitInstr case for XDirect, above. */ ++VexInvalRange unchainXDirect_SW64 ( VexEndness endness_host, ++ void* place_to_unchain, ++ const void* place_to_jump_to_EXPECTED, ++ const void* disp_cp_chain_me) ++{ ++ vassert(endness_host == VexEndnessLE); ++ UChar* p = (UChar*)place_to_unchain; ++ vassert(0 == (3 & (HWord)p)); ++ ++ /* What we're expecting to see is either: ++ --- ++ br place_to_jump_to ++ nop ++ nop ++ nop ++ nop ++ nop ++ --- or ++ ldi r2, place_to_jump_to # 20 bytes ++ jmp r31, (r2) # 4 bytes ++ --- ++ And we patch them to: ++ --- ++ ldi r2, disp_cp_chain_me # 20 bytes ++ jmp r1, (r2) # 4 bytes ++ --- ++ */ ++ ++ ULong disp = (ULong)place_to_jump_to_EXPECTED - (ULong)place_to_unchain - 4; ++ vassert((disp & 0x3) == 0); ++ disp >>= 2; ++ ++ if (disp >= ~0xFFFFFULL || disp <= 0xFFFFFULL) { ++ vassert(fetch32(p + 0) == X_branch_6_5_21(0x4, 31, disp)); ++ vassert(fetch32(p + 4) == X_nop()); ++ vassert(fetch32(p + 8) == X_nop()); ++ vassert(fetch32(p + 12) == X_nop()); ++ vassert(fetch32(p + 16) == X_nop()); ++ vassert(fetch32(p + 20) == X_nop()); ++ } else { ++ vassert(is_load_imm(p, 2, (Addr)place_to_jump_to_EXPECTED, True)); ++ vassert(fetch32(p + 20) == X_ldst_6_5_5_16(0x3, 31, 2, 0)); ++ } ++ ++ p = do_load_imm(p, 2, (Addr)disp_cp_chain_me, True); ++ p = emit32(p, X_ldst_6_5_5_16(0x3, 1, 2, 0)); ++ ++ UInt len = p - (UChar*)place_to_unchain; ++ vassert(len == 24); /* stay sane */ ++ VexInvalRange vir = {(HWord)place_to_unchain, len}; ++ return vir; ++} ++ ++/* Patch the counter address into a profile inc point, as previously ++ created by the Min_ProfInc case for emit_MIPSInstr. */ ++VexInvalRange patchProfInc_SW64 ( VexEndness endness_host, ++ void* place_to_patch, ++ const ULong* location_of_counter) ++{ ++ vassert(endness_host == VexEndnessLE); ++ vassert(sizeof(ULong*) == 8); ++ ++ UChar* p = (UChar*)place_to_patch; ++ vassert(0 == (3 & (HWord)p)); ++ ++ /* What we're expecting to see is: ++ <20 bytes generated by do_load_imm> # ldi r2, 0x6555655565556555 ++ 0x8C220000 # ldl r1, 0(r2) ++ 0x48202101 # addl r1, 1, r1 ++ 0xAC220000 # stl r1, 0(r2) ++ */ ++ vassert(is_load_imm(p, 2, 0x6555655565556555ULL, True)); ++ vassert(fetch32(p + 20 + 0) == 0x8C220000); ++ vassert(fetch32(p + 20 + 4) == 0x48202101); ++ vassert(fetch32(p + 20 + 8) == 0xAC220000); ++ ++ p = do_load_imm(p, 2, (Addr)location_of_counter, True); ++ ++ VexInvalRange vir = {(HWord)p, 8}; ++ return vir; ++} ++/*---------------------------------------------------------------*/ ++/*--- end host_sw64_defs.c ---*/ ++/*---------------------------------------------------------------*/ +diff --git a/VEX/priv/host_sw64_defs.h b/VEX/priv/host_sw64_defs.h +new file mode 100644 +index 000000000..b4b81818e +--- /dev/null ++++ b/VEX/priv/host_sw64_defs.h +@@ -0,0 +1,687 @@ ++ ++/*---------------------------------------------------------------*/ ++/*--- begin host_arm64_defs.h ---*/ ++/*---------------------------------------------------------------*/ ++ ++/* ++ This file is part of Valgrind, a dynamic binary instrumentation ++ framework. ++ ++ Copyright (C) 2013-2017 OpenWorks ++ info@open-works.net ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, see . ++ ++ The GNU General Public License is contained in the file COPYING. ++*/ ++ ++#ifndef __VEX_HOST_SW64_DEFS_H ++#define __VEX_HOST_SW64_DEFS_H ++ ++#include "libvex_basictypes.h" ++#include "libvex.h" // VexArch ++#include "host_generic_regs.h" // HReg ++#include "libvex_guest_sw64.h" // VexGuestSW64State ++#include "main_util.h" // offsetof ++ ++/* --------- Registers. --------- */ ++/* ++ r0 - r2 temporary, reserved for temporary use ++ r3 - r8 temporary, available to reg-alloc ++ r9 - r12 saved, available to reg-alloc ++ r13 saved, reserved for future use ++ r14 saved, reserved for saving host fpcr ++ r15 saved, reserved for VexGuestState pointer ++ r16 - r25 temporary, available to reg-alloc ++ r26 - r27 reserved for dirty call ++ r28 - r30 reserved belong to host ++*/ ++#define ST_IN static inline ++ ++ST_IN HReg hregSW64_R16 ( void ) { return mkHReg(False, HRcInt64, 16, 0); } ++ST_IN HReg hregSW64_R17 ( void ) { return mkHReg(False, HRcInt64, 17, 1); } ++ST_IN HReg hregSW64_R18 ( void ) { return mkHReg(False, HRcInt64, 18, 2); } ++ST_IN HReg hregSW64_R19 ( void ) { return mkHReg(False, HRcInt64, 19, 3); } ++ST_IN HReg hregSW64_R20 ( void ) { return mkHReg(False, HRcInt64, 20, 4); } ++ST_IN HReg hregSW64_R21 ( void ) { return mkHReg(False, HRcInt64, 21, 5); } ++ST_IN HReg hregSW64_R22 ( void ) { return mkHReg(False, HRcInt64, 22, 6); } ++ST_IN HReg hregSW64_R23 ( void ) { return mkHReg(False, HRcInt64, 23, 7); } ++ST_IN HReg hregSW64_R24 ( void ) { return mkHReg(False, HRcInt64, 24, 8); } ++ST_IN HReg hregSW64_R25 ( void ) { return mkHReg(False, HRcInt64, 25, 9); } ++ST_IN HReg hregSW64_R3 ( void ) { return mkHReg(False, HRcInt64, 3, 10); } ++ST_IN HReg hregSW64_R4 ( void ) { return mkHReg(False, HRcInt64, 4, 11); } ++ST_IN HReg hregSW64_R5 ( void ) { return mkHReg(False, HRcInt64, 5, 12); } ++ST_IN HReg hregSW64_R6 ( void ) { return mkHReg(False, HRcInt64, 6, 13); } ++ST_IN HReg hregSW64_R7 ( void ) { return mkHReg(False, HRcInt64, 7, 14); } ++ST_IN HReg hregSW64_R8 ( void ) { return mkHReg(False, HRcInt64, 8, 15); } ++ST_IN HReg hregSW64_R9 ( void ) { return mkHReg(False, HRcInt64, 9, 16); } ++ST_IN HReg hregSW64_R10 ( void ) { return mkHReg(False, HRcInt64, 10, 17); } ++ST_IN HReg hregSW64_R11 ( void ) { return mkHReg(False, HRcInt64, 11, 18); } ++ST_IN HReg hregSW64_R12 ( void ) { return mkHReg(False, HRcInt64, 12, 19); } ++ ++ST_IN HReg hregSW64_F2 ( void ) { return mkHReg(False, HRcFlt64, 2, 20); } ++ST_IN HReg hregSW64_F3 ( void ) { return mkHReg(False, HRcFlt64, 3, 21); } ++ST_IN HReg hregSW64_F4 ( void ) { return mkHReg(False, HRcFlt64, 4, 22); } ++ST_IN HReg hregSW64_F5 ( void ) { return mkHReg(False, HRcFlt64, 5, 23); } ++ST_IN HReg hregSW64_F6 ( void ) { return mkHReg(False, HRcFlt64, 6, 24); } ++ST_IN HReg hregSW64_F7 ( void ) { return mkHReg(False, HRcFlt64, 7, 25); } ++ST_IN HReg hregSW64_F8 ( void ) { return mkHReg(False, HRcFlt64, 8, 26); } ++ST_IN HReg hregSW64_F9 ( void ) { return mkHReg(False, HRcFlt64, 9, 27); } ++ ++ST_IN HReg hregSW64_R0 ( void ) { return mkHReg(False, HRcInt64, 0, 28); } ++ST_IN HReg hregSW64_R1 ( void ) { return mkHReg(False, HRcInt64, 1, 29); } ++ST_IN HReg hregSW64_R2 ( void ) { return mkHReg(False, HRcInt64, 2, 30); } ++ST_IN HReg hregSW64_R13 ( void ) { return mkHReg(False, HRcInt64, 13, 31); } ++ST_IN HReg hregSW64_R14 ( void ) { return mkHReg(False, HRcInt64, 14, 32); } ++ST_IN HReg hregSW64_R15 ( void ) { return mkHReg(False, HRcInt64, 15, 33); } ++ ++ST_IN HReg hregSW64_R26 ( void ) { return mkHReg(False, HRcInt64, 26, 34); } ++ST_IN HReg hregSW64_R27 ( void ) { return mkHReg(False, HRcInt64, 27, 35); } ++ST_IN HReg hregSW64_R28 ( void ) { return mkHReg(False, HRcInt64, 28, 36); } ++ST_IN HReg hregSW64_R29 ( void ) { return mkHReg(False, HRcInt64, 29, 37); } ++ST_IN HReg hregSW64_R30 ( void ) { return mkHReg(False, HRcInt64, 30, 38); } ++ST_IN HReg hregSW64_R31 ( void ) { return mkHReg(False, HRcInt64, 31, 39); } ++ ++ST_IN HReg hregSW64_F31 ( void ) { return mkHReg(False, HRcFlt64, 31, 40); } ++ ++#undef ST_IN ++ ++#define SW64GuestStateHreg() hregSW64_R15() ++#define SW64GuestStateRegno() iregNo(SW64GuestStateHreg()) ++#define SW64Zero() hregSW64_R31() ++#define SW64StackPointer() hregSW64_R30() ++#define SW64_R31_OFFSET() offsetof(VexGuestSW64State, guest_r31) ++#define SW64_F31_OFFSET() offsetof(VexGuestSW64State, guest_f31) ++#define SW64_LOCKFLAG_OFFSET() offsetof(VexGuestSW64State, guest_LOCKFLAG) ++ ++/* Number of registers used arg passing in function calls */ ++#define SW64_N_ARGREGS 6 /* a0 .. a5 */ ++ ++extern UInt ppHRegSW64 ( HReg ); ++ ++/* --------- Memory address expressions (amodes). --------- */ ++ ++/*! SW64 偏移寻址模式. ++ * SW64 6B 仅支持这种寻址模式,即 <欲访问的内存地址> = <基址寄存器的值> + <偏移量立即数> ++ * 其中基址寄存器可以是任何整形通用寄存器,偏移量立即数可以是 16 位有符号整数, ++ * 若寄存器为 $r31 则退化为绝对寻址,若偏移量为 0 则退化为间接寻址 ++ */ ++typedef struct { ++ HReg base; ++ Int disp; ++} SW64AModeRI; ++ ++extern SW64AModeRI *SW64AModeRI_IR(Int, HReg); ++extern void ppSW64AModeRI (SW64AModeRI *); ++ ++//--------------------------------------------INTRUCTION---------------------------------------// ++typedef enum { ++ SW64cc_EQ, /* BEQ SELEQ */ ++ SW64cc_NE, /* BNE SELNE */ ++ SW64cc_LT, /* BLT SELLT */ ++ SW64cc_LE, /* BLE SELLE */ ++ SW64cc_GT, /* BGT SELGT */ ++ SW64cc_GE, /* BGE SELGE */ ++ SW64cc_FEQ, /* FBEQ FSELEQ */ ++ SW64cc_FNE, /* FBNE FSELNE */ ++ SW64cc_FLT, /* FBLT FSELLT */ ++ SW64cc_FLE, /* FBLE FSELLE */ ++ SW64cc_FGT, /* FBGT FSELGT */ ++ SW64cc_FGE, /* FBGE FSELGE */ ++ SW64cc_AL, /* always (unconditional) */ ++} SW64CondCode; ++ ++ ++typedef struct { ++ SW64CondCode code; ++ HReg reg; ++} SW64Cond; ++ ++extern SW64Cond *SW64Cond_Cond(SW64CondCode code, HReg reg); ++extern SW64Cond *SW64Cond_ALWAYS(void); ++ ++extern void ppSW64Cond(const SW64Cond *); ++ ++ ++/* --------- Operand, which can be a reg or a u16/s16. --------- */ ++/* ("RI8" == "Register or byte immediate") */ ++typedef enum { ++ Sri8_Imm, ++ Sri8_Reg ++} SW64RI8Tag; ++ ++typedef struct { ++ SW64RI8Tag tag; ++ union { ++ struct { ++ UChar imm8; ++ } Imm; ++ struct { ++ HReg reg; ++ } Reg; ++ } Sri8; ++} SW64RI8; ++extern void ppSW64RI8(SW64RI8 *); ++ ++extern SW64RI8 *SW64RI8_Imm(UChar); ++extern SW64RI8 *SW64RI8_Reg(HReg); ++ ++/* ----- Each Classes Instruction tags ----- */ ++ ++typedef enum { ++ SW64in_LDBU, SW64in_LDHU, SW64in_LDW, SW64in_LDL ++} SW64LoadOp; ++extern const HChar *showSW64LoadOp(SW64LoadOp); ++ ++typedef enum { ++ SW64in_STB, SW64in_STH, SW64in_STW, SW64in_STL ++} SW64StoreOp; ++extern const HChar *showSW64StoreOp(SW64StoreOp); ++ ++typedef enum { ++ SW64in_FLDS, SW64in_FLDD ++} SW64FpLoadOp; ++extern const HChar *showSW64FpLoadOp(SW64FpLoadOp); ++ ++typedef enum { ++ SW64in_FSTS, SW64in_FSTD ++} SW64FpStoreOp; ++extern const HChar *showSW64FpStoreOp(SW64FpStoreOp); ++ ++ ++typedef enum { ++ SW64in_AND, SW64in_OR, SW64in_XOR, SW64in_BIC, SW64in_ORNOT ++} SW64LogicOp; ++extern const HChar *showSW64LogicOp(SW64LogicOp); ++ ++typedef enum { ++ SW64in_ADDW, SW64in_ADDL, SW64in_SUBW, SW64in_SUBL, ++ SW64in_S4ADDW, SW64in_S4ADDL, SW64in_S4SUBW, SW64in_S4SUBL, ++ SW64in_S8ADDW, SW64in_S8ADDL, SW64in_S8SUBW, SW64in_S8SUBL, ++ SW64in_MULW, SW64in_MULL, ++ SW64in_UMULH, SW64in_ZAP, ++ SW64in_ZAPNOT, SW64in_SEXTB, SW64in_SEXTH ++} SW64ArithOp; ++extern const HChar *showSW64ArithOp(SW64ArithOp); ++ ++typedef enum { ++ SW64in_DIVW, SW64in_UDIVW, SW64in_DIVL, SW64in_UDIVL, ++ SW64in_REMW, SW64in_UREMW, SW64in_REML, SW64in_UREML, ++} SW64IntDivOp; ++extern const HChar *showSW64IntDivOp(SW64IntDivOp); ++ ++typedef enum { ++ SW64in_CMPEQ, ++ SW64in_CMPLT, SW64in_CMPLE, ++ SW64in_CMPULT, SW64in_CMPULE ++} SW64CmpOp; ++extern const HChar *showSW64CmpOp(SW64CmpOp); ++ ++typedef enum{ ++ SW64in_POP, SW64in_CLZ, SW64in_CTZ ++} SW64UnOp; ++extern const HChar *showSW64UnaryOp(SW64UnOp); ++ ++typedef enum{ ++ SW64in_SLL, SW64in_SRL, SW64in_SRA ++} SW64ShftOp; ++extern const HChar *showSW64ShftOp(SW64ShftOp); ++ ++typedef enum{ ++ SW64in_SELEQ, SW64in_SELGE, SW64in_SELGT, SW64in_SELLE, ++ SW64in_SELLT, SW64in_SELNE, SW64in_SELLBC, SW64in_SELLBS ++} SW64CondSelOp; ++extern const HChar *showSW64CondSelOp(SW64CondSelOp); ++ ++typedef enum{ ++ SW64in_FADDS, SW64in_FADDD, SW64in_FSUBS, SW64in_FSUBD, ++ SW64in_FMULS, SW64in_FMULD, SW64in_FDIVS, SW64in_FDIVD ++} SW64FpArithOp; ++extern const HChar *showSW64FpArithOp(SW64FpArithOp); ++ ++typedef enum{ ++ SW64in_FIMOVS, SW64in_FIMOVD, SW64in_IFMOVS, SW64in_IFMOVD, ++ SW64in_CMOVDL, SW64in_CMOVDL_G, SW64in_CMOVDL_P, SW64in_CMOVDL_Z, SW64in_CMOVDL_N, ++ SW64in_CMOVDLU, SW64in_CMOVDLU_G, SW64in_CMOVDLU_P, SW64in_CMOVDLU_Z, SW64in_CMOVDLU_N, ++ SW64in_CMOVDWU, SW64in_CMOVDWU_G, SW64in_CMOVDWU_P, SW64in_CMOVDWU_Z, SW64in_CMOVDWU_N, ++ SW64in_CMOVDW, SW64in_CMOVDW_G, SW64in_CMOVDW_P, SW64in_CMOVDW_Z, SW64in_CMOVDW_N, ++ SW64in_CMOVLS, SW64in_CMOVWS, SW64in_CMOVLD, SW64in_CMOVWD, ++ SW64in_CMOVULS, SW64in_CMOVUWS, SW64in_CMOVULD, SW64in_CMOVUWD ++} SW64FpGpMoveOp; ++extern const HChar *showSW64FpGpMoveOp(SW64FpGpMoveOp); ++ ++typedef enum{ ++ SW64in_FCPYS, SW64in_FCPYSE, SW64in_FCPYSN ++} SW64FpCpyOp; ++extern const HChar *showSW64FpCpyOp(SW64FpCpyOp); ++ ++typedef enum{ ++ SW64in_MADDS, SW64in_MSUBS, SW64in_MADDD, SW64in_MSUBD ++} SW64FpQuaryOp; ++extern const HChar *showSW64FpQuaryOp(SW64FpQuaryOp); ++ ++typedef enum{ ++ SW64in_FSQRTS, SW64in_FSQRTD, ++ SW64in_FRECS, SW64in_FRECD, ++ SW64in_FRIS, SW64in_FRIS_G, SW64in_FRIS_P, SW64in_FRIS_Z, SW64in_FRIS_N, ++ SW64in_FRID, SW64in_FRID_G, SW64in_FRID_P, SW64in_FRID_Z, SW64in_FRID_N ++} SW64FpUnaryOp; ++extern const HChar *showSW64FpUnaryOp(SW64FpUnaryOp); ++ ++typedef enum{ ++ SW64in_CMPFEQ, SW64in_CMPFLE, SW64in_CMPFLT, SW64in_CMPFUN ++} SW64FpCmpOp; ++extern const HChar *showSW64FpCmpOp(SW64FpCmpOp); ++ ++typedef enum{ ++ SW64in_FSELEQ, SW64in_FSELNE, SW64in_FSELLT, SW64in_FSELLE, ++ SW64in_FSELGT, SW64in_FSELGE ++} SW64FpSelOp; ++extern const HChar *showSW64FpSelOp(SW64FpSelOp); ++ ++typedef enum{ ++ SW64in_FCVTSD, SW64in_FCVTDS, SW64in_FCVTDL, SW64in_FCVTLS, SW64in_FCVTLD, ++ SW64in_FCVTDL_G, SW64in_FCVTDL_P, SW64in_FCVTDL_Z, SW64in_FCVTDL_N ++} SW64FpCvtOp; ++extern const HChar *showSW64FpCvtOp(SW64FpCvtOp); ++ ++/* ----- Instruction tags ----- */ ++typedef enum { ++ ++ /*----load/store----*/ ++ SW64in_Load, ++ SW64in_Store, ++ SW64in_FpLoad, ++ SW64in_FpStore, ++ SW64in_LoadImm, //load imm ++ ++ /*----unop data process----*/ ++ SW64in_UnOperate, ++ ++ /*----integer data process----*/ ++ SW64in_Logic, ++ SW64in_Cmp, ++ SW64in_Shft, ++ SW64in_Arith, ++ SW64in_IntDiv, ++ ++ /*----float data process----*/ ++ SW64in_FpArith, ++ SW64in_FpGpMove, ++ SW64in_FpCpy, ++ SW64in_FpQuary, ++ SW64in_FpUnary, ++ SW64in_FpSel, ++ SW64in_FpCmp, ++ SW64in_FpCvt, ++ SW64in_RFPCR, ++ SW64in_WFPCR, ++ ++ /*----code link----*/ ++ SW64in_XDirect, ++ SW64in_XIndir, ++ SW64in_XAssisted, ++ ++ /*----cond select ----*/ ++ SW64in_CondSel, ++ ++ /*----other ----*/ ++ SW64in_EvCheck, ++ SW64in_ProfInc, ++ SW64in_Call, ++ SW64in_Mfence, ++ SW64in_CAS ++} SW64InstrTag; ++ ++ ++/*--------- Structure for instructions ----------*/ ++/* Destinations are on the LEFT (first operand) */ ++ ++typedef struct { ++ SW64InstrTag tag; ++ union{ ++ /* 64/32/16/8 bit stores */ ++ struct { ++ SW64LoadOp op; ++ HReg dst; ++ SW64AModeRI *addr; ++ } Load; ++ struct { ++ SW64StoreOp op; ++ HReg src; ++ SW64AModeRI *addr; ++ } Store; ++ struct { ++ SW64FpLoadOp op; ++ HReg dst; ++ SW64AModeRI *addr; ++ } FpLoad; ++ struct { ++ SW64FpStoreOp op; ++ HReg src; ++ SW64AModeRI *addr; ++ } FpStore; ++ ++ struct{ ++ UChar sz; /* 4|8 */ ++ HReg old; ++ HReg addr; ++ HReg expd; ++ HReg data; ++ } Cas; ++ ++ struct{ ++ HReg dst; //dst ++ ULong imm64; //imm ++ } LoadImm; ++ ++ struct{ ++ HReg dst; ++ HReg src; ++ SW64UnOp op; ++ } ++ UnOperate; ++ ++ /* Integer and/or/xor. Limitations: ++ - For and/or/xor, the immediate, if it exists, ++ is an unsigned 16. ++ */ ++ struct { ++ SW64LogicOp op; ++ HReg dst; ++ HReg srcL; ++ SW64RI8 *srcR; ++ } Logic; ++ ++ /* Integer Compare, CMPEQ, CMPLT, CMPLE, CMPULT, CMPULE ++ */ ++ struct{ ++ SW64CmpOp op; ++ HReg dst; ++ HReg srcL; ++ SW64RI8* srcR; ++ } Cmp; ++ ++ /* Integer shift, SLL, SRL, SRA ++ */ ++ struct{ ++ SW64ShftOp op; ++ HReg dst; ++ HReg srcL; ++ SW64RI8* srcR; ++ } Shft; ++ ++ /* Integer arith, ADD, SUB, MUL ++ */ ++ struct{ ++ SW64ArithOp op; ++ HReg dst; ++ HReg srcL; ++ SW64RI8* srcR; ++ } Arith; ++ ++ /* Integer division, DIV, REM ++ */ ++ struct{ ++ SW64IntDivOp op; ++ HReg dst; ++ HReg srcL; ++ HReg srcR; ++ } IntDiv; ++ ++ /* Float arith, ADD, SUB, MUL, DIV, SQRT ++ */ ++ struct{ ++ SW64FpArithOp op; ++ HReg dst; ++ HReg srcL; ++ HReg srcR; ++ } FpArith; ++ ++ struct{ ++ SW64FpCpyOp op; ++ HReg dst; ++ HReg src1; ++ HReg src2; ++ } FpCpy; ++ ++ struct{ ++ SW64FpQuaryOp op; ++ HReg dst; ++ HReg src1; ++ HReg src2; ++ HReg src3; ++ } FpQuary; ++ ++ struct{ ++ SW64FpUnaryOp op; ++ HReg dst; ++ HReg src; ++ } FpUnary; ++ ++ /* move/convert between GPR and FPR */ ++ struct { ++ SW64FpGpMoveOp op; ++ HReg dst; ++ HReg src; ++ } FpGpMove; ++ ++ /*float compare for branch and select*/ ++ struct { ++ SW64FpSelOp op; ++ HReg cond; ++ HReg dst; ++ HReg iftrue; ++ HReg iffalse; ++ } FpSel; ++ ++ /*float compare*/ ++ struct { ++ SW64FpCmpOp op; ++ HReg dst; ++ HReg srcL; ++ HReg srcR; ++ } FpCmp; ++ ++ /* convert from/to fpr to/from gpr */ ++ struct { ++ SW64FpCvtOp op; ++ HReg dst; ++ HReg src; ++ } FpCvt; ++ ++ /* read FPCR to GP register */ ++ struct{ ++ HReg dst; ++ } RFPCR; ++ ++ /* write GP register to FPCR*/ ++ struct{ ++ HReg src; ++ } WFPCR; ++ ++ /* Update the guest EIP value, then exit requesting to chain ++ to it. May be conditional. Urr, use of Addr32 implicitly ++ assumes that wordsize(guest) == wordsize(host). */ ++ struct { ++ Addr64 dstGA; /* next guest address */ ++ SW64AModeRI* amPC; /* amode in guest state for PC */ ++ SW64Cond* cond; /* condiction execution */ ++ Bool toFastEP; /* chain to the slow or fast point? */ ++ } XDirect; ++ /* Boring transfer to a guest address not known at JIT time. ++ Not chainable. May be conditional. */ ++ struct { ++ HReg dstGA; ++ SW64AModeRI* amPC; ++ SW64Cond* cond; ++ } XIndir; ++ /* Assisted transfer to a guest address, most general case. ++ Not chainable. May be conditional. */ ++ struct { ++ HReg dstGA; ++ SW64AModeRI* amPC; ++ SW64Cond* cond; ++ IRJumpKind jk; ++ } XAssisted; ++ ++ /* CSEL: dst = if cond then argL else argR. cond may be anything. */ ++ struct { ++ SW64CondSelOp op; ++ HReg dst; ++ HReg iftrue; ++ HReg iffalse; ++ HReg cond; ++ } CondSel; ++ ++ struct { ++ SW64AModeRI* amCounter; ++ SW64AModeRI* amFailAddr; ++ } EvCheck; ++ struct { ++ /* No fields. The address of the counter to inc is ++ installed later, post-translation, by patching it in, ++ as it is not known at translation time. */ ++ } ProfInc; ++ ++ /* Pseudo-insn. Call target (an absolute address), on given ++ condition (which could be Mcc_ALWAYS). argiregs indicates ++ which of $16 .. $21 (sw64) ++ carries argument values for this call, ++ using a bit mask (1<. ++ ++ The GNU General Public License is contained in the file COPYING. ++*/ ++ ++#include "libvex_basictypes.h" ++#include "libvex_ir.h" ++#include "libvex.h" ++ ++#include "main_util.h" ++#include "main_globals.h" ++#include "host_generic_regs.h" ++#include "host_sw64_defs.h" ++ ++ ++/*---------------------------------------------------------*/ ++/*--- ISelEnv ---*/ ++/*---------------------------------------------------------*/ ++ ++/* This carries around: ++ ++ - A mapping from IRTemp to IRType, giving the type of any IRTemp we ++ might encounter. This is computed before insn selection starts, ++ and does not change. ++ ++ - A mapping from IRTemp to HReg. This tells the insn selector ++ which virtual register is associated with each IRTemp temporary. ++ This is computed before insn selection starts, and does not ++ change. We expect this mapping to map precisely the same set of ++ IRTemps as the type mapping does. ++ ++ |vregmap| holds the primary register for the IRTemp. ++ |vregmapHI| is only used for 128-bit integer-typed ++ IRTemps. It holds the identity of a second ++ 64-bit virtual HReg, which holds the high half ++ of the value. ++ ++ - The code array, that is, the insns selected so far. ++ ++ - A counter, for generating new virtual registers. ++ ++ - The host hardware capabilities word. This is set at the start ++ and does not change. ++ ++ - A Bool for indicating whether we may generate chain-me ++ instructions for control flow transfers, or whether we must use ++ XAssisted. ++ ++ - The maximum guest address of any guest insn in this block. ++ Actually, the address of the highest-addressed byte from any insn ++ in this block. Is set at the start and does not change. This is ++ used for detecting jumps which are definitely forward-edges from ++ this block, and therefore can be made (chained) to the fast entry ++ point of the destination, thereby avoiding the destination's ++ event check. ++ ++ - An IRExpr*, which may be NULL, holding the IR expression (an ++ IRRoundingMode-encoded value) to which the FPU's rounding mode ++ was most recently set. Setting to NULL is always safe. Used to ++ avoid redundant settings of the FPU's rounding mode, as ++ described in set_FPCR_rounding_mode below. ++ ++ Note, this is all (well, mostly) host-independent. ++*/ ++ ++typedef ++ struct { ++ /* Constant -- are set at the start and do not change. */ ++ IRTypeEnv* type_env; //A mapping from IRTemp to IRType ++ ++ HReg* vregmap; //A mapping from IRTemp to HReg ++ HReg* vregmapHI; //is only used for 128-bit integer-typed ++ Int n_vregmap; ++ ++ UInt hwcaps; ++ ++ Bool chainingAllowed; ++ Addr64 max_ga; ++ ++ /* These are modified as we go along. */ ++ HInstrArray* code; ++ Int vreg_ctr; ++ ++ IRExpr* previous_rm; ++ } ++ ISelEnv; ++ ++static SW64Cond *iselIntExpr_Cond_wrk(ISelEnv * env, IRExpr * e); ++static SW64Cond *iselIntExpr_Cond(ISelEnv * env, IRExpr * e); ++ ++static SW64AModeRI *iselWordExpr_AMode_wrk(ISelEnv * env, IRExpr * e); ++static SW64AModeRI *iselWordExpr_AMode(ISelEnv * env, IRExpr * e); ++ ++static HReg iselIntExpr_HReg(ISelEnv * env, IRExpr * e, HReg INVALID_HREG); ++static HReg iselIntExpr(ISelEnv * env, IRExpr * e); ++ ++static SW64RI8 *iselIntExpr_RI8_wrk(ISelEnv * env, IRExpr * e); ++static SW64RI8 *iselIntExpr_RI8(ISelEnv * env, IRExpr * e); ++ ++static void iselInt128Expr_wrk ( HReg* rHi, HReg* rLo, ISelEnv* env, IRExpr* e ); ++static void iselInt128Expr ( HReg* rHi, HReg* rLo, ISelEnv* env, IRExpr* e ); ++ ++static HReg iselFltExpr_HReg(ISelEnv * env, IRExpr * e, HReg INVALID_HREG); ++static HReg iselFltExpr(ISelEnv * env, IRExpr * e); ++ ++static ++Bool doHelperCall ( /*OUT*/UInt* stackAdjustAfterCall, ++ /*OUT*/RetLoc* retloc, ++ ISelEnv* env, ++ IRExpr* guard, ++ IRCallee* cee, IRType retTy, IRExpr** args ); ++ ++ ++/* Create Integer HReg */ ++static HReg newVRegI( ISelEnv * env) ++{ ++ HReg reg = mkHReg(True /*virtual reg*/, HRcInt64, 0, env->vreg_ctr); ++ env->vreg_ctr++; ++ return reg; ++} ++/* Create Float HReg */ ++static HReg newVRegF( ISelEnv * env) ++{ ++ HReg reg = mkHReg(True /*virtual reg*/, HRcFlt64, 0, env->vreg_ctr); ++ env->vreg_ctr++; ++ return reg; ++} ++ ++static void addInstr(ISelEnv * env, SW64Instr * instr) ++{ ++ addHInstr(env->code, instr); ++ if (vex_traceflags & VEX_TRACE_VCODE) { ++ ppSW64Instr(instr); ++ vex_printf("\n"); ++ } ++} ++ ++static Bool const_equal_to(IRExpr *e, ULong v) ++{ ++ if (e->tag != Iex_Const) ++ return False; ++ ++ if (e->Iex.Const.con->tag == Ico_U64) ++ return e->Iex.Const.con->Ico.U64 == v; ++ ++ if (e->Iex.Const.con->tag == Ico_U32) ++ return e->Iex.Const.con->Ico.U32 == v; ++ ++ if (e->Iex.Const.con->tag == Ico_U16) ++ return e->Iex.Const.con->Ico.U16 == v; ++ ++ if (e->Iex.Const.con->tag == Ico_U8) ++ return e->Iex.Const.con->Ico.U8 == v; ++ ++ return False; ++} ++ ++static Bool const_equal_to_float(IRExpr *e, double v) ++{ ++ if (e->tag != Iex_Const) ++ return False; ++ ++ if (e->Iex.Const.con->tag == Ico_F64) ++ return e->Iex.Const.con->Ico.F64 == v; ++ ++ if (e->Iex.Const.con->tag == Ico_F32) ++ return e->Iex.Const.con->Ico.F32 == v; ++ ++ return False; ++} ++ ++static IRExpr *foldF64ArithToF32(IRExpr const *e) ++{ ++ IRExpr *ret = deepCopyIRExpr(e); ++ IROp *op; ++ ++ switch (e->tag) { ++ case Iex_Qop: op = &ret->Iex.Qop.details->op; break; ++ case Iex_Triop: op = &ret->Iex.Triop.details->op; break; ++ case Iex_Binop: op = &ret->Iex.Binop.op; break; ++ case Iex_Unop: op = &ret->Iex.Unop.op; break; ++ default: return NULL; ++ } ++ ++ switch (*op) { ++ case Iop_AddF64: *op = Iop_AddF32; break; ++ case Iop_SubF64: *op = Iop_SubF32; break; ++ case Iop_MulF64: *op = Iop_MulF32; break; ++ case Iop_DivF64: *op = Iop_DivF32; break; ++ case Iop_MSubF64: *op = Iop_MSubF32; break; ++ case Iop_MAddF64: *op = Iop_MAddF32; break; ++ case Iop_SqrtF64: *op = Iop_SqrtF32; break; ++ case Iop_I64StoF64: *op = Iop_I64StoF32; break; ++ case Iop_I64UtoF64: *op = Iop_I64UtoF32; break; ++ default: return NULL; ++ } ++ ++ return ret; ++} ++ ++static HReg lookupIRTemp(ISelEnv * env, IRTemp tmp) ++{ ++ vassert(tmp < env->n_vregmap); ++ return env->vregmap[tmp]; ++} ++static void ++lookupIRTempPair(HReg * vrHI, HReg * vrLO, ISelEnv * env, IRTemp tmp) ++{ ++ vassert(tmp < env->n_vregmap); ++ vassert(! hregIsInvalid(env->vregmapHI[tmp])); ++ *vrLO = env->vregmap[tmp]; ++ *vrHI = env->vregmapHI[tmp]; ++} ++ ++static void set_SW64_rounding_default(ISelEnv * env) ++{ ++ HReg fpcr = newVRegF(env); ++ ++ /* restore fpcr from r14 */ ++ addInstr(env, SW64Instr_FpGpMove(SW64in_IFMOVD, fpcr, hregSW64_R14())); ++ addInstr(env, SW64Instr_WFPCR(fpcr)); ++} ++ ++static void set_SW64_rounding_mode(ISelEnv * env, IRExpr * mode) ++{ ++ /* ++ rounding mode | SW64| IR ++ ------------------------ ++ to nearest | 10 | 00 ++ to zero | 00 | 11 ++ to +infinity | 11 | 10 ++ to -infinity | 01 | 01 ++ */ ++ HReg irrm = iselIntExpr(env, mode); ++ HReg swrm = newVRegI(env); ++ HReg newfpcr = newVRegI(env); ++ HReg fpcr = newVRegF(env); ++ ++ /* save fpcr to r14 */ ++ addInstr(env, SW64Instr_RFPCR(fpcr)); ++ addInstr(env, SW64Instr_FpGpMove(SW64in_FIMOVD, hregSW64_R14(), fpcr)); ++ ++ /* swrm = 0b11 & ((0b110110) >> (irrm << 1)) */ ++ addInstr(env, SW64Instr_LoadImm(swrm, 0b110110)); ++ addInstr(env, SW64Instr_Shft(SW64in_SLL, irrm, irrm, SW64RI8_Imm(1))); ++ addInstr(env, SW64Instr_Shft(SW64in_SRL, swrm, swrm, SW64RI8_Reg(irrm))); ++ addInstr(env, SW64Instr_Logic(SW64in_AND, swrm, swrm, SW64RI8_Imm(0b11))); ++ /* newfpcr = swrm << 58 | swrm */ ++ addInstr(env, SW64Instr_Shft(SW64in_SLL, swrm, swrm, SW64RI8_Imm(58))); ++ addInstr(env, SW64Instr_LoadImm(newfpcr, 0x600fa00000000000)); ++ addInstr(env, SW64Instr_Logic(SW64in_OR, newfpcr, newfpcr, SW64RI8_Reg(swrm))); ++ /* set fpcr */ ++ addInstr(env, SW64Instr_FpGpMove(SW64in_IFMOVD, fpcr, newfpcr)); ++ addInstr(env, SW64Instr_WFPCR(fpcr)); ++} ++ ++ ++static HReg iselIntExpr(ISelEnv * env, IRExpr * e) ++{ ++ HReg r = iselIntExpr_HReg(env, e, INVALID_HREG); ++ /* sanity checks ... */ ++ vassert(hregClass(r) == HRcInt64); ++ vassert(hregIsVirtual(r) || sameHReg(r, SW64Zero())); ++ return r; ++} ++ ++/*! ++ * IR 表达式指令选择. ++ * 将 IR 表达式翻译为 SW64 指令序列,并将 IR 表达式的计算结果返回值写入指定的 HReg. ++ * 警告:不要修改返回的 HReg 中的值,具体而言有两点原因: ++ * 1: 若 IR 表达式求值结果为 0,此函数可能会返回 $r31,修改此寄存器没有意义 ++ * 2: 此函数可能会返回 IRTemp 中的 HReg,按照 Valgrind IR 的定义,IRTemp 是只读的,修改 ++ * IRTemp 将导致无法预料的行为 ++ * 注意:如果 IR 表达式的类型大小小于 64 位 (例如 Ity_I8 Ity_I16 Ity_I32),寄存器中的高位部分 ++ * 是不确定的,不要依赖这些的值。但对于 Ity_I1 有例外,Ity_I1 的寄存器的高位部分应为全零。 ++ * ++ * @param[in] env 上下文环境 ++ * @param[in] e IR 表达式 ++ * @param[out] d 指定的 HReg,若为 INVALID_HREG,则新分配一个 ++ * @return 保存了该 IR 表达式计算结果的 HReg ++ */ ++static HReg iselIntExpr_HReg(ISelEnv *env, IRExpr *e, HReg d) ++{ ++ IRType ty = typeOfIRExpr(env->type_env, e); ++ vassert(ty == Ity_I8 || ty == Ity_I16 || ty == Ity_I32 || ty == Ity_I1 ++ || ty == Ity_F32 || ty == Ity_I64 || ty == Ity_I128); ++ ++ switch(e->tag) { ++ case Iex_RdTmp: { ++ HReg src = lookupIRTemp(env, e->Iex.RdTmp.tmp); ++ if (hregIsInvalid(d)) { ++ return src; ++ } else { ++ addInstr(env, SW64Instr_Logic(SW64in_AND, d, src, SW64RI8_Reg(src))); ++ return d; ++ } ++ } ++ ++ case Iex_Const: { ++ HReg dst; ++ ULong val = 0; ++ IRConst* con = e->Iex.Const.con; ++ switch (con->tag) { ++ case Ico_U64: val = con->Ico.U64; break; ++ case Ico_U32: val = con->Ico.U32; break; ++ case Ico_U16: val = con->Ico.U16; break; ++ case Ico_U8: val = con->Ico.U8; break; ++ case Ico_U1: val = con->Ico.U1 ? 1:0; break; ++ default: ppIRExpr(e); vpanic("iselIntExpr_R.Iex_Const(sw64)"); ++ } ++ ++ if (val == 0 && hregIsInvalid(d)) { ++ return SW64Zero(); ++ } ++ ++ dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ addInstr(env, SW64Instr_LoadImm(dst, val)); ++ return dst; ++ } ++ ++ case Iex_Load: ++ case Iex_Get: { ++ if (ty != Ity_I8 && ty != Ity_I16 && ty != Ity_I32 && ty != Ity_I64) ++ goto irreducible; ++ ++ if(e->tag == Iex_Load && e->Iex.Load.end != Iend_LE) ++ goto irreducible; ++ ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ ++ SW64AModeRI *addr = (e->tag == Iex_Load) ++ ? iselWordExpr_AMode(env, e->Iex.Load.addr) ++ : SW64AModeRI_IR(e->Iex.Get.offset, ++ SW64GuestStateHreg()); ++ ++ SW64LoadOp op = (ty == Ity_I8) ? SW64in_LDBU : ++ (ty == Ity_I16) ? SW64in_LDHU : ++ (ty == Ity_I32) ? SW64in_LDW : ++ (ty == Ity_I64) ? SW64in_LDL : ++ (vassert(0), 0); ++ ++ addInstr(env, SW64Instr_Load(op, dst, addr)); ++ return dst; ++ } ++ ++ case Iex_Unop: { ++ IROp op = e->Iex.Unop.op; ++ IRExpr *arg = e->Iex.Unop.arg; ++ ++ switch(op) { ++ /* 1-bit widening */ ++ case Iop_1Uto8: ++ case Iop_1Uto32: ++ case Iop_1Uto64: { ++ /* higher bits of Ity_I1 are all zero, just return as-is */ ++ return iselIntExpr_HReg(env, arg, d); ++ } ++ case Iop_1Sto8: ++ case Iop_1Sto16: ++ case Iop_1Sto32: ++ case Iop_1Sto64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, arg); ++ /* Iop_1Sto64(x) = ((uint64_t)0 - x) */ ++ addInstr(env, SW64Instr_Arith(SW64in_SUBL, dst, hregSW64_R31(), SW64RI8_Reg(src))); ++ return dst; ++ } ++ ++ /* 8-bits widening */ ++ case Iop_8Uto16: ++ case Iop_8Uto32: ++ case Iop_8Uto64: { ++ if (arg->tag == Iex_Load && arg->Iex.Load.ty == Ity_I8) { ++ /* already zero-extend, no need to extend again */ ++ return iselIntExpr_HReg(env, arg, d); ++ } ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, arg); ++ addInstr(env, SW64Instr_Arith(SW64in_ZAPNOT, dst, src, SW64RI8_Imm(0x1))); ++ return dst; ++ } ++ case Iop_8Sto16: ++ case Iop_8Sto32: ++ case Iop_8Sto64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, arg); ++ addInstr(env, SW64Instr_Arith(SW64in_SEXTB, dst, hregSW64_R31(), SW64RI8_Reg(src))); ++ return dst; ++ } ++ ++ /* 16-bits widening */ ++ case Iop_16Uto32: ++ case Iop_16Uto64: { ++ if (arg->tag == Iex_Load && arg->Iex.Load.ty == Ity_I16) { ++ /* already zero-extend, no need to extend again */ ++ return iselIntExpr_HReg(env, arg, d); ++ } ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, arg); ++ addInstr(env, SW64Instr_Arith(SW64in_ZAPNOT, dst, src, SW64RI8_Imm(0x3))); ++ return dst; ++ } ++ case Iop_16Sto32: ++ case Iop_16Sto64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, arg); ++ addInstr(env, SW64Instr_Arith(SW64in_SEXTH, dst, hregSW64_R31(), SW64RI8_Reg(src))); ++ return dst; ++ } ++ ++ /* 32-bits widening */ ++ case Iop_32Uto64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, arg); ++ addInstr(env, SW64Instr_Arith(SW64in_ZAPNOT, dst, src, SW64RI8_Imm(0xf))); ++ return dst; ++ } ++ case Iop_32Sto64: { ++ if ((arg->tag == Iex_Binop && (arg->Iex.Binop.op == Iop_Add32 || ++ arg->Iex.Binop.op == Iop_Sub32 || ++ arg->Iex.Binop.op == Iop_Mul32)) || ++ (arg->tag == Iex_Load && arg->Iex.Load.ty == Ity_I32)) { ++ /* already signed-extend, no need to extend again */ ++ return iselIntExpr_HReg(env, arg, d); ++ } ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, arg); ++ addInstr(env, SW64Instr_Arith(SW64in_ADDW, dst, hregSW64_R31(), SW64RI8_Reg(src))); ++ return dst; ++ } ++ ++ /* narrowing */ ++ case Iop_64to8: ++ case Iop_64to16: ++ case Iop_64to32: { ++ /* higher bits of Ity_I32 Ity_I16 Ity_I8 may be undefined ++ so there is a No-op */ ++ return iselIntExpr_HReg(env, arg, d); ++ } ++ ++ case Iop_Not1: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, arg); ++ /* higher bits of Ity_I1 are all zero, so Iop_Not1(x) = x ^ 1 */ ++ addInstr(env, SW64Instr_Logic(SW64in_XOR, dst, src, SW64RI8_Imm(0x1))); ++ return dst; ++ } ++ ++ case Iop_Not8: ++ case Iop_Not16: ++ case Iop_Not32: ++ case Iop_Not64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, arg); ++ ++ addInstr(env, SW64Instr_Logic(SW64in_ORNOT, dst, hregSW64_R31(), SW64RI8_Reg(src))); ++ return dst; ++ } ++ ++ case Iop_ClzNat64: ++ case Iop_CtzNat64: ++ case Iop_PopCount64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, arg); ++ SW64UnOp unop = (op == Iop_ClzNat64) ? SW64in_CLZ : ++ (op == Iop_CtzNat64) ? SW64in_CTZ : ++ (op == Iop_PopCount64) ? SW64in_POP : ++ (vassert(0), 0); ++ ++ addInstr(env, SW64Instr_UnOperate(unop, dst, src)); ++ return dst; ++ } ++ ++ case Iop_Left32: ++ case Iop_Left64: { ++ /* Left64(src) = src | -src. Left32 can use the same ++ implementation since in that case we don't care what ++ the upper 32 bits become. */ ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, arg); ++ ++ addInstr(env, SW64Instr_Arith(SW64in_SUBL, dst, hregSW64_R31(), SW64RI8_Reg(src))); ++ addInstr(env, SW64Instr_Logic(SW64in_OR, dst, dst, SW64RI8_Reg(src))); ++ return dst; ++ } ++ ++ case Iop_CmpNEZ8: ++ case Iop_CmpNEZ16: ++ case Iop_CmpNEZ32: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, arg); ++ UInt mask = (op == Iop_CmpNEZ8) ? 0x1 : ++ (op == Iop_CmpNEZ16) ? 0x3 : ++ (op == Iop_CmpNEZ32) ? 0xf : ++ (vassert(0), 0); ++ /* clear higher bits, then compare */ ++ addInstr(env, SW64Instr_Arith(SW64in_ZAPNOT, dst, src, SW64RI8_Imm(mask))); ++ addInstr(env, SW64Instr_Cmp(SW64in_CMPULT, dst, hregSW64_R31(), SW64RI8_Reg(dst))); ++ return dst; ++ } ++ ++ case Iop_CmpNEZ64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, arg); ++ /* Iop_CmpNEZ64(x) = x > 0 */ ++ addInstr(env, SW64Instr_Cmp(SW64in_CMPULT, dst, hregSW64_R31(), SW64RI8_Reg(src))); ++ return dst; ++ } ++ ++ case Iop_CmpwNEZ32: ++ { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, e->Iex.Unop.arg); ++ /* Iop_CmpwNEZ32(x) = (0 - (x > 0)), need to clear higher bits */ ++ addInstr(env, SW64Instr_Arith(SW64in_ZAPNOT, dst, src, SW64RI8_Imm(0xf))); ++ addInstr(env, SW64Instr_Cmp(SW64in_CMPULT, dst, hregSW64_R31(), SW64RI8_Reg(dst))); ++ addInstr(env, SW64Instr_Arith(SW64in_SUBW, dst, hregSW64_R31(), SW64RI8_Reg(dst))); ++ return dst; ++ } ++ case Iop_CmpwNEZ64: ++ { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, e->Iex.Unop.arg); ++ /* Iop_CmpwNEZ64(x) = (0 - (x > 0)) */ ++ addInstr(env, SW64Instr_Cmp(SW64in_CMPULT, dst, hregSW64_R31(), SW64RI8_Reg(src))); ++ addInstr(env, SW64Instr_Arith(SW64in_SUBL, dst, hregSW64_R31(), SW64RI8_Reg(dst))); ++ return dst; ++ } ++ ++ case Iop_64HIto32: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg src = iselIntExpr(env, e->Iex.Unop.arg); ++ addInstr(env, SW64Instr_Shft(SW64in_SRA, dst, src, SW64RI8_Imm(32))); ++ return dst; ++ } ++ ++ case Iop_128HIto64: { ++ HReg rHi, rLo; ++ iselInt128Expr(&rHi, &rLo, env, arg); ++ ++ /* abandon rLo */ ++ if (hregIsInvalid(d)) { ++ return rHi; ++ } else { ++ addInstr(env, SW64Instr_Logic(SW64in_AND, d, rHi, SW64RI8_Reg(rHi))); ++ return d; ++ } ++ } ++ ++ case Iop_128to64: { ++ HReg rHi, rLo; ++ iselInt128Expr(&rHi, &rLo, env, arg); ++ ++ /* abandon rHi */ ++ if (hregIsInvalid(d)) { ++ return rLo; ++ } else { ++ addInstr(env, SW64Instr_Logic(SW64in_AND, d, rLo, SW64RI8_Reg(rLo))); ++ return d; ++ } ++ } ++ ++ case Iop_ReinterpF32asI32: ++ case Iop_ReinterpF64asI64: { ++ HReg dst = newVRegI(env); ++ HReg src = iselFltExpr(env, arg); ++ SW64FpGpMoveOp movop = (op == Iop_ReinterpF32asI32) ? SW64in_FIMOVS : ++ (op == Iop_ReinterpF64asI64) ? SW64in_FIMOVD : ++ (vassert(0), 0); ++ ++ addInstr(env, SW64Instr_FpGpMove(movop, dst, src)); ++ if (hregIsInvalid(d)) { ++ return dst; ++ } else { ++ addInstr(env, SW64Instr_Logic(SW64in_OR, d, dst, SW64RI8_Reg(dst))); ++ return d; ++ } ++ } ++ ++ default: ++ goto irreducible; ++ } /* switch(op) */ ++ ++ } /* case Iex_Unop: */ ++ ++ ++ case Iex_Binop: { ++ IROp op = e->Iex.Binop.op; ++ IRExpr *arg1 = e->Iex.Binop.arg1; ++ IRExpr *arg2 = e->Iex.Binop.arg2; ++ ++ switch (op) { ++ case Iop_Or1: ++ case Iop_Or8: ++ case Iop_Or16: ++ case Iop_Or32: ++ case Iop_Or64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg srcL = iselIntExpr(env, arg1); ++ SW64RI8 *srcR = iselIntExpr_RI8(env, arg2); ++ ++ addInstr(env, SW64Instr_Logic(SW64in_OR, dst, srcL, srcR)); ++ return dst; ++ } ++ ++ case Iop_And1: ++ case Iop_And8: ++ case Iop_And16: ++ case Iop_And32: ++ case Iop_And64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg srcL = iselIntExpr(env, arg1); ++ SW64RI8 *srcR; ++ ++ if (arg2->tag == Iex_Const) { ++ IRConst *con = arg2->Iex.Const.con; ++ if (con->tag == Ico_U64) { ++ /* optmize for ++ And64(x, 0xFFFF:I64) ++ And64(x, 0xFFFFFFFF:I64) ++ transform to ++ Zapnot(x, 0x3:I64) ++ Zapnot(x, 0xf:I64) ++ */ ++ if (con->Ico.U64 == 0xFFFF) { ++ addInstr(env, SW64Instr_Arith(SW64in_ZAPNOT, dst, srcL, SW64RI8_Imm(0x3))); ++ return dst; ++ } ++ if (con->Ico.U64 == 0xFFFFFFFF) { ++ addInstr(env, SW64Instr_Arith(SW64in_ZAPNOT, dst, srcL, SW64RI8_Imm(0xf))); ++ return dst; ++ } ++ /* optmize for ++ And64(x, 0xFFFFFFFFFFFFFF00) ++ transform to ++ AndNot64(x, 0xFF) ++ */ ++ if (con->Ico.U64 >= 0xFFFFFFFFFFFFFF00 && con->Ico.U64 <= 0xFFFFFFFFFFFFFFFF) { ++ addInstr(env, SW64Instr_Logic(SW64in_BIC, dst, srcL, SW64RI8_Imm(~con->Ico.U64))); ++ return dst; ++ } ++ } ++ } ++ ++ srcR = iselIntExpr_RI8(env, arg2); ++ addInstr(env, SW64Instr_Logic(SW64in_AND, dst, srcL, srcR)); ++ return dst; ++ } ++ ++ case Iop_Xor8: ++ case Iop_Xor16: ++ case Iop_Xor32: ++ case Iop_Xor64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg srcL = iselIntExpr(env, arg1); ++ SW64RI8 *srcR = iselIntExpr_RI8(env, arg2); ++ ++ addInstr(env, SW64Instr_Logic(SW64in_XOR, dst, srcL, srcR)); ++ return dst; ++ } ++ ++ case Iop_Add32: ++ case Iop_Add64: ++ case Iop_Sub32: ++ case Iop_Sub64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ SW64RI8 *srcR = iselIntExpr_RI8(env, arg2); ++ ++ if (arg1->tag == Iex_Binop && arg1->Iex.Binop.op == Iop_Shl64) { ++ if (const_equal_to(arg1->Iex.Binop.arg2, 3)) { ++ /* S8ADDW S8ADDL S8SUBW S8SUBL */ ++ HReg srcL = iselIntExpr(env, arg1->Iex.Binop.arg1); ++ SW64ArithOp ariop = (op == Iop_Add32) ? SW64in_S8ADDW : ++ (op == Iop_Add64) ? SW64in_S8ADDL : ++ (op == Iop_Sub32) ? SW64in_S8SUBW : ++ (op == Iop_Sub64) ? SW64in_S8SUBL : ++ (vassert(0), 0); ++ addInstr(env, SW64Instr_Arith(ariop, dst, srcL, srcR)); ++ return dst; ++ } ++ if (const_equal_to(arg1->Iex.Binop.arg2, 2)) { ++ /* S4ADDW S4ADDL S4SUBW S4SUBL */ ++ HReg srcL = iselIntExpr(env, arg1->Iex.Binop.arg1); ++ SW64ArithOp ariop = (op == Iop_Add32) ? SW64in_S4ADDW : ++ (op == Iop_Add64) ? SW64in_S4ADDL : ++ (op == Iop_Sub32) ? SW64in_S4SUBW : ++ (op == Iop_Sub64) ? SW64in_S4SUBL : ++ (vassert(0), 0); ++ addInstr(env, SW64Instr_Arith(ariop, dst, srcL, srcR)); ++ return dst; ++ } ++ } ++ ++ HReg srcL = iselIntExpr(env, arg1); ++ SW64ArithOp ariop = (op == Iop_Add32) ? SW64in_ADDW : ++ (op == Iop_Add64) ? SW64in_ADDL : ++ (op == Iop_Sub32) ? SW64in_SUBW : ++ (op == Iop_Sub64) ? SW64in_SUBL : ++ (vassert(0), 0); ++ addInstr(env, SW64Instr_Arith(ariop, dst, srcL, srcR)); ++ return dst; ++ } ++ ++ case Iop_Mul32: ++ case Iop_Mul64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg srcL = iselIntExpr(env, arg1); ++ SW64RI8 *srcR = iselIntExpr_RI8(env, arg2); ++ SW64ArithOp ariop = (op == Iop_Mul32) ? SW64in_MULW : ++ (op == Iop_Mul64) ? SW64in_MULL : ++ (vassert(0), 0); ++ addInstr(env, SW64Instr_Arith(ariop, dst, srcL, srcR)); ++ return dst; ++ } ++ ++ case Iop_DivS32: ++ case Iop_DivU32: ++ case Iop_DivS64: ++ case Iop_DivU64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg srcL = iselIntExpr(env, arg1); ++ HReg srcR = iselIntExpr(env, arg2); ++ SW64IntDivOp divop = (op == Iop_DivS32) ? SW64in_DIVW : ++ (op == Iop_DivU32) ? SW64in_UDIVW : ++ (op == Iop_DivS64) ? SW64in_DIVL : ++ (op == Iop_DivU64) ? SW64in_UDIVL : ++ (vassert(0), 0); ++ addInstr(env, SW64Instr_IntDiv(divop, dst, srcL, srcR)); ++ return dst; ++ } ++ ++ case Iop_DivModS32to32: ++ case Iop_DivModU32to32: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg srcL = iselIntExpr(env, arg1); ++ HReg srcR = iselIntExpr(env, arg2); ++ HReg div = newVRegI(env); ++ HReg mod = newVRegI(env); ++ if (e->Iex.Binop.op == Iop_DivModS32to32) { ++ addInstr(env, SW64Instr_IntDiv(SW64in_DIVW, div, srcL, srcR)); ++ addInstr(env, SW64Instr_IntDiv(SW64in_REMW, mod, srcL, srcR)); ++ addInstr(env, SW64Instr_Arith(SW64in_ZAPNOT, div, div, SW64RI8_Imm(0xf))); ++ } else { ++ addInstr(env, SW64Instr_IntDiv(SW64in_UDIVW, div, srcL, srcR)); ++ addInstr(env, SW64Instr_IntDiv(SW64in_UREMW, mod, srcL, srcR)); ++ } ++ addInstr(env, SW64Instr_Shft(SW64in_SLL, mod, mod, SW64RI8_Imm(32))); ++ addInstr(env, SW64Instr_Logic(SW64in_OR, dst, div, SW64RI8_Reg(mod))); ++ return dst; ++ } ++ ++ case Iop_Shl32: ++ case Iop_Shl64: ++ case Iop_Shr32: ++ case Iop_Shr64: ++ case Iop_Sar32: ++ case Iop_Sar64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg srcL = iselIntExpr(env, arg1); ++ SW64RI8 *srcR; ++ SW64ShftOp shop = (op == Iop_Shl32) ? SW64in_SLL : ++ (op == Iop_Shl64) ? SW64in_SLL : ++ (op == Iop_Shr32) ? SW64in_SRL : ++ (op == Iop_Shr64) ? SW64in_SRL : ++ (op == Iop_Sar32) ? SW64in_SRA : ++ (op == Iop_Sar64) ? SW64in_SRA : ++ (vassert(0), 0); ++ ++ /* fast path for ++ t0 = Shl64(t1, And8(64to8(t2), 0x3f)) ++ is equal to ++ sll %vR1, %vR2, %vR0 ++ */ ++ if (arg2->tag == Iex_Binop && arg2->Iex.Binop.op == Iop_And8 && ++ const_equal_to(arg2->Iex.Binop.arg2, 0x3F)) { ++ srcR = iselIntExpr_RI8(env, arg2->Iex.Binop.arg1); ++ } else { ++ srcR = iselIntExpr_RI8(env, arg2); ++ } ++ ++ /* becare, high 32 bit may contains garbage bits, signed-extend ++ or zero-extend dependent on arithmetic shift or logical shift */ ++ /* HReg returnd by iselIntExpr() is modify here, but this is safe, ++ because higher bits is undefined and free to modify. */ ++ if (op == Iop_Sar32) { ++ addInstr(env, SW64Instr_Arith(SW64in_ADDW, srcL, srcL, SW64RI8_Reg(SW64Zero()))); ++ } else if (op == Iop_Shr32) { ++ addInstr(env, SW64Instr_Arith(SW64in_ZAPNOT, srcL, srcL, SW64RI8_Imm(0xf))); ++ } ++ ++ addInstr(env, SW64Instr_Shft(shop, dst, srcL, srcR)); ++ return dst; ++ } ++ ++ case Iop_Max32U: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg srcL = iselIntExpr(env, arg1); ++ HReg srcR = iselIntExpr(env, arg2); ++ /* HReg returnd by iselIntExpr() is modify here, but this is safe, ++ because higher bits is undefined and free to modify. */ ++ addInstr(env, SW64Instr_Arith(SW64in_ZAPNOT, srcL, srcL, SW64RI8_Imm(0xf))); ++ addInstr(env, SW64Instr_Arith(SW64in_ZAPNOT, srcR, srcR, SW64RI8_Imm(0xf))); ++ addInstr(env, SW64Instr_Cmp(SW64in_CMPULE, dst, srcL, SW64RI8_Reg(srcR))); ++ addInstr(env, SW64Instr_CondSel(SW64in_SELNE, dst, srcR, srcL, dst)); ++ return dst; ++ } ++ ++ /* 32-bit compare */ ++ case Iop_CmpLT32S: ++ case Iop_CmpLT32U: ++ case Iop_CmpLE32S: ++ case Iop_CmpLE32U:{ ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg srcL = iselIntExpr(env, arg1); ++ HReg srcR = iselIntExpr(env, arg2); ++ SW64CmpOp cmp = (op == Iop_CmpLT64S) ? SW64in_CMPLT : ++ (op == Iop_CmpLT64U) ? SW64in_CMPULT : ++ (op == Iop_CmpLE64S) ? SW64in_CMPLE : ++ (op == Iop_CmpLE64U) ? SW64in_CMPULE : ++ (vassert(0), 0); ++ /* HReg returnd by iselIntExpr() is modify here, but this is safe, ++ because higher bits is undefined and free to modify. */ ++ addInstr(env, SW64Instr_Arith(SW64in_ZAPNOT, srcL, srcL, SW64RI8_Imm(0xf))); ++ addInstr(env, SW64Instr_Arith(SW64in_ZAPNOT, srcR, srcR, SW64RI8_Imm(0xf))); ++ addInstr(env, SW64Instr_Cmp(cmp, dst, srcL, SW64RI8_Reg(srcR))); ++ return dst; ++ } ++ case Iop_CmpEQ32: ++ case Iop_CasCmpEQ32: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg srcL = iselIntExpr(env, arg1); ++ SW64RI8 *srcR = iselIntExpr_RI8(env, arg2); ++ /* signed-extend to 64-bits, then compare */ ++ addInstr(env, SW64Instr_Arith(SW64in_SUBW, dst, srcL, srcR)); ++ addInstr(env, SW64Instr_Cmp(SW64in_CMPEQ, dst, hregSW64_R31(), SW64RI8_Reg(dst))); ++ return dst; ++ } ++ case Iop_CmpNE32: ++ case Iop_CasCmpNE32: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg srcL = iselIntExpr(env, arg1); ++ SW64RI8 *srcR = iselIntExpr_RI8(env, arg2); ++ /* signed-extend to 64-bits, then compare */ ++ addInstr(env, SW64Instr_Arith(SW64in_SUBW, dst, srcL, srcR)); ++ addInstr(env, SW64Instr_Cmp(SW64in_CMPULT, dst, hregSW64_R31(), SW64RI8_Reg(dst))); ++ return dst; ++ } ++ ++ /* 64-bit compare */ ++ case Iop_CmpEQ64: ++ case Iop_CmpLT64S: ++ case Iop_CmpLT64U: ++ case Iop_CmpLE64S: ++ case Iop_CmpLE64U: ++ case Iop_CasCmpEQ64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg srcL = iselIntExpr(env, arg1); ++ SW64RI8 *srcR = iselIntExpr_RI8(env, arg2); ++ SW64CmpOp cmp = (op == Iop_CmpEQ64) ? SW64in_CMPEQ : ++ (op == Iop_CmpLT64S) ? SW64in_CMPLT : ++ (op == Iop_CmpLT64U) ? SW64in_CMPULT : ++ (op == Iop_CmpLE64S) ? SW64in_CMPLE : ++ (op == Iop_CmpLE64U) ? SW64in_CMPULE : ++ (op == Iop_CasCmpEQ64) ? SW64in_CMPEQ : ++ (vassert(0), 0); ++ ++ addInstr(env, SW64Instr_Cmp(cmp, dst, srcL, srcR)); ++ return dst; ++ } ++ ++ case Iop_CmpNE64: ++ case Iop_CasCmpNE64: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg srcL = iselIntExpr(env, arg1); ++ SW64RI8 *srcR = iselIntExpr_RI8(env, arg2); ++ /* Iop_CmpNE64(x, y) = (x == y) ^ 1 */ ++ addInstr(env, SW64Instr_Cmp(SW64in_CMPEQ, dst, srcL, srcR)); ++ addInstr(env, SW64Instr_Logic(SW64in_XOR, dst, dst, SW64RI8_Imm(1))); ++ return dst; ++ } ++ ++ case Iop_CmpFEQ64: ++ case Iop_CmpFNE64: ++ case Iop_CmpFLT64: ++ case Iop_CmpFLE64: ++ case Iop_CmpFGT64: ++ case Iop_CmpFGE64: ++ case Iop_CmpFUN64: { ++ HReg srcL, srcR; ++ SW64FpCmpOp fcmp; ++ Bool swap, rev; ++ ++ switch (op) { ++ case Iop_CmpFEQ64: fcmp = SW64in_CMPFEQ; swap = 0; rev = 0; break; ++ case Iop_CmpFNE64: fcmp = SW64in_CMPFEQ; swap = 0; rev = 1; break; ++ case Iop_CmpFLT64: fcmp = SW64in_CMPFLT; swap = 0; rev = 0; break; ++ case Iop_CmpFLE64: fcmp = SW64in_CMPFLE; swap = 0; rev = 0; break; ++ case Iop_CmpFGT64: fcmp = SW64in_CMPFLT; swap = 1; rev = 0; break; ++ case Iop_CmpFGE64: fcmp = SW64in_CMPFLE; swap = 1; rev = 0; break; ++ case Iop_CmpFUN64: fcmp = SW64in_CMPFUN; swap = 0; rev = 0; break; ++ default: vassert(0); ++ } ++ ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg tmp = newVRegF(env); ++ ++ if (swap == 0) { ++ srcL = iselFltExpr(env, e->Iex.Binop.arg1); ++ srcR = iselFltExpr(env, e->Iex.Binop.arg2); ++ } else { ++ srcL = iselFltExpr(env, e->Iex.Binop.arg2); ++ srcR = iselFltExpr(env, e->Iex.Binop.arg1); ++ } ++ ++ /* compare, and move the result in floatint point register to integer register */ ++ addInstr(env, SW64Instr_FpCmp(fcmp, tmp, srcL, srcR)); ++ addInstr(env, SW64Instr_FpGpMove(SW64in_FIMOVD, dst, tmp)); ++ /* { 0.0F, 2.0F } to { 0x0, 0x1 }*/ ++ if (rev) ++ addInstr(env, SW64Instr_Cmp(SW64in_CMPEQ, dst, hregSW64_R31(), SW64RI8_Reg(dst))); ++ else ++ addInstr(env, SW64Instr_Cmp(SW64in_CMPULT, dst, hregSW64_R31(), SW64RI8_Reg(dst))); ++ ++ return dst; ++ } ++ ++ case Iop_F64toI64S: ++ { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg tmpF = newVRegF(env); ++ HReg valF = iselFltExpr(env, e->Iex.Binop.arg2); ++ ++ if (const_equal_to(e->Iex.Binop.arg1, Irrm_NEAREST)) { ++ addInstr(env, SW64Instr_FpCvt(SW64in_FCVTDL_G, tmpF, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_PosINF)) { ++ addInstr(env, SW64Instr_FpCvt(SW64in_FCVTDL_P, tmpF, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_ZERO)) { ++ addInstr(env, SW64Instr_FpCvt(SW64in_FCVTDL_Z, tmpF, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_NegINF)) { ++ addInstr(env, SW64Instr_FpCvt(SW64in_FCVTDL_N, tmpF, valF)); ++ } else { ++ /* IR rounding mode is dynamic */ ++ set_SW64_rounding_mode(env, e->Iex.Binop.arg1); ++ addInstr(env, SW64Instr_FpCvt(SW64in_FCVTDL, tmpF, valF)); ++ set_SW64_rounding_default(env); ++ } ++ ++ addInstr(env, SW64Instr_FpGpMove(SW64in_FIMOVD, dst, tmpF)); ++ return dst; ++ } ++ ++ case Iop_F64toI64U: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg valF = iselFltExpr(env, e->Iex.Binop.arg2); ++ if (const_equal_to(e->Iex.Binop.arg1, Irrm_NEAREST)) { ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDLU_G, dst, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_PosINF)) { ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDLU_P, dst, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_ZERO)) { ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDLU_Z, dst, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_NegINF)) { ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDLU_N, dst, valF)); ++ } else { ++ /* IR rounding mode is dynamic */ ++ set_SW64_rounding_mode(env, e->Iex.Binop.arg1); ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDLU, dst, valF)); ++ set_SW64_rounding_default(env); ++ } ++ return dst; ++ } ++ ++ case Iop_F64toI32U: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg valF = iselFltExpr(env, e->Iex.Binop.arg2); ++ if (const_equal_to(e->Iex.Binop.arg1, Irrm_NEAREST)) { ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDWU_G, dst, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_PosINF)) { ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDWU_P, dst, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_ZERO)) { ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDWU_Z, dst, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_NegINF)) { ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDWU_N, dst, valF)); ++ } else { ++ /* IR rounding mode is dynamic */ ++ set_SW64_rounding_mode(env, e->Iex.Binop.arg1); ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDWU, dst, valF)); ++ set_SW64_rounding_default(env); ++ } ++ return dst; ++ } ++ ++ case Iop_F64toI32S: { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg valF = iselFltExpr(env, e->Iex.Binop.arg2); ++ if (const_equal_to(e->Iex.Binop.arg1, Irrm_NEAREST)) { ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDW_G, dst, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_PosINF)) { ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDW_P, dst, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_ZERO)) { ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDW_Z, dst, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_NegINF)) { ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDW_N, dst, valF)); ++ } else { ++ /* IR rounding mode is dynamic */ ++ set_SW64_rounding_mode(env, e->Iex.Binop.arg1); ++ addInstr(env, SW64Instr_FpGpMove(SW64in_CMOVDW, dst, valF)); ++ set_SW64_rounding_default(env); ++ } ++ return dst; ++ } ++ ++ case Iop_32HLto64: ++ { ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg tHi = iselIntExpr(env, e->Iex.Binop.arg1); ++ HReg tLo = iselIntExpr(env, e->Iex.Binop.arg2); ++ HReg tLo_1 = newVRegI(env); ++ HReg tHi_1 = newVRegI(env); ++ HReg mask = newVRegI(env); ++ addInstr(env, SW64Instr_Shft(SW64in_SLL, tHi_1, tHi, SW64RI8_Imm(32))); ++ addInstr(env, SW64Instr_LoadImm(mask, 0xffffffff)); ++ addInstr(env, SW64Instr_Logic(SW64in_AND, tLo_1, tLo, SW64RI8_Reg(mask))); ++ addInstr(env, SW64Instr_Logic(SW64in_OR, dst, tHi_1, SW64RI8_Reg(tLo_1))); ++ return dst; ++ } ++ ++ default: ++ goto irreducible; ++ } /* switch(op) */ ++ ++ } /* case Iex_Binop */ ++ ++ case Iex_CCall: { ++ vassert(ty == e->Iex.CCall.retty); ++ ++ /* be very restrictive for now. Only 64-bit ints allowed for ++ args, and 64 bits for return type. Don't forget to change ++ the RetLoc if more types are allowed in future. */ ++ if (e->Iex.CCall.retty != Ity_I64) ++ goto irreducible; ++ ++ /* Marshal args, do the call, clear stack. */ ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ UInt addToSp = 0; ++ RetLoc rloc = mk_RetLoc_INVALID(); ++ Bool ok = doHelperCall( &addToSp, &rloc, env, NULL/*guard*/, ++ e->Iex.CCall.cee, e->Iex.CCall.retty, ++ e->Iex.CCall.args ); ++ ++ if (ok) { ++ vassert(is_sane_RetLoc(rloc)); ++ vassert(rloc.pri == RLPri_Int); ++ vassert(addToSp == 0); ++ addInstr(env, SW64Instr_Logic(SW64in_OR, dst, hregSW64_R0(), SW64RI8_Imm(0x0) )); ++ } ++ ++ return dst; ++ } /* case Iex_CCall */ ++ ++ case Iex_ITE: { ++ vassert(ty == Ity_I64 || ty == Ity_I32); ++ vassert(typeOfIRExpr(env->type_env, e->Iex.ITE.cond) == Ity_I1); ++ ++ HReg dst = hregIsInvalid(d) ? newVRegI(env) : d; ++ HReg iftrue = iselIntExpr(env, e->Iex.ITE.iftrue); ++ HReg iffalse = iselIntExpr(env, e->Iex.ITE.iffalse); ++ ++ SW64Cond *cond = iselIntExpr_Cond_wrk(env, e->Iex.ITE.cond); ++ ++ SW64CondSelOp op = (cond->code == SW64cc_EQ) ? SW64in_SELEQ : ++ (cond->code == SW64cc_GE) ? SW64in_SELGE : ++ (cond->code == SW64cc_GT) ? SW64in_SELGT : ++ (cond->code == SW64cc_LE) ? SW64in_SELLE : ++ (cond->code == SW64cc_LT) ? SW64in_SELLT : ++ (cond->code == SW64cc_NE) ? SW64in_SELNE : ++ (vassert(0), 0); ++ ++ addInstr(env, SW64Instr_CondSel(op, dst, iftrue, iffalse, cond->reg)); ++ return dst; ++ } /* case Iex_ITE */ ++ ++ default: ++ goto irreducible; ++ } /* switch (e->tag) */ ++ ++/* We get here if no pattern matched. */ ++irreducible: ++ vex_printf("--------------->\n"); ++ ppIRExpr(e); ++ vpanic("iselIntExpr(sw64): cannot isel word expr"); ++} ++ ++ ++ ++/* DO NOT CALL THIS DIRECTLY ! */ ++static void iselInt128Expr_wrk ( HReg* rHi, HReg* rLo, ++ ISelEnv* env, IRExpr* e ) ++{ ++ vassert(e); ++ vassert(typeOfIRExpr(env->type_env,e) == Ity_I128); ++ ++ /* --------- TEMP --------- */ ++ if (e->tag == Iex_RdTmp) { ++ lookupIRTempPair(rHi, rLo, env, e->Iex.RdTmp.tmp); ++ return; ++ } ++ ++ // /* --------- CONST --------- */ ++ // if (e->tag == Iex_Const) { ++ // IRConst* c = e->Iex.Const.con; ++ // vassert(c->tag == Ico_U128); ++ // if (c->Ico.U128 == 0) { ++ // // The only case we need to handle (so far) ++ // HReg zero = newVRegI(env); ++ // addInstr(env, ARM64Instr_Imm64(zero, 0)); ++ // *rHi = *rLo = zero; ++ // return; ++ // } ++ // } ++ ++ /* --------- BINARY ops --------- */ ++ if (e->tag == Iex_Binop) { ++ switch (e->Iex.Binop.op) { ++ /* 64 x 64 -> 128 multiply */ ++ case Iop_MullU64: ++ { ++ HReg argL = iselIntExpr(env, e->Iex.Binop.arg1); ++ SW64RI8* argR = iselIntExpr_RI8(env, e->Iex.Binop.arg2); ++ HReg dstLo = newVRegI(env); ++ HReg dstHi = newVRegI(env); ++ addInstr(env, SW64Instr_Arith(SW64in_MULL, dstLo, argL, argR)); ++ addInstr(env, SW64Instr_Arith(SW64in_UMULH, dstHi, argL, argR)); ++ *rHi = dstHi; ++ *rLo = dstLo; ++ return; ++ } ++ ++ /* I64,I64 -> I128, of which LO is div and HI is mod */ ++ case Iop_DivModS64to64: ++ case Iop_DivModU64to64: { ++ HReg argL = iselIntExpr(env, e->Iex.Binop.arg1); ++ HReg argR = iselIntExpr(env, e->Iex.Binop.arg2); ++ HReg dstLo = newVRegI(env); ++ HReg dstHi = newVRegI(env); ++ if (e->Iex.Binop.op == Iop_DivModS64to64) { ++ addInstr(env, SW64Instr_IntDiv(SW64in_DIVL, dstLo, argL, argR)); ++ addInstr(env, SW64Instr_IntDiv(SW64in_REML, dstHi, argL, argR)); ++ } else { ++ addInstr(env, SW64Instr_IntDiv(SW64in_UDIVL, dstLo, argL, argR)); ++ addInstr(env, SW64Instr_IntDiv(SW64in_UREML, dstHi, argL, argR)); ++ } ++ *rHi = dstHi; ++ *rLo = dstLo; ++ return; ++ } ++ ++ /* 64HLto128(e1,e2) */ ++ case Iop_64HLto128: ++ *rHi = iselIntExpr(env, e->Iex.Binop.arg1); ++ *rLo = iselIntExpr(env, e->Iex.Binop.arg2); ++ return; ++ default: ++ break; ++ } ++ } ++ ++ ppIRExpr(e); ++ vpanic("iselInt128Expr(sw64)"); ++} ++ ++/* Compute a 128-bit value into a register pair, which is returned as ++ the first two parameters. As with iselIntExpr_R, these may be ++ either real or virtual regs; in any case they must not be changed ++ by subsequent code emitted by the caller. */ ++ ++static void iselInt128Expr ( HReg* rHi, HReg* rLo, ++ ISelEnv* env, IRExpr* e ) ++{ ++ iselInt128Expr_wrk(rHi, rLo, env, e); ++# if 0 ++ vex_printf("\n"); ppIRExpr(e); vex_printf("\n"); ++# endif ++ vassert(hregClass(*rHi) == HRcInt64); ++ vassert(hregIsVirtual(*rHi) || sameHReg(*rHi, SW64Zero())); ++ vassert(hregClass(*rLo) == HRcInt64); ++ vassert(hregIsVirtual(*rLo) || sameHReg(*rLo, SW64Zero())); ++} ++ ++ ++static HReg iselFltExpr(ISelEnv * env, IRExpr * e) ++{ ++ HReg r = iselFltExpr_HReg(env, e, INVALID_HREG); ++ vassert(hregClass(r) == HRcFlt64); ++ vassert(hregIsVirtual(r) || sameHReg(r, hregSW64_F31())); ++ return r; ++} ++ ++static HReg iselFltExpr_HReg(ISelEnv *env, IRExpr *e, HReg d) ++{ ++ IRType ty = typeOfIRExpr(env->type_env, e); ++ vassert(ty == Ity_F32 || ty == Ity_F64); ++ ++ if (!hregIsInvalid(d)) ++ vassert(hregClass(d) == HRcFlt64); ++ ++ switch (e->tag) { ++ case Iex_RdTmp: { ++ HReg src = lookupIRTemp(env, e->Iex.RdTmp.tmp); ++ if (hregIsInvalid(d)) { ++ return src; ++ } else { ++ addInstr(env, SW64Instr_FpCpy(SW64in_FCPYS, d, src, src)); ++ return d; ++ } ++ } ++ ++ case Iex_Const: { ++ /* loading 0:F64 */ ++ if (const_equal_to_float(e, 0) && hregIsInvalid(d)) { ++ return hregSW64_F31(); ++ } ++ ++ IRConst* con = e->Iex.Const.con; ++ SW64FpGpMoveOp movop; ++ union { Float f32; Double f64; ULong u64; } u; ++ vassert(sizeof(u) == 8); ++ if (con->tag == Ico_F64) { ++ u.f64 = con->Ico.F64; ++ movop = SW64in_IFMOVD; ++ } else if (con->tag == Ico_F32) { ++ u.f32 = con->Ico.F32; ++ movop = SW64in_IFMOVS; ++ } else { ++ vassert(0); ++ } ++ ++ HReg tmp = newVRegI(env); ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ addInstr(env, SW64Instr_LoadImm(tmp, u.u64)); ++ addInstr(env, SW64Instr_FpGpMove(movop, dst, tmp)); ++ return dst; ++ } ++ ++ case Iex_Load: { ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ SW64AModeRI *addr = iselWordExpr_AMode(env, e->Iex.Load.addr); ++ if (e->Iex.Load.ty == Ity_F64) ++ addInstr(env, SW64Instr_FpLoad(SW64in_FLDD, dst, addr)); ++ else ++ addInstr(env, SW64Instr_FpLoad(SW64in_FLDS, dst, addr)); ++ return dst; ++ } ++ ++ case Iex_Get: { ++ if (ty == Ity_F64) { ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ SW64AModeRI *addr = SW64AModeRI_IR(e->Iex.Get.offset, SW64GuestStateHreg()); ++ addInstr(env, SW64Instr_FpLoad(SW64in_FLDD, dst, addr)); ++ return dst; ++ } ++ vassert(0); ++ } ++ ++ case Iex_Unop: { ++ IROp iop = e->Iex.Unop.op; ++ ++ switch (iop) { ++ case Iop_F32toF64: { ++ IRExpr *arg = e->Iex.Unop.arg; ++ if (arg->tag == Iex_Unop && arg->Iex.Unop.op == Iop_TruncF64asF32) { ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ HReg src = iselFltExpr_HReg(env, e->Iex.Unop.arg, INVALID_HREG); ++ addInstr(env, SW64Instr_FpCvt(SW64in_FCVTSD, dst, src)); ++ return dst; ++ } else { ++ return iselFltExpr_HReg(env, e->Iex.Unop.arg, d); ++ } ++ } ++ ++ case Iop_I32StoF64: ++ case Iop_I32UtoF64: { ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ HReg src = iselIntExpr(env, e->Iex.Unop.arg); ++ SW64FpGpMoveOp fpop = (iop == Iop_I32StoF64) ? SW64in_CMOVWD : ++ (iop == Iop_I32UtoF64) ? SW64in_CMOVUWD : ++ (vassert(0), 0); ++ addInstr(env, SW64Instr_FpGpMove(fpop, dst, src)); ++ return dst; ++ } ++ ++ case Iop_ReinterpI32asF32: ++ case Iop_ReinterpI64asF64: { ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ SW64FpGpMoveOp swop = (iop == Iop_ReinterpI32asF32) ? SW64in_IFMOVS : ++ (iop == Iop_ReinterpI64asF64) ? SW64in_IFMOVD : ++ (vassert(0), 0); ++ HReg src = iselIntExpr(env, e->Iex.Unop.arg); ++ addInstr(env, SW64Instr_FpGpMove(swop, dst, src)); ++ return dst; ++ } ++ ++ case Iop_NegF32: ++ case Iop_NegF64: { ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ HReg src = iselFltExpr_HReg(env, e->Iex.Unop.arg, INVALID_HREG); ++ addInstr(env, SW64Instr_FpCpy(SW64in_FCPYSN, dst, src, src)); ++ return dst; ++ } ++ ++ case Iop_AbsF32: ++ case Iop_AbsF64: { ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ HReg src = iselFltExpr_HReg(env, e->Iex.Unop.arg, INVALID_HREG); ++ addInstr(env, SW64Instr_FpCpy(SW64in_FCPYS, dst, hregSW64_F31(), src)); ++ return dst; ++ } ++ ++ case Iop_TruncF64asF32: { ++ HReg src = iselFltExpr_HReg(env, e->Iex.Unop.arg, d); ++ return src; ++ } ++ ++ default: ++ vassert(0); ++ } ++ } ++ ++ case Iex_Binop: { ++ IROp iop = e->Iex.Binop.op; ++ ++ switch (iop) { ++ case Iop_SqrtF32: ++ case Iop_SqrtF64: { ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ SW64FpUnaryOp swop = (iop == Iop_SqrtF32) ? SW64in_FSQRTS : ++ (iop == Iop_SqrtF64) ? SW64in_FSQRTD : ++ (vassert(0), 0); ++ HReg src = iselFltExpr_HReg(env, e->Iex.Binop.arg2, INVALID_HREG); ++ addInstr(env, SW64Instr_FpUnary(swop, dst, src)); ++ return dst; ++ } ++ ++ case Iop_F64toF32: { ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ HReg src = iselFltExpr_HReg(env, e->Iex.Binop.arg2, INVALID_HREG); ++ addInstr(env, SW64Instr_FpCvt(SW64in_FCVTDS, dst, src)); ++ return dst; ++ } ++ ++ case Iop_I32StoF32: ++ case Iop_I32UtoF32: ++ case Iop_I64UtoF32: ++ case Iop_I64UtoF64: { ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ HReg src = iselIntExpr(env, e->Iex.Binop.arg2); ++ SW64FpGpMoveOp fpop = (iop == Iop_I32StoF32) ? SW64in_CMOVWS : ++ (iop == Iop_I32UtoF32) ? SW64in_CMOVUWS : ++ (iop == Iop_I64UtoF32) ? SW64in_CMOVULS : ++ (iop == Iop_I64UtoF64) ? SW64in_CMOVULD : ++ (vassert(0), 0); ++ addInstr(env, SW64Instr_FpGpMove(fpop, dst, src)); ++ return dst; ++ } ++ ++ case Iop_I64StoF32: ++ case Iop_I64StoF64: { ++ HReg src; ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ ++ if (e->Iex.Binop.arg2->tag == Iex_Unop && ++ e->Iex.Binop.arg2->Iex.Unop.op == Iop_ReinterpF64asI64) { ++ /* optimize for x = Iop_I64StoF64(Iop_ReinterpF64asI64(x)) */ ++ SW64FpCvtOp fpop = (iop == Iop_I64StoF32) ? SW64in_FCVTLS : ++ (iop == Iop_I64StoF64) ? SW64in_FCVTLD : ++ (vassert(0), 0); ++ src = iselFltExpr(env, e->Iex.Binop.arg2->Iex.Unop.arg); ++ addInstr(env, SW64Instr_FpCvt(fpop, dst, src)); ++ return dst; ++ } ++ ++ src = iselIntExpr(env, e->Iex.Binop.arg2); ++ ++ if (VEX_SW64_FAMILY(env->hwcaps) == VEX_SW64_CORE4) { ++ SW64FpGpMoveOp fpop = (iop == Iop_I64StoF32) ? SW64in_CMOVLS : ++ (iop == Iop_I64StoF64) ? SW64in_CMOVLD : ++ (vassert(0), 0); ++ addInstr(env, SW64Instr_FpGpMove(fpop, dst, src)); ++ } else { ++ HReg tmp = newVRegF(env); ++ SW64FpCvtOp fpop = (iop == Iop_I64StoF32) ? SW64in_FCVTLS : ++ (iop == Iop_I64StoF64) ? SW64in_FCVTLD : ++ (vassert(0), 0); ++ addInstr(env, SW64Instr_FpGpMove(SW64in_IFMOVD, tmp, src)); ++ addInstr(env, SW64Instr_FpCvt(fpop, dst, tmp)); ++ } ++ return dst; ++ } ++ ++ case Iop_RoundF64toF32: { ++ IRExpr *fold = foldF64ArithToF32(e->Iex.Binop.arg2); ++ if (fold) { ++ HReg src = iselFltExpr_HReg(env, fold, d); ++ return src; ++ } else { ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ HReg src = iselFltExpr(env, e->Iex.Binop.arg2); ++ addInstr(env, SW64Instr_FpCvt(SW64in_FCVTDS, dst, src)); ++ return dst; ++ } ++ } ++ ++ case Iop_RoundF64toInt: { ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ HReg valF = iselFltExpr(env, e->Iex.Binop.arg2); ++ if (const_equal_to(e->Iex.Binop.arg1, Irrm_NEAREST)) { ++ addInstr(env, SW64Instr_FpUnary(SW64in_FRID_G, dst, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_PosINF)) { ++ addInstr(env, SW64Instr_FpUnary(SW64in_FRID_P, dst, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_ZERO)) { ++ addInstr(env, SW64Instr_FpUnary(SW64in_FRID_Z, dst, valF)); ++ } else if (const_equal_to(e->Iex.Binop.arg1, Irrm_NegINF)) { ++ addInstr(env, SW64Instr_FpUnary(SW64in_FRID_N, dst, valF)); ++ } else { ++ /* IR rounding mode is dynamic */ ++ set_SW64_rounding_mode(env, e->Iex.Binop.arg1); ++ addInstr(env, SW64Instr_FpUnary(SW64in_FRID, dst, valF)); ++ set_SW64_rounding_default(env); ++ } ++ return dst; ++ } ++ ++ default: ++ vassert(0); ++ } ++ } ++ ++ case Iex_Triop: { ++ IROp iop = e->Iex.Triop.details->op; ++ SW64FpArithOp swop = (iop == Iop_AddF32) ? SW64in_FADDS : ++ (iop == Iop_AddF64) ? SW64in_FADDD : ++ (iop == Iop_SubF32) ? SW64in_FSUBS : ++ (iop == Iop_SubF64) ? SW64in_FSUBD : ++ (iop == Iop_MulF32) ? SW64in_FMULS : ++ (iop == Iop_MulF64) ? SW64in_FMULD : ++ (iop == Iop_DivF32) ? SW64in_FDIVS : ++ (iop == Iop_DivF64) ? SW64in_FDIVD : ++ (vassert(0), 0); ++ ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ HReg argR = iselFltExpr_HReg(env, e->Iex.Triop.details->arg3, INVALID_HREG); ++ if (const_equal_to(e->Iex.Triop.details->arg1, Irrm_ZERO) && ++ const_equal_to_float(e->Iex.Triop.details->arg2, 1.0) && ++ VEX_SW64_FAMILY(env->hwcaps) == VEX_SW64_CORE4) { ++ if (iop == Iop_DivF64) { ++ addInstr(env, SW64Instr_FpUnary(SW64in_FRECD, dst, argR)); ++ return dst; ++ } else if (iop == Iop_DivF32) { ++ addInstr(env, SW64Instr_FpUnary(SW64in_FRECS, dst, argR)); ++ return dst; ++ } ++ /* - else - fallthrough */ ++ } ++ ++ HReg argL = iselFltExpr_HReg(env, e->Iex.Triop.details->arg2, INVALID_HREG); ++ addInstr(env, SW64Instr_FpArith(swop, dst, argL, argR)); ++ return dst; ++ } ++ ++ case Iex_Qop: { ++ IROp iop = e->Iex.Qop.details->op; ++ SW64FpQuaryOp swop = (iop == Iop_MAddF32) ? SW64in_MADDS : ++ (iop == Iop_MAddF64) ? SW64in_MADDD : ++ (iop == Iop_MSubF32) ? SW64in_MSUBS : ++ (iop == Iop_MSubF64) ? SW64in_MSUBD : ++ (vassert(0), 0); ++ ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ HReg src1 = iselFltExpr_HReg(env, e->Iex.Qop.details->arg2, INVALID_HREG); ++ HReg src2 = iselFltExpr_HReg(env, e->Iex.Qop.details->arg3, INVALID_HREG); ++ HReg src3 = iselFltExpr_HReg(env, e->Iex.Qop.details->arg4, INVALID_HREG); ++ ++ addInstr(env, SW64Instr_FpQuary(swop, dst, src1, src2, src3)); ++ return dst; ++ } ++ ++ case Iex_ITE: { ++ vassert(typeOfIRExpr(env->type_env, e->Iex.ITE.cond) == Ity_I1); ++ HReg dst = hregIsInvalid(d) ? newVRegF(env) : d; ++ ++ /* Fast path for: ITE(CmpFxx64(x), 2, 0) ++ emit FCMPxx only, no need to emit FSELxx */ ++ if (const_equal_to_float(e->Iex.ITE.iftrue, 2) && ++ const_equal_to_float(e->Iex.ITE.iffalse, 0) && ++ e->Iex.ITE.cond->tag == Iex_Binop) { ++ IROp iop = e->Iex.ITE.cond->Iex.Binop.op; ++ SW64FpCmpOp swop = (iop == Iop_CmpFEQ64) ? SW64in_CMPFEQ : ++ (iop == Iop_CmpFLE64) ? SW64in_CMPFLE : ++ (iop == Iop_CmpFLT64) ? SW64in_CMPFLT : ++ (iop == Iop_CmpFUN64) ? SW64in_CMPFUN : ++ -1; ++ if (swop != -1) { ++ HReg argL = iselFltExpr(env, e->Iex.ITE.cond->Iex.Binop.arg1); ++ HReg argR = iselFltExpr(env, e->Iex.ITE.cond->Iex.Binop.arg2); ++ addInstr(env, SW64Instr_FpCmp(swop, dst, argL, argR)); ++ return dst; ++ } ++ } ++ ++ SW64Cond *cond = iselIntExpr_Cond(env, e->Iex.ITE.cond); ++ ++ HReg iftrue = iselFltExpr(env, e->Iex.ITE.iftrue); ++ HReg iffalse = iselFltExpr(env, e->Iex.ITE.iffalse); ++ ++ SW64FpSelOp swop; ++ switch (cond->code) { ++ case SW64cc_FEQ: swop = SW64in_FSELEQ; break; ++ case SW64cc_FNE: swop = SW64in_FSELNE; break; ++ case SW64cc_FLT: swop = SW64in_FSELLT; break; ++ case SW64cc_FLE: swop = SW64in_FSELLE; break; ++ case SW64cc_FGT: swop = SW64in_FSELGT; break; ++ case SW64cc_FGE: swop = SW64in_FSELGE; break; ++ default: { ++ /* slow path */ ++ HReg cond_I = iselIntExpr(env, e->Iex.ITE.cond); ++ HReg cond_F = newVRegF(env); ++ addInstr(env, SW64Instr_FpGpMove(SW64in_IFMOVD, cond_F, cond_I)); ++ addInstr(env, SW64Instr_FpSel(SW64in_FSELNE, dst, iftrue, iffalse, cond_F)); ++ return dst; ++ } ++ } ++ ++ addInstr(env, SW64Instr_FpSel(swop, dst, iftrue, iffalse, cond->reg)); ++ return dst; ++ } ++ ++ default: ++ vassert(0); ++ } ++} ++ ++static Bool uLong_fits_in_16_bits ( ULong u ) ++{ ++ Long i = u & 0xFFFFULL; ++ i <<= 48; ++ i >>= 48; ++ return toBool(u == (ULong) i); ++} ++ ++/*! ++ * IR 表达式指令选择,而该 IR 表达式用作内存读写的目标地址. ++ * 若表达式可以直接被 SW64 的寻址模式支持,则返回的 SW64AMode 表示了该寻址模式 ++ * 否则生成额外指令,回退为简单寄存器寻址 ++ * @param[in] env 上下文环境 ++ * @param[in] e IR 表达式,其类型应为 Ity_I64 ++ * @return SW64AMode 所表示的寻址模式 ++ */ ++static ++SW64AModeRI *iselWordExpr_AMode(ISelEnv * env, IRExpr * e) ++{ ++ SW64AModeRI *am = iselWordExpr_AMode_wrk(env, e); ++ return am; ++} ++ ++static SW64AModeRI *iselWordExpr_AMode_wrk(ISelEnv * env, IRExpr * e) ++{ ++ IRType ty = typeOfIRExpr(env->type_env, e); ++ vassert(ty == Ity_I64); ++ ++ /* Add64(expr,i), where i == sign-extend of (i & 0xFFFF) */ ++ if (e->tag == Iex_Binop && e->Iex.Binop.op == Iop_Add64 ++ && e->Iex.Binop.arg2->tag == Iex_Const ++ && e->Iex.Binop.arg2->Iex.Const.con->tag == Ico_U64 ++ && uLong_fits_in_16_bits(e->Iex.Binop.arg2->Iex.Const.con->Ico.U64)) ++ { ++ /* FIXME: 必然 overflow */ ++ return SW64AModeRI_IR((Int) e->Iex.Binop.arg2->Iex.Const.con->Ico.U64, ++ iselIntExpr(env, e->Iex.Binop.arg1)); ++ } ++ ++ /* Doesn't match anything in particular. Generate it into ++ a register and use that. */ ++ return SW64AModeRI_IR(0, iselIntExpr(env, e)); ++} ++ ++/*! ++ * IR 表达式指令选择,而该 IR 表达式用作支持立即数的操作数. ++ * 若该表示式是一个小于等于 255 的立即数,则返回的 SW64RI8 表示了该立即数, ++ * 否则 SW64RI8 中的结果是一个 HReg,该 HReg 保存了 IR 表达式的计算结果 ++ * @param[in] env 上下文环境 ++ * @param[in] e IR 表达式 ++ * @return 一个小于等于 255 的立即数,或一个保存了计算结果的 HReg ++ */ ++static SW64RI8 *iselIntExpr_RI8(ISelEnv * env, IRExpr * e) ++{ ++ SW64RI8 *ri = iselIntExpr_RI8_wrk(env, e); ++ /* sanity checks ... */ ++ switch (ri->tag) { ++ case Sri8_Imm: ++ return ri; ++ case Sri8_Reg: ++ vassert(hregClass(ri->Sri8.Reg.reg) == HRcInt64); ++ vassert(hregIsVirtual(ri->Sri8.Reg.reg)); ++ return ri; ++ default: ++ vpanic("iselIntExpr_RI8: unknown sw64 RI8 tag"); ++ } ++} ++ ++static SW64RI8 *iselIntExpr_RI8_wrk(ISelEnv * env,IRExpr * e) ++{ ++ IRType ty = typeOfIRExpr(env->type_env, e); ++ vassert(ty == Ity_I1 || ty == Ity_I8 || ty == Ity_I16 || ++ ty == Ity_I32 || ty == Ity_I64); ++ ++ /* fast path: imm less than 255 */ ++ if (e->tag == Iex_Const) { ++ ULong imm; ++ IRConst *con = e->Iex.Const.con; ++ switch (con->tag) { ++ case Ico_U64: imm = con->Ico.U64; break; ++ case Ico_U32: imm = con->Ico.U32; break; ++ case Ico_U16: imm = con->Ico.U16; break; ++ case Ico_U8: imm = con->Ico.U8; break; ++ case Ico_U1: imm = con->Ico.U1; break; ++ default: vpanic("iselIntExpr_RI8.Iex_Const(sw64)"); ++ } ++ /* just use imm instead of SW64Instr_LoadImm */ ++ if (imm <= 255) { ++ return SW64RI8_Imm(imm); ++ } ++ } ++ ++ return SW64RI8_Reg(iselIntExpr(env, e)); ++} ++ ++ ++/*! ++ * IR 表达式指令选择,而该 IR 表达式用作条件执行和条件选择的条件. ++ * 若表达式可以直接被 SW64 的条件类型支持,则返回的 SW64Cond 表示条件寄存器和条件类型 ++ * 否则生成额外指令,回退为 bne / selne 指令 ++ * @param[in] env 上下文环境 ++ * @param[in] e IR 表达式,其类型应为 Ity_I1 ++ * @param[out] code 条件执行的类型 ++ * @param[out] reg 条件执行的寄存器 ++ * return 条件执行的寄存器 ++*/ ++static SW64Cond* iselIntExpr_Cond(ISelEnv *env, IRExpr *e) ++{ ++ SW64Cond *cond; ++ ++ vassert(typeOfIRExpr(env->type_env, e) == Ity_I1); ++ ++ if (e->tag == Iex_Unop && e->Iex.Unop.op == Iop_Not1) { ++ /* fast path for: ++ if (Not1(CmpEQ(x, y))) ++ if (Not1(CmpNE(x, y))) ++ ... ++ is equal to: ++ if (CmpNE(x, y)) ++ if (CmpEQ(x, y)) ++ ... ++ */ ++ vassert(typeOfIRExpr(env->type_env, e->Iex.Unop.arg) == Ity_I1); ++ cond = iselIntExpr_Cond_wrk(env, e->Iex.Unop.arg); ++ switch (cond->code) { ++ case SW64cc_EQ: cond->code = SW64cc_NE; break; ++ case SW64cc_NE: cond->code = SW64cc_EQ; break; ++ case SW64cc_LT: cond->code = SW64cc_GE; break; ++ case SW64cc_GE: cond->code = SW64cc_LT; break; ++ case SW64cc_LE: cond->code = SW64cc_GT; break; ++ case SW64cc_GT: cond->code = SW64cc_LE; break; ++ case SW64cc_FEQ: cond->code = SW64cc_FNE; break; ++ case SW64cc_FNE: cond->code = SW64cc_FEQ; break; ++ case SW64cc_FLT: cond->code = SW64cc_FGE; break; ++ case SW64cc_FLE: cond->code = SW64cc_FGT; break; ++ case SW64cc_FGT: cond->code = SW64cc_FLE; break; ++ case SW64cc_FGE: cond->code = SW64cc_FLT; break; ++ default: vassert(0); ++ } ++ } else { ++ cond = iselIntExpr_Cond_wrk(env, e); ++ } ++ ++ vassert(hregIsVirtual(cond->reg) || sameHReg(hregSW64_R31(), cond->reg)); ++ switch (cond->code) { ++ case SW64cc_EQ: ++ case SW64cc_NE: ++ case SW64cc_LT: ++ case SW64cc_GE: ++ case SW64cc_LE: ++ case SW64cc_GT: ++ vassert(hregClass(cond->reg) == HRcInt64); break; ++ case SW64cc_FEQ: ++ case SW64cc_FNE: ++ case SW64cc_FLT: ++ case SW64cc_FLE: ++ case SW64cc_FGT: ++ case SW64cc_FGE: ++ vassert(hregClass(cond->reg) == HRcFlt64); break; ++ default: ++ vassert(0); ++ } ++ ++ return cond; ++} ++ ++static SW64Cond* iselIntExpr_Cond_wrk(ISelEnv *env, IRExpr *e) ++{ ++ if (e->tag == Iex_Binop) { ++ IROp op = e->Iex.Binop.op; ++ IRExpr *argL = e->Iex.Binop.arg1; ++ IRExpr *argR = e->Iex.Binop.arg2; ++ ++ if (const_equal_to(argR, 0)) { ++ switch (op) { ++ case Iop_CmpEQ64: return SW64Cond_Cond(SW64cc_EQ, iselIntExpr(env, argL)); ++ case Iop_CmpNE64: return SW64Cond_Cond(SW64cc_NE, iselIntExpr(env, argL)); ++ case Iop_CmpLT64S: return SW64Cond_Cond(SW64cc_LT, iselIntExpr(env, argL)); ++ case Iop_CmpLE64S: return SW64Cond_Cond(SW64cc_LE, iselIntExpr(env, argL)); ++ default: break; ++ } ++ } ++ ++ if (const_equal_to(argL, 0)) { ++ switch (op) { ++ case Iop_CmpEQ64: return SW64Cond_Cond(SW64cc_EQ, iselIntExpr(env, argR)); ++ case Iop_CmpNE64: return SW64Cond_Cond(SW64cc_NE, iselIntExpr(env, argR)); ++ case Iop_CmpLT64S: return SW64Cond_Cond(SW64cc_GT, iselIntExpr(env, argR)); ++ case Iop_CmpLE64S: return SW64Cond_Cond(SW64cc_GE, iselIntExpr(env, argR)); ++ default: ++ break; ++ } ++ } ++ ++ if (const_equal_to_float(argR, 0)) { ++ switch (op) { ++ case Iop_CmpFEQ64: return SW64Cond_Cond(SW64cc_FEQ, iselFltExpr(env, argL)); ++ case Iop_CmpFNE64: return SW64Cond_Cond(SW64cc_FNE, iselFltExpr(env, argL)); ++ case Iop_CmpFLT64: return SW64Cond_Cond(SW64cc_FLT, iselFltExpr(env, argL)); ++ case Iop_CmpFLE64: return SW64Cond_Cond(SW64cc_FLE, iselFltExpr(env, argL)); ++ case Iop_CmpFGT64: return SW64Cond_Cond(SW64cc_FGT, iselFltExpr(env, argL)); ++ case Iop_CmpFGE64: return SW64Cond_Cond(SW64cc_FGE, iselFltExpr(env, argL)); ++ default: ++ break; ++ } ++ } ++ } ++ ++ return SW64Cond_Cond(SW64cc_NE, iselIntExpr(env, e)); ++} ++ ++/*---------------------------------------------------------*/ ++/*--- ISEL: Function call helpers ---*/ ++/*---------------------------------------------------------*/ ++/* Used only in doHelperCall. See big comment in doHelperCall re ++ handling of register-parameter args. This function figures out ++ whether evaluation of an expression might require use of a fixed ++ register. If in doubt return True (safe but suboptimal). ++*/ ++static ++Bool mightRequireFixedRegs ( IRExpr* e ) ++{ ++ if (UNLIKELY(is_IRExpr_VECRET_or_GSPTR(e))) { ++ // These are always "safe" -- either a copy of SP in some ++ // arbitrary vreg, or a copy of x21, respectively. ++ return False; ++ } ++ /* Else it's a "normal" expression. */ ++ switch (e->tag) { ++ case Iex_RdTmp: case Iex_Const: case Iex_Get: ++ return False; ++ default: ++ return True; ++ } ++} ++ ++ ++/* Do a complete function call. |guard| is a Ity_Bit expression ++ indicating whether or not the call happens. If guard==NULL, the ++ call is unconditional. |retloc| is set to indicate where the ++ return value is after the call. The caller (of this fn) must ++ generate code to add |stackAdjustAfterCall| to the stack pointer ++ after the call is done. Returns True iff it managed to handle this ++ combination of arg/return types, else returns False. */ ++ ++static ++Bool doHelperCall ( /*OUT*/UInt* stackAdjustAfterCall, ++ /*OUT*/RetLoc* retloc, ++ ISelEnv* env, ++ IRExpr* guard, ++ IRCallee* cee, IRType retTy, IRExpr** args ) ++{ ++ HReg argregs[SW64_N_ARGREGS]; ++ HReg tmpregs[SW64_N_ARGREGS]; ++ Bool go_fast; ++ Int n_args, i, nextArgReg; ++ UInt argiregs; ++ Addr64 target; ++ SW64Cond* cond; ++ ++ vassert(SW64_N_ARGREGS == 6); ++ ++ /* Set default returns. We'll update them later if needed. */ ++ *stackAdjustAfterCall = 0; ++ *retloc = mk_RetLoc_INVALID(); ++ ++ /* These are used for cross-checking that IR-level constraints on ++ the use of IRExpr_VECRET() and IRExpr_GSPTR() are observed. */ ++ UInt nVECRETs = 0; ++ UInt nGSPTRs = 0; ++ ++ /* Marshal args for a call and do the call. ++ ++ This function only deals with a tiny set of possibilities, which ++ cover all helpers in practice. The restrictions are that only ++ arguments in registers are supported, hence only ++ SW64_N_ARGREGS x 64 integer bits in total can be passed. In ++ fact the only supported arg type is I64. ++ ++ The return type can be I{64,32} or V128. In the V128 case, it ++ is expected that |args| will contain the special node ++ IRExpr_VECRET(), in which case this routine generates code to ++ allocate space on the stack for the vector return value. Since ++ we are not passing any scalars on the stack, it is enough to ++ preallocate the return space before marshalling any arguments, ++ in this case. ++ ++ |args| may also contain IRExpr_GSPTR(), in which case the ++ value in x21 is passed as the corresponding argument. ++ ++ Generating code which is both efficient and correct when ++ parameters are to be passed in registers is difficult, for the ++ reasons elaborated in detail in comments attached to ++ doHelperCall() in priv/host-x86/isel.c. Here, we use a variant ++ of the method described in those comments. ++ ++ The problem is split into two cases: the fast scheme and the ++ slow scheme. In the fast scheme, arguments are computed ++ directly into the target (real) registers. This is only safe ++ when we can be sure that computation of each argument will not ++ trash any real registers set by computation of any other ++ argument. ++ ++ In the slow scheme, all args are first computed into vregs, and ++ once they are all done, they are moved to the relevant real ++ regs. This always gives correct code, but it also gives a bunch ++ of vreg-to-rreg moves which are usually redundant but are hard ++ for the register allocator to get rid of. ++ ++ To decide which scheme to use, all argument expressions are ++ first examined. If they are all so simple that it is clear they ++ will be evaluated without use of any fixed registers, use the ++ fast scheme, else use the slow scheme. Note also that only ++ unconditional calls may use the fast scheme, since having to ++ compute a condition expression could itself trash real ++ registers. ++ ++ Note this requires being able to examine an expression and ++ determine whether or not evaluation of it might use a fixed ++ register. That requires knowledge of how the rest of this insn ++ selector works. Currently just the following 3 are regarded as ++ safe -- hopefully they cover the majority of arguments in ++ practice: IRExpr_Tmp IRExpr_Const IRExpr_Get. ++ */ ++ ++ /* Note that the cee->regparms field is meaningless on ARM64 hosts ++ (since there is only one calling convention) and so we always ++ ignore it. */ ++ ++ n_args = 0; ++ for (i = 0; args[i]; i++) { ++ IRExpr* arg = args[i]; ++ if (UNLIKELY(arg->tag == Iex_VECRET)) ++ { ++ nVECRETs++; ++ } else if (UNLIKELY(arg->tag == Iex_GSPTR)) ++ { ++ nGSPTRs++; ++ } ++ n_args++; ++ } ++ ++ /* If this fails, the IR is ill-formed */ ++ vassert(nGSPTRs == 0 || nGSPTRs == 1); ++ ++ /* for sw: there is no vector*/ ++ HReg r_vecRetAddr = INVALID_HREG; ++ vassert(nVECRETs == 0); ++ ++ argregs[0] = hregSW64_R16(); ++ argregs[1] = hregSW64_R17(); ++ argregs[2] = hregSW64_R18(); ++ argregs[3] = hregSW64_R19(); ++ argregs[4] = hregSW64_R20(); ++ argregs[5] = hregSW64_R21(); ++ ++ tmpregs[0] = tmpregs[1] = tmpregs[2] = INVALID_HREG; ++ tmpregs[3] = tmpregs[4] = tmpregs[5] = INVALID_HREG; ++ ++ argiregs = 0; ++ ++ /* First decide which scheme (slow or fast) is to be used. First ++ assume the fast scheme, and select slow if any contraindications ++ (wow) appear. */ ++ ++ go_fast = True; ++ ++ if (guard) { ++ if (guard->tag == Iex_Const ++ && guard->Iex.Const.con->tag == Ico_U1 ++ && guard->Iex.Const.con->Ico.U1 == True) { ++ /* unconditional */ ++ } else { ++ /* Not manifestly unconditional -- be conservative. */ ++ go_fast = False; ++ } ++ } ++ ++ if (go_fast) { ++ for (i = 0; i < n_args; i++) { ++ if (mightRequireFixedRegs(args[i])) { ++ go_fast = False; ++ break; ++ } ++ } ++ } ++ ++ if (go_fast) { ++ if (retTy == Ity_V128 || retTy == Ity_V256) ++ go_fast = False; ++ } ++ ++ /* At this point the scheme to use has been established. Generate ++ code to get the arg values into the argument rregs. If we run ++ out of arg regs, give up. */ ++ ++ if (go_fast) { ++ ++ /* FAST SCHEME */ ++ nextArgReg = 0; ++ ++ for (i = 0; i < n_args; i++) { ++ IRExpr* arg = args[i]; ++ vassert(nextArgReg < SW64_N_ARGREGS); ++ ++ IRType aTy = Ity_INVALID; ++ if (LIKELY(!is_IRExpr_VECRET_or_GSPTR(arg))) ++ aTy = typeOfIRExpr(env->type_env, args[i]); ++ ++ if (aTy == Ity_I64) { ++ addInstr(env, SW64Instr_Logic(SW64in_OR, argregs[nextArgReg], ++ iselIntExpr(env, args[i]), ++ SW64RI8_Imm(0x0))); ++ argiregs |= (1 << (nextArgReg + 0)); ++ nextArgReg++; ++ } ++ else if (arg->tag == Iex_GSPTR) { ++ addInstr(env, SW64Instr_Logic(SW64in_OR, argregs[nextArgReg], ++ SW64GuestStateHreg(), ++ SW64RI8_Imm(0x0))); ++ nextArgReg++; ++ } ++ else if (arg->tag == Iex_VECRET) { ++ // because of the go_fast logic above, we can't get here, ++ // since vector return values makes us use the slow path ++ // instead. ++ vassert(0); ++ } ++ else ++ return False; /* unhandled arg type */ ++ } ++ ++ /* Fast scheme only applies for unconditional calls. Hence: */ ++ cond = SW64Cond_ALWAYS(); ++ } else { ++ ++ /* SLOW SCHEME; move via temporaries */ ++ nextArgReg = 0; ++ ++ for (i = 0; i < n_args; i++) { ++ IRExpr* arg = args[i]; ++ vassert(nextArgReg < SW64_N_ARGREGS); ++ ++ IRType aTy = Ity_INVALID; ++ if (LIKELY(!is_IRExpr_VECRET_or_GSPTR(arg))) ++ aTy = typeOfIRExpr(env->type_env, args[i]); ++ ++ if (aTy == Ity_I64) { ++ tmpregs[nextArgReg] = iselIntExpr(env, args[i]); ++ nextArgReg++; ++ } ++ else if (arg->tag == Iex_GSPTR) { ++ vassert(0); //ATC ++ tmpregs[nextArgReg] = SW64GuestStateHreg(); ++ nextArgReg++; ++ } ++ else if (arg->tag == Iex_VECRET) { ++ vassert(!hregIsInvalid(r_vecRetAddr)); ++ tmpregs[nextArgReg] = r_vecRetAddr; ++ nextArgReg++; ++ } ++ else ++ return False; /* unhandled arg type */ ++ } ++ ++ /* Now we can compute the condition. We can't do it earlier ++ because the argument computations could trash the condition ++ codes. Be a bit clever to handle the common case where the ++ guard is 1:Bit. */ ++ if (guard) { ++ if (guard->tag == Iex_Const ++ && guard->Iex.Const.con->tag == Ico_U1 ++ && guard->Iex.Const.con->Ico.U1 == True) { ++ cond = SW64Cond_ALWAYS(); ++ } else { ++ cond = iselIntExpr_Cond(env, guard); ++ } ++ } else { ++ cond = SW64Cond_ALWAYS(); ++ } ++ ++ /* Move the args to their final destinations. */ ++ for (i = 0; i < nextArgReg; i++) ++ { ++ vassert(!(hregIsInvalid(tmpregs[i]))); ++ /* None of these insns, including any spill code that might ++ be generated, may alter the condition codes. */ ++ argiregs |= (1 << (i + 0)); ++ addInstr( env, SW64Instr_Logic(SW64in_OR, argregs[i], tmpregs[i], SW64RI8_Imm(0x0) )); ++ } ++ ++ } ++ ++ /* Should be assured by checks above */ ++ vassert(nextArgReg <= SW64_N_ARGREGS); ++ ++ /* Do final checks, set the return values, and generate the call ++ instruction proper. */ ++ vassert(nGSPTRs == 0 || nGSPTRs == 1); ++ vassert(nVECRETs == ((retTy == Ity_V128 || retTy == Ity_V256) ? 1 : 0)); ++ vassert(*stackAdjustAfterCall == 0); ++ vassert(is_RetLoc_INVALID(*retloc)); ++ switch (retTy) { ++ case Ity_INVALID: ++ /* Function doesn't return a value. */ ++ *retloc = mk_RetLoc_simple(RLPri_None); ++ break; ++ case Ity_I64: case Ity_I32: case Ity_I16: case Ity_I8: ++ *retloc = mk_RetLoc_simple(RLPri_Int); ++ break; ++ case Ity_V128: ++ *retloc = mk_RetLoc_spRel(RLPri_V128SpRel, 0); ++ *stackAdjustAfterCall = 16; ++ break; ++ case Ity_V256: ++ vassert(0); // ATC ++ *retloc = mk_RetLoc_spRel(RLPri_V256SpRel, 0); ++ *stackAdjustAfterCall = 32; ++ break; ++ default: ++ /* IR can denote other possible return types, but we don't ++ handle those here. */ ++ vassert(0); ++ } ++ ++ /* Finally, generate the call itself. This needs the *retloc value ++ set in the switch above, which is why it's at the end. */ ++ ++ /* nextArgReg doles out argument registers. Since these are ++ assigned in the order a0 .. a5, its numeric value at this point, ++ which must be between 0 and 8 inclusive, is going to be equal to ++ the number of arg regs in use for the call. Hence bake that ++ number into the call (we'll need to know it when doing register ++ allocation, to know what regs the call reads.) */ ++ ++ target = (Addr)cee->addr; ++ addInstr(env, SW64Instr_Call(cond, target, argiregs, *retloc)); ++ ++ return True; /* success */ ++} ++ ++ ++/*---------------------------------------------------------*/ ++/*--- ISEL: Statements ---*/ ++/*---------------------------------------------------------*/ ++ ++static void iselStmt(ISelEnv * env, IRStmt * stmt) ++{ ++ if (vex_traceflags & VEX_TRACE_VCODE) /* debug logger */ ++ { ++ vex_printf("\n-- "); ++ ++ ppIRStmt(stmt); ++ vex_printf("\n"); ++ } ++ ++ switch (stmt->tag) ++ { ++ /* --------- STORE --------- */ ++ case Ist_Store: ++ case Ist_Put: ++ { ++ IRExpr *data; ++ SW64AModeRI *addr; ++ if (stmt->tag == Ist_Store) { ++ data = stmt->Ist.Store.data; ++ addr = iselWordExpr_AMode(env, stmt->Ist.Store.addr); ++ } else { ++ data = stmt->Ist.Put.data; ++ addr = SW64AModeRI_IR(stmt->Ist.Put.offset, ++ SW64GuestStateHreg()); ++ } ++ ++ IRType ty = typeOfIRExpr(env->type_env, data); ++ if (ty == Ity_I8 || ty == Ity_I16 || ty == Ity_I32 || ty == Ity_I64) { ++ HReg src = iselIntExpr(env, data); ++ SW64StoreOp op = (ty == Ity_I8) ? SW64in_STB : ++ (ty == Ity_I16) ? SW64in_STH : ++ (ty == Ity_I32) ? SW64in_STW : ++ (ty == Ity_I64) ? SW64in_STL : ++ (vassert(0), 0); ++ addInstr(env, SW64Instr_Store(op, src, addr)); ++ return; ++ } ++ ++ if (ty == Ity_F32 || ty == Ity_F64) { ++ HReg src = iselFltExpr(env, data); ++ SW64FpStoreOp op = (ty == Ity_F32) ? SW64in_FSTS : ++ (ty == Ity_F64) ? SW64in_FSTD : ++ (vassert(0), 0); ++ addInstr(env, SW64Instr_FpStore(op, src, addr)); ++ return; ++ } ++ ++ goto stmt_fail; ++ } ++ ++ /* --------- WrTmp --------- */ ++ case Ist_WrTmp: //assign statement ++ { ++ IRTemp tmp = stmt->Ist.WrTmp.tmp; ++ IRType ty = typeOfIRTemp(env->type_env, tmp); ++ HReg dst = lookupIRTemp(env, tmp); ++ ++ switch (ty) { ++ case Ity_I1: ++ case Ity_I8: ++ case Ity_I16: ++ case Ity_I32: ++ case Ity_I64: { ++ iselIntExpr_HReg(env, stmt->Ist.WrTmp.data, dst); ++ return; ++ } ++ ++ case Ity_F32: ++ case Ity_F64: { ++ iselFltExpr_HReg(env, stmt->Ist.WrTmp.data, dst); ++ return; ++ } ++ ++ default: ++ goto stmt_fail; ++ } ++ } ++ ++ /* --------- INSTR MARK --------- */ ++ /* Doesn't generate any executable code ... */ ++ case Ist_IMark: ++ return; ++ ++ /* --------- ABI HINT --------- */ ++ /* These have no meaning (denotation in the IR) and so we ignore ++ them ... if any actually made it this far. */ ++ case Ist_AbiHint: ++ return; ++ ++ /* --------- NO-OP --------- */ ++ /* Fairly self-explanatory, wouldn't you say? */ ++ case Ist_NoOp: ++ return; ++ ++ /* --------- EXIT --------- */ ++ case Ist_Exit: //cond branch ++ { ++ IRConst* dst = stmt->Ist.Exit.dst; //jmp address ++ if(dst->tag != Ico_U64) ++ vpanic("iselStmt(sw64): Ist_Exit: dst is not a 64-bit value"); ++ SW64AModeRI* amPC = SW64AModeRI_IR(stmt->Ist.Exit.offsIP, ++ SW64GuestStateHreg()); ++ ++ SW64Cond* cond = iselIntExpr_Cond(env, stmt->Ist.Exit.guard); ++ ++ /* Case: boring transfer to known address */ ++ if (stmt->Ist.Exit.jk == Ijk_Boring) ++ { ++ if (env->chainingAllowed) ++ { ++ /* .. almost always true .. */ ++ /* Skip the event check at the dst if this is a forwards edge. */ ++ Bool toFastEP = ((Addr64)dst->Ico.U64) > env->max_ga; ++ addInstr(env, SW64Instr_XDirect(dst->Ico.U64, amPC, ++ cond, toFastEP)); ++ } ++ else ++ { ++ /* .. very occasionally .. */ ++ /* We can't use chaining, so ask for an assisted transfer, ++ as that's the only alternative that is allowable. */ ++ HReg r = iselIntExpr(env, IRExpr_Const(dst)); ++ addInstr(env, SW64Instr_XAssisted(r, amPC, cond, Ijk_Boring)); ++ } ++ return; ++ } ++ ++ /* Case: assisted transfer to arbitrary address */ ++ switch (stmt->Ist.Exit.jk) ++ { ++ /* Keep this list in sync with that for iselNext below */ ++ case Ijk_ClientReq: ++ case Ijk_NoDecode: ++ case Ijk_NoRedir: ++ case Ijk_Sys_syscall: ++ case Ijk_InvalICache: ++ case Ijk_FlushDCache: ++ case Ijk_SigTRAP: ++ case Ijk_SigBUS: ++ case Ijk_Yield: ++ { ++ HReg r = iselIntExpr(env, IRExpr_Const(dst)); ++ addInstr(env, SW64Instr_XAssisted(r, amPC, cond, ++ stmt->Ist.Exit.jk)); ++ return; ++ } ++ default: ++ break; ++ } ++ ++ /* Do we ever expect to see any other kind? */ ++ goto stmt_fail; ++ } ++ ++ /* --------- Call to DIRTY helper --------- */ ++ /* call complex ("dirty") helper function */ ++ case Ist_Dirty: ++ { ++ IRDirty* d = stmt->Ist.Dirty.details; ++ ++ /* Figure out the return type, if any. */ ++ IRType retty = Ity_INVALID; ++ if (d->tmp != IRTemp_INVALID) ++ retty = typeOfIRTemp(env->type_env, d->tmp); ++ ++ Bool retty_ok = False; ++ switch (retty) ++ { ++ case Ity_INVALID: /* function doesn't return anything */ ++ case Ity_I64: case Ity_I32: case Ity_I16: case Ity_I8: ++ case Ity_V128: ++ retty_ok = True; ++ break; ++ default: ++ break; ++ } ++ if (!retty_ok) ++ break; /* will go to stmt_fail: */ ++ ++ /* Marshal args, do the call, and set the return value to 0x555..555 ++ if this is a conditional call that returns a value and the ++ call is skipped. */ ++ UInt addToSp = 0; ++ RetLoc rloc = mk_RetLoc_INVALID(); ++ doHelperCall( &addToSp, &rloc, env, d->guard, d->cee, retty, d->args ); ++ vassert(is_sane_RetLoc(rloc)); ++ ++ /* Now figure out what to do with the returned value, if any. */ ++ switch (retty) ++ { ++ case Ity_INVALID: ++ { ++ /* No return value. Nothing to do. */ ++ vassert(d->tmp == IRTemp_INVALID); ++ vassert(rloc.pri == RLPri_None); ++ vassert(addToSp == 0); ++ return; ++ } ++ case Ity_I64: case Ity_I32: case Ity_I16: case Ity_I8: ++ { ++ vassert(rloc.pri == RLPri_Int); ++ vassert(addToSp == 0); ++ /* The returned value is in v0. Park it in the register ++ associated with tmp. */ ++ HReg dst = lookupIRTemp(env, d->tmp); ++ addInstr(env, SW64Instr_Logic(SW64in_OR, dst, hregSW64_R0(), SW64RI8_Imm(0x0) )); ++ return; ++ } ++ default: ++ /*NOTREACHED*/ ++ vassert(0); ++ } ++ break; ++ } ++ ++ /* --------- MEM FENCE --------- */ ++ case Ist_MBE: ++ { ++ switch (stmt->Ist.MBE.event) ++ { ++ case Imbe_Fence: ++ addInstr(env, SW64Instr_MFence()); ++ return; ++ case Imbe_CancelReservation: ++ goto stmt_fail; ++ default: ++ /*NOTREACHED*/ ++ vassert(0); ++ } ++ } ++ ++ /* --------- LL/SC --------- */ ++ case Ist_LLSC: ++ { ++ /* 不要使用宿主机上的 LL/SC,不起作用 ++ * SW64 Core 6B 的 LL 和 SC 指令对之间不能包含任何访存指令,否则 SC 必然失败 ++ * 在 valgrind 中,几乎不可能保证两条 IRExpr 之间不包含访存指令,因为 LL 指令的结果会写入客户机的寄存器状态 ++ * 而这一步写入必然需要访存 ++ */ ++ goto stmt_fail; ++ } ++ ++ /* --------- CAS ------------ */ ++ case Ist_CAS: ++ { ++ if (stmt->Ist.CAS.details->oldHi == IRTemp_INVALID) ++ { ++ IRCAS *cas = stmt->Ist.CAS.details; ++ HReg old = lookupIRTemp(env, cas->oldLo); ++ HReg addr = iselIntExpr(env, cas->addr); ++ HReg expd = iselIntExpr(env, cas->expdLo); ++ HReg data = iselIntExpr(env, cas->dataLo); ++ HReg res = newVRegI(env); ++ ++ IRType ty = typeOfIRTemp(env->type_env, cas->oldLo); ++ if (ty == Ity_I64) ++ { ++ addInstr(env, SW64Instr_Cas(8, res, old, addr, expd, data)); ++ } ++ else if (ty == Ity_I32) ++ { ++ addInstr(env, SW64Instr_Cas(4, res, old, addr, expd, data)); ++ } ++ return; ++ } ++ goto stmt_fail; ++ } ++ ++ default: ++ break; ++ } ++ ++ stmt_fail: ++ vex_printf("stmt_fail tag: 0x%x\n", stmt->tag); ++ ppIRStmt(stmt); ++ vpanic("iselStmt:\n"); ++} ++ ++ ++/*---------------------------------------------------------*/ ++/*--- ISEL: Basic block terminators (Nexts) ---*/ ++/*---------------------------------------------------------*/ ++ ++static void iselNext ( ISelEnv* env, ++ IRExpr* next, IRJumpKind jk, Int offsIP ) ++{ ++ if (vex_traceflags & VEX_TRACE_VCODE) { ++ vex_printf( "\n-- PUT(%d) = ", offsIP); ++ ppIRExpr( next ); ++ vex_printf( "; exit-"); ++ ppIRJumpKind(jk); ++ vex_printf( "\n"); ++ } ++ ++ /* Case: boring transfer to known address */ ++ if (next->tag == Iex_Const) { ++ IRConst* cdst = next->Iex.Const.con; ++ vassert(cdst->tag == Ico_U64); ++ if (jk == Ijk_Boring || jk == Ijk_Call) { ++ /* Boring transfer to known address */ ++ SW64AModeRI* amPC = SW64AModeRI_IR(offsIP, SW64GuestStateHreg()); ++ if (env->chainingAllowed) { ++ /* .. almost always true .. */ ++ /* Skip the event check at the dst if this is a forwards edge. */ ++ Bool toFastEP = ((Addr64)cdst->Ico.U64) > ((Addr64)env->max_ga); ++// if (1) vex_printf("[%s] %s\n", __func__, toFastEP ? "X" : "."); ++ addInstr(env, SW64Instr_XDirect( ++ (Addr64)cdst->Ico.U64, ++ amPC, SW64Cond_ALWAYS(), toFastEP)); ++ } else { ++ /* .. very occasionally .. */ ++ /* We can't use chaining, so ask for an assisted transfer, ++ as that's the only alternative that is allowable. */ ++ HReg r = iselIntExpr(env, next); ++ addInstr(env, SW64Instr_XAssisted(r, amPC, SW64Cond_ALWAYS(), ++ Ijk_Boring)); ++ } ++ return; ++ } ++ } ++ ++ /* Case: call/return (==boring) transfer to any address */ ++ switch (jk) ++ { ++ case Ijk_Boring: case Ijk_Ret: case Ijk_Call: ++ { ++ HReg r = iselIntExpr(env, next); ++ SW64AModeRI* amPC = SW64AModeRI_IR(offsIP, SW64GuestStateHreg()); ++ if (env->chainingAllowed) ++ { ++ addInstr(env, SW64Instr_XIndir(r, amPC, SW64Cond_ALWAYS())); ++ } ++ else ++ { ++ addInstr(env, SW64Instr_XAssisted(r, amPC, SW64Cond_ALWAYS(), Ijk_Boring)); ++ } ++ return; ++ } ++ default: ++ break; ++ } ++ ++ /* Case: assisted transfer to arbitrary address */ ++ switch (jk) { ++ /* Keep this list in sync with that for Ist_Exit above */ ++ case Ijk_ClientReq: ++ case Ijk_EmFail: ++ case Ijk_EmWarn: ++ case Ijk_NoDecode: ++ case Ijk_NoRedir: ++ case Ijk_SigBUS: ++ case Ijk_SigILL: ++ case Ijk_SigTRAP: ++ case Ijk_SigFPE_IntDiv: ++ case Ijk_SigFPE_IntOvf: ++ case Ijk_Sys_syscall: ++ case Ijk_InvalICache: ++ { ++ HReg r = iselIntExpr(env, next); ++ SW64AModeRI* amPC = SW64AModeRI_IR(offsIP, SW64GuestStateHreg()); ++ addInstr(env, SW64Instr_XAssisted(r, amPC, SW64Cond_ALWAYS(), jk)); ++ return; ++ } ++ default: ++ break; ++ } ++ ++ vex_printf("\n-- PUT(%d) = ", offsIP); ++ ppIRExpr(next ); ++ vex_printf("; exit-"); ++ ppIRJumpKind(jk); ++ vex_printf("\n"); ++ vassert(0); /* are we expecting any other kind? */ ++} ++ ++ ++/*---------------------------------------------------------*/ ++/*--- Insn selector top-level ---*/ ++/*---------------------------------------------------------*/ ++ ++/* Translate an entire SB to sw64 code. */ ++ ++HInstrArray* iselSB_SW64 ( const IRSB* bb, ++ VexArch arch_host, ++ const VexArchInfo* archinfo_host, ++ const VexAbiInfo* vbi/*UNUSED*/, ++ Int offs_Host_EvC_Counter, ++ Int offs_Host_EvC_FailAddr, ++ Bool chainingAllowed, ++ Bool addProfInc, ++ Addr max_ga ) ++{ ++ /* sanity ... */ ++ vassert(arch_host == VexArchSW64); ++ /* Check that the host's endianness is as expected. */ ++ vassert(archinfo_host->endness == VexEndnessLE); ++ /* guard against unexpected space regressions */ ++ vassert(sizeof(SW64Instr) <= 64); ++ ++ ISelEnv* env; ++ //setup env ++ { ++ env = LibVEX_Alloc_inline(sizeof(ISelEnv)); ++ env->vreg_ctr = 0; ++ env->code = newHInstrArray(); ++ env->type_env = bb->tyenv; ++ env->n_vregmap = bb->tyenv->types_used; ++ env->vregmap = LibVEX_Alloc_inline(env->n_vregmap * sizeof(HReg)); ++ env->vregmapHI = LibVEX_Alloc_inline(env->n_vregmap * sizeof(HReg)); ++ env->chainingAllowed = chainingAllowed; ++ env->max_ga = max_ga; ++ env->hwcaps = archinfo_host->hwcaps; ++ } ++ ++ /* For each IR temporary, allocate a suitably-kinded virtual ++ register. */ ++ Int i, j; ++ HReg hreg, hregHI; ++ j = 0; ++ for (i = 0; i < env->n_vregmap; i++) ++ { ++ hregHI = hreg = INVALID_HREG; ++ switch (bb->tyenv->types[i]) { ++ case Ity_I1: ++ case Ity_I8: ++ case Ity_I16: ++ case Ity_I32: ++ case Ity_I64: ++ hreg = mkHReg(True, HRcInt64, 0, j++); ++ break; ++ case Ity_I128: ++ hreg = mkHReg(True, HRcInt64, 0, j++); ++ hregHI = mkHReg(True, HRcInt64, 0, j++); ++ break; ++ case Ity_F32: ++ case Ity_F64: ++ hreg = mkHReg(True, HRcFlt64, 0, j++); ++ break; ++ case Ity_V128: ++ // hreg = mkHReg(True, HRcVec128, 0, j++); ++ // break; ++ default: ++ ppIRType(bb->tyenv->types[i]); ++ vpanic("iselBB(sw64): IRTemp type"); ++ break; ++ } ++ env->vregmap[i] = hreg; ++ env->vregmapHI[i] = hregHI; ++ } ++ env->vreg_ctr = j; ++ ++ /* The very first instruction must be an event check. */ ++ SW64AModeRI *amCounter, *amFailAddr; ++ amCounter = SW64AModeRI_IR(offs_Host_EvC_Counter, SW64GuestStateHreg()); ++ amFailAddr = SW64AModeRI_IR(offs_Host_EvC_FailAddr, SW64GuestStateHreg()); ++ addInstr(env, SW64Instr_EvCheck(amCounter, amFailAddr)); ++ ++ /* Possibly a block counter increment (for profiling). At this ++ point we don't know the address of the counter, so just pretend ++ it is zero. It will have to be patched later, but before this ++ translation is used, by a call to LibVEX_patchProfCtr. */ ++ if (addProfInc) { ++ addInstr(env, SW64Instr_ProfInc()); ++ } ++ ++ /* Ok, finally we can iterate over the statements. */ ++ for (i = 0; i < bb->stmts_used; i++) ++ iselStmt(env, bb->stmts[i]); ++ ++ iselNext(env, bb->next, bb->jumpkind, bb->offsIP); ++ ++ /* record the number of vregs we used. */ ++ env->code->n_vregs = env->vreg_ctr; ++ return env->code; ++} ++ ++ ++/*---------------------------------------------------------------*/ ++/*--- end host_sw64_isel.c ---*/ ++/*---------------------------------------------------------------*/ ++ +diff --git a/VEX/priv/host_x86_defs.c b/VEX/priv/host_x86_defs.c +index b1c349afb..b172a8a62 100644 +--- a/VEX/priv/host_x86_defs.c ++++ b/VEX/priv/host_x86_defs.c +@@ -2120,7 +2120,7 @@ static UChar* push_word_from_tags ( UChar* p, UShort tags ) + instruction was a profiler inc, set *is_profInc to True, else + leave it unchanged. */ + +-Int emit_X86Instr ( /*MB_MOD*/Bool* is_profInc, ++Int emit_X86Instr ( /*MB_MOD*/Bool* is_profInc, /*MB_MOD*/Bool* is_8aligned, + UChar* buf, Int nbuf, const X86Instr* i, + Bool mode64, VexEndness endness_host, + const void* disp_cp_chain_me_to_slowEP, +diff --git a/VEX/priv/host_x86_defs.h b/VEX/priv/host_x86_defs.h +index 2455b3245..a741c3d61 100644 +--- a/VEX/priv/host_x86_defs.h ++++ b/VEX/priv/host_x86_defs.h +@@ -714,7 +714,7 @@ extern void ppX86Instr ( const X86Instr*, Bool ); + of the underlying instruction set. */ + extern void getRegUsage_X86Instr ( HRegUsage*, const X86Instr*, Bool ); + extern void mapRegs_X86Instr ( HRegRemap*, X86Instr*, Bool ); +-extern Int emit_X86Instr ( /*MB_MOD*/Bool* is_profInc, ++extern Int emit_X86Instr ( /*MB_MOD*/Bool* is_profInc, /*MB_MOD*/Bool* is_8aligned, + UChar* buf, Int nbuf, const X86Instr* i, + Bool mode64, + VexEndness endness_host, +diff --git a/VEX/priv/ir_defs.c b/VEX/priv/ir_defs.c +index 31710eb33..1ad4c0091 100644 +--- a/VEX/priv/ir_defs.c ++++ b/VEX/priv/ir_defs.c +@@ -221,6 +221,14 @@ void ppIROp ( IROp op ) + case Iop_CmpwNEZ32: vex_printf("CmpwNEZ32"); return; + case Iop_CmpwNEZ64: vex_printf("CmpwNEZ64"); return; + ++ case Iop_CmpFEQ64: vex_printf("CmpFEQ64"); return; ++ case Iop_CmpFNE64: vex_printf("CmpFNE64"); return; ++ case Iop_CmpFLT64: vex_printf("CmpFLT64"); return; ++ case Iop_CmpFLE64: vex_printf("CmpFLE64"); return; ++ case Iop_CmpFGT64: vex_printf("CmpFGT64"); return; ++ case Iop_CmpFGE64: vex_printf("CmpFGE64"); return; ++ case Iop_CmpFUN64: vex_printf("CmpFUN64"); return; ++ + case Iop_Left8: vex_printf("Left8"); return; + case Iop_Left16: vex_printf("Left16"); return; + case Iop_Left32: vex_printf("Left32"); return; +@@ -1419,6 +1427,8 @@ Bool primopMightTrap ( IROp op ) + case Iop_CmpLT32U: case Iop_CmpLT64U: case Iop_CmpLE32U: case Iop_CmpLE64U: + case Iop_CmpNEZ8: case Iop_CmpNEZ16: case Iop_CmpNEZ32: case Iop_CmpNEZ64: + case Iop_CmpwNEZ32: case Iop_CmpwNEZ64: ++ case Iop_CmpFEQ64: case Iop_CmpFNE64: case Iop_CmpFUN64: ++ case Iop_CmpFLT64: case Iop_CmpFLE64: case Iop_CmpFGT64: case Iop_CmpFGE64: + case Iop_Left8: case Iop_Left16: case Iop_Left32: case Iop_Left64: + case Iop_Max32U: case Iop_CmpORD32U: case Iop_CmpORD64U: + case Iop_CmpORD32S: case Iop_CmpORD64S: +@@ -3263,6 +3273,12 @@ void typeOfPrimop ( IROp op, + case Iop_CmpLT64U: case Iop_CmpLE64U: + COMPARISON(Ity_I64); + ++ case Iop_CmpFEQ64: case Iop_CmpFNE64: ++ case Iop_CmpFLT64: case Iop_CmpFLE64: ++ case Iop_CmpFGT64: case Iop_CmpFGE64: ++ case Iop_CmpFUN64: ++ COMPARISON(Ity_F64); ++ + case Iop_CmpNEZ8: UNARY_COMPARISON(Ity_I8); + case Iop_CmpNEZ16: UNARY_COMPARISON(Ity_I16); + case Iop_CmpNEZ32: UNARY_COMPARISON(Ity_I32); +diff --git a/VEX/priv/ir_opt.c b/VEX/priv/ir_opt.c +index f918e9f85..d6cb96e27 100644 +--- a/VEX/priv/ir_opt.c ++++ b/VEX/priv/ir_opt.c +@@ -2069,6 +2069,32 @@ static IRExpr* fold_Expr_WRK ( IRExpr** env, IRExpr* e ) + < (ULong)(e->Iex.Binop.arg2->Iex.Const.con->Ico.U64))))); + break; + ++ case Iop_CmpFEQ64: ++ e2 = IRExpr_Const(IRConst_U1(toBool( ++ ((Double)(e->Iex.Binop.arg1->Iex.Const.con->Ico.F64) ++ == (Double)(e->Iex.Binop.arg2->Iex.Const.con->Ico.F64))))); ++ break; ++ case Iop_CmpFLT64: ++ e2 = IRExpr_Const(IRConst_U1(toBool( ++ ((Double)(e->Iex.Binop.arg1->Iex.Const.con->Ico.F64) ++ < (Double)(e->Iex.Binop.arg2->Iex.Const.con->Ico.F64))))); ++ break; ++ case Iop_CmpFLE64: ++ e2 = IRExpr_Const(IRConst_U1(toBool( ++ ((Double)(e->Iex.Binop.arg1->Iex.Const.con->Ico.F64) ++ <= (Double)(e->Iex.Binop.arg2->Iex.Const.con->Ico.F64))))); ++ break; ++ case Iop_CmpFGT64: ++ e2 = IRExpr_Const(IRConst_U1(toBool( ++ ((Double)(e->Iex.Binop.arg1->Iex.Const.con->Ico.F64) ++ > (Double)(e->Iex.Binop.arg2->Iex.Const.con->Ico.F64))))); ++ break; ++ case Iop_CmpFGE64: ++ e2 = IRExpr_Const(IRConst_U1(toBool( ++ ((Double)(e->Iex.Binop.arg1->Iex.Const.con->Ico.F64) ++ >= (Double)(e->Iex.Binop.arg2->Iex.Const.con->Ico.F64))))); ++ break; ++ + /* -- CmpORD -- */ + case Iop_CmpORD32S: { + /* very paranoid */ +diff --git a/VEX/priv/main_main.c b/VEX/priv/main_main.c +index 482047c7a..c4bdd32d2 100644 +--- a/VEX/priv/main_main.c ++++ b/VEX/priv/main_main.c +@@ -43,6 +43,7 @@ + #include "libvex_guest_s390x.h" + #include "libvex_guest_mips32.h" + #include "libvex_guest_mips64.h" ++#include "libvex_guest_sw64.h" + + #include "main_globals.h" + #include "main_util.h" +@@ -57,6 +58,7 @@ + #include "host_s390_defs.h" + #include "host_mips_defs.h" + #include "host_nanomips_defs.h" ++#include "host_sw64_defs.h" + + #include "guest_generic_bb_to_IR.h" + #include "guest_x86_defs.h" +@@ -67,6 +69,7 @@ + #include "guest_s390_defs.h" + #include "guest_mips_defs.h" + #include "guest_nanomips_defs.h" ++#include "guest_sw64_defs.h" + + #include "host_generic_simd128.h" + +@@ -163,6 +166,14 @@ + #define NANOMIPSST(f) vassert(0) + #endif + ++#if defined(VGA_sw64) || defined(VEXMULTIARCH) ++#define SW64FN(f) f ++#define SW64ST(f) f ++#else ++#define SW64FN(f) NULL ++#define SW64ST(f) vassert(0) ++#endif ++ + /* This file contains the top level interface to the library. */ + + /* --------- fwds ... --------- */ +@@ -541,6 +552,23 @@ IRSB* LibVEX_FrontEnd ( /*MOD*/ VexTranslateArgs* vta, + vassert(sizeof( ((VexGuestMIPS32State*)0)->guest_NRADDR ) == 4); + break; + ++ case VexArchSW64: ++ preciseMemExnsFn ++ = SW64FN(guest_sw64_state_requires_precise_mem_exns); ++ disInstrFn = SW64FN(disInstr_SW64); ++ specHelper = SW64FN(guest_sw64_spechelper); ++ guest_layout = SW64FN(&sw64Guest_layout); ++ offB_CMSTART = offsetof(VexGuestSW64State,guest_CMSTART); ++ offB_CMLEN = offsetof(VexGuestSW64State,guest_CMLEN); ++ offB_GUEST_IP = offsetof(VexGuestSW64State,guest_PC); ++ szB_GUEST_IP = sizeof( ((VexGuestSW64State*)0)->guest_PC ); ++ vassert(vta->archinfo_guest.endness == VexEndnessLE); ++ vassert(0 == sizeof(VexGuestSW64State) % LibVEX_GUEST_STATE_ALIGN); ++ vassert(sizeof( ((VexGuestSW64State*)0)->guest_CMSTART) == 8); ++ vassert(sizeof( ((VexGuestSW64State*)0)->guest_CMLEN ) == 8); ++ vassert(sizeof( ((VexGuestSW64State*)0)->guest_NRADDR ) == 8); ++ break; ++ + default: + vpanic("LibVEX_Translate: unsupported guest insn set"); + } +@@ -745,7 +773,7 @@ static void libvex_BackEnd ( const VexTranslateArgs *vta, + HInstrArray* (*iselSB) ( const IRSB*, VexArch, const VexArchInfo*, + const VexAbiInfo*, Int, Int, Bool, Bool, + Addr ); +- Int (*emit) ( /*MB_MOD*/Bool*, ++ Int (*emit) ( /*MB_MOD*/Bool*, /*MB_MOD*/Bool*, + UChar*, Int, const HInstr*, Bool, VexEndness, + const void*, const void*, const void*, + const void* ); +@@ -759,7 +787,7 @@ static void libvex_BackEnd ( const VexTranslateArgs *vta, + Int offB_HOST_EvC_COUNTER; + Int offB_HOST_EvC_FAILADDR; + Addr max_ga; +- UChar insn_bytes[128]; ++ UChar insn_bytes[256]; /* changed from 128 */ + HInstrArray* vcode; + HInstrArray* rcode; + +@@ -878,6 +906,14 @@ static void libvex_BackEnd ( const VexTranslateArgs *vta, + offB_HOST_EvC_FAILADDR = offsetof(VexGuestMIPS32State,host_EvC_FAILADDR); + break; + ++ case VexArchSW64: ++ preciseMemExnsFn ++ = SW64FN(guest_sw64_state_requires_precise_mem_exns); ++ guest_sizeB = sizeof(VexGuestSW64State); ++ offB_HOST_EvC_COUNTER = offsetof(VexGuestSW64State,host_EvC_COUNTER); ++ offB_HOST_EvC_FAILADDR = offsetof(VexGuestSW64State,host_EvC_FAILADDR); ++ break; ++ + default: + vpanic("LibVEX_Codegen: unsupported guest insn set"); + } +@@ -1052,6 +1088,22 @@ static void libvex_BackEnd ( const VexTranslateArgs *vta, + || vta->archinfo_host.endness == VexEndnessBE); + break; + ++ case VexArchSW64: ++ mode64 = True; ++ rRegUniv = SW64FN(getRRegUniverse_SW64()); ++ getRegUsage ++ = CAST_TO_TYPEOF(getRegUsage) SW64FN(getRegUsage_SW64Instr); ++ mapRegs = CAST_TO_TYPEOF(mapRegs) SW64FN(mapRegs_SW64Instr); ++ genSpill = CAST_TO_TYPEOF(genSpill) SW64FN(genSpill_SW64); ++ genReload = CAST_TO_TYPEOF(genReload) SW64FN(genReload_SW64); ++ genMove = CAST_TO_TYPEOF(genMove) SW64FN(genMove_SW64); ++ ppInstr = CAST_TO_TYPEOF(ppInstr) SW64FN(ppSW64Instr); ++ ppReg = CAST_TO_TYPEOF(ppReg) SW64FN(ppHRegSW64); ++ iselSB = SW64FN(iselSB_SW64); ++ emit = CAST_TO_TYPEOF(emit) SW64FN(emit_SW64Instr); ++ vassert(vta->archinfo_host.endness == VexEndnessLE); ++ break; ++ + default: + vpanic("LibVEX_Translate: unsupported host insn set"); + } +@@ -1168,11 +1220,13 @@ static void libvex_BackEnd ( const VexTranslateArgs *vta, + for (i = 0; i < rcode->arr_used; i++) { + HInstr* hi = rcode->arr[i]; + Bool hi_isProfInc = False; ++ Bool hi_is8aligned = False; + if (UNLIKELY(vex_traceflags & VEX_TRACE_ASM)) { + ppInstr(hi, mode64); + vex_printf("\n"); + } + j = emit( &hi_isProfInc, ++ &hi_is8aligned, /*add for sw64, some insn's addr need 8-aligned*/ + insn_bytes, sizeof insn_bytes, hi, + mode64, vta->archinfo_host.endness, + vta->disp_cp_chain_me_to_slowEP, +@@ -1197,10 +1251,39 @@ static void libvex_BackEnd ( const VexTranslateArgs *vta, + res->offs_profInc = out_used; + } + { UChar* dst = &vta->host_bytes[out_used]; +- for (k = 0; k < j; k++) { +- dst[k] = insn_bytes[k]; +- } +- out_used += j; ++ if (vta->arch_host == VexArchSW64 && hi_is8aligned) ++ { ++ //sw64: some insn's addr must be 8-aligned,such as lstl/lstw ++ Bool is_8aligned_dst = (0 == (((ULong)(dst)) & ((ULong)0x7))); ++ Bool is_8aligned_insn = (0 == (((ULong)(&insn_bytes)) & ((ULong)0x7))); ++ if (is_8aligned_dst ^ is_8aligned_insn) ++ { ++ //add nop ++ UInt w32 = 0x43ff075f; ++ dst[0] = toUChar(w32 & 0x000000FF); ++ dst[1] = toUChar((w32 >> 8) & 0x000000FF); ++ dst[2] = toUChar((w32 >> 16) & 0x000000FF); ++ dst[3] = toUChar((w32 >> 24) & 0x000000FF); ++ for (k = 0; k < j; k++) { ++ dst[k + 4] = insn_bytes[k]; ++ } ++ out_used += j + 4; ++ } ++ else ++ { ++ //original ++ for (k = 0; k < j; k++) { ++ dst[k] = insn_bytes[k]; ++ } ++ out_used += j; ++ } ++ } else { ++ //original ++ for (k = 0; k < j; k++) { ++ dst[k] = insn_bytes[k]; ++ } ++ out_used += j; ++ } + } + } + *(vta->host_bytes_used) = out_used; +@@ -1209,7 +1292,7 @@ static void libvex_BackEnd ( const VexTranslateArgs *vta, + + vexSetAllocModeTEMP_and_clear(); + +- if (vex_traceflags) { ++ if (vex_traceflags || vta->dump_expansion_ratio) { + /* Print the expansion ratio for this SB. */ + j = 0; /* total guest bytes */ + for (i = 0; i < vta->guest_extents->n_used; i++) { +@@ -1297,6 +1380,12 @@ VexInvalRange LibVEX_Chain ( VexArch arch_host, + place_to_chain, + disp_cp_chain_me_EXPECTED, + place_to_jump_to)); ++ case VexArchSW64: ++ SW64ST(return chainXDirect_SW64(endness_host, ++ place_to_chain, ++ disp_cp_chain_me_EXPECTED, ++ place_to_jump_to)); ++ + default: + vassert(0); + } +@@ -1359,6 +1448,11 @@ VexInvalRange LibVEX_UnChain ( VexArch arch_host, + place_to_unchain, + place_to_jump_to_EXPECTED, + disp_cp_chain_me)); ++ case VexArchSW64: ++ SW64ST(return unchainXDirect_SW64(endness_host, ++ place_to_unchain, ++ place_to_jump_to_EXPECTED, ++ disp_cp_chain_me)); + default: + vassert(0); + } +@@ -1387,8 +1481,10 @@ Int LibVEX_evCheckSzB ( VexArch arch_host ) + MIPS32ST(cached = evCheckSzB_MIPS()); break; + case VexArchMIPS64: + MIPS64ST(cached = evCheckSzB_MIPS()); break; +- case VexArchNANOMIPS: ++ case VexArchNANOMIPS: + NANOMIPSST(cached = evCheckSzB_NANOMIPS()); break; ++ case VexArchSW64: ++ SW64ST(cached = evCheckSzB_SW64()); break; + default: + vassert(0); + } +@@ -1432,6 +1528,9 @@ VexInvalRange LibVEX_PatchProfInc ( VexArch arch_host, + case VexArchNANOMIPS: + NANOMIPSST(return patchProfInc_NANOMIPS(endness_host, place_to_patch, + location_of_counter)); ++ case VexArchSW64: ++ SW64ST(return patchProfInc_SW64(endness_host, place_to_patch, ++ location_of_counter)); + default: + vassert(0); + } +@@ -1515,6 +1614,7 @@ const HChar* LibVEX_ppVexArch ( VexArch arch ) + case VexArchMIPS32: return "MIPS32"; + case VexArchMIPS64: return "MIPS64"; + case VexArchNANOMIPS: return "NANOMIPS"; ++ case VexArchSW64: return "SW64"; + default: return "VexArch???"; + } + } +@@ -1585,6 +1685,7 @@ static IRType arch_word_size (VexArch arch) { + case VexArchMIPS64: + case VexArchPPC64: + case VexArchS390X: ++ case VexArchSW64: + return Ity_I64; + + default: +@@ -1925,6 +2026,18 @@ static const HChar* show_hwcaps_mips64 ( UInt hwcaps ) + return "Unsupported baseline"; + } + ++static const HChar* show_hwcaps_sw64 ( UInt hwcaps ) ++{ ++ switch (VEX_SW64_FAMILY(hwcaps)) { ++ case VEX_SW64_CORE3: ++ return "SW64-CORE3"; ++ case VEX_SW64_CORE4: ++ return "SW64-CORE4"; ++ default: ++ return "Unsupported baseline"; ++ } ++} ++ + #undef NUM_HWCAPS + + /* Thie function must not return NULL. */ +@@ -1941,6 +2054,7 @@ static const HChar* show_hwcaps ( VexArch arch, UInt hwcaps ) + case VexArchS390X: return show_hwcaps_s390x(hwcaps); + case VexArchMIPS32: return show_hwcaps_mips32(hwcaps); + case VexArchMIPS64: return show_hwcaps_mips64(hwcaps); ++ case VexArchSW64: return show_hwcaps_sw64(hwcaps); + default: return NULL; + } + } +@@ -2203,6 +2317,14 @@ static void check_hwcaps ( VexArch arch, UInt hwcaps ) + return; + invalid_hwcaps(arch, hwcaps, "Unsupported baseline\n"); + ++ case VexArchSW64: ++ switch (VEX_SW64_FAMILY(hwcaps)) { ++ case VEX_SW64_CORE3: ++ case VEX_SW64_CORE4: ++ return; ++ default: ++ invalid_hwcaps(arch, hwcaps, "Unsupported baseline\n"); ++ } + default: + vpanic("unknown architecture"); + } +diff --git a/VEX/pub/libvex.h b/VEX/pub/libvex.h +index 27bb6e0f4..f94aa45bc 100644 +--- a/VEX/pub/libvex.h ++++ b/VEX/pub/libvex.h +@@ -60,6 +60,7 @@ typedef + VexArchMIPS32, + VexArchMIPS64, + VexArchNANOMIPS, ++ VexArchSW64, + } + VexArch; + +@@ -300,6 +301,19 @@ typedef + (VEX_MIPS_PROC_ID(x) == VEX_PRID_IMP_P5600) && \ + (VEX_MIPS_HOST_FP_MODE(x))) + ++/* ++ SW64 hwcaps: ++ +----------------------------------------------------+-----------------+ ++ | undefined | cpu family | ++ +----------------------------------------------------+-----------------+ ++ |31 8|7 0| ++ +----------------------------------------------------+-----------------+ ++*/ ++ ++#define VEX_SW64_FAMILY(x) (x & 0xFF) ++#define VEX_SW64_CORE3 3 ++#define VEX_SW64_CORE4 4 ++ + /* These return statically allocated strings. */ + + extern const HChar* LibVEX_ppVexArch ( VexArch ); +@@ -797,6 +811,9 @@ typedef + /* IN: debug: trace vex activity at various points */ + Int traceflags; + ++ /* IN: debug: show instruction expansion ratio */ ++ Bool dump_expansion_ratio; ++ + /* IN: debug: print diagnostics when an illegal instr is detected */ + Bool sigill_diag; + +diff --git a/VEX/pub/libvex_basictypes.h b/VEX/pub/libvex_basictypes.h +index e3f1485d5..393d05663 100644 +--- a/VEX/pub/libvex_basictypes.h ++++ b/VEX/pub/libvex_basictypes.h +@@ -198,6 +198,10 @@ typedef unsigned long HWord; + # define VEX_HOST_WORDSIZE 4 + # define VEX_REGPARM(_n) /* */ + ++#elif defined(__sw_64__) ++# define VEX_HOST_WORDSIZE 8 ++# define VEX_REGPARM(_n) /* */ ++ + #else + # error "Vex: Fatal: Can't establish the host architecture" + #endif +diff --git a/VEX/pub/libvex_guest_sw64.h b/VEX/pub/libvex_guest_sw64.h +new file mode 100644 +index 000000000..70a300bc3 +--- /dev/null ++++ b/VEX/pub/libvex_guest_sw64.h +@@ -0,0 +1,163 @@ ++/*---------------------------------------------------------------*/ ++/*--- begin libvex_guest_sw64.h ---*/ ++/*---------------------------------------------------------------*/ ++ ++/* ++ This file is part of Valgrind, a dynamic binary instrumentation ++ framework. ++ ++ Copyright (C) 2010-2017 RT-RK ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, see . ++ ++ The GNU General Public License is contained in the file COPYING. ++ ++ Neither the names of the U.S. Department of Energy nor the ++ University of California nor the names of its contributors may be ++ used to endorse or promote products derived from this software ++ without prior written permission. ++*/ ++ ++#ifndef __LIBVEX_PUB_GUEST_SW64_H ++#define __LIBVEX_PUB_GUEST_SW64_H ++ ++#include "libvex_basictypes.h" ++ ++/*---------------------------------------------------------------*/ ++/*--- Vex's representation of the SW64 CPU state. ---*/ ++/*---------------------------------------------------------------*/ ++ ++typedef ++ struct { ++ /*SW_NOT_COMPLETE*/ ++ /* 0 */ ULong host_EvC_FAILADDR; ++ /* 8 */ UInt host_EvC_COUNTER; ++ /* 12 */ UInt _padding1; ++ ++ /* 16 */ ULong guest_PC; /* Program counter */ ++ ++ /* GP Registers */ ++ /* 24 */ ULong guest_r0; /* Values for function returns */ ++ /* 32 */ ULong guest_r1; /* Temporaries */ /* t0-t7 */ ++ /* 40 */ ULong guest_r2; ++ /* 48 */ ULong guest_r3; ++ /* 56 */ ULong guest_r4; ++ /* 64 */ ULong guest_r5; ++ /* 72 */ ULong guest_r6; ++ /* 80 */ ULong guest_r7; ++ /* 88 */ ULong guest_r8; ++ /* 96 */ ULong guest_r9; /* Saved temporaries */ /* s0-s5 */ ++ /* 104 */ ULong guest_r10; ++ /* 112 */ ULong guest_r11; ++ /* 120 */ ULong guest_r12; ++ /* 128 */ ULong guest_r13; ++ /* 136 */ ULong guest_r14; ++ /* 144 */ ULong guest_r15; /* Frame pointer */ ++ /* 152 */ ULong guest_r16; /* Function arguments */ /* a0-a5 */ ++ /* 160 */ ULong guest_r17; ++ /* 168 */ ULong guest_r18; ++ /* 176 */ ULong guest_r19; ++ /* 184 */ ULong guest_r20; ++ /* 192 */ ULong guest_r21; ++ /* 200 */ ULong guest_r22; /* Temporaries */ /* t8-t11 */ ++ /* 208 */ ULong guest_r23; ++ /* 216 */ ULong guest_r24; ++ /* 224 */ ULong guest_r25; ++ /* 232 */ ULong guest_r26; /* Return address */ ++ /* 240 */ ULong guest_r27; /* Procedure value */ ++ /* 248 */ ULong guest_r28; /* Assembler temporary */ ++ /* 256 */ ULong guest_r29; /* Global pointer */ ++ /* 264 */ ULong guest_r30; /* Stack pointer */ ++ /* 272 */ ULong guest_r31; /* Hardwired to 0. */ ++ ++ /* FP Registers */ ++ /* 280 */ ULong guest_f0; /* Return f0 */ ++ /* 288 */ ULong guest_f1; /* Return f1 */ ++ /* 296 */ ULong guest_f2; /* Saved */ /* f2-f9 */ ++ /* 304 */ ULong guest_f3; ++ /* 312 */ ULong guest_f4; ++ /* 320 */ ULong guest_f5; ++ /* 328 */ ULong guest_f6; ++ /* 336 */ ULong guest_f7; ++ /* 344 */ ULong guest_f8; ++ /* 352 */ ULong guest_f9; ++ /* 360 */ ULong guest_f10; /* Temporaries */ /* f10-f15 */ ++ /* 368 */ ULong guest_f11; ++ /* 376 */ ULong guest_f12; ++ /* 384 */ ULong guest_f13; ++ /* 392 */ ULong guest_f14; ++ /* 400 */ ULong guest_f15; ++ /* 408 */ ULong guest_f16; /* Function arguments */ /* f16-f21 */ ++ /* 416 */ ULong guest_f17; ++ /* 424 */ ULong guest_f18; ++ /* 432 */ ULong guest_f19; ++ /* 440 */ ULong guest_f20; ++ /* 448 */ ULong guest_f21; ++ /* 456 */ ULong guest_f22; /* Temporaries */ /* f22-f30 */ ++ /* 464 */ ULong guest_f23; ++ /* 472 */ ULong guest_f24; ++ /* 480 */ ULong guest_f25; ++ /* 488 */ ULong guest_f26; ++ /* 496 */ ULong guest_f27; ++ /* 504 */ ULong guest_f28; ++ /* 512 */ ULong guest_f29; ++ /* 520 */ ULong guest_f30; ++ /* 528 */ ULong guest_f31; ++ ++ /* 544 */ ULong guest_FPCR; ++ /* 536 */ ULong guest_CSR; ++ /* 552 */ ULong guest_TID; ++ /* 560 */ ULong guest_LOCKFLAG; ++ /* 568 */ ULong guest_LOCKVALID; ++ /* 576 */ ULong guest_LOCKSUCCESS; ++ /* 584 */ ULong guest_LOCKSIZE; ++ /* 592 */ ULong guest_LOCKADDR; ++ /* 600 */ ULong guest_LOCKDATA; ++ ++ /* Various pseudo-regs mandated by Vex or Valgrind. */ ++ /* Emulation notes */ ++ /* 608 */ UInt guest_EMNOTE; ++ ++ /* For clflush/clinval: record start and length of area */ ++ /* 616 */ ULong guest_CMSTART; ++ /* 624 */ ULong guest_CMLEN; ++ ++ /* Used to record the unredirected guest address at the start of ++ a translation whose start has been redirected. By reading ++ this pseudo-register shortly afterwards, the translation can ++ find out what the corresponding no-redirection address was. ++ Note, this is only set for wrap-style redirects, not for ++ replace-style ones. */ ++ /* 632 */ULong guest_NRADDR; ++} VexGuestSW64State; ++ ++/*---------------------------------------------------------------*/ ++/*--- Utility functions for SW64 guest stuff. ---*/ ++/*---------------------------------------------------------------*/ ++ ++/* ALL THE FOLLOWING ARE VISIBLE TO LIBRARY CLIENT. */ ++ ++/* Initialise all guest SW64 state. */ ++ ++extern ++void LibVEX_GuestSW64_initialise ( /*OUT*/VexGuestSW64State* vex_state ); ++ ++/* FR bit of CP0_STATUS_FR register */ ++#define SW64_CP0_STATUS_FR (1ul << 26) ++ ++#endif /* ndef __LIBVEX_PUB_GUEST_SW64_H */ ++ ++/*---------------------------------------------------------------*/ ++/*--- libvex_guest_sw64.h - --*/ ++/*---------------------------------------------------------------*/ +diff --git a/VEX/pub/libvex_ir.h b/VEX/pub/libvex_ir.h +index 85805bb69..450d2e07b 100644 +--- a/VEX/pub/libvex_ir.h ++++ b/VEX/pub/libvex_ir.h +@@ -635,6 +635,16 @@ typedef + Iop_CmpF16, + Iop_CmpF128, + ++ /* ---- guest sw64 specifics, float compare ----*/ ++ /* :: F64 x F64 -> CmpResult(I1) */ ++ Iop_CmpFUN64, ++ Iop_CmpFLT64, ++ Iop_CmpFLE64, ++ Iop_CmpFGT64, ++ Iop_CmpFGE64, ++ Iop_CmpFEQ64, ++ Iop_CmpFNE64, ++ + /* --- Int to/from FP conversions. --- */ + + /* For the most part, these take a first argument :: Ity_I32 (as +diff --git a/cachegrind/cg_arch.c b/cachegrind/cg_arch.c +index 68314c9db..bc311100f 100644 +--- a/cachegrind/cg_arch.c ++++ b/cachegrind/cg_arch.c +@@ -478,6 +478,12 @@ configure_caches(cache_t *I1c, cache_t *D1c, cache_t *LLc, + *D1c = (cache_t) { 32768, 4, 32 }; + *LLc = (cache_t) { 524288, 8, 32 }; + ++#elif defined(VGA_sw64) ++ ++ *I1c = (cache_t) { 32768, 4, 128 }; ++ *D1c = (cache_t) { 32768, 4, 128 }; ++ *LLc = (cache_t) { 524288, 8, 128 }; ++ + #elif defined(VGA_x86) || defined(VGA_amd64) + + *I1c = (cache_t) { 65536, 2, 64 }; +diff --git a/cachegrind/cg_branchpred.c b/cachegrind/cg_branchpred.c +index 927b7bf21..43c4a4ad1 100644 +--- a/cachegrind/cg_branchpred.c ++++ b/cachegrind/cg_branchpred.c +@@ -44,7 +44,8 @@ + guaranteed to be zero? */ + #if defined(VGA_ppc32) || defined(VGA_ppc64be) || defined(VGA_ppc64le) \ + || defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) \ +- || defined(VGA_arm64) ++ || defined(VGA_arm64) \ ++ || defined(VGA_sw64) + # define N_IADDR_LO_ZERO_BITS 2 + #elif defined(VGA_x86) || defined(VGA_amd64) + # define N_IADDR_LO_ZERO_BITS 0 +diff --git a/configure.ac b/configure.ac +index bf024aca7..4cacf8e4c 100755 +--- a/configure.ac ++++ b/configure.ac +@@ -309,7 +309,10 @@ case "${host_cpu}" in + AC_MSG_RESULT([ok (${host_cpu})]) + ARCH_MAX="nanomips" + ;; +- ++ sw_64*) ++ AC_MSG_RESULT([ok (${host_cpu})]) ++ ARCH_MAX="sw64" ++ ;; + *) + AC_MSG_RESULT([no (${host_cpu})]) + AC_MSG_ERROR([Unsupported host architecture. Sorry]) +@@ -952,6 +955,17 @@ case "$ARCH_MAX-$VGCONF_OS" in + valt_load_address_sec_inner="0xUNSET" + AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})]) + ;; ++ sw64-linux) ++ VGCONF_ARCH_PRI="sw64" ++ VGCONF_ARCH_SEC="" ++ VGCONF_PLATFORM_PRI_CAPS="SW64_LINUX" ++ VGCONF_PLATFORM_SEC_CAPS="" ++ valt_load_address_pri_norml="0x58000000" ++ valt_load_address_pri_inner="0x38000000" ++ valt_load_address_sec_norml="0xUNSET" ++ valt_load_address_sec_inner="0xUNSET" ++ AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})]) ++ ;; + x86-solaris) + VGCONF_ARCH_PRI="x86" + VGCONF_ARCH_SEC="" +@@ -1044,6 +1058,8 @@ AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_MIPS64, + test x$VGCONF_PLATFORM_PRI_CAPS = xMIPS64_LINUX ) + AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_NANOMIPS, + test x$VGCONF_PLATFORM_PRI_CAPS = xNANOMIPS_LINUX ) ++AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_SW64, ++ test x$VGCONF_PLATFORM_PRI_CAPS = xSW64_LINUX ) + + # Set up VGCONF_PLATFORMS_INCLUDE_. Either one or two of these + # become defined. +@@ -1074,6 +1090,8 @@ AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_MIPS64_LINUX, + test x$VGCONF_PLATFORM_PRI_CAPS = xMIPS64_LINUX) + AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_NANOMIPS_LINUX, + test x$VGCONF_PLATFORM_PRI_CAPS = xNANOMIPS_LINUX) ++AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_SW64_LINUX, ++ test x$VGCONF_PLATFORM_PRI_CAPS = xSW64_LINUX) + AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_X86_FREEBSD, + test x$VGCONF_PLATFORM_PRI_CAPS = xX86_FREEBSD \ + -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_FREEBSD) +@@ -1105,7 +1123,8 @@ AM_CONDITIONAL(VGCONF_OS_IS_LINUX, + -o x$VGCONF_PLATFORM_PRI_CAPS = xS390X_LINUX \ + -o x$VGCONF_PLATFORM_PRI_CAPS = xMIPS32_LINUX \ + -o x$VGCONF_PLATFORM_PRI_CAPS = xMIPS64_LINUX \ +- -o x$VGCONF_PLATFORM_PRI_CAPS = xNANOMIPS_LINUX) ++ -o x$VGCONF_PLATFORM_PRI_CAPS = xNANOMIPS_LINUX \ ++ -o x$VGCONF_PLATFORM_PRI_CAPS = xSW64_LINUX) + AM_CONDITIONAL(VGCONF_OS_IS_FREEBSD, + test x$VGCONF_PLATFORM_PRI_CAPS = xX86_FREEBSD \ + -o x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_FREEBSD) +@@ -4882,8 +4901,6 @@ AC_CHECK_FUNCS([ \ + ppoll \ + preadv \ + preadv2 \ +- process_vm_readv \ +- process_vm_writev \ + pthread_barrier_init \ + pthread_condattr_setclock \ + pthread_mutex_timedlock \ +@@ -4917,6 +4934,14 @@ AC_CHECK_FUNCS([ \ + wcsncpy + ]) + ++# Ignore process_vm_readv and process_vm_writev check on sw64 ++if test x$VGCONF_PLATFORM_PRI_CAPS != xSW64_LINUX; then ++ AC_CHECK_FUNCS([ \ ++ process_vm_readv \ ++ process_vm_writev \ ++ ]) ++fi ++ + # AC_CHECK_LIB adds any library found to the variable LIBS, and links these + # libraries with any shared object and/or executable. This is NOT what we + # want for e.g. vgpreload_core-x86-linux.so +@@ -4979,7 +5004,8 @@ elif test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX \ + -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX \ + -o x$VGCONF_PLATFORM_PRI_CAPS = xARM64_LINUX \ + -o x$VGCONF_PLATFORM_PRI_CAPS = xMIPS64_LINUX \ +- -o x$VGCONF_PLATFORM_PRI_CAPS = xS390X_LINUX ; then ++ -o x$VGCONF_PLATFORM_PRI_CAPS = xS390X_LINUX \ ++ -o x$VGCONF_PLATFORM_PRI_CAPS = xSW64_LINUX ; then + mflag_primary=$FLAG_M64 + elif test x$VGCONF_PLATFORM_PRI_CAPS = xX86_DARWIN ; then + mflag_primary="$FLAG_M32 -arch i386" +@@ -5514,6 +5540,7 @@ AC_CONFIG_FILES([ + memcheck/tests/s390x/Makefile + memcheck/tests/mips32/Makefile + memcheck/tests/mips64/Makefile ++ memcheck/tests/sw64/Makefile + memcheck/tests/vbit-test/Makefile + cachegrind/Makefile + cachegrind/tests/Makefile +@@ -5550,6 +5577,8 @@ AC_CONFIG_FILES([ + none/tests/mips32/Makefile + none/tests/mips64/Makefile + none/tests/nanomips/Makefile ++ none/tests/sw64/Makefile ++ none/tests/sw64-linux/Makefile + none/tests/linux/Makefile + none/tests/darwin/Makefile + none/tests/solaris/Makefile +diff --git a/coregrind/Makefile.am b/coregrind/Makefile.am +index 8a7f753a6..c1b18e670 100644 +--- a/coregrind/Makefile.am ++++ b/coregrind/Makefile.am +@@ -336,6 +336,7 @@ COREGRIND_SOURCES_COMMON = \ + m_sparsewa.c \ + m_stacktrace.c \ + m_syscall.c \ ++ m_swdiv.S \ + m_threadstate.c \ + m_tooliface.c \ + m_trampoline.S \ +@@ -386,6 +387,7 @@ COREGRIND_SOURCES_COMMON = \ + m_dispatch/dispatch-mips32-linux.S \ + m_dispatch/dispatch-mips64-linux.S \ + m_dispatch/dispatch-nanomips-linux.S \ ++ m_dispatch/dispatch-sw64-linux.S \ + m_dispatch/dispatch-x86-freebsd.S \ + m_dispatch/dispatch-amd64-freebsd.S \ + m_dispatch/dispatch-x86-darwin.S \ +@@ -409,6 +411,7 @@ COREGRIND_SOURCES_COMMON = \ + m_gdbserver/valgrind-low-mips32.c \ + m_gdbserver/valgrind-low-mips64.c \ + m_gdbserver/valgrind-low-nanomips.c \ ++ m_gdbserver/valgrind-low-sw64.c \ + m_gdbserver/version.c \ + m_initimg/initimg-linux.c \ + m_initimg/initimg-freebsd.c \ +@@ -436,6 +439,7 @@ COREGRIND_SOURCES_COMMON = \ + m_sigframe/sigframe-mips32-linux.c \ + m_sigframe/sigframe-mips64-linux.c \ + m_sigframe/sigframe-nanomips-linux.c \ ++ m_sigframe/sigframe-sw64-linux.c \ + m_sigframe/sigframe-x86-darwin.c \ + m_sigframe/sigframe-amd64-darwin.c \ + m_sigframe/sigframe-solaris.c \ +@@ -450,6 +454,7 @@ COREGRIND_SOURCES_COMMON = \ + m_syswrap/syscall-mips32-linux.S \ + m_syswrap/syscall-mips64-linux.S \ + m_syswrap/syscall-nanomips-linux.S \ ++ m_syswrap/syscall-sw64-linux.S \ + m_syswrap/syscall-x86-freebsd.S \ + m_syswrap/syscall-amd64-freebsd.S \ + m_syswrap/syscall-x86-darwin.S \ +@@ -475,6 +480,7 @@ COREGRIND_SOURCES_COMMON = \ + m_syswrap/syswrap-mips32-linux.c \ + m_syswrap/syswrap-mips64-linux.c \ + m_syswrap/syswrap-nanomips-linux.c \ ++ m_syswrap/syswrap-sw64-linux.c \ + m_syswrap/syswrap-x86-darwin.c \ + m_syswrap/syswrap-amd64-darwin.c \ + m_syswrap/syswrap-xen.c \ +diff --git a/coregrind/launcher-linux.c b/coregrind/launcher-linux.c +index bc95e3c11..80fb1b01d 100644 +--- a/coregrind/launcher-linux.c ++++ b/coregrind/launcher-linux.c +@@ -415,7 +415,8 @@ int main(int argc, char** argv, char** envp) + (0==strcmp(VG_PLATFORM,"s390x-linux")) || + (0==strcmp(VG_PLATFORM,"mips32-linux")) || + (0==strcmp(VG_PLATFORM,"mips64-linux")) || +- (0==strcmp(VG_PLATFORM,"nanomips-linux"))) ++ (0==strcmp(VG_PLATFORM,"nanomips-linux")) || ++ (0==strcmp(VG_PLATFORM,"sw64-linux"))) + default_platform = VG_PLATFORM; + # elif defined(VGO_solaris) + if ((0==strcmp(VG_PLATFORM,"x86-solaris")) || +@@ -474,7 +475,7 @@ int main(int argc, char** argv, char** envp) + launcher_name = ""; + break; + } +- if (r == bufsiz) continue; // buffer to small; retry ++ if (r == bufsiz) continue; // buffer too small; retry + + assert(r < bufsiz); // paranoia + +diff --git a/coregrind/m_aspacemgr/aspacemgr-common.c b/coregrind/m_aspacemgr/aspacemgr-common.c +index 816d2274f..93e07ceab 100644 +--- a/coregrind/m_aspacemgr/aspacemgr-common.c ++++ b/coregrind/m_aspacemgr/aspacemgr-common.c +@@ -157,7 +157,8 @@ SysRes VG_(am_do_mmap_NO_NOTIFY)( Addr start, SizeT length, UInt prot, + # elif defined(VGP_amd64_linux) \ + || defined(VGP_ppc64be_linux) || defined(VGP_ppc64le_linux) \ + || defined(VGP_s390x_linux) || defined(VGP_mips32_linux) \ +- || defined(VGP_mips64_linux) || defined(VGP_arm64_linux) ++ || defined(VGP_mips64_linux) || defined(VGP_arm64_linux) \ ++ || defined(VGP_sw64_linux) + res = VG_(do_syscall6)(__NR_mmap, (UWord)start, length, + prot, flags, fd, offset); + # elif defined(VGP_x86_darwin) +diff --git a/coregrind/m_aspacemgr/aspacemgr-linux.c b/coregrind/m_aspacemgr/aspacemgr-linux.c +index 232401e60..4b2fe6715 100644 +--- a/coregrind/m_aspacemgr/aspacemgr-linux.c ++++ b/coregrind/m_aspacemgr/aspacemgr-linux.c +@@ -828,6 +828,7 @@ static void sync_check_mapping_callback ( Addr addr, SizeT len, UInt prot, + # if defined(VGA_x86) || defined (VGA_s390x) || \ + defined(VGA_mips32) || defined(VGA_mips64) + sloppyXcheck = True; ++ /* TODO(Shaohua): SW_NOT_COMPLETE */ + # else + sloppyXcheck = False; + # endif +diff --git a/coregrind/m_cache.c b/coregrind/m_cache.c +index 428a4df43..cb004ff5a 100644 +--- a/coregrind/m_cache.c ++++ b/coregrind/m_cache.c +@@ -539,7 +539,8 @@ get_cache_info(VexArchInfo *vai) + #elif defined(VGA_arm) || defined(VGA_ppc32) || \ + defined(VGA_ppc64be) || defined(VGA_ppc64le) || \ + defined(VGA_mips32) || defined(VGA_mips64) || \ +- defined(VGA_arm64) || defined(VGA_nanomips) ++ defined(VGA_arm64) || defined(VGA_nanomips) || \ ++ defined(VGA_sw64) + static Bool + get_cache_info(VexArchInfo *vai) + { +diff --git a/coregrind/m_coredump/coredump-elf.c b/coregrind/m_coredump/coredump-elf.c +index 4a8c29c52..ab24cdbde 100644 +--- a/coregrind/m_coredump/coredump-elf.c ++++ b/coregrind/m_coredump/coredump-elf.c +@@ -246,7 +246,7 @@ static void fill_prstatus(const ThreadState *tst, + const vki_siginfo_t *si) + { + #if defined(VGP_mips32_linux) || defined(VGP_mips64_linux) \ +- || defined(VGP_nanomips_linux) ++ || defined(VGP_nanomips_linux) || defined(VGP_sw64_linux) + vki_elf_greg_t *regs; + #else + struct vki_user_regs_struct *regs; +@@ -281,7 +281,7 @@ static void fill_prstatus(const ThreadState *tst, + /* prs->pr_reg has struct type. Need to take address. */ + regs = (struct vki_user_regs_struct *)&(prs->pr_reg); + #elif defined(VGP_mips32_linux) || defined(VGP_mips64_linux) \ +- || defined(VGP_nanomips_linux) ++ || defined(VGP_nanomips_linux) || defined(VGP_sw64_linux) + regs = (vki_elf_greg_t *)prs->pr_reg; + #else + regs = (struct vki_user_regs_struct *)prs->pr_reg; +@@ -489,6 +489,14 @@ static void fill_prstatus(const ThreadState *tst, + regs[VKI_MIPS32_EF_CP0_STATUS] = arch->vex.guest_CP0_status; + regs[VKI_MIPS32_EF_CP0_EPC] = arch->vex.guest_PC; + # undef DO ++#elif defined(VGP_sw64_linux) ++# define DO(n) regs[n] = arch->vex.guest_r##n ++ DO(1); DO(2); DO(3); DO(4); DO(5); DO(6); DO(7); DO(8); ++ DO(9); DO(10); DO(11); DO(12); DO(13); DO(14); DO(15); DO(16); ++ DO(17); DO(18); DO(19); DO(20); DO(21); DO(22); DO(23); DO(24); ++ DO(25); DO(28); DO(29); DO(30); DO(31); ++ regs[32] = arch->vex.guest_PC; ++# undef DO + #elif defined(VGP_amd64_freebsd) + regs->rflags = LibVEX_GuestAMD64_get_rflags( &arch->vex ); + regs->rsp = arch->vex.guest_RSP; +@@ -654,6 +662,14 @@ static void fill_fpu(const ThreadState *tst, vki_elf_fpregset_t *fpu) + # undef DO + #elif defined(VGP_nanomips_linux) + ++#elif defined(VGP_sw64_linux) ++# define DO(n) (*fpu)[n] = *(const double*)(&arch->vex.guest_f##n) ++ DO(0); DO(1); DO(2); DO(3); DO(4); DO(5); DO(6); DO(7); ++ DO(8); DO(9); DO(10); DO(11); DO(12); DO(13); DO(14); DO(15); ++ DO(16); DO(17); DO(18); DO(19); DO(20); DO(21); DO(22); DO(23); ++ DO(24); DO(25); DO(26); DO(27); DO(28); DO(29); DO(30); DO(31); ++# undef DO ++ + #elif defined(VGP_x86_freebsd) + + #elif defined(VGP_amd64_freebsd) +diff --git a/coregrind/m_debuginfo/d3basics.c b/coregrind/m_debuginfo/d3basics.c +index bcfd45615..fac752e19 100644 +--- a/coregrind/m_debuginfo/d3basics.c ++++ b/coregrind/m_debuginfo/d3basics.c +@@ -555,6 +555,9 @@ static Bool get_Dwarf_Reg( /*OUT*/Addr* a, Word regno, const RegSummary* regs ) + # elif defined(VGP_arm64_linux) + if (regno == 31) { *a = regs->sp; return True; } + if (regno == 29) { *a = regs->fp; return True; } ++# elif defined(VGP_sw64_linux) ++ if (regno == 30) { *a = regs->sp; return True; } ++ if (regno == 15) { *a = regs->fp; return True; } + # else + # error "Unknown platform" + # endif +diff --git a/coregrind/m_debuginfo/debuginfo.c b/coregrind/m_debuginfo/debuginfo.c +index eed134be8..5d99944a4 100644 +--- a/coregrind/m_debuginfo/debuginfo.c ++++ b/coregrind/m_debuginfo/debuginfo.c +@@ -1300,7 +1300,8 @@ ULong VG_(di_notify_mmap)( Addr a, Bool allow_SkFileV, Int use_fd ) + is_ro_map = False; + + # if defined(VGA_x86) || defined(VGA_ppc32) || defined(VGA_mips32) \ +- || defined(VGA_mips64) || defined(VGA_nanomips) ++ || defined(VGA_mips64) || defined(VGA_nanomips) || defined(VGA_sw64) ++ /* TODO(Shaohua): SW_NOT_COMPLETE */ + is_rx_map = seg->hasR && seg->hasX; + is_rw_map = seg->hasR && seg->hasW; + # elif defined(VGA_amd64) || defined(VGA_ppc64be) || defined(VGA_ppc64le) \ +@@ -3105,7 +3106,8 @@ UWord evalCfiExpr ( const XArray* exprs, Int ix, + case Creg_S390_FP: return eec->uregs->fp; + case Creg_S390_LR: return eec->uregs->lr; + # elif defined(VGA_mips32) || defined(VGA_mips64) \ +- || defined(VGA_nanomips) ++ || defined(VGA_nanomips) || defined(VGA_sw64) ++ /* TODO(Shaohua): SW_NOT_COMPLETE */ + case Creg_IA_IP: return eec->uregs->pc; + case Creg_IA_SP: return eec->uregs->sp; + case Creg_IA_BP: return eec->uregs->fp; +@@ -3371,7 +3373,9 @@ static Addr compute_cfa ( const D3UnwindRegs* uregs, + case CFIC_IA_BPREL: + cfa = cfsi_m->cfa_off + uregs->fp; + break; +-# elif defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) ++# elif defined(VGA_mips32) || defined(VGA_mips64) \ ++ || defined(VGA_nanomips) || defined(VGA_sw64) ++ /* TODO(Shaohua): SW_NOT_COMPLETE */ + case CFIC_IA_SPREL: + cfa = cfsi_m->cfa_off + uregs->sp; + break; +@@ -3452,7 +3456,9 @@ Addr ML_(get_CFA) ( Addr ip, Addr sp, Addr fp, + return compute_cfa(&uregs, + min_accessible, max_accessible, ce->di, ce->cfsi_m); + } +-#elif defined(VGA_mips32) || defined(VGA_mips64) ++#elif defined(VGA_mips32) || defined(VGA_mips64) \ ++ || defined(VGA_sw64) ++ /* TODO(Shaohua): SW_NOT_COMPLETE */ + { D3UnwindRegs uregs; + uregs.pc = ip; + uregs.sp = sp; +@@ -3529,7 +3535,9 @@ Bool VG_(use_CF_info) ( /*MOD*/D3UnwindRegs* uregsHere, + ipHere = uregsHere->r15; + # elif defined(VGA_s390x) + ipHere = uregsHere->ia; +-# elif defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) ++# elif defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) \ ++ || defined(VGA_sw64) ++ /* TODO(Shaohua): SW_NOT_COMPLETE */ + ipHere = uregsHere->pc; + # elif defined(VGA_ppc32) || defined(VGA_ppc64be) || defined(VGA_ppc64le) + # elif defined(VGP_arm64_linux) +@@ -3669,7 +3677,9 @@ Bool VG_(use_CF_info) ( /*MOD*/D3UnwindRegs* uregsHere, + COMPUTE(uregsPrev.f5, uregsHere->f5, cfsi_m->f5_how, cfsi_m->f5_off); + COMPUTE(uregsPrev.f6, uregsHere->f6, cfsi_m->f6_how, cfsi_m->f6_off); + COMPUTE(uregsPrev.f7, uregsHere->f7, cfsi_m->f7_how, cfsi_m->f7_off); +-# elif defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) ++# elif defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) \ ++ || defined(VGA_sw64) ++ /* TODO(Shaohua): SW_NOT_COMPLETE */ + COMPUTE(uregsPrev.pc, uregsHere->pc, cfsi_m->ra_how, cfsi_m->ra_off); + COMPUTE(uregsPrev.sp, uregsHere->sp, cfsi_m->sp_how, cfsi_m->sp_off); + COMPUTE(uregsPrev.fp, uregsHere->fp, cfsi_m->fp_how, cfsi_m->fp_off); +@@ -4944,6 +4954,16 @@ SizeT VG_(DebugInfo_get_bss_size)(const DebugInfo* di) + return di->bss_present ? di->bss_size : 0; + } + ++Addr VG_(DebugInfo_get_sbss_avma)(const DebugInfo* di) ++{ ++ return di->sbss_present ? di->sbss_avma : 0; ++} ++ ++SizeT VG_(DebugInfo_get_sbss_size)(const DebugInfo* di) ++{ ++ return di->sbss_present ? di->sbss_size : 0; ++} ++ + Addr VG_(DebugInfo_get_plt_avma)(const DebugInfo* di) + { + return di->plt_present ? di->plt_avma : 0; +diff --git a/coregrind/m_debuginfo/priv_storage.h b/coregrind/m_debuginfo/priv_storage.h +index 441b379d2..a47268722 100644 +--- a/coregrind/m_debuginfo/priv_storage.h ++++ b/coregrind/m_debuginfo/priv_storage.h +@@ -354,7 +354,8 @@ typedef + Int f7_off; + } + DiCfSI_m; +-#elif defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) ++#elif defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) \ ++ || defined(VGA_sw64) + typedef + struct { + UChar cfa_how; /* a CFIC_ value */ +diff --git a/coregrind/m_debuginfo/readdwarf.c b/coregrind/m_debuginfo/readdwarf.c +index 7b8187ee6..fe87483e2 100644 +--- a/coregrind/m_debuginfo/readdwarf.c ++++ b/coregrind/m_debuginfo/readdwarf.c +@@ -2066,6 +2066,10 @@ void ML_(read_debuginfo_dwarf1) ( + # define FP_REG 30 + # define SP_REG 29 + # define RA_REG_DEFAULT 31 ++#elif defined(VGP_sw64_linux) ++# define FP_REG 15 ++# define SP_REG 30 ++# define RA_REG_DEFAULT 26 + #else + # error "Unknown platform" + #endif +@@ -2076,7 +2080,8 @@ void ML_(read_debuginfo_dwarf1) ( + might exist, for Neon/VFP-v3. */ + #if defined(VGP_ppc32_linux) || defined(VGP_ppc64be_linux) \ + || defined(VGP_ppc64le_linux) || defined(VGP_mips32_linux) \ +- || defined(VGP_nanomips_linux) || defined(VGP_mips64_linux) ++ || defined(VGP_nanomips_linux) || defined(VGP_mips64_linux) \ ++ || defined(VGP_sw64_linux) + # define N_CFI_REGS 72 + #elif defined(VGP_arm_linux) + # define N_CFI_REGS 320 +@@ -2392,7 +2397,8 @@ static Bool summarise_context(/*OUT*/Addr* base, + if (ctxs->cfa_is_regoff && ctxs->cfa_reg == SP_REG) { + si_m->cfa_off = ctxs->cfa_off; + # if defined(VGA_x86) || defined(VGA_amd64) || defined(VGA_s390x) \ +- || defined(VGA_mips32) || defined(VGA_nanomips) || defined(VGA_mips64) ++ || defined(VGA_mips32) || defined(VGA_nanomips) \ ++ || defined(VGA_mips64) || defined(VGA_sw64) + si_m->cfa_how = CFIC_IA_SPREL; + # elif defined(VGA_arm) + si_m->cfa_how = CFIC_ARM_R13REL; +@@ -2406,7 +2412,8 @@ static Bool summarise_context(/*OUT*/Addr* base, + if (ctxs->cfa_is_regoff && ctxs->cfa_reg == FP_REG) { + si_m->cfa_off = ctxs->cfa_off; + # if defined(VGA_x86) || defined(VGA_amd64) || defined(VGA_s390x) \ +- || defined(VGA_mips32) || defined(VGA_nanomips) || defined(VGA_mips64) ++ || defined(VGA_mips32) || defined(VGA_nanomips) \ ++ || defined(VGA_mips64) || defined(VGA_sw64) + si_m->cfa_how = CFIC_IA_BPREL; + # elif defined(VGA_arm) + si_m->cfa_how = CFIC_ARM_R12REL; +@@ -2741,7 +2748,9 @@ static Bool summarise_context(/*OUT*/Addr* base, + + return True; + +-# elif defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) ++# elif defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) \ ++ || defined(VGA_sw64) ++ /* TODO(Shaohua): SW_NOT_COMPLETE */ + + /* --- entire tail of this fn specialised for mips --- */ + +@@ -2869,7 +2878,8 @@ static Int copy_convert_CfiExpr_tree ( XArray* dstxa, + if (dwreg == srcuc->ra_reg) + return ML_(CfiExpr_CfiReg)( dstxa, Creg_S390_IA ); + # elif defined(VGA_mips32) || defined(VGA_mips64) \ +- || defined(VGA_nanomips) ++ || defined(VGA_nanomips) || defined(VGA_sw64) ++ /* TODO(Shaohua): SW_NOT_COMPLETE */ + if (dwreg == SP_REG) + return ML_(CfiExpr_CfiReg)( dstxa, Creg_IA_SP ); + if (dwreg == FP_REG) +diff --git a/coregrind/m_debuginfo/readelf.c b/coregrind/m_debuginfo/readelf.c +index fb64ed976..c8a7b3513 100644 +--- a/coregrind/m_debuginfo/readelf.c ++++ b/coregrind/m_debuginfo/readelf.c +@@ -1781,7 +1781,8 @@ static HChar* readlink_path (const HChar *path) + + while (tries > 0) { + SysRes res; +-#if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) ++#if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) + res = VG_(do_syscall4)(__NR_readlinkat, VKI_AT_FDCWD, + (UWord)path, (UWord)buf, bufsiz); + #elif defined(VGO_linux) || defined(VGO_darwin) || defined(VGO_freebsd) +@@ -2702,6 +2703,7 @@ Bool ML_(read_elf_object) ( struct _DebugInfo* di ) + || defined(VGP_arm_linux) || defined (VGP_s390x_linux) \ + || defined(VGP_mips32_linux) || defined(VGP_mips64_linux) \ + || defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) \ + || defined(VGP_x86_solaris) || defined(VGP_amd64_solaris) \ + || defined(VGP_x86_freebsd) || defined(VGP_amd64_freebsd) + /* Accept .plt where mapped as rx (code) */ +diff --git a/coregrind/m_debuginfo/storage.c b/coregrind/m_debuginfo/storage.c +index 961d767b8..37abf87f8 100644 +--- a/coregrind/m_debuginfo/storage.c ++++ b/coregrind/m_debuginfo/storage.c +@@ -248,7 +248,8 @@ void ML_(ppDiCfSI) ( const XArray* /* of CfiExpr */ exprs, + SHOW_HOW(si_m->f6_how, si_m->f6_off); + VG_(printf)(" F7="); + SHOW_HOW(si_m->f7_how, si_m->f7_off); +-# elif defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) ++# elif defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) \ ++ || defined(VGA_sw64) + VG_(printf)(" SP="); + SHOW_HOW(si_m->sp_how, si_m->sp_off); + VG_(printf)(" FP="); +diff --git a/coregrind/m_debuglog.c b/coregrind/m_debuglog.c +index fd6db4beb..467dbb642 100644 +--- a/coregrind/m_debuglog.c ++++ b/coregrind/m_debuglog.c +@@ -601,6 +601,36 @@ static UInt local_sys_getpid ( void ) + return a0; + } + ++#elif defined(VGP_sw64_linux) ++ ++static UInt local_sys_write_stderr ( const HChar* buf, Int n ) ++{ ++ register RegWord v0 asm("$0") = __NR_write; ++ register RegWord a0 asm("$16") = 2; //stderr ++ register RegWord a1 asm("$17") = (RegWord)(Addr)buf; ++ register RegWord a2 asm("$18") = n; ++ ++ __asm__ volatile ( ++ "sys_call 0x83\n\t" //0x83 HMC_callsys in include/asm/hmcall.h ++ : "+r"(v0) ++ : "r" (v0), "r"(a0), "r"(a1), "r"(a2) ++ ); ++ if((UInt)v0 < 0) ++ return (UInt)-1; ++ return (UInt)v0; ++} ++ ++static UInt local_sys_getpid ( void ) ++{ ++ register RegWord v0 asm("$0") = __NR_getpid; ++ __asm__ volatile ( ++ "sys_call 0x83\n\t" ++ : "=r" (v0) ++ : "r" (v0) ++ ); ++ return (UInt)v0; ++} ++ + #elif defined(VGP_x86_solaris) + static UInt local_sys_write_stderr ( const HChar* buf, Int n ) + { +diff --git a/coregrind/m_dispatch/dispatch-sw64-linux.S b/coregrind/m_dispatch/dispatch-sw64-linux.S +new file mode 100644 +index 000000000..12ad4c4fc +--- /dev/null ++++ b/coregrind/m_dispatch/dispatch-sw64-linux.S +@@ -0,0 +1,314 @@ ++/*--------------------------------------------------------------------*/ ++/*--- The core dispatch loop, for jumping to a code address. ---*/ ++/*--- dispatch-sw64-linux.S ---*/ ++/*--------------------------------------------------------------------*/ ++ ++/* ++ This file is part of Valgrind, a dynamic binary instrumentation ++ framework. ++ ++ Copyright (C) 2000-2017 RT-RK ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, see . ++ ++ The GNU General Public License is contained in the file COPYING. ++*/ ++ ++#include "pub_core_basics_asm.h" ++ ++#if defined(VGP_sw64_linux) ++ ++#include "pub_core_dispatch_asm.h" ++#include "pub_core_transtab_asm.h" ++#include "libvex_guest_offsets.h" /* for OFFSET_SW_PC */ ++ ++#define GUEST_STATE_REG $15 ++ ++ ++/*------------------------------------------------------------*/ ++/*--- ---*/ ++/*--- The dispatch loop. VG_(disp_run_translations) is ---*/ ++/*--- used to run all translations, ---*/ ++/*--- including no-redir ones. ---*/ ++/*--- ---*/ ++/*------------------------------------------------------------*/ ++ ++/*----------------------------------------------------*/ ++/*--- Entry and preamble (set everything up) ---*/ ++/*----------------------------------------------------*/ ++ ++/* signature: ++void VG_(disp_run_translations)( UWord* two_words, ++ void* guest_state, ++ Addr host_addr ); ++*/ ++ ++.text ++.globl VG_(disp_run_translations) ++.ent VG_(disp_run_translations) ++VG_(disp_run_translations): ++ .frame $30, 176, $26, 0 ++ .cfi_startproc ++ ++ /* a0 ($16) holds two_words */ ++ /* a1 ($17) holds guest_state */ ++ /* a2 ($18) holds host_addr */ ++ ++ /* New stack frame. Stack must remain 16 aligned (at least) */ ++ subl $30, 176, $30 ++ .cfi_def_cfa_offset 176 ++ ++ /* Save ra */ ++ stl $26, 72($30) ++ .cfi_rel_offset 26, 72 ++ ++ /* ... and s0 - s5 */ ++ stl $9, 80($30) ++ stl $10, 88($30) ++ stl $11, 96($30) ++ stl $12, 104($30) ++ stl $13, 112($30) ++ stl $14, 120($30) ++ ++ /* ... and gp, fp */ ++ stl $29, 128($30) ++ stl $15, 136($30) ++ ++ /* Save a0 ($16) on stack. In postamble it will be restored such that the ++ return values can be written */ ++ stl $16, 144($30) ++ ++ /* Load address of guest state into guest state register */ ++ mov $17, GUEST_STATE_REG ++ ++ /* prefetch guest state into cache, may improve performance */ ++ fillde 0($17) ++ fillde 128($17) ++ ++ /* and jump into the code cache. Chained translations in ++ the code cache run, until for whatever reason, they can't ++ continue. When that happens, the translation in question ++ will jump (or call) to one of the continuation points ++ VG_(cp_...) below. */ ++ jmp $26, ($18), 0 ++ /*NOTREACHED*/ ++/*----------------------------------------------------*/ ++/*--- Postamble and exit. ---*/ ++/*----------------------------------------------------*/ ++ ++postamble: ++ /* Restore $16 from stack; holds address of two_words */ ++ ldl $16, 144($30) ++ ++ /* Save return value to two_words[] */ ++ stl $0, 0($16) /* VG_TRC_* */ ++ stl $1, 8($16) /* patching address for VG_TRC_CHAIN_* */ ++ ++ /* Restore callee-saved registers... */ ++ ++ /* Restore ra */ ++ ldl $26, 72($30) ++ .cfi_restore 26 ++ ++ /* ... and s0 - s5 */ ++ ldl $9, 80($30) ++ ldl $10, 88($30) ++ ldl $11, 96($30) ++ ldl $12, 104($30) ++ ldl $13, 112($30) ++ ldl $14, 120($30) ++ ++ /* ... and gp, fp */ ++ ldl $29, 128($30) ++ ldl $15, 136($30) ++ ++ /* ... and sp */ ++ addl $30, 176, $30 ++ .cfi_def_cfa_offset 0 ++ ++ ret $31, ($26) ++ nop ++.cfi_endproc ++.end VG_(disp_run_translations) ++ ++/*----------------------------------------------------*/ ++/*--- Continuation points ---*/ ++/*----------------------------------------------------*/ ++ ++/* ------ Chain me to slow entry point ------ */ ++.global VG_(disp_cp_chain_me_to_slowEP) ++VG_(disp_cp_chain_me_to_slowEP): ++ ldi $0, VG_TRC_CHAIN_ME_TO_SLOW_EP ++ ++ /* set $1 to patching address ++ <=== patching address start here ++ ldi r2, disp_cp_chain_me_to_slowEP # 20 bytes ++ jmp r1, (r2) # 4 bytes ++ <=== r1 set to here ++ so subtract 24 */ ++ subl $1, 24, $1 ++ br $31, postamble ++ ++/* ------ Chain me to fast entry point ------ */ ++.global VG_(disp_cp_chain_me_to_fastEP) ++VG_(disp_cp_chain_me_to_fastEP): ++ ldi $0, VG_TRC_CHAIN_ME_TO_FAST_EP ++ ++ /* set $1 to patching address ++ <=== patching address start here ++ ldi r2, disp_cp_chain_me_to_fastEP # 20 bytes ++ jmp r1, (r2) # 4 bytes ++ <=== r1 set to here ++ so subtract 24 */ ++ subl $1, 24, $1 ++ br $31, postamble ++ ++/* ------ Indirect but boring jump ------ */ ++.global VG_(disp_cp_xindir) ++VG_(disp_cp_xindir): ++ ++ /* where are we going */ ++ ldl $3, OFFSET_sw64_PC(GUEST_STATE_REG) //guest_state to $3 ++ ++ /* add aspacemgr_start */ ++ // ldi $8, 0x4000000($31) /* linux: aspacemgr_start*/ ++ // addl $3, $8, $3 ++ ++ ++ /* stats only */ ++ ldw $8, VG_(stats__n_xIndirs_32) ++ addw $8, 1, $8 ++ stw $8, VG_(stats__n_xIndirs_32) ++ ++ // Compute r9 = VG_TT_FAST_HASH(guest) ++ srl $3, 2, $9 // g2 = guest >> 2 ++ srl $3, (VG_TT_FAST_BITS + 2), $8 // (g2 >> VG_TT_FAST_BITS) ++ xor $9, $8, $9 // (g2 >> VG_TT_FAST_BITS) ^ g2 ++ ldi $8, VG_TT_FAST_MASK ++ and $9, $8, $9 // setNo ++ ++ // Compute r9 = &VG_(tt_fast)[r9] ++ ldi $8, VG_(tt_fast) ++ sll $9, VG_FAST_CACHE_SET_BITS, $9 ++ addw $9, $8, $9 ++ ++ // LIVE: GUEST_STATE_REG, r3 (guest addr), r9 (cache set) ++ // try way 0 ++ ldl $7, FCS_g0($9) // .guest0 ++ ldl $8, FCS_h0($9) // .host0 ++ cmpeq $7, $3, $1 // cmp against .guest0 ++ beq $1, 1f ++ jmp ($8), 0 // hit at way 0, goto .host0 ++ /*NOTREACHED*/ ++ .long 0x0 ++ ++1: // try way 1 ++ ldl $7, FCS_g1($9) ++ cmpeq $7, $3, $1 // cmp against .guest1 ++ beq $1, 2f ++ // hit at way 1; swap upwards ++ ldl $4, FCS_g0($9) // $11 = old .guest0 ++ ldl $5, FCS_h0($9) // $12 = old .host0 ++ ldl $6, FCS_h1($9) // $13 = old .host1 ++ stl $3, FCS_g0($9) // new .guest0 = guest ++ stl $6, FCS_h0($9) // new .host0 = old .host1 ++ stl $4, FCS_g1($9) // new .guest1 = old .guest0 ++ stl $5, FCS_h1($9) // new .host1 = old .host0 ++ // stats only ++ ldw $8, VG_(stats__n_xIndir_hits1_32) ++ addw $8, 1, $8 ++ stw $8, VG_(stats__n_xIndir_hits1_32) ++ // goto old .host1 a.k.a. new .host0 ++ jmp ($6), 0 ++ /*NOTREACHED*/ ++ .long 0x0 ++ ++2: // try way 2 ++ ldl $7, FCS_g2($9) ++ cmpeq $7, $3, $1 // cmp against .guest2 ++ beq $1, 3f ++ // hit at way 2; swap upwards ++ ldl $4, FCS_g1($9) ++ ldl $5, FCS_h1($9) ++ ldl $6, FCS_h2($9) ++ stl $3, FCS_g1($9) ++ stl $6, FCS_h1($9) ++ stl $4, FCS_g2($9) ++ stl $5, FCS_h2($9) ++ // stats only ++ ldw $8, VG_(stats__n_xIndir_hits2_32) ++ addw $8, 1, $8 ++ stw $8, VG_(stats__n_xIndir_hits2_32) ++ // goto old .host2 a.k.a. new .host1 ++ jmp ($6), 0 ++ /*NOTREACHED*/ ++ .long 0x0 ++ ++3: // try way 3 ++ ldl $7, FCS_g2($9) ++ cmpeq $7, $3, $1 // cmp against .guest3 ++ beq $1, 4f ++ // hit at way 3; swap upwards ++ ldl $4, FCS_g2($9) ++ ldl $5, FCS_h2($9) ++ ldl $6, FCS_h3($9) ++ stl $3, FCS_g2($9) ++ stl $6, FCS_h2($9) ++ stl $4, FCS_g3($9) ++ stl $5, FCS_h3($9) ++ // stats only ++ ldw $8, VG_(stats__n_xIndir_hits3_32) ++ addw $8, 1, $8 ++ stw $8, VG_(stats__n_xIndir_hits3_32) ++ // goto old .host3 a.k.a. new .host2 ++ jmp ($6), 0 ++ /*NOTREACHED*/ ++ .long 0x0 ++ ++4: // fast lookup failed: ++ /* stats only */ ++ ldw $8, VG_(stats__n_xIndir_misses_32) ++ addw $8, 1, $8 ++ stw $8, VG_(stats__n_xIndir_misses_32) ++ ++ ldi $0, VG_TRC_INNER_FASTMISS ++ ldi $1, 0 ++ br $31, postamble ++ /*NOTREACHED*/ ++ .long 0x0 ++ ++/* ------ Assisted jump ------ */ ++.global VG_(disp_cp_xassisted) ++VG_(disp_cp_xassisted): ++ mov GUEST_STATE_REG, $0 ++ ldi $1, 0 ++ br $31, postamble ++ ++/* ------ Event check failed ------ */ ++.global VG_(disp_cp_evcheck_fail) ++VG_(disp_cp_evcheck_fail): ++ ldi $0, VG_TRC_INNER_COUNTERZERO ++ ldi $1, 0 ++ br $31, postamble ++ ++.size VG_(disp_run_translations), .-VG_(disp_run_translations) ++ ++#endif // defined(VGP_sw64_linux) ++ ++/* Let the linker know we don't need an executable stack */ ++MARK_STACK_NO_EXEC ++ ++/*--------------------------------------------------------------------*/ ++/*--- end ---*/ ++/*--------------------------------------------------------------------*/ +diff --git a/coregrind/m_gdbserver/target.c b/coregrind/m_gdbserver/target.c +index f9f32f4aa..1fc30435f 100644 +--- a/coregrind/m_gdbserver/target.c ++++ b/coregrind/m_gdbserver/target.c +@@ -867,6 +867,8 @@ void valgrind_initialize_target(void) + mips64_init_architecture(&the_low_target); + #elif defined(VGA_nanomips) + nanomips_init_architecture(&the_low_target); ++#elif defined(VGA_sw64) ++ sw64_init_architecture(&the_low_target); + #else + #error "architecture missing in target.c valgrind_initialize_target" + #endif +diff --git a/coregrind/m_gdbserver/valgrind-low-sw64.c b/coregrind/m_gdbserver/valgrind-low-sw64.c +new file mode 100644 +index 000000000..78e33e407 +--- /dev/null ++++ b/coregrind/m_gdbserver/valgrind-low-sw64.c +@@ -0,0 +1,257 @@ ++/* Low level interface to valgrind, for the remote server for GDB integrated ++ in valgrind. ++ Copyright (C) 2011 ++ Free Software Foundation, Inc. ++ ++ This file is part of VALGRIND. ++ It has been inspired from a file from gdbserver in gdb 6.6. ++ ++ This program is free software; you can redistribute it and/or modify ++ it under the terms of the GNU General Public License as published by ++ the Free Software Foundation; either version 2 of the License, or ++ (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ GNU General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, write to the Free Software ++ Foundation, Inc., 51 Franklin Street, Fifth Floor, ++ Boston, MA 02110-1301, USA. */ ++ ++#include "server.h" ++#include "target.h" ++#include "regdef.h" ++#include "regcache.h" ++ ++#include "pub_core_machine.h" ++#include "pub_core_debuginfo.h" ++#include "pub_core_threadstate.h" ++#include "pub_core_transtab.h" ++#include "pub_core_gdbserver.h" ++ ++#include "valgrind_low.h" ++ ++#include "libvex_guest_sw64.h" ++ ++static struct reg regs[] = { ++ { "r0", 0, 64 }, ++ { "r1", 64, 64 }, ++ { "r2", 128, 64 }, ++ { "r3", 192, 64 }, ++ { "r4", 256, 64 }, ++ { "r5", 320, 64 }, ++ { "r6", 384, 64 }, ++ { "r7", 448, 64 }, ++ { "r8", 512, 64 }, ++ { "r9", 576, 64 }, ++ { "r10", 640, 64 }, ++ { "r11", 704, 64 }, ++ { "r12", 768, 64 }, ++ { "r13", 832, 64 }, ++ { "r14", 896, 64 }, ++ { "r15", 960, 64 }, ++ { "r16", 1024, 64 }, ++ { "r17", 1088, 64 }, ++ { "r18", 1152, 64 }, ++ { "r19", 1216, 64 }, ++ { "r20", 1280, 64 }, ++ { "r21", 1344, 64 }, ++ { "r22", 1408, 64 }, ++ { "r23", 1472, 64 }, ++ { "r24", 1536, 64 }, ++ { "r25", 1600, 64 }, ++ { "r26", 1664, 64 }, ++ { "r27", 1728, 64 }, ++ { "r28", 1792, 64 }, ++ { "r29", 1856, 64 }, ++ { "r30", 1920, 64 }, ++ { "r31", 1984, 64 }, ++ ++ { "f0", 2048, 64 }, ++ { "f1", 2112, 64 }, ++ { "f2", 2176, 64 }, ++ { "f3", 2240, 64 }, ++ { "f4", 2304, 64 }, ++ { "f5", 2368, 64 }, ++ { "f6", 2432, 64 }, ++ { "f7", 2496, 64 }, ++ { "f8", 2560, 64 }, ++ { "f9", 2624, 64 }, ++ { "f10", 2688, 64 }, ++ { "f11", 2752, 64 }, ++ { "f12", 2816, 64 }, ++ { "f13", 2880, 64 }, ++ { "f14", 2944, 64 }, ++ { "f15", 3008, 64 }, ++ { "f16", 3072, 64 }, ++ { "f17", 3136, 64 }, ++ { "f18", 3200, 64 }, ++ { "f19", 3264, 64 }, ++ { "f20", 3328, 64 }, ++ { "f21", 3392, 64 }, ++ { "f22", 3456, 64 }, ++ { "f23", 3520, 64 }, ++ { "f24", 3584, 64 }, ++ { "f25", 3648, 64 }, ++ { "f26", 3712, 64 }, ++ { "f27", 3776, 64 }, ++ { "f28", 3840, 64 }, ++ { "f29", 3904, 64 }, ++ { "f30", 3968, 64 }, ++ { "fpcr", 4032, 64 }, ++ ++ { "pc", 4096, 64 }, ++ ++ { "", 4160, 64 }, ++ { "unique", 4224, 64 }, ++}; ++ ++static const char *expedite_regs[] = { "r15", "r30", "pc", 0 }; /* fp, sp, pc */ ++ ++#define num_regs (sizeof (regs) / sizeof (regs[0])) ++ ++static ++CORE_ADDR get_pc (void) ++{ ++ unsigned long pc; ++ ++ collect_register_by_name ("pc", &pc); ++ ++ dlog(1, "stop pc is %p\n", (void *) pc); ++ return pc; ++} ++ ++static ++void set_pc (CORE_ADDR newpc) ++{ ++ Bool mod; ++ supply_register_by_name ("pc", &newpc); ++ if (mod) ++ dlog(1, "set pc to %p\n", C2v (newpc)); ++ else ++ dlog(1, "set pc not changed %p\n", C2v (newpc)); ++} ++ ++/* store registers in the guest state (gdbserver_to_valgrind) ++ or fetch register from the guest state (valgrind_to_gdbserver). */ ++static ++void transfer_register (ThreadId tid, int abs_regno, void * buf, ++ transfer_direction dir, int size, Bool *mod) ++{ ++ ThreadState* tst = VG_(get_ThreadState)(tid); ++ int set = abs_regno / num_regs; ++ int regno = abs_regno % num_regs; ++ *mod = False; ++ ++ VexGuestSW64State* sw = (VexGuestSW64State*) get_arch (set, tst); ++ ++ switch (regno) { ++ case 0: VG_(transfer) (&sw->guest_r0, buf, dir, size, mod); break; /* regnum = 0 */ ++ case 1: VG_(transfer) (&sw->guest_r1, buf, dir, size, mod); break; ++ case 2: VG_(transfer) (&sw->guest_r2, buf, dir, size, mod); break; ++ case 3: VG_(transfer) (&sw->guest_r3, buf, dir, size, mod); break; ++ case 4: VG_(transfer) (&sw->guest_r4, buf, dir, size, mod); break; ++ case 5: VG_(transfer) (&sw->guest_r5, buf, dir, size, mod); break; ++ case 6: VG_(transfer) (&sw->guest_r6, buf, dir, size, mod); break; ++ case 7: VG_(transfer) (&sw->guest_r7, buf, dir, size, mod); break; ++ case 8: VG_(transfer) (&sw->guest_r8, buf, dir, size, mod); break; ++ case 9: VG_(transfer) (&sw->guest_r9, buf, dir, size, mod); break; ++ case 10: VG_(transfer) (&sw->guest_r10, buf, dir, size, mod); break; ++ case 11: VG_(transfer) (&sw->guest_r11, buf, dir, size, mod); break; ++ case 12: VG_(transfer) (&sw->guest_r12, buf, dir, size, mod); break; ++ case 13: VG_(transfer) (&sw->guest_r13, buf, dir, size, mod); break; ++ case 14: VG_(transfer) (&sw->guest_r14, buf, dir, size, mod); break; ++ case 15: VG_(transfer) (&sw->guest_r15, buf, dir, size, mod); break; ++ case 16: VG_(transfer) (&sw->guest_r16, buf, dir, size, mod); break; ++ case 17: VG_(transfer) (&sw->guest_r17, buf, dir, size, mod); break; ++ case 18: VG_(transfer) (&sw->guest_r18, buf, dir, size, mod); break; ++ case 19: VG_(transfer) (&sw->guest_r19, buf, dir, size, mod); break; ++ case 20: VG_(transfer) (&sw->guest_r20, buf, dir, size, mod); break; ++ case 21: VG_(transfer) (&sw->guest_r21, buf, dir, size, mod); break; ++ case 22: VG_(transfer) (&sw->guest_r22, buf, dir, size, mod); break; ++ case 23: VG_(transfer) (&sw->guest_r23, buf, dir, size, mod); break; ++ case 24: VG_(transfer) (&sw->guest_r24, buf, dir, size, mod); break; ++ case 25: VG_(transfer) (&sw->guest_r25, buf, dir, size, mod); break; ++ case 26: VG_(transfer) (&sw->guest_r26, buf, dir, size, mod); break; ++ case 27: VG_(transfer) (&sw->guest_r27, buf, dir, size, mod); break; ++ case 28: VG_(transfer) (&sw->guest_r28, buf, dir, size, mod); break; ++ case 29: VG_(transfer) (&sw->guest_r29, buf, dir, size, mod); break; ++ case 30: VG_(transfer) (&sw->guest_r30, buf, dir, size, mod); break; ++ case 31: VG_(transfer) (&sw->guest_r31, buf, dir, size, mod); break; ++ ++ case 32: VG_(transfer) (&sw->guest_f0, buf, dir, size, mod); break; /* regnum = 32 */ ++ case 33: VG_(transfer) (&sw->guest_f1, buf, dir, size, mod); break; ++ case 34: VG_(transfer) (&sw->guest_f2, buf, dir, size, mod); break; ++ case 35: VG_(transfer) (&sw->guest_f3, buf, dir, size, mod); break; ++ case 36: VG_(transfer) (&sw->guest_f4, buf, dir, size, mod); break; ++ case 37: VG_(transfer) (&sw->guest_f5, buf, dir, size, mod); break; ++ case 38: VG_(transfer) (&sw->guest_f6, buf, dir, size, mod); break; ++ case 39: VG_(transfer) (&sw->guest_f7, buf, dir, size, mod); break; ++ case 40: VG_(transfer) (&sw->guest_f8, buf, dir, size, mod); break; ++ case 41: VG_(transfer) (&sw->guest_f9, buf, dir, size, mod); break; ++ case 42: VG_(transfer) (&sw->guest_f10, buf, dir, size, mod); break; ++ case 43: VG_(transfer) (&sw->guest_f11, buf, dir, size, mod); break; ++ case 44: VG_(transfer) (&sw->guest_f12, buf, dir, size, mod); break; ++ case 45: VG_(transfer) (&sw->guest_f13, buf, dir, size, mod); break; ++ case 46: VG_(transfer) (&sw->guest_f14, buf, dir, size, mod); break; ++ case 47: VG_(transfer) (&sw->guest_f15, buf, dir, size, mod); break; ++ case 48: VG_(transfer) (&sw->guest_f16, buf, dir, size, mod); break; ++ case 49: VG_(transfer) (&sw->guest_f17, buf, dir, size, mod); break; ++ case 50: VG_(transfer) (&sw->guest_f18, buf, dir, size, mod); break; ++ case 51: VG_(transfer) (&sw->guest_f19, buf, dir, size, mod); break; ++ case 52: VG_(transfer) (&sw->guest_f20, buf, dir, size, mod); break; ++ case 53: VG_(transfer) (&sw->guest_f21, buf, dir, size, mod); break; ++ case 54: VG_(transfer) (&sw->guest_f22, buf, dir, size, mod); break; ++ case 55: VG_(transfer) (&sw->guest_f23, buf, dir, size, mod); break; ++ case 56: VG_(transfer) (&sw->guest_f24, buf, dir, size, mod); break; ++ case 57: VG_(transfer) (&sw->guest_f25, buf, dir, size, mod); break; ++ case 58: VG_(transfer) (&sw->guest_f26, buf, dir, size, mod); break; ++ case 59: VG_(transfer) (&sw->guest_f27, buf, dir, size, mod); break; ++ case 60: VG_(transfer) (&sw->guest_f28, buf, dir, size, mod); break; ++ case 61: VG_(transfer) (&sw->guest_f29, buf, dir, size, mod); break; ++ case 62: VG_(transfer) (&sw->guest_f30, buf, dir, size, mod); break; ++ case 63: VG_(transfer) (&sw->guest_FPCR, buf, dir, size, mod); break; ++ ++ case 64: VG_(transfer) (&sw->guest_PC, buf, dir, size, mod); break; /* regnum = 64 */ ++ ++ case 65: *mod = False; break; /* regnum = 65, no name, don't know what is it */ ++ case 66: VG_(transfer) (&sw->guest_TID, buf, dir, size, mod); break; /* regnum = 66 */ ++ ++ default: VG_(printf)("regno: %d\n", regno); vg_assert(0); ++ } ++} ++ ++static ++const char* target_xml (Bool shadow_mode) ++{ ++ return NULL; ++} ++ ++static CORE_ADDR** target_get_dtv (ThreadState *tst) ++{ ++ VexGuestSW64State* sw64 = (VexGuestSW64State*)&tst->arch.vex; ++ return (CORE_ADDR**)((CORE_ADDR)sw64->guest_TID); ++} ++ ++static struct valgrind_target_ops low_target = { ++ num_regs, ++ //regs, ++ 30, //sp = r30, which is register offset 30 in regs ++ regs, ++ transfer_register, ++ get_pc, ++ set_pc, ++ "sw64", ++ target_xml, ++ target_get_dtv ++}; ++ ++void sw64_init_architecture (struct valgrind_target_ops *target) ++{ ++ *target = low_target; ++ set_register_cache (regs, num_regs); ++ gdbserver_expedite_regs = expedite_regs; ++} +diff --git a/coregrind/m_gdbserver/valgrind_low.h b/coregrind/m_gdbserver/valgrind_low.h +index d8ae3c908..f12d2b3ef 100644 +--- a/coregrind/m_gdbserver/valgrind_low.h ++++ b/coregrind/m_gdbserver/valgrind_low.h +@@ -109,5 +109,6 @@ extern void s390x_init_architecture (struct valgrind_target_ops *target); + extern void mips32_init_architecture (struct valgrind_target_ops *target); + extern void mips64_init_architecture (struct valgrind_target_ops *target); + extern void nanomips_init_architecture (struct valgrind_target_ops *target); ++extern void sw64_init_architecture (struct valgrind_target_ops *target); + + #endif +diff --git a/coregrind/m_initimg/initimg-linux.c b/coregrind/m_initimg/initimg-linux.c +index 7a7d45335..35aebb798 100644 +--- a/coregrind/m_initimg/initimg-linux.c ++++ b/coregrind/m_initimg/initimg-linux.c +@@ -547,9 +547,9 @@ Addr setup_client_stack( void* init_sp, + vg_assert(VG_IS_PAGE_ALIGNED(resvn_start)); + vg_assert(resvn_start == clstack_end + 1 - clstack_max_size); + +-# ifdef ENABLE_INNER ++#if defined( ENABLE_INNER) || defined( VGP_sw64_linux ) + inner_HACK = 1024*1024; // create 1M non-fault-extending stack +-# endif ++#endif + + if (0) + VG_(printf)("%#lx 0x%lx %#lx 0x%lx\n", +@@ -913,7 +913,8 @@ Addr setup_client_stack( void* init_sp, + && !defined(VGP_ppc64le_linux) \ + && !defined(VGP_mips32_linux) && !defined(VGP_mips64_linux) \ + && !defined(VGP_nanomips_linux) \ +- && !defined(VGP_s390x_linux) ++ && !defined(VGP_s390x_linux) \ ++ && !defined(VGP_sw64_linux) + case AT_SYSINFO_EHDR: { + /* Trash this, because we don't reproduce it */ + const NSegment* ehdrseg = VG_(am_find_nsegment)((Addr)auxv->u.a_ptr); +@@ -1173,7 +1174,7 @@ IIFinaliseImageInfo VG_(ii_create_image)( IICreateImageInfo iicii, + starting values. This is handed the IIFinaliseImageInfo created by + VG_(ii_create_image). + */ +-void VG_(ii_finalise_image)( IIFinaliseImageInfo iifii ) ++void VG_(ii_finalise_image)( IIFinaliseImageInfo iifii, IICreateImageInfo iicii ) + { + ThreadArchState* arch = &VG_(threads)[1].arch; + +@@ -1344,6 +1345,23 @@ void VG_(ii_finalise_image)( IIFinaliseImageInfo iifii ) + arch->vex.guest_PC = iifii.initial_client_IP; + arch->vex.guest_r31 = iifii.initial_client_SP; + ++# elif defined(VGP_sw64_linux) ++ vg_assert(0 == sizeof(VexGuestSW64State) % LibVEX_GUEST_STATE_ALIGN); ++ /* Zero out the initial state, and set up the simulated FPU in a sane way. */ ++ LibVEX_GuestSW64_initialise(&arch->vex); ++ ++ /* Zero out the shadow areas. */ ++ VG_(memset)(&arch->vex_shadow1, 0, sizeof(VexGuestSW64State)); ++ VG_(memset)(&arch->vex_shadow2, 0, sizeof(VexGuestSW64State)); ++ ++ arch->vex.guest_r30 = iifii.initial_client_SP; //sp ++ // sw: the stack growth direction is from high address to lower address ++ // arch->vex.guest_r30 = iicii.clstack_end - 16; ++ // Addr* ptr = (Addr*)(iicii.clstack_end - 16); ++ // *ptr = 1; //not true ++ arch->vex.guest_PC = iifii.initial_client_IP; //pc ++ arch->vex.guest_r26 = iifii.initial_client_SP; //ra ++ + # else + # error Unknown platform + # endif +diff --git a/coregrind/m_libcassert.c b/coregrind/m_libcassert.c +index 0b04bfcc1..6b92a46ef 100644 +--- a/coregrind/m_libcassert.c ++++ b/coregrind/m_libcassert.c +@@ -264,6 +264,28 @@ + (srP)->misc.MIPS32.r31 = (UInt)ra; \ + (srP)->misc.MIPS32.r28 = (UInt)gp; \ + } ++#elif defined(VGP_sw64_linux) ++# define GET_STARTREGS(srP) \ ++ { ULong pc, sp, fp, ra, gp; \ ++ asm(" br %0, 0f\n" /* restore pc */ \ ++ "0:\n" \ ++ " mov $30, %1\n" /* restore sp */ \ ++ " mov $15, %2\n" /* restore fp */ \ ++ " mov $26, %3\n" /* restore ra */ \ ++ " mov $29, %4\n" /* restore gp */ \ ++ : "=r" (pc), \ ++ "=r" (sp), \ ++ "=r" (fp), \ ++ "=r" (ra), \ ++ "=r" (gp) \ ++ : /* reads none */ \ ++ ); \ ++ (srP)->r_pc = (ULong)pc - 4; \ ++ (srP)->r_sp = (ULong)sp; \ ++ (srP)->misc.SW64.r15 = (ULong)fp; \ ++ (srP)->misc.SW64.r26 = (ULong)ra; \ ++ (srP)->misc.SW64.r29 = (ULong)gp; \ ++ } + #else + # error Unknown platform + #endif +diff --git a/coregrind/m_libcfile.c b/coregrind/m_libcfile.c +index 5d3a349f2..42d2e8b7a 100644 +--- a/coregrind/m_libcfile.c ++++ b/coregrind/m_libcfile.c +@@ -268,6 +268,9 @@ SysRes VG_(mknod) ( const HChar* pathname, Int mode, UWord dev ) + /* ARM64 wants to use __NR_mknodat rather than __NR_mknod. */ + SysRes res = VG_(do_syscall4)(__NR_mknodat, + VKI_AT_FDCWD, (UWord)pathname, mode, dev); ++# elif defined(VGP_sw64_linux) ++ SysRes res = VG_(do_syscall4)(__NR_mknodat, ++ VKI_AT_FDCWD, (UWord)pathname, mode, dev); + # elif defined(VGO_linux) || defined(VGO_darwin) + SysRes res = VG_(do_syscall3)(__NR_mknod, + (UWord)pathname, mode, dev); +@@ -384,7 +387,8 @@ Int VG_(pipe) ( Int fd[2] ) + } else { + return -1; + } +-# elif defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) ++# elif defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) + SysRes res = VG_(do_syscall2)(__NR_pipe2, (UWord)fd, 0); + return sr_isError(res) ? -1 : 0; + # elif defined(VGO_linux) +@@ -464,6 +468,28 @@ Off64T VG_(lseek) ( Int fd, Off64T offset, Int whence ) + 'struct vg_stat' in order to have a single structure that callers + can use consistently on all platforms. */ + ++#if defined(VGP_sw64_linux) ++#define TRANSLATE_TO_vg_stat(_p_vgstat, _p_vkistat) \ ++ do { \ ++ (_p_vgstat)->dev = (ULong)( (_p_vkistat)->st_dev ); \ ++ (_p_vgstat)->ino = (ULong)( (_p_vkistat)->st_ino ); \ ++ (_p_vgstat)->nlink = (ULong)( (_p_vkistat)->st_nlink ); \ ++ (_p_vgstat)->mode = (UInt) ( (_p_vkistat)->st_mode ); \ ++ (_p_vgstat)->uid = (UInt) ( (_p_vkistat)->st_uid ); \ ++ (_p_vgstat)->gid = (UInt) ( (_p_vkistat)->st_gid ); \ ++ (_p_vgstat)->rdev = (ULong)( (_p_vkistat)->st_rdev ); \ ++ (_p_vgstat)->size = (Long) ( (_p_vkistat)->st_size ); \ ++ (_p_vgstat)->blksize = (ULong)( (_p_vkistat)->st_blksize ); \ ++ (_p_vgstat)->blocks = (ULong)( (_p_vkistat)->st_blocks ); \ ++ (_p_vgstat)->atime = (ULong)( (_p_vkistat)->st_atime ); \ ++ (_p_vgstat)->atime_nsec = (ULong)( 0 ); \ ++ (_p_vgstat)->mtime = (ULong)( (_p_vkistat)->st_mtime ); \ ++ (_p_vgstat)->mtime_nsec = (ULong)( 0 ); \ ++ (_p_vgstat)->ctime = (ULong)( (_p_vkistat)->st_ctime ); \ ++ (_p_vgstat)->ctime_nsec = (ULong)( 0 ); \ ++ } while (0) ++#else /* if defined(VGP_sw64_linux) */ ++ + #define TRANSLATE_TO_vg_stat(_p_vgstat, _p_vkistat) \ + do { \ + (_p_vgstat)->dev = (ULong)( (_p_vkistat)->st_dev ); \ +@@ -483,6 +509,7 @@ Off64T VG_(lseek) ( Int fd, Off64T offset, Int whence ) + (_p_vgstat)->ctime = (ULong)( (_p_vkistat)->st_ctime ); \ + (_p_vgstat)->ctime_nsec = (ULong)( (_p_vkistat)->st_ctime_nsec ); \ + } while (0) ++#endif /* if defined(VGP_sw64_linux) */ + + #define TRANSLATE_statx_TO_vg_stat(_p_vgstat, _p_vkistat) \ + do { \ +@@ -731,7 +758,8 @@ SysRes VG_(dup) ( Int oldfd ) + + SysRes VG_(dup2) ( Int oldfd, Int newfd ) + { +-# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) ++# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) + /* We only have dup3, that means we have to mimic dup2. + The only real difference is when oldfd == newfd. + dup3 always returns an error, but dup2 returns only an +@@ -774,7 +802,8 @@ Int VG_(fcntl) ( Int fd, Int cmd, Addr arg ) + + Int VG_(rename) ( const HChar* old_name, const HChar* new_name ) + { +-# if defined(VGO_solaris) || defined(VGP_arm64_linux) ++# if defined(VGO_solaris) || defined(VGP_arm64_linux) \ ++ || defined(VGP_sw64_linux) + SysRes res = VG_(do_syscall4)(__NR_renameat, VKI_AT_FDCWD, (UWord)old_name, + VKI_AT_FDCWD, (UWord)new_name); + # elif defined(VGP_nanomips_linux) +@@ -791,7 +820,8 @@ Int VG_(rename) ( const HChar* old_name, const HChar* new_name ) + + Int VG_(unlink) ( const HChar* file_name ) + { +-# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) ++# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) + SysRes res = VG_(do_syscall2)(__NR_unlinkat, VKI_AT_FDCWD, + (UWord)file_name); + # elif defined(VGO_linux) || defined(VGO_darwin) || defined(VGO_freebsd) +@@ -870,7 +900,8 @@ const HChar *VG_(get_startup_wd) ( void ) + SysRes VG_(poll) (struct vki_pollfd *fds, Int nfds, Int timeout) + { + SysRes res; +-# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) ++# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) + /* ARM64 wants to use __NR_ppoll rather than __NR_poll. */ + struct vki_timespec timeout_ts; + if (timeout >= 0) { +@@ -915,7 +946,8 @@ SSizeT VG_(readlink) (const HChar* path, HChar* buf, SizeT bufsiz) + { + SysRes res; + /* res = readlink( path, buf, bufsiz ); */ +-# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) ++# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) + res = VG_(do_syscall4)(__NR_readlinkat, VKI_AT_FDCWD, + (UWord)path, (UWord)buf, bufsiz); + # elif defined(VGO_linux) || defined(VGO_darwin) || defined(VGO_freebsd) +@@ -994,7 +1026,8 @@ Int VG_(access) ( const HChar* path, Bool irusr, Bool iwusr, Bool ixusr ) + UWord w = (irusr ? VKI_R_OK : 0) + | (iwusr ? VKI_W_OK : 0) + | (ixusr ? VKI_X_OK : 0); +-# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) ++# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) + SysRes res = VG_(do_syscall3)(__NR_faccessat, VKI_AT_FDCWD, (UWord)path, w); + # elif defined(VGO_linux) || defined(VGO_darwin) || defined(VGO_freebsd) + SysRes res = VG_(do_syscall2)(__NR_access, (UWord)path, w); +@@ -1140,7 +1173,8 @@ SysRes VG_(pread) ( Int fd, void* buf, Int count, OffT offset ) + return res; + # elif defined(VGP_amd64_linux) || defined(VGP_s390x_linux) \ + || defined(VGP_ppc64be_linux) || defined(VGP_ppc64le_linux) \ +- || defined(VGP_mips64_linux) || defined(VGP_arm64_linux) ++ || defined(VGP_mips64_linux) || defined(VGP_arm64_linux) \ ++ || defined(VGP_sw64_linux) + res = VG_(do_syscall4)(__NR_pread64, fd, (UWord)buf, count, offset); + return res; + # elif defined(VGP_amd64_freebsd) +@@ -1404,7 +1438,8 @@ Int VG_(socket) ( Int domain, Int type, Int protocol ) + + # elif defined(VGP_amd64_linux) || defined(VGP_arm_linux) \ + || defined(VGP_mips32_linux) || defined(VGP_mips64_linux) \ +- || defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) || defined(VGO_freebsd) ++ || defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) || defined(VGO_freebsd) + SysRes res; + res = VG_(do_syscall3)(__NR_socket, domain, type, protocol ); + return sr_isError(res) ? -1 : sr_Res(res); +@@ -1459,7 +1494,8 @@ Int my_connect ( Int sockfd, struct vki_sockaddr_in* serv_addr, Int addrlen ) + + # elif defined(VGP_amd64_linux) || defined(VGP_arm_linux) \ + || defined(VGP_mips32_linux) || defined(VGP_mips64_linux) \ +- || defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) || defined(VGO_freebsd) ++ || defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) || defined(VGO_freebsd) + SysRes res; + res = VG_(do_syscall3)(__NR_connect, sockfd, (UWord)serv_addr, addrlen); + return sr_isError(res) ? -1 : sr_Res(res); +@@ -1506,7 +1542,8 @@ Int VG_(write_socket)( Int sd, const void *msg, Int count ) + + # elif defined(VGP_amd64_linux) || defined(VGP_arm_linux) \ + || defined(VGP_mips32_linux) || defined(VGP_mips64_linux) \ +- || defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) || defined(VGO_freebsd) ++ || defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) || defined(VGO_freebsd) + SysRes res; + res = VG_(do_syscall6)(__NR_sendto, sd, (UWord)msg, + count, VKI_MSG_NOSIGNAL, 0,0); +@@ -1544,7 +1581,8 @@ Int VG_(getsockname) ( Int sd, struct vki_sockaddr *name, Int *namelen) + # elif defined(VGP_amd64_linux) || defined(VGP_arm_linux) \ + || defined(VGP_mips64_linux) || defined(VGP_arm64_linux) \ + || defined(VGP_nanomips_linux) || defined(VGO_freebsd) \ +- || defined(VGP_mips64_linux) || defined(VGP_arm64_linux) ++ || defined(VGP_mips64_linux) || defined(VGP_arm64_linux) \ ++ || defined(VGP_sw64_linux) + SysRes res; + res = VG_(do_syscall3)( __NR_getsockname, + (UWord)sd, (UWord)name, (UWord)namelen ); +@@ -1583,7 +1621,8 @@ Int VG_(getpeername) ( Int sd, struct vki_sockaddr *name, Int *namelen) + + # elif defined(VGP_amd64_linux) || defined(VGP_arm_linux) \ + || defined(VGP_mips64_linux) || defined(VGP_arm64_linux) \ +- || defined(VGP_nanomips_linux) || defined(VGO_freebsd) ++ || defined(VGP_nanomips_linux) || defined(VGP_sw64_linux) \ ++ || defined(VGO_freebsd) + SysRes res; + res = VG_(do_syscall3)( __NR_getpeername, + (UWord)sd, (UWord)name, (UWord)namelen ); +@@ -1625,7 +1664,7 @@ Int VG_(getsockopt) ( Int sd, Int level, Int optname, void *optval, + # elif defined(VGP_amd64_linux) || defined(VGP_arm_linux) \ + || defined(VGP_mips32_linux) || defined(VGP_mips64_linux) \ + || defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ +- || defined(VGO_freebsd) ++ || defined(VGP_sw64_linux) || defined(VGO_freebsd) + SysRes res; + res = VG_(do_syscall5)( __NR_getsockopt, + (UWord)sd, (UWord)level, (UWord)optname, +@@ -1669,7 +1708,8 @@ Int VG_(setsockopt) ( Int sd, Int level, Int optname, void *optval, + + # elif defined(VGP_amd64_linux) || defined(VGP_arm_linux) \ + || defined(VGP_mips32_linux) || defined(VGP_mips64_linux) \ +- || defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) ++ || defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) + SysRes res; + res = VG_(do_syscall5)( __NR_setsockopt, + (UWord)sd, (UWord)level, (UWord)optname, +diff --git a/coregrind/m_libcproc.c b/coregrind/m_libcproc.c +index 592d69bf1..5b4ca3a22 100644 +--- a/coregrind/m_libcproc.c ++++ b/coregrind/m_libcproc.c +@@ -698,7 +698,8 @@ Int VG_(gettid)(void) + * the /proc/self link is pointing... + */ + +-# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) ++# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) + res = VG_(do_syscall4)(__NR_readlinkat, VKI_AT_FDCWD, + (UWord)"/proc/self", + (UWord)pid, sizeof(pid)); +@@ -753,7 +754,8 @@ Int VG_(getpid) ( void ) + Int VG_(getpgrp) ( void ) + { + /* ASSUMES SYSCALL ALWAYS SUCCEEDS */ +-# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) ++# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) + return sr_Res( VG_(do_syscall1)(__NR_getpgid, 0) ); + # elif defined(VGO_linux) || defined(VGO_darwin) || defined(VGO_freebsd) + return sr_Res( VG_(do_syscall0)(__NR_getpgrp) ); +@@ -850,7 +852,7 @@ Int VG_(getgroups)( Int size, UInt* list ) + || defined(VGO_darwin) || defined(VGP_s390x_linux) \ + || defined(VGP_mips32_linux) || defined(VGP_arm64_linux) \ + || defined(VGO_solaris) || defined(VGP_nanomips_linux) \ +- || defined(VGO_freebsd) ++ || defined(VGP_sw64_linux) || defined(VGO_freebsd) + SysRes sres; + sres = VG_(do_syscall2)(__NR_getgroups, size, (Addr)list); + if (sr_isError(sres)) +@@ -944,7 +946,8 @@ Int VG_(fork) ( void ) + fds[0] = fds[1] = -1; + } + +-# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) ++# if defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) + SysRes res; + res = VG_(do_syscall5)(__NR_clone, VKI_SIGCHLD, + (UWord)NULL, (UWord)NULL, (UWord)NULL, (UWord)NULL); +@@ -1422,6 +1425,13 @@ void VG_(invalidate_icache) ( void *ptr, SizeT nbytes ) + + __builtin___clear_cache(ptr, (char*)ptr + nbytes); + ++# elif defined(VGA_sw64) ++ __builtin___clear_cache(ptr, (char*)ptr + nbytes); ++ ++# else ++ VG_(core_panic)( ++ "TODO: impl invalidate_icache for this architecture"); ++ + # endif + } + +diff --git a/coregrind/m_machine.c b/coregrind/m_machine.c +index a4c2218bf..940516ca0 100644 +--- a/coregrind/m_machine.c ++++ b/coregrind/m_machine.c +@@ -152,6 +152,15 @@ void VG_(get_UnwindStartRegs) ( /*OUT*/UnwindStartRegs* regs, + = VG_(threads)[tid].arch.vex.guest_r31; + regs->misc.MIPS64.r28 + = VG_(threads)[tid].arch.vex.guest_r28; ++# elif defined(VGA_sw64) ++ regs->r_pc = VG_(threads)[tid].arch.vex.guest_PC; ++ regs->r_sp = VG_(threads)[tid].arch.vex.guest_r30; ++ regs->misc.SW64.r15 ++ = VG_(threads)[tid].arch.vex.guest_r15; //fp ++ regs->misc.SW64.r26 ++ = VG_(threads)[tid].arch.vex.guest_r26; //ra ++ regs->misc.SW64.r29 ++ = VG_(threads)[tid].arch.vex.guest_r29; //gp + # else + # error "Unknown arch" + # endif +@@ -304,7 +313,8 @@ static void apply_to_GPs_of_tid(ThreadId tid, void (*f)(ThreadId, + (*f)(tid, "r13", vex->guest_r13); + (*f)(tid, "r14", vex->guest_r14); + (*f)(tid, "r15", vex->guest_r15); +-#elif defined(VGA_mips32) || defined(VGA_mips64) || defined(VGP_nanomips_linux) ++#elif defined(VGA_mips32) || defined(VGA_mips64) \ ++ || defined(VGP_nanomips_linux) || defined(VGA_sw64) + (*f)(tid, "r0" , vex->guest_r0 ); + (*f)(tid, "r1" , vex->guest_r1 ); + (*f)(tid, "r2" , vex->guest_r2 ); +@@ -861,6 +871,60 @@ static Bool VG_(parse_cpuinfo)(void) + + #endif /* defined(VGP_arm64_linux) */ + ++#if defined(VGP_sw64_linux) ++static Bool VG_(parse_cpuinfo)(void) ++{ ++ Int n, fh; ++ SysRes fd; ++ SizeT num_bytes, file_buf_size; ++ HChar *file_buf; ++ ++ /* Slurp contents of /proc/cpuinfo into FILE_BUF */ ++ fd = VG_(open)( "/proc/cpuinfo", 0, VKI_S_IRUSR ); ++ if ( sr_isError(fd) ) return False; ++ ++ fh = sr_Res(fd); ++ ++ /* Determine the size of /proc/cpuinfo. ++ Work around broken-ness in /proc file system implementation. ++ fstat returns a zero size for /proc/cpuinfo although it is ++ claimed to be a regular file. */ ++ num_bytes = 0; ++ file_buf_size = 1000; ++ file_buf = VG_(malloc)("cpuinfo", file_buf_size + 1); ++ while (42) { ++ n = VG_(read)(fh, file_buf, file_buf_size); ++ if (n < 0) break; ++ ++ num_bytes += n; ++ if (n < file_buf_size) break; /* reached EOF */ ++ } ++ ++ if (n < 0) num_bytes = 0; /* read error; ignore contents */ ++ ++ if (num_bytes > file_buf_size) { ++ VG_(free)( file_buf ); ++ VG_(lseek)( fh, 0, VKI_SEEK_SET ); ++ file_buf = VG_(malloc)( "cpuinfo", num_bytes + 1 ); ++ n = VG_(read)( fh, file_buf, num_bytes ); ++ if (n < 0) num_bytes = 0; ++ } ++ ++ file_buf[num_bytes] = '\0'; ++ VG_(close)(fh); ++ ++ if (VG_(strstr) (file_buf, "cpu family\t: 8\n") != NULL) { ++ vai.hwcaps |= VEX_SW64_CORE4; ++ } else { ++ vai.hwcaps |= VEX_SW64_CORE3; ++ } ++ ++ VG_(free)(file_buf); ++ return True; ++} ++#endif ++ ++ + Bool VG_(machine_get_hwcaps)( void ) + { + vg_assert(hwcaps_done == False); +@@ -2230,6 +2294,21 @@ Bool VG_(machine_get_hwcaps)( void ) + + return True; + } ++#elif defined(VGA_sw64) ++ { ++ va = VexArchSW64; ++ vai.hwcaps = 0; ++ vai.endness = VexEndnessLE; ++ ++ if (!VG_(parse_cpuinfo)()) ++ return False; ++ ++ VG_(debugLog)(1, "machine", "hwcaps = 0x%x\n", vai.hwcaps); ++ ++ VG_(machine_get_cache_info)(&vai); ++ ++ return True; ++ } + #else + # error "Unknown arch" + #endif +@@ -2370,6 +2449,9 @@ Int VG_(machine_get_size_of_largest_guest_register) ( void ) + # elif defined(VGA_mips64) + return 8; + ++# elif defined(VGA_sw64) ++ return 8; ++ + # else + # error "Unknown arch" + # endif +@@ -2386,7 +2468,7 @@ void* VG_(fnptr_to_fnentry)( void* f ) + || defined(VGP_s390x_linux) || defined(VGP_mips32_linux) \ + || defined(VGP_mips64_linux) || defined(VGP_arm64_linux) \ + || defined(VGP_x86_solaris) || defined(VGP_amd64_solaris) \ +- || defined(VGP_nanomips_linux) ++ || defined(VGP_nanomips_linux) || defined(VGP_sw64_linux) + return f; + # elif defined(VGP_ppc64be_linux) + /* ppc64-linux uses the AIX scheme, in which f is a pointer to a +diff --git a/coregrind/m_main.c b/coregrind/m_main.c +index bb4a0ca96..6bf854bb3 100644 +--- a/coregrind/m_main.c ++++ b/coregrind/m_main.c +@@ -256,6 +256,10 @@ static void usage_NORETURN ( int need_help ) + " --stats=no|yes show tool and core statistics [no]\n" + " --sanity-level= level of sanity checking to do [1]\n" + " --trace-flags= show generated code? (X = 0|1) [00000000]\n" ++" --trace-reg= show register value? (X = 0|1) [000]\n" ++" 001 ....... show control registers\n" ++" 010 ....... show interger registers\n" ++" 100 ....... show float-point registers\n" + " --profile-flags= ditto, but for profiling (X = 0|1) [00000000]\n" + " --profile-interval= show profile every event checks\n" + " [0, meaning only at the end of the run]\n" +@@ -269,6 +273,7 @@ static void usage_NORETURN ( int need_help ) + " --debug-dump=syms mimic /usr/bin/readelf --syms\n" + " --debug-dump=line mimic /usr/bin/readelf --debug-dump=line\n" + " --debug-dump=frames mimic /usr/bin/readelf --debug-dump=frames\n" ++" --dump-expansion-ratio=no|yes show instruction expansion ratio? [no]\n" + " --trace-redir=no|yes show redirection details? [no]\n" + " --trace-sched=no|yes show thread scheduler details? [no]\n" + " --profile-heap=no|yes profile Valgrind's own space use\n" +@@ -660,6 +665,8 @@ else if VG_INT_CLOM(cloPD, arg, "--scheduling-quantum", + True) {} + else if VG_XACT_CLOM(cloPD, arg, "--debug-dump=frames", + VG_(clo_debug_dump_frames), True) {} ++ else if VG_BOOL_CLOM(cloPD, arg, "--dump-expansion-ratio", ++ VG_(clo_dump_expansion_ratio)) {} + else if VG_BOOL_CLOM(cloPD, arg, "--trace-redir", VG_(clo_trace_redir)) {} + + else if VG_BOOL_CLOM(cloPD, arg, "--trace-syscalls", VG_(clo_trace_syscalls)) {} +@@ -848,6 +855,22 @@ else if VG_INT_CLOM(cloPD, arg, "--scheduling-quantum", + + else if VG_INT_CLOM (cloPD, arg, "--trace-notabove", VG_(clo_trace_notabove)) {} + ++ else if VG_STR_CLOM (cloPD, arg, "--trace-reg", tmp_str) { ++ Int j; ++ if (3 != VG_(strlen)(tmp_str)) { ++ VG_(fmsg_bad_option)(arg, ++ "--trace-reg argument must have 3 digits\n"); ++ } ++ for (j = 0; j < 3; j++) { ++ if ('0' == tmp_str[j]) { /* do nothing */ } ++ else if ('1' == tmp_str[j]) VG_(clo_trace_reg) |= (1 << (2-j)); ++ else { ++ VG_(fmsg_bad_option)(arg, ++ "--trace-reg argument can only contain 0s and 1s\n"); ++ } ++ } ++ } ++ + /* "stuvwxyz" --> stuvwxyz (binary) */ + else if VG_STR_CLOM(cloPD, arg, "--profile-flags", tmp_str) { + Int j; +@@ -2108,7 +2131,7 @@ Int valgrind_main ( Int argc, HChar **argv, HChar **envp ) + vg_assert(VG_(running_tid) == VG_INVALID_THREADID); + VG_(running_tid) = tid_main; + +- VG_(ii_finalise_image)( the_iifii ); ++ VG_(ii_finalise_image)( the_iifii, the_iicii ); + + /* Clear the running thread indicator */ + VG_(running_tid) = VG_INVALID_THREADID; +@@ -2486,6 +2509,21 @@ static void final_tidyup(ThreadId tid) + sizeof(VG_(threads)[tid].arch.vex.guest_r25)); + # endif + ++/* r27 infect sub-func r29: ++ dissembly of sub-func is: ++ void VG_NOTIFY_ON_LOAD(freeres)(Vg_FreeresToRun to_run) ++ ++ 990: 02 00 bb ff ldih $r29,2($r27) ++ 994: 80 96 bd fb ldi $r29,-27008($r29) ++*/ ++/* see also in coregrind/m_translate.c: 1370*/ ++# if defined(VGP_sw64_linux) ++ VG_(threads)[tid].arch.vex.guest_r27 = freeres_wrapper; ++ VG_TRACK(post_reg_write, Vg_CoreClientReq, tid, ++ offsetof(VexGuestSW64State, guest_r27), ++ sizeof(VG_(threads)[tid].arch.vex.guest_r27)); ++# endif ++ + /* Pass a parameter to freeres_wrapper(). */ + # if defined(VGA_x86) + Addr sp = VG_(threads)[tid].arch.vex.guest_ESP; +@@ -2521,6 +2559,11 @@ static void final_tidyup(ThreadId tid) + VG_TRACK(post_reg_write, Vg_CoreClientReq, tid, + offsetof(VexGuestMIPS64State, guest_r4), + sizeof(VG_(threads)[tid].arch.vex.guest_r4)); ++# elif defined(VGA_sw64) ++ VG_(threads)[tid].arch.vex.guest_r16 = to_run; ++ VG_TRACK(post_reg_write, Vg_CoreClientReq, tid, ++ offsetof(VexGuestSW64State, guest_r16), ++ sizeof(VG_(threads)[tid].arch.vex.guest_r16)); + # elif defined(VGA_ppc32) + VG_(threads)[tid].arch.vex.guest_GPR3 = to_run; + VG_TRACK(post_reg_write, Vg_CoreClientReq, tid, +@@ -3064,6 +3107,27 @@ asm( + ".set pop \n\t" + ".previous \n\t" + ); ++#elif defined(VGP_sw64_linux) ++asm("\n" ++ "\t.text\n" ++ "\t.set macro\n" ++ "\t.type _start,@function\n" ++ "\t.global _start\n" ++ "\t_start:\n" ++ "\tbr $29, 1f\n" ++ "\t1: ldgp $29, 0($29)\n" ++ "\tldih $0,vgPlain_interim_stack($29)!gprelhigh\n" ++ "\tldi $0, vgPlain_interim_stack($0) !gprellow\n" ++ "\tldi $1, "VG_STRINGIFY(VG_STACK_GUARD_SZB)"($31)\n" ++ "\taddl $0, $1, $0\n" ++ "\tldi $1, "VG_STRINGIFY(VG_DEFAULT_STACK_ACTIVE_SZB)"($31)\n" ++ "\taddl $0, $1, $0\n" ++ "\tldi $1, 0xFFFFFF00\n" ++ "\tand $0, $1, $0\n" ++ "\tmov $sp, $16\n" //$16 _start_in_C_linux, first arg ++ "\tmov $0, $sp\n" ++ "\tcall _start_in_C_linux\n" ++); + #else + # error "Unknown platform" + #endif +@@ -3109,7 +3173,7 @@ void _start_in_C_linux ( UWord* pArgc ) + # if defined(VGP_ppc32_linux) || defined(VGP_ppc64be_linux) \ + || defined(VGP_ppc64le_linux) || defined(VGP_arm64_linux) \ + || defined(VGP_mips32_linux) || defined(VGP_mips64_linux) \ +- || defined(VGP_nanomips_linux) ++ || defined(VGP_nanomips_linux) || defined(VGP_sw64_linux) + { + /* ppc32/ppc64, arm64, mips32/64 can be configured with different + page sizes. Determine this early. This is an ugly hack and really +diff --git a/coregrind/m_options.c b/coregrind/m_options.c +index 1483af2d9..d168f9424 100644 +--- a/coregrind/m_options.c ++++ b/coregrind/m_options.c +@@ -140,6 +140,7 @@ UChar VG_(clo_profyle_flags) = 0; // 00000000b + ULong VG_(clo_profyle_interval) = 0; + Int VG_(clo_trace_notbelow) = -1; // unspecified + Int VG_(clo_trace_notabove) = -1; // unspecified ++Int VG_(clo_trace_reg) = 0; + Bool VG_(clo_trace_syscalls) = False; + Bool VG_(clo_trace_signals) = False; + Bool VG_(clo_trace_symtab) = False; +@@ -148,6 +149,7 @@ Bool VG_(clo_trace_cfi) = False; + Bool VG_(clo_debug_dump_syms) = False; + Bool VG_(clo_debug_dump_line) = False; + Bool VG_(clo_debug_dump_frames) = False; ++Bool VG_(clo_dump_expansion_ratio) = False; + Bool VG_(clo_trace_redir) = False; + enum FairSchedType + VG_(clo_fair_sched) = disable_fair_sched; +@@ -203,7 +205,8 @@ UInt VG_(clo_unw_stack_scan_frames) = 5; + VgSmc VG_(clo_smc_check) = Vg_SmcAllNonFile; + #elif defined(VGA_ppc32) || defined(VGA_ppc64be) || defined(VGA_ppc64le) \ + || defined(VGA_arm) || defined(VGA_arm64) \ +- || defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) ++ || defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) \ ++ || defined(VGA_sw64) + VgSmc VG_(clo_smc_check) = Vg_SmcStack; + #else + # error "Unknown arch" +diff --git a/coregrind/m_redir.c b/coregrind/m_redir.c +index cef241b4f..46663ff7b 100644 +--- a/coregrind/m_redir.c ++++ b/coregrind/m_redir.c +@@ -1679,6 +1679,23 @@ void VG_(redir_initialise) ( void ) + ); + } + ++# elif defined(VGP_sw64_linux) ++ /* If we're using memcheck, use these intercepts right from ++ the start, otherwise ld.so makes a lot of noise. */ ++ if (0==VG_(strcmp)("Memcheck", VG_(details).name)) ++ { ++ add_hardwired_spec( ++ "ld-linux.so.2", "strlen", ++ (Addr)&VG_(sw64_linux_REDIR_FOR_strlen), ++ complain_about_stripped_glibc_ldso ++ ); ++ add_hardwired_spec( ++ "ld-linux.so.2", "index", ++ (Addr)&VG_(sw64_linux_REDIR_FOR_index), ++ complain_about_stripped_glibc_ldso ++ ); ++ } ++ + # elif defined(VGP_x86_solaris) + /* If we're using memcheck, use these intercepts right from + the start, otherwise ld.so makes a lot of noise. */ +diff --git a/coregrind/m_scheduler/scheduler.c b/coregrind/m_scheduler/scheduler.c +index f8b3b46c1..18a928d0a 100644 +--- a/coregrind/m_scheduler/scheduler.c ++++ b/coregrind/m_scheduler/scheduler.c +@@ -55,7 +55,8 @@ + way back for the moment, until we do an OS port in earnest...] + */ + +- ++#include "libvex_basictypes.h" ++#include "libvex_guest_sw64.h" + #include "pub_core_basics.h" + #include "pub_core_debuglog.h" + #include "pub_core_vki.h" +@@ -145,6 +146,163 @@ static ULong stats__n_xIndir_misses = 0; + static UInt sanity_fast_count = 0; + static UInt sanity_slow_count = 0; + ++#if defined(VGP_sw64_linux) ++void VG_(print_guest_state) ( void * vex_ptr ) ++{ ++ static UWord ctr = 0; ++ ++ VexGuestSW64State *vex = (VexGuestSW64State *)vex_ptr; ++ Int trace_flag = VG_(clo_trace_reg); ++ ++ if (!trace_flag) { ++ return; ++ } ++ ++ const DiEpoch ep = VG_(current_DiEpoch)(); ++ Addr addr = (Addr)vex->guest_PC; ++ ++ VG_(printf)("VexGuestSW64State (%lu) {\n", ctr++); ++ ++ if (trace_flag & 1) { ++ VG_(printf)(" host_EvC_FAILADDR: %llx\n", vex->host_EvC_FAILADDR); ++ VG_(printf)(" host_EvC_COUNTER: %x\n", vex->host_EvC_COUNTER); ++ } ++ ++ ++ /* print all interger registers */ ++ if (trace_flag & 2) { ++ for(int i = 0; i < 32; i++) { ++ ULong gpr; ++ ULong offset_gpr = i * sizeof(gpr) + offsetof(VexGuestSW64State, guest_r0); ++ VG_(memcpy)(&gpr, (char *)vex + offset_gpr, sizeof(gpr)); ++ ++ ULong shadow; ++ ULong offset_shadow = sizeof(VexGuestSW64State) + offset_gpr; ++ VG_(memcpy)(&shadow, (char *)vex + offset_shadow, sizeof(shadow)); ++ ++ VG_(printf)(" [%3llu]guest_r%-2d %16llx", offset_gpr, i, gpr); ++ ++ /* print diagnosis for $gp */ ++ if (i == 29) { ++ const DebugInfo *di; ++ Addr gpfixed = vex->guest_r29 - 0x8000; ++ ++ for (di = VG_(next_DebugInfo)(0); di; di = VG_(next_DebugInfo)(di)) { ++ if (VG_(DebugInfo_get_got_avma)(di) == gpfixed) { ++ Addr text_begin = VG_(DebugInfo_get_text_avma)(di); ++ Addr text_end = text_begin + VG_(DebugInfo_get_text_size)(di); ++ if (text_begin < addr && addr < text_end) { ++ VG_(printf)(" (good)"); ++ } else { ++ VG_(printf)(" (outdated)"); ++ } ++ break; ++ } ++ } ++ ++ ++ if (!di) { ++ VG_(printf)(" (bad)"); ++ } ++ } ++ ++ if (shadow) { ++ const char *prompt = shadow == (ULong)(-1) ? "undefined" : "partial-defined"; ++ VG_(printf)(" [%3llu]shadow %16llx (%s)", offset_shadow, shadow, prompt); ++ } ++ ++ VG_(printf)("\n"); ++ } ++ } ++ ++ /* print all float registers */ ++ if (trace_flag & 4) { ++ for(int i = 0; i < 32; i++) { ++ ULong flt; ++ ULong offset_flt = i * sizeof(flt) + offsetof(VexGuestSW64State, guest_f0); ++ VG_(memcpy)(&flt, (char *)vex + offset_flt, sizeof(flt)); ++ ++ ULong shadow; ++ ULong offset_shadow = sizeof(VexGuestSW64State) + offset_flt; ++ VG_(memcpy)(&shadow, (char *)vex + offset_shadow, sizeof(shadow)); ++ ++ VG_(printf)(" [%03llu]guest_f%-2d %16llx", offset_flt, i, flt); ++ ++ if (shadow) { ++ const char *prompt = shadow == (ULong)(-1) ? "undefined" : "partial-defined"; ++ VG_(printf)(" [%3llu]shadow %16llx (%s)", offset_shadow, shadow, prompt); ++ } ++ ++ VG_(printf)("\n"); ++ } ++ ++ VG_(printf)(" guest_FPCR: %llx\n", vex->guest_FPCR); ++ } ++ ++ /* print all control registers */ ++ if (trace_flag & 1) { ++ VG_(printf)(" guest_CSR: %llx\n", vex->guest_CSR); ++ ++ VG_(printf)(" guest_EMNOTE: %x\n", vex->guest_EMNOTE); ++ VG_(printf)(" guest_CMSTART: %llx\n", vex->guest_CMSTART); ++ VG_(printf)(" guest_CMLEN: %llx\n", vex->guest_CMLEN); ++ ++ VG_(printf)(" guest_NRADDR: %llx\n", vex->guest_NRADDR); ++ VG_(printf)(" guest_LOCKFLAG: %llx\n", vex->guest_LOCKFLAG); ++ VG_(printf)(" guest_LOCKVALID: %llx\n", vex->guest_LOCKVALID); ++ VG_(printf)(" guest_LOCKSUCCESS: %llx\n", vex->guest_LOCKSUCCESS); ++ VG_(printf)(" guest_LOCKSIZE: %llx\n", vex->guest_LOCKSIZE); ++ VG_(printf)(" guest_LOCKADDR: %llx\n", vex->guest_LOCKADDR); ++ VG_(printf)(" guest_LOCKDATA: %llx\n", vex->guest_LOCKDATA); ++ ++ VG_(printf)(" guest_TID: %llx\n", vex->guest_TID); ++ } ++ ++ VG_(printf)(" guest_PC: %llx", vex->guest_PC); ++ ++ ++ Bool fnok; ++ const HChar *fnname; ++ OffT fnoff; ++ fnok = VG_(get_fnname)(ep, addr, &fnname); ++ fnok = fnok && VG_(get_inst_offset_in_function)(ep, addr , &fnoff); ++ ++ Bool srcok; ++ HChar const *srcname; ++ UInt srcline; ++ srcok = VG_(get_filename)(ep, addr, &srcname); ++ srcok = srcok && VG_(get_linenum)(ep, addr, &srcline); ++ ++ if (fnok && srcok) { ++ VG_(printf)( ++ " %s%c0x%lx (%s:%u)\n", ++ fnname, fnoff >= 0 ? '+' : '-', (UWord)(fnoff >= 0 ? fnoff : -fnoff), ++ srcname, srcline ++ ); ++ } else if (fnok) { ++ VG_(printf)( ++ " %s%c0x%lx\n", ++ fnname, fnoff >= 0 ? '+' : '-', (UWord)(fnoff >= 0 ? fnoff : -fnoff) ++ ); ++ } else if (srcok) { ++ VG_(printf)( ++ " (%s:%u)\n", ++ srcname, srcline ++ ); ++ } else { ++ VG_(printf)("\n"); ++ } ++ ++ VG_(printf)("}\n"); ++} ++ ++#else /* #if defined(VGP_sw64_linux) */ ++void VG_(print_guest_state) ( void * vex_ptr ) ++{ ++ (void) vex_ptr; ++} ++#endif ++ + void VG_(print_scheduler_stats)(void) + { + VG_(message)(Vg_DebugMsg, +@@ -1036,6 +1194,8 @@ void run_thread_for_a_while ( /*OUT*/HWord* two_words, + ) + ); + ++ VG_(print_guest_state)((void *)&tst->arch.vex); ++ + vg_assert(VG_(in_generated_code) == True); + VG_(in_generated_code) = False; + +@@ -1821,6 +1981,9 @@ void VG_(nuke_all_threads_except) ( ThreadId me, VgSchedReturnCode src ) + #elif defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) + # define VG_CLREQ_ARGS guest_r12 + # define VG_CLREQ_RET guest_r11 ++#elif defined(VGA_sw64) ++# define VG_CLREQ_ARGS guest_r5 ++# define VG_CLREQ_RET guest_r4 + #else + # error Unknown arch + #endif +diff --git a/coregrind/m_sigframe/sigframe-sw64-linux.c b/coregrind/m_sigframe/sigframe-sw64-linux.c +new file mode 100644 +index 000000000..ced89fd2d +--- /dev/null ++++ b/coregrind/m_sigframe/sigframe-sw64-linux.c +@@ -0,0 +1,224 @@ ++ ++/*--------------------------------------------------------------------*/ ++/*--- Create/destroy signal delivery frames. ---*/ ++/*--- sigframe-sw64-linux.c ---*/ ++/*--------------------------------------------------------------------*/ ++ ++/* ++ This file is part of Valgrind, a dynamic binary instrumentation ++ framework. ++ ++ Copyright (C) 2010-2017 RT-RK ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, see . ++ ++ The GNU General Public License is contained in the file COPYING. ++*/ ++ ++#if defined(VGP_sw64_linux) ++ ++#include "pub_core_basics.h" ++#include "pub_core_vki.h" ++#include "pub_core_threadstate.h" ++#include "pub_core_aspacemgr.h" ++#include "pub_core_libcbase.h" ++#include "pub_core_libcassert.h" ++#include "pub_core_libcprint.h" ++#include "pub_core_machine.h" ++#include "pub_core_options.h" ++#include "pub_core_sigframe.h" ++#include "pub_core_signals.h" ++#include "pub_core_tooliface.h" ++#include "pub_core_trampoline.h" ++#include "priv_sigframe.h" ++ ++struct vg_sig_private { ++ UInt magicPI; ++ UInt sigNo_private; ++ VexGuestSW64State vex; ++ VexGuestSW64State vex_shadow1; ++ VexGuestSW64State vex_shadow2; ++}; ++ ++struct rt_sigframe { ++ struct vki_siginfo info; ++ struct vki_ucontext uc; ++ struct vg_sig_private vp; ++}; ++ ++/* EXPORTED */ ++void VG_(sigframe_create) ( ThreadId tid, ++ Bool on_altstack, ++ Addr sp_top_of_frame, ++ const vki_siginfo_t *siginfo, ++ const struct vki_ucontext *siguc, ++ void *handler, ++ UInt flags, ++ const vki_sigset_t *mask, ++ void *restorer ) ++{ ++ ThreadState *tst = VG_(get_ThreadState)(tid); ++ Addr sp = sp_top_of_frame; ++ Int sigNo = siginfo->si_signo; ++ UInt size = sizeof(struct rt_sigframe); ++ struct rt_sigframe *frame; ++ ++ sp -= size; ++ sp = VG_ROUNDDN(sp, 16); ++ ++ if (! ML_(sf_maybe_extend_stack)(tst, sp, size, flags)) ++ return; // Give up. No idea if this is correct ++ ++ frame = (struct rt_sigframe *)sp; ++ ++ /* save some valgrind private data */ ++ struct vg_sig_private *priv = &frame->vp; ++ priv->magicPI = 0x31415927; ++ priv->sigNo_private = siginfo->si_signo; ++ priv->vex = tst->arch.vex; ++ priv->vex_shadow1 = tst->arch.vex_shadow1; ++ priv->vex_shadow2 = tst->arch.vex_shadow2; ++ ++ /* prepard for siginfo */ ++ struct vki_siginfo *info = &frame->info; ++ VG_TRACK( pre_mem_write, Vg_CoreSignal, tst->tid, "signal handler siginfo", ++ (Addr)info, sizeof(frame->info)); ++ VG_(memcpy)(info, siginfo, sizeof(vki_siginfo_t)); ++ if (sigNo == VKI_SIGILL && siginfo->si_code > 0) { ++ frame->info._sifields._sigfault._addr ++ = (Addr*)(tst)->arch.vex.guest_PC; ++ } ++ VG_TRACK( post_mem_write, Vg_CoreSignal, tst->tid, ++ (Addr)info, sizeof(frame->info)); ++ ++ /* prepare for ucontext ++ ref: linux-4.19.y-sw/arch/sw_64/kernel/signal.c */ ++ struct vki_ucontext *uc = &frame->uc; ++ struct vki_sigcontext *sc = &uc->uc_mcontext; ++ VG_TRACK( pre_mem_write, Vg_CoreSignal, tst->tid, "signal handler frame", ++ (Addr)uc, sizeof(frame->uc)); ++ VG_(memset)(uc, 0, sizeof(*uc)); ++ uc->uc_flags = 0; ++ uc->uc_link = 0; ++ uc->uc_old_sigmask = mask->sig[0]; ++ uc->uc_sigmask = *mask; ++ uc->uc_stack = tst->altstack; ++ sc->sc_onstack = 0; ++ sc->sc_mask = mask->sig[0]; ++ sc->sc_pc = tst->arch.vex.guest_PC; ++ sc->sc_ps = 8; ++# define TO_CTX(reg) sc->sc_regs[reg] = tst->arch.vex.guest_r##reg ++ TO_CTX(0); TO_CTX(1); TO_CTX(2); TO_CTX(3); ++ TO_CTX(4); TO_CTX(5); TO_CTX(6); TO_CTX(7); ++ TO_CTX(8); TO_CTX(9); TO_CTX(10); TO_CTX(11); ++ TO_CTX(12); TO_CTX(13); TO_CTX(14); TO_CTX(15); ++ TO_CTX(16); TO_CTX(17); TO_CTX(18); TO_CTX(19); ++ TO_CTX(20); TO_CTX(21); TO_CTX(22); TO_CTX(23); ++ TO_CTX(24); TO_CTX(25); TO_CTX(26); TO_CTX(27); ++ TO_CTX(28); TO_CTX(29); TO_CTX(30); ++# undef TO_CTX ++ VG_TRACK( post_mem_write, Vg_CoreSignal, tst->tid, ++ (Addr)uc, sizeof(frame->uc)); ++ ++ /* "Return" to the handler */ ++ if (flags & VKI_SA_RESTORER) ++ tst->arch.vex.guest_r26 = (Addr)restorer; ++ else ++ tst->arch.vex.guest_r26 = (Addr)&VG_(sw64_linux_SUBST_FOR_rt_sigreturn); ++ tst->arch.vex.guest_r27 = (Addr)handler; ++ tst->arch.vex.guest_PC = (Addr)handler; ++ tst->arch.vex.guest_r16 = (Addr)sigNo; ++ if (flags & VKI_SA_SIGINFO) { ++ tst->arch.vex.guest_r17 = (Addr)&frame->info; ++ tst->arch.vex.guest_r18 = (Addr)&frame->uc; ++ } else { ++ tst->arch.vex.guest_r17 = 0; ++ tst->arch.vex.guest_r18 = (Addr)&frame->uc.uc_mcontext; ++ } ++ ++ VG_(set_SP)(tid, sp); ++ VG_TRACK( post_reg_write, Vg_CoreSignal, tid, VG_O_STACK_PTR, ++ sizeof(Addr)); ++} ++ ++ ++/*------------------------------------------------------------*/ ++/*--- Destroying signal frames ---*/ ++/*------------------------------------------------------------*/ ++ ++/* EXPORTED */ ++void VG_(sigframe_destroy)( ThreadId tid, Bool isRT ) ++{ ++ vg_assert(VG_(is_valid_tid)(tid)); ++ ++ Bool has_siginfo = isRT; ++ ThreadState* tst = VG_(get_ThreadState)(tid); ++ Addr sp = tst->arch.vex.guest_r16; ++ struct rt_sigframe* frame = (struct rt_sigframe *)sp; ++ struct vg_sig_private* priv = &frame->vp; ++ vg_assert(priv->magicPI == 0x31415927); ++ ++ tst->sig_mask = frame->uc.uc_sigmask; ++ tst->tmp_sig_mask = tst->sig_mask; ++ ++ Int sigNo = priv->sigNo_private; ++ UInt frame_size = sizeof(*frame); ++ ++ /* Restore the entire machine state from our private copy. This ++ isn't really right, but we'll now move on to pick up at least ++ some changes that the signal handler may have made to the ++ sigcontext. */ ++ tst->arch.vex = priv->vex; ++ tst->arch.vex_shadow1 = priv->vex_shadow1; ++ tst->arch.vex_shadow2 = priv->vex_shadow2; ++ ++ if (has_siginfo) { ++ /* Pick up at least some state changes from the ucontext, just ++ in case the handler changed it. The shadow values will be ++ wrong, but hey. This restores the integer registers, the ++ program counter and stack pointer. FP/Vector regs, and any ++ condition code, FP status/control bits, etc, are not ++ restored. */ ++ struct vki_sigcontext *sc =&frame->uc.uc_mcontext; ++# define FROM_CTX(reg) tst->arch.vex.guest_r##reg = sc->sc_regs[reg] ++ FROM_CTX(0); FROM_CTX(1); FROM_CTX(2); FROM_CTX(3); ++ FROM_CTX(4); FROM_CTX(5); FROM_CTX(6); FROM_CTX(7); ++ FROM_CTX(8); FROM_CTX(9); FROM_CTX(10); FROM_CTX(11); ++ FROM_CTX(12); FROM_CTX(13); FROM_CTX(14); FROM_CTX(15); ++ FROM_CTX(16); FROM_CTX(17); FROM_CTX(18); FROM_CTX(19); ++ FROM_CTX(20); FROM_CTX(21); FROM_CTX(22); FROM_CTX(23); ++ FROM_CTX(24); FROM_CTX(25); FROM_CTX(26); FROM_CTX(27); ++ FROM_CTX(28); FROM_CTX(29); FROM_CTX(30); ++# undef FROM_CTX ++ tst->arch.vex.guest_PC = sc->sc_pc; ++ } ++ ++ VG_TRACK( die_mem_stack_signal, sp - VG_STACK_REDZONE_SZB, ++ frame_size + VG_STACK_REDZONE_SZB ); ++ ++ if (VG_(clo_trace_signals)) ++ VG_(message)(Vg_DebugMsg, ++ "vg_pop_signal_frame (thread %u): " ++ "isRT=%d valid magic; PC=%#llx\n", ++ tid, has_siginfo, tst->arch.vex.guest_PC); ++ ++ /* tell the tools */ ++ VG_TRACK( post_deliver_signal, tid, sigNo ); ++} ++ ++#endif /* defined(VGP_sw64_linux) */ ++ ++/*--------------------------------------------------------------------*/ ++/*--- end sigframe-sw64-linux.c ---*/ ++/*--------------------------------------------------------------------*/ +diff --git a/coregrind/m_signals.c b/coregrind/m_signals.c +index b3c94fcc9..3c7079c4a 100644 +--- a/coregrind/m_signals.c ++++ b/coregrind/m_signals.c +@@ -628,6 +628,25 @@ VgHashTable *ht_sigchld_ignore = NULL; + (srP)->misc.MIPS32.r28 = (uc)->uc_mcontext.sc_regs[28]; \ + } + ++#elif defined(VGP_sw64_linux) ++# define VG_UCONTEXT_INSTR_PTR(uc) (((uc)->uc_mcontext.sc_pc)) ++# define VG_UCONTEXT_STACK_PTR(uc) ((uc)->uc_mcontext.sc_regs[30]) ++# define VG_UCONTEXT_FRAME_PTR(uc) ((uc)->uc_mcontext.sc_regs[15]) ++# define VG_UCONTEXT_SYSCALL_NUM(uc) ((uc)->uc_mcontext.sc_regs[0]) ++# define VG_UCONTEXT_SYSCALL_SYSRES(uc) \ ++ /* Convert the value in uc_mcontext.rax into a SysRes. */ \ ++ VG_(mk_SysRes_sw64_linux)((uc)->uc_mcontext.sc_regs[0], \ ++ (uc)->uc_mcontext.sc_regs[19], \ ++ (uc)->uc_mcontext.sc_regs[20]) ++ ++# define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \ ++ { (srP)->r_pc = (uc)->uc_mcontext.sc_pc; \ ++ (srP)->r_sp = (uc)->uc_mcontext.sc_regs[30]; \ ++ (srP)->misc.SW64.r15 = (uc)->uc_mcontext.sc_regs[15]; \ ++ (srP)->misc.SW64.r26 = (uc)->uc_mcontext.sc_regs[26]; \ ++ (srP)->misc.SW64.r29 = (uc)->uc_mcontext.sc_regs[29]; \ ++ } ++ + #elif defined(VGP_x86_solaris) + # define VG_UCONTEXT_INSTR_PTR(uc) ((Addr)(uc)->uc_mcontext.gregs[VKI_EIP]) + # define VG_UCONTEXT_STACK_PTR(uc) ((Addr)(uc)->uc_mcontext.gregs[VKI_UESP]) +@@ -1052,6 +1071,16 @@ extern void my_sigreturn(void); + " li $t4, " #name "\n" \ + " syscall[32]\n" \ + ".previous\n" ++ ++#elif defined(VGP_sw64_linux) ++/* Not used on sw64_linux */ ++# define _MY_SIGRETURN(name) \ ++ ".text\n" \ ++ "my_sigreturn:\n" \ ++ " ldi $0, " #name "\n" \ ++ " sys_call 0x83\n" \ ++ ".previous\n" ++ + #elif defined(VGP_x86_solaris) || defined(VGP_amd64_solaris) + /* Not used on Solaris. */ + # define _MY_SIGRETURN(name) \ +@@ -1111,7 +1140,8 @@ static void handle_SCSS_change ( Bool force_update ) + ksa.sa_flags = skss.skss_per_sig[sig].skss_flags; + # if !defined(VGP_ppc32_linux) && \ + !defined(VGP_x86_darwin) && !defined(VGP_amd64_darwin) && \ +- !defined(VGP_mips32_linux) && !defined(VGO_solaris) && !defined(VGO_freebsd) ++ !defined(VGP_mips32_linux) && !defined(VGO_solaris) && \ ++ !defined(VGO_freebsd) && !defined(VGP_sw64_linux) + ksa.sa_restorer = my_sigreturn; + # endif + /* Re above ifdef (also the assertion below), PaulM says: +@@ -1159,7 +1189,7 @@ static void handle_SCSS_change ( Bool force_update ) + !defined(VGP_x86_darwin) && !defined(VGP_amd64_darwin) && \ + !defined(VGP_mips32_linux) && !defined(VGP_mips64_linux) && \ + !defined(VGP_nanomips_linux) && !defined(VGO_solaris) && \ +- !defined(VGO_freebsd) ++ !defined(VGO_freebsd) && !defined(VGP_sw64_linux) + vg_assert(ksa_old.sa_restorer == my_sigreturn); + # endif + VG_(sigaddset)( &ksa_old.sa_mask, VKI_SIGKILL ); +@@ -2296,8 +2326,9 @@ void VG_(synth_sigtrap)(ThreadId tid) + // Synthesise a SIGFPE. + void VG_(synth_sigfpe)(ThreadId tid, UInt code) + { +-// Only tested on mips32, mips64, s390x and nanomips. +-#if !defined(VGA_mips32) && !defined(VGA_mips64) && !defined(VGA_s390x) && !defined(VGA_nanomips) ++// Only tested on mips32, mips64, s390x and nanomips and sw64. ++#if !defined(VGA_mips32) && !defined(VGA_mips64) && !defined(VGA_s390x) && \ ++ !defined(VGA_nanomips) && !defined(VGP_sw64_linux) + vg_assert(0); + #else + vki_siginfo_t info; +diff --git a/coregrind/m_stacktrace.c b/coregrind/m_stacktrace.c +index 0ec6f5993..aac1163ff 100644 +--- a/coregrind/m_stacktrace.c ++++ b/coregrind/m_stacktrace.c +@@ -1505,6 +1505,103 @@ UInt VG_(get_StackTrace_wrk) ( ThreadId tid_if_known, + + #endif + ++ ++/* ------------------------ sw64 ------------------------- */ ++#if defined(VGP_sw64_linux) ++UInt VG_(get_StackTrace_wrk) ( ThreadId tid_if_known, ++ /*OUT*/Addr* ips, UInt max_n_ips, ++ /*OUT*/Addr* sps, /*OUT*/Addr* fps, ++ const UnwindStartRegs* startRegs, ++ Addr fp_max_orig ) ++{ ++ Bool debug = False; ++ Int i; ++ Addr fp_max; ++ UInt n_found = 0; ++ const Int cmrf = VG_(clo_merge_recursive_frames); ++ ++ vg_assert(sizeof(Addr) == sizeof(UWord)); ++ vg_assert(sizeof(Addr) == sizeof(void*)); ++ ++ D3UnwindRegs uregs; ++ uregs.pc = startRegs->r_pc; ++ uregs.sp = startRegs->r_sp; ++ uregs.fp = startRegs->misc.SW64.r15; ++ uregs.ra = startRegs->misc.SW64.r26; ++ Addr fp_min = uregs.sp - VG_STACK_REDZONE_SZB; ++ ++ /* Snaffle IPs from the client's stack into ips[0 .. max_n_ips-1], ++ stopping when the trail goes cold, which we guess to be ++ when FP is not a reasonable stack location. */ ++ ++ fp_max = VG_PGROUNDUP(fp_max_orig); ++ if (fp_max >= sizeof(Addr)) ++ fp_max -= sizeof(Addr); ++ ++ if (debug) ++ VG_(printf)("max_n_ips=%u fp_min=0x%lx fp_max_orig=0x%lx, " ++ "fp_max=0x%lx pc=0x%lx sp=0x%lx fp=0x%lx\n", ++ max_n_ips, fp_min, fp_max_orig, fp_max, ++ uregs.pc, uregs.sp, uregs.fp); ++ ++ if (sps) sps[0] = uregs.sp; ++ if (fps) fps[0] = uregs.fp; ++ ips[0] = uregs.pc; ++ i = 1; ++ ++ /* Loop unwinding the stack. */ ++ while (True) { ++ if (debug) { ++ VG_(printf)("i: %d, pc: 0x%lx, sp: 0x%lx, ra: 0x%lx\n", ++ i, uregs.pc, uregs.sp, uregs.ra); ++ } ++ if (i >= max_n_ips) ++ break; ++ ++ D3UnwindRegs uregs_copy = uregs; ++ if (VG_(use_CF_info)( &uregs, fp_min, fp_max )) { ++ if (debug) ++ VG_(printf)("USING CFI: pc: 0x%lx, sp: 0x%lx, ra: 0x%lx\n", ++ uregs.pc, uregs.sp, uregs.ra); ++ if (0 != uregs.pc && 1 != uregs.pc) { ++ if (sps) sps[i] = uregs.sp; ++ if (fps) fps[i] = uregs.fp; ++ ips[i++] = uregs.pc - 4; ++ uregs.pc = uregs.pc - 4; ++ RECURSIVE_MERGE(cmrf,ips,i); ++ continue; ++ } else ++ uregs = uregs_copy; ++ } ++ ++ /* cfi missing, but we are in first frame, the return address should be ++ saved in RA register */ ++ if (i == 1) { ++ if (sps) { ++ sps[i] = sps[0]; ++ uregs.sp = sps[0]; ++ } ++ if (fps) { ++ fps[i] = fps[0]; ++ uregs.fp = fps[0]; ++ } ++ if (0 == uregs.ra || 1 == uregs.ra) break; ++ uregs.pc = uregs.ra; ++ ips[i++] = uregs.ra; ++ RECURSIVE_MERGE(cmrf,ips,i); ++ continue; ++ } ++ ++ /* No luck. We have to give up. */ ++ break; ++ } ++ ++ n_found = i; ++ return n_found; ++} ++ ++#endif ++ + /*------------------------------------------------------------*/ + /*--- ---*/ + /*--- END platform-dependent unwinder worker functions ---*/ +diff --git a/coregrind/m_swdiv.S b/coregrind/m_swdiv.S +new file mode 100644 +index 000000000..f9d5451b8 +--- /dev/null ++++ b/coregrind/m_swdiv.S +@@ -0,0 +1,724 @@ ++/*--------------------------------------------------------------------*/ ++/*--- sw div and rem stuff. m_swdiv.S ---*/ ++/*--------------------------------------------------------------------*/ ++ ++/* ++ This file is part of Valgrind, a dynamic binary instrumentation ++ framework. ++ ++ Copyright (C) 2000-2017 Julian Seward ++ jseward@acm.org ++ Copyright (C) 2006-2017 OpenWorks LLP ++ info@open-works.co.uk ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, see . ++ ++ The GNU General Public License is contained in the file COPYING. ++*/ ++ ++#include "pub_core_basics_asm.h" ++ ++/* ---------------- remlu divlu for sw64 ---------------- */ ++/* sw64 defined these operation in glibc: ++ reml, remlu, remw, remwu ++ divl, divlu, divw, divwu ++ we need to define these operation by self */ ++ ++#if defined(VGP_sw64_linux) ++ ++.set noat ++.globl __reml ++__reml: ++ ldi $sp,-96($sp) ++ fstd $f0,0($sp) ++ beq $r25,reml_14 ++ fstd $f1,8($sp) ++ fstd $f3,48($sp) ++ fstd $f4,56($sp) ++ fstd $f5,64($sp) ++ rfpcr $f3 ++ ifmovd $r24,$f0 ++ ifmovd $r25,$f1 ++ fcvtld $f0,$f4 ++ fcvtld $f1,$f5 ++ fdivd $f4,$f5,$f0 ++ sll $r24,0xb,$r28 ++ fldd $f1,8($sp) ++ sra $r28,0xb,$r28 ++ cmpeq $r24,$r28,$r28 ++ beq $r28,reml_1 ++ fcvtdl_z $f0,$f4 ++ wfpcr $f3 ++ fimovd $f4,$r28 ++ mull $r28,$r25,$r28 ++ fldd $f0,0($sp) ++ fldd $f3,48($sp) ++ fldd $f4,56($sp) ++ fldd $f5,64($sp) ++ ldi $sp,96($sp) ++ subl $r24,$r28,$r27 ++ ret $r31, ($r23), 0x1 ++ reml_1: ++ stl $r1,32($sp) ++ stl $r2,40($sp) ++ stl $r3,16($sp) ++ stl $r6,24($sp) ++ or $r24,$r25,$r28 ++ blt $r28,reml_12 ++ reml_2: ++ fcvtdl_z $f0,$f4 ++ fimovd $f4,$r1 ++ reml_3: ++ fldd $f0,0($sp) ++ stl $r4,0($sp) ++ mull $r1,$r25,$r4 ++ stl $r5,8($sp) ++ wfpcr $f3 ++ subl $r4,$r24,$r27 ++ mov $r25,$r2 ++ mov 0x1,$r3 ++ bgt $r27,reml_8 ++ reml_4: ++ subl $r24,$r4,$r27 ++ mov $r25,$r2 ++ mov 0x1,$r3 ++ bgt $r27,reml_10 ++ reml_5: ++ ldl $r1,32($sp) ++ ldl $r2,40($sp) ++ ldl $r3,16($sp) ++ bne $r6,reml_13 ++ reml_6: ++ ldl $r4,0($sp) ++ ldl $r5,8($sp) ++ ldl $r6,24($sp) ++ fldd $f3,48($sp) ++ fldd $f4,56($sp) ++ fldd $f5,64($sp) ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ reml_7: ++ addl $r2,$r2,$r2 ++ addl $r3,$r3,$r3 ++ reml_8: ++ cmpult $r2,$r27,$r28 ++ bne $r28,reml_7 ++ subl $r1,$r3,$r1 ++ subl $r4,$r2,$r4 ++ br reml_4 ++ reml_9: ++ addl $r2,$r2,$r2 ++ addl $r3,$r3,$r3 ++ reml_10: ++ cmpult $r2,$r27,$r28 ++ bne $r28,reml_9 ++ reml_11: ++ addl $r1,$r3,$r4 ++ srl $r3,0x1,$r3 ++ cmpule $r2,$r27,$r28 ++ subl $r27,$r2,$r5 ++ selne $r28,$r4,$r1,$r1 ++ selne $r28,$r5,$r27,$r27 ++ srl $r2,0x1,$r2 ++ bne $r3,reml_11 ++ br reml_5 ++ reml_12: ++ xor $r24,$r25,$r2 ++ cmplt $r24,0,$r6 ++ negl $r24,$r1 ++ selne $r6,$r1,$r24,$r24 ++ cmplt $r25,0,$r28 ++ negl $r25,$r1 ++ s4addl $r28,$r6,$r6 ++ selne $r28,$r1,$r25,$r25 ++ bge $r2,reml_2 ++ fcvtdl_z $f0,$f4 ++ fimovd $f4,$r1 ++ negl $r1,$r1 ++ br reml_3 ++ reml_13: ++ and $r6,0x4,$r28 ++ negl $r25,$r5 ++ selne $r28,$r5,$r25,$r25 ++ negl $r24,$r5 ++ sellbs $r6,$r5,$r24,$r24 ++ negl $r27,$r5 ++ sellbs $r6,$r5,$r27,$r27 ++ br reml_6 ++ reml_14: ++ mov $r16,$r27 ++ ldi $r16,-2 ++ sys_call 0xaa ++ mov $r27,$r16 ++ clr $r27 ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ ++ ++.globl __remw ++__remw: ++ ldi $sp,-96($sp) ++ fstd $f0,0($sp) ++ beq $r25,remw_1 ++ fstd $f1,8($sp) ++ fstd $f2,16($sp) ++ fstd $f3,40($sp) ++ fstd $f4,48($sp) ++ rfpcr $f2 ++ addw $r31,$r24,$r27 ++ addw $r31,$r25,$r28 ++ ifmovd $r27,$f0 ++ ifmovd $r28,$f1 ++ fcvtld $f0,$f3 ++ fcvtld $f1,$f4 ++ fdivd $f3,$f4,$f0 ++ fcvtdl_z $f0,$f3 ++ wfpcr $f2 ++ fimovd $f3,$r27 ++ fldd $f0,0($sp) ++ mulw $r27,$r25,$r27 ++ fldd $f1,8($sp) ++ fldd $f2,16($sp) ++ fldd $f3,40($sp) ++ fldd $f4,48($sp) ++ ldi $sp,96($sp) ++ subw $r24,$r27,$r27 ++ ret $r31, ($r23), 0x1 ++ remw_1: ++ mov $r16,$r27 ++ ldi $r16,-2 ++ sys_call 0xaa ++ mov $r27,$r16 ++ clr $r27 ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ ++ ++.globl __remwu ++__remwu: ++ ldi $sp,-96($sp) ++ fstd $f0,0($sp) ++ beq $r25,remwu_1 ++ fstd $f1,8($sp) ++ fstd $f2,16($sp) ++ fstd $f3,40($sp) ++ fstd $f4,48($sp) ++ rfpcr $f2 ++ zapnot $r24,0xf,$r27 ++ zapnot $r25,0xf,$r28 ++ ifmovd $r27,$f0 ++ ifmovd $r28,$f1 ++ fcvtld $f0,$f3 ++ fcvtld $f1,$f4 ++ fdivd $f3,$f4,$f0 ++ fcvtdl_z $f0,$f3 ++ wfpcr $f2 ++ fimovd $f3,$r27 ++ fldd $f0,0($sp) ++ mulw $r27,$r25,$r27 ++ fldd $f1,8($sp) ++ fldd $f2,16($sp) ++ fldd $f3,40($sp) ++ fldd $f4,48($sp) ++ ldi $sp,96($sp) ++ subw $r24,$r27,$r27 ++ ret $r31, ($r23), 0x1 ++ remwu_1: ++ mov $r16,$r27 ++ ldih $r31,0($sp) ++ ldi $r16,-2 ++ sys_call 0xaa ++ mov $r27,$r16 ++ clr $r27 ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ ++ ++.globl __remlu ++__remlu: ++ ldi $sp,-96($sp) ++ subl $r25,0x1,$r28 ++ fstd $f0,0($sp) ++ and $r25,$r28,$r28 ++ fstd $f1,8($sp) ++ fstd $f3,48($sp) ++ fstd $f4,56($sp) ++ fstd $f5,64($sp) ++ beq $r28,remlu_11 ++ rfpcr $f3 ++ ifmovd $r24,$f0 ++ ifmovd $r25,$f1 ++ fcvtld $f0,$f4 ++ fcvtld $f1,$f5 ++ blt $r24,remlu_1 ++ fdivd $f4,$f5,$f0 ++ fldd $f1,8($sp) ++ blt $r25,remlu_10 ++ srl $r24,0x35,$r28 ++ bne $r28,remul_2 ++ fcvtdl_z $f0,$f4 ++ wfpcr $f3 ++ fimovd $f4,$r28 ++ mull $r28,$r25,$r28 ++ fldd $f0,0($sp) ++ fldd $f3,48($sp) ++ fldd $f4,56($sp) ++ fldd $f5,64($sp) ++ ldi $sp,96($sp) ++ subl $r24,$r28,$r27 ++ ret $r31, ($r23), 0x1 ++ remlu_1: ++ ldih $r28,24448 ++ fstd $f2,24($sp) ++ fstd $f6,72($sp) ++ ifmovs $r28,$f2 ++ faddd $f4,$f2,$f6 ++ fdivd $f6,$f5,$f0 ++ fldd $f1,8($sp) ++ fldd $f2,24($sp) ++ fldd $f6,72($sp) ++ blt $r25,remlu_10 ++ remul_2: ++ stl $r1,32($sp) ++ stl $r2,40($sp) ++ stl $r3,16($sp) ++ stl $r4,24($sp) ++ fcvtdl_z $f0,$f4 ++ fimovd $f4,$r1 ++ mull $r1,$r25,$r4 ++ stl $r5,8($sp) ++ nop ++ fldd $f0,0($sp) ++ wfpcr $f3 ++ subl $r4,$r24,$r27 ++ mov $r25,$r2 ++ mov 0x1,$r3 ++ bgt $r27,remlu_6 ++ remlu_3: ++ subl $r24,$r4,$r27 ++ mov $r25,$r2 ++ mov 0x1,$r3 ++ bgt $r27,remlu_8 ++ remlu_4: ++ ldl $r5,8($sp) ++ ldl $r1,32($sp) ++ ldl $r2,40($sp) ++ ldl $r3,16($sp) ++ ldl $r4,24($sp) ++ fldd $f3,48($sp) ++ fldd $f4,56($sp) ++ fldd $f5,64($sp) ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ remlu_5: ++ addl $r2,$r2,$r2 ++ addl $r3,$r3,$r3 ++ remlu_6: ++ cmpult $r2,$r27,$r28 ++ bne $r28,remlu_5 ++ subl $r1,$r3,$r1 ++ subl $r4,$r2,$r4 ++ br remlu_3 ++ remlu_7: ++ addl $r2,$r2,$r2 ++ addl $r3,$r3,$r3 ++ remlu_8: ++ cmpult $r2,$r27,$r28 ++ bne $r28,remlu_7 ++ remlu_9: ++ addl $r1,$r3,$r4 ++ srl $r3,0x1,$r3 ++ cmpule $r2,$r27,$r28 ++ subl $r27,$r2,$r5 ++ selne $r28,$r4,$r1,$r1 ++ selne $r28,$r5,$r27,$r27 ++ srl $r2,0x1,$r2 ++ bne $r3,remlu_9 ++ br remlu_4 ++ remlu_10: ++ cmpule $r25,$r24,$r28 ++ wfpcr $f3 ++ subl $r24,$r25,$r27 ++ fldd $f0,0($sp) ++ fldd $f3,48($sp) ++ fldd $f4,56($sp) ++ fldd $f5,64($sp) ++ seleq $r28,$r24,$r27,$r27 ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ remlu_11: ++ subl $r25,0x1,$r28 ++ beq $r25,remlu_12 ++ and $r24,$r28,$r27 ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ remlu_12: ++ mov $r16,$r27 ++ ldi $r16,-2 ++ sys_call 0xaa ++ mov $r27,$r16 ++ clr $r27 ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ ++ ++.globl __divl ++__divl: ++ ldi $sp,-96($sp) ++ fstd $f0,0($sp) ++ beq $r25,divl_14 ++ fstd $f1,8($sp) ++ fstd $f3,48($sp) ++ fstd $f4,56($sp) ++ fstd $f5,64($sp) ++ rfpcr $f3 ++ ifmovd $r24,$f0 ++ ifmovd $r25,$f1 ++ fcvtld $f0,$f4 ++ fcvtld $f1,$f5 ++ fdivd $f4,$f5,$f0 ++ sll $r24,0xb,$r28 ++ fldd $f1,8($sp) ++ sra $r28,0xb,$r28 ++ cmpeq $r24,$r28,$r28 ++ beq $r28,divl_1 ++ fcvtdl_z $f0,$f4 ++ wfpcr $f3 ++ fimovd $f4,$r27 ++ fldd $f0,0($sp) ++ fldd $f3,48($sp) ++ fldd $f4,56($sp) ++ fldd $f5,64($sp) ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ divl_1: ++ stl $r1,32($sp) ++ stl $r2,40($sp) ++ stl $r3,16($sp) ++ stl $r6,24($sp) ++ or $r24,$r25,$r28 ++ blt $r28,divl_12 ++ divl_2: ++ fcvtdl_z $f0,$f4 ++ fimovd $f4,$r27 ++ divl_3: ++ fldd $f0,0($sp) ++ stl $r4,0($sp) ++ mull $r27,$r25,$r4 ++ stl $r5,8($sp) ++ wfpcr $f3 ++ subl $r4,$r24,$r1 ++ mov $r25,$r2 ++ mov 0x1,$r3 ++ bgt $r1,divl_8 ++ divl_4: ++ subl $r24,$r4,$r1 ++ mov $r25,$r2 ++ mov 0x1,$r3 ++ bgt $r1,divl_10 ++ divl_5: ++ ldl $r1,32($sp) ++ ldl $r2,40($sp) ++ ldl $r3,16($sp) ++ bne $r6,divl_13 ++ divl_6: ++ ldl $r4,0($sp) ++ ldl $r5,8($sp) ++ ldl $r6,24($sp) ++ fldd $f3,48($sp) ++ fldd $f4,56($sp) ++ fldd $f5,64($sp) ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ divl_7: ++ addl $r2,$r2,$r2 ++ addl $r3,$r3,$r3 ++ divl_8: ++ cmpult $r2,$r1,$r28 ++ bne $r28,divl_7 ++ subl $r27,$r3,$r27 ++ subl $r4,$r2,$r4 ++ br divl_4 ++ divl_9: ++ addl $r2,$r2,$r2 ++ addl $r3,$r3,$r3 ++ divl_10: ++ cmpult $r2,$r1,$r28 ++ bne $r28,divl_9 ++ divl_11: ++ addl $r27,$r3,$r4 ++ srl $r3,0x1,$r3 ++ cmpule $r2,$r1,$r28 ++ subl $r1,$r2,$r5 ++ selne $r28,$r4,$r27,$r27 ++ selne $r28,$r5,$r1,$r1 ++ srl $r2,0x1,$r2 ++ bne $r3,divl_11 ++ br divl_5 ++ divl_12: ++ xor $r24,$r25,$r28 ++ cmplt $r28,0,$r6 ++ cmplt $r24,0,$r28 ++ negl $r24,$r1 ++ s4addl $r28,$r6,$r6 ++ selne $r28,$r1,$r24,$r24 ++ cmplt $r25,0,$r28 ++ negl $r25,$r1 ++ s8addl $r28,$r6,$r6 ++ selne $r28,$r1,$r25,$r25 ++ blbc $r6,divl_2 ++ fcvtdl_z $f0,$f4 ++ fimovd $f4,$r27 ++ negl $r27,$r27 ++ br divl_3 ++ divl_13: ++ and $r6,0x8,$r28 ++ negl $r25,$r5 ++ selne $r28,$r5,$r25,$r25 ++ and $r6,0x4,$r28 ++ negl $r24,$r5 ++ selne $r28,$r5,$r24,$r24 ++ negl $r27,$r5 ++ sellbs $r6,$r5,$r27,$r27 ++ br divl_6 ++ divl_14: ++ mov $r16,$r27 ++ ldi $r16,-2 ++ sys_call 0xaa ++ mov $r27,$r16 ++ clr $r27 ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ ++ ++.globl __divw ++__divw: ++ ldi $sp,-96($sp) ++ fstd $f0,0($sp) ++ beq $r25,divw_1 ++ fstd $f1,8($sp) ++ fstd $f2,16($sp) ++ fstd $f3,40($sp) ++ fstd $f4,48($sp) ++ rfpcr $f2 ++ addw $r31,$r24,$r27 ++ addw $r31,$r25,$r28 ++ ifmovd $r27,$f0 ++ ifmovd $r28,$f1 ++ fcvtld $f0,$f3 ++ fcvtld $f1,$f4 ++ fdivd $f3,$f4,$f1 ++ fcvtdl_z $f1,$f0 ++ wfpcr $f2 ++ fimovd $f0,$r27 ++ fldd $f0,0($sp) ++ fldd $f1,8($sp) ++ fldd $f2,16($sp) ++ fldd $f3,40($sp) ++ fldd $f4,48($sp) ++ ldi $sp,96($sp) ++ addw $r27,0,$r27 ++ ret $r31, ($r23), 0x1 ++ ldih $r31,0($sp) ++ divw_1: ++ mov $r16,$r27 ++ ldi $r16,-2 ++ sys_call 0xaa ++ mov $r27,$r16 ++ clr $r27 ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ ++ ++.globl __divwu ++__divwu: ++ ldi $sp,-96($sp) ++ fstd $f0,0($sp) ++ beq $r25,divwu_1 ++ fstd $f1,8($sp) ++ fstd $f2,16($sp) ++ fstd $f3,40($sp) ++ fstd $f4,48($sp) ++ rfpcr $f2 ++ zapnot $r24,0xf,$r27 ++ zapnot $r25,0xf,$r28 ++ ifmovd $r27,$f0 ++ ifmovd $r28,$f1 ++ fcvtld $f0,$f3 ++ fcvtld $f1,$f4 ++ fdivd $f3,$f4,$f1 ++ fcvtdl_z $f1,$f0 ++ wfpcr $f2 ++ fimovd $f0,$r27 ++ fldd $f0,0($sp) ++ fldd $f1,8($sp) ++ fldd $f2,16($sp) ++ fldd $f3,40($sp) ++ fldd $f4,48($sp) ++ ldi $sp,96($sp) ++ addw $r27,0,$r27 ++ ret $r31, ($r23), 0x1 ++ divwu_1: ++ mov $r16,$r27 ++ ldi $r16,-2 ++ sys_call 0xaa ++ mov $r27,$r16 ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ ++ ++.globl __divlu ++__divlu: ++ ldi $sp,-96($sp) ++ fstd $f0,0($sp) ++ beq $r25,divlu_11 ++ fstd $f1,8($sp) ++ fstd $f3,48($sp) ++ fstd $f4,56($sp) ++ fstd $f5,64($sp) ++ stl $r1,32($sp) ++ stl $r2,40($sp) ++ rfpcr $f3 ++ rfpcr $f1 ++ fimovd $f1,$r1 ++ ldi $r2,3 ++ sll $r2,0x3a,$r2 ++ bic $r1,$r2,$r1 ++ ifmovd $r1,$f1 ++ wfpcr $f1 ++ ifmovd $r24,$f0 ++ ifmovd $r25,$f1 ++ fcvtld $f0,$f4 ++ fcvtld $f1,$f5 ++ blt $r24,divlu_1 ++ fdivd $f4,$f5,$f0 ++ fldd $f1,8($sp) ++ blt $r25,divlu_10 ++ srl $r24,0x35,$r28 ++ bne $r28,divlu_2 ++ fcvtdl $f0,$f4 ++ wfpcr $f3 ++ fimovd $f4,$r27 ++ ldl $r1,32($sp) ++ ldl $r2,40($sp) ++ fldd $f0,0($sp) ++ fldd $f3,48($sp) ++ fldd $f4,56($sp) ++ fldd $f5,64($sp) ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ ++ divlu_1: ++ ldih $r28,24448 ++ fstd $f2,24($sp) ++ fstd $f6,72($sp) ++ ifmovs $r28,$f2 ++ faddd $f4,$f2,$f6 ++ fdivd $f6,$f5,$f0 ++ fldd $f1,8($sp) ++ ldih $r31,0($sp) ++ fldd $f2,24($sp) ++ fldd $f6,72($sp) ++ blt $r25,divlu_10 ++ ++ divlu_2: ++ stl $r3,16($sp) ++ stl $r4,24($sp) ++ fcvtdl $f0,$f4 ++ fimovd $f4,$r27 ++ mull $r27,$r25,$r4 ++ stl $r5,8($sp) ++ fldd $f0,0($sp) ++ wfpcr $f3 ++ subl $r4,$r24,$r1 ++ mov $r25,$r2 ++ mov 0x1,$r3 ++ bgt $r1,divlu_6 ++ ++ divlu_3: ++ subl $r24,$r4,$r1 ++ mov $r25,$r2 ++ mov 0x1,$r3 ++ bgt $r1,divlu_8 ++ ++ divlu_4: ++ ldl $r5,8($sp) ++ ldl $r1,32($sp) ++ ldl $r2,40($sp) ++ ldl $r3,16($sp) ++ ldl $r4,24($sp) ++ fldd $f3,48($sp) ++ fldd $f4,56($sp) ++ fldd $f5,64($sp) ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ ++ divlu_5: ++ addl $r2,$r2,$r2 ++ addl $r3,$r3,$r3 ++ ++ divlu_6: ++ cmpult $r2,$r1,$r28 ++ bne $r28,divlu_5 ++ subl $r27,$r3,$r27 ++ subl $r4,$r2,$r4 ++ br divlu_3 ++ ++ divlu_7: ++ addl $r2,$r2,$r2 ++ addl $r3,$r3,$r3 ++ ++ divlu_8: ++ cmpult $r2,$r1,$r28 ++ bne $r28,divlu_7 ++ ++ divlu_9: ++ addl $r27,$r3,$r4 ++ srl $r3,0x1,$r3 ++ cmpule $r2,$r1,$r28 ++ subl $r1,$r2,$r5 ++ selne $r28,$r4,$r27,$r27 ++ selne $r28,$r5,$r1,$r1 ++ srl $r2,0x1,$r2 ++ bne $r3,divlu_9 ++ br divlu_4 ++ ++ divlu_10: ++ cmpule $r25,$r24,$r27 ++ wfpcr $f3 ++ fldd $f0,0($sp) ++ fldd $f3,48($sp) ++ fldd $f4,56($sp) ++ fldd $f5,64($sp) ++ ldl $r1,32($sp) ++ ldl $r2,40($sp) ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ ++ divlu_11: ++ mov $r16,$r27 ++ ldi $r16,-2 ++ sys_call 0xaa ++ mov $r27,$r16 ++ clr $r27 ++ ldi $sp,96($sp) ++ ret $r31, ($r23), 0x1 ++ ++#endif ++ ++/* Let the linker know we don't need an executable stack */ ++MARK_STACK_NO_EXEC ++/*--------------------------------------------------------------------*/ ++/*--- end ---*/ ++/*--------------------------------------------------------------------*/ +diff --git a/coregrind/m_syscall.c b/coregrind/m_syscall.c +index 1e49ed412..526dce922 100644 +--- a/coregrind/m_syscall.c ++++ b/coregrind/m_syscall.c +@@ -204,6 +204,15 @@ SysRes VG_(mk_SysRes_arm64_linux) ( Long val ) { + return res; + } + ++SysRes VG_(mk_SysRes_sw64_linux) ( ULong v0, ULong r19, ULong r20 ) { ++ SysRes res; ++ //sw use r19 indicats failure ++ res._isError = (r19==1); ++ res._val = v0; ++ res._valEx = r20; ++ return res; ++} ++ + /* Generic constructors. */ + SysRes VG_(mk_SysRes_Success) ( UWord res ) { + SysRes r; +@@ -1034,6 +1043,25 @@ asm ( + ".previous \n\t" + ); + ++#elif defined(VGP_sw64_linux) ++extern RegWord do_syscall_WRK ( RegWord a1, RegWord a2, RegWord a3, ++ RegWord a4, RegWord a5, RegWord a6, ++ RegWord syscall_no, RegWord* r19, RegWord* r20); ++asm ( ++ ".text \n\t" ++ ".globl do_syscall_WRK \n\t" ++ ".type do_syscall_WRK, @function \n\t" ++ "do_syscall_WRK: \n\t" ++ " ldl $0, 0($30) \n\t" ++ " sys_call 0x83 \n\t" ++ " ldl $5, 8($30) \n\t" ++ " stl $19, 0($5) \n\t" /* store r19 */ ++ " ldl $5, 16($30) \n\t" ++ " stl $20, 0($5) \n\t" /* store r20 */ ++ " ret \n\t" ++ ".previous \n\t" ++); ++ + #elif defined(VGP_x86_solaris) + + extern ULong +@@ -1274,6 +1302,12 @@ SysRes VG_(do_syscall) ( UWord sysno, RegWord a1, RegWord a2, RegWord a3, + do_syscall_WRK(a1, a2, a3, a4, a5, a6, sysno, ®_a0); + return VG_(mk_SysRes_nanomips_linux)(reg_a0); + ++#elif defined(VGP_sw64_linux) ++ RegWord r19 = 0; ++ RegWord r20 = 0; ++ RegWord v0 = do_syscall_WRK(a1, a2, a3, a4, a5, a6, sysno, &r19, &r20); ++ return VG_(mk_SysRes_sw64_linux)( v0, r19, r20 ); ++ + # elif defined(VGP_x86_solaris) + UInt val, val2, err = False; + Bool restart; +diff --git a/coregrind/m_syswrap/priv_syswrap-linux.h b/coregrind/m_syswrap/priv_syswrap-linux.h +index 7c9decf5a..72e194dd3 100644 +--- a/coregrind/m_syswrap/priv_syswrap-linux.h ++++ b/coregrind/m_syswrap/priv_syswrap-linux.h +@@ -509,6 +509,14 @@ extern UInt do_syscall_clone_nanomips_linux ( Word (*fn) (void *), /* a0 - 4 */ + Int* child_tid, /* a4 - 8 */ + Int* parent_tid, /* a5 - 9 */ + void* tls_ptr); /* a6 - 10 */ ++extern ULong do_syscall_clone_sw64_linux( Word(*fn)(void*), /*%1*/ ++ void* stack, /*%2*/ ++ Int flags, /*%3*/ ++ void* arg, /*%4*/ ++ Int* parent_tid, /*%5*/ ++ void* tls, /*%6*/ ++ Int* child_tid); /*%7*/ ++ + #endif // __PRIV_SYSWRAP_LINUX_H + + /*--------------------------------------------------------------------*/ +diff --git a/coregrind/m_syswrap/priv_types_n_macros.h b/coregrind/m_syswrap/priv_types_n_macros.h +index dd241839a..e71f5c2fe 100644 +--- a/coregrind/m_syswrap/priv_types_n_macros.h ++++ b/coregrind/m_syswrap/priv_types_n_macros.h +@@ -94,7 +94,7 @@ typedef + || defined(VGP_ppc32_linux) \ + || defined(VGP_arm_linux) || defined(VGP_s390x_linux) \ + || defined(VGP_arm64_linux) \ +- || defined(VGP_nanomips_linux) ++ || defined(VGP_nanomips_linux) || defined(VGP_sw64_linux) + Int o_arg1; + Int o_arg2; + Int o_arg3; +diff --git a/coregrind/m_syswrap/syscall-sw64-linux.S b/coregrind/m_syswrap/syscall-sw64-linux.S +new file mode 100644 +index 000000000..c25062e4c +--- /dev/null ++++ b/coregrind/m_syswrap/syscall-sw64-linux.S +@@ -0,0 +1,158 @@ ++ ++/*--------------------------------------------------------------------*/ ++/*--- Support for doing system calls. syscall-sw64-linux.S ---*/ ++/*--------------------------------------------------------------------*/ ++ ++/* ++ This file is part of Valgrind, a dynamic binary instrumentation ++ framework. ++ ++ Copyright (C) 2010-2017 RT-RK ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, see . ++ ++ The GNU General Public License is contained in the file COPYING. ++*/ ++ ++#include "pub_core_basics_asm.h" ++ ++#if defined(VGP_sw64_linux) ++ ++#include "pub_core_vkiscnums_asm.h" ++#include "libvex_guest_offsets.h" ++ ++/*----------------------------------------------------------------*/ ++/* ++ Perform a syscall for the client. This will run a syscall ++ with the client's specific per-thread signal mask. ++ ++ The structure of this function is such that, if the syscall is ++ interrupted by a signal, we can determine exactly what ++ execution state we were in with respect to the execution of ++ the syscall by examining the value of PC in the signal ++ handler. This means that we can always do the appropriate ++ thing to precisely emulate the kernel's signal/syscall ++ interactions. ++ ++ The syscall number is taken from the argument, even though it ++ should also be in regs->v0. The syscall result is written ++ back to regs->v0 on completion. ++ ++ VG_(fixup_guest_state_after_syscall_interrupted) does the ++ thread state fixup in the case where we were interrupted by a ++ signal. ++ ++ Prototype: ++ ++ UWord ML_(do_syscall_for_client_WRK)( ++ Int syscallno, // $16 - a0 ++ void* guest_state, // $17 - a1 ++ const vki_sigset_t *sysmask, // $18 - a2 ++ const vki_sigset_t *postmask, // $19 - a3 ++ Int nsigwords) // $20 - a4 ++*/ ++ ++/* from vki_arch.h */ ++#define VKI_SIG_SETMASK 3 ++ ++.globl ML_(do_syscall_for_client_WRK) ++ML_(do_syscall_for_client_WRK): ++ ++ /*save regs a0-a4 on stack*/ ++ subl $30, 48, $30 ++ stl $16, 0($30) //a0 ++ stl $17, 8($30) //a1 ++ stl $18, 16($30) //a2 ++ stl $19, 24($30) //a3 ++ stl $20, 32($30) //a4 ++ ++ /*do sigprocmask*/ ++1: ldi $0, __NR_rt_sigprocmask($31) ++ ldi $16, VKI_SIG_SETMASK ++ mov $18, $17 /*sysmask*/ ++ mov $19, $18 /*postmask*/ ++ mov $20, $19 /*nsigwords*/ ++ sys_call 0x83 ++ bne $19, 7f /*r19!=0 means syscall fail*/ ++ ++ /* Actually do the client syscall */ ++ ldl $17, 8($30) /* guest_state */ ++ ldl $16, OFFSET_sw64_r16($17) /* a0 */ ++ ++ ldl $18, OFFSET_sw64_r18($17) /* a2 */ ++ ldl $19, OFFSET_sw64_r19($17) /* a3 */ ++ ldl $20, OFFSET_sw64_r20($17) /* a4 */ ++ ldl $21, OFFSET_sw64_r21($17) /* a5 */ ++ ldl $22, OFFSET_sw64_r22($17) /* a6 */ ++ ldl $23, OFFSET_sw64_r23($17) /* a7 */ ++ ++ ldl $17, OFFSET_sw64_r17($17) /* a1 */ ++ ldl $0, 0($30) /* syscallno */ ++ ++2: sys_call 0x83 ++ ++ /* Saving return values into Guest state */ ++3: ldl $17, 8($30) /* guest_state */ ++ stl $0, OFFSET_sw64_r0($17) /* v0 */ ++ stl $19, OFFSET_sw64_r19($17) /* a3 */ ++ stl $20, OFFSET_sw64_r20($17) /* a4, some syscall e.g. pipe(2) ++ use this register as 2nd return value */ ++ ++4: ldi $0, __NR_rt_sigprocmask ++ ldi $16, VKI_SIG_SETMASK ++ ldl $17, 24($30) /* postmask */ ++ mov $31, $18 /* 0 (zero) */ ++ ldl $19, 32($30) /* nsigwords */ ++ sys_call 0x83 ++ ++ bne $19, 7f /*if fail, go to error*/ ++ nop ++ ++5: /* restore 30 and return */ ++ addl $30, 48, $30 ++ jmp $31, ($26) ++ nop ++ ++ ++7: /* error */ ++ addl $30, 48, $30 ++ ldi $0, 0x8000 ++ jmp $31, ($26) ++ nop ++ ++.section .rodata ++/* export the ranges so that ++ VG_(fixup_guest_state_after_syscall_interrupted) can do the ++ right thing */ ++ ++.globl ML_(blksys_setup) ++.globl ML_(blksys_restart) ++.globl ML_(blksys_complete) ++.globl ML_(blksys_committed) ++.globl ML_(blksys_finished) ++/* those numbers are reference tags, NOT number literal */ ++ML_(blksys_setup): .quad 1b ++ML_(blksys_restart): .quad 2b ++ML_(blksys_complete): .quad 3b ++ML_(blksys_committed): .quad 4b ++ML_(blksys_finished): .quad 5b ++ ++#endif // defined(VGP_sw64_linux) ++ ++/* Let the linker know we don't need an executable stack */ ++MARK_STACK_NO_EXEC ++ ++/*--------------------------------------------------------------------*/ ++/*--- end ---*/ ++/*--------------------------------------------------------------------*/ +diff --git a/coregrind/m_syswrap/syswrap-linux.c b/coregrind/m_syswrap/syswrap-linux.c +index d571fc327..02aebd7ef 100644 +--- a/coregrind/m_syswrap/syswrap-linux.c ++++ b/coregrind/m_syswrap/syswrap-linux.c +@@ -310,6 +310,16 @@ static void run_a_thread_NORETURN ( Word tidW ) + : "r" (VgTs_Empty), "n" (__NR_exit), "m" (tst->os_state.exitcode) + : "memory" , "$t4", "$a0" + ); ++#elif defined(VGP_sw64_linux) ++ asm volatile ( ++ "stw %1, %0 \n\t" /* set tst->status = VgTs_Empty (32-bit store) */ ++ "ldi $0, %2 \n\t" /* set v0 = __NR_exit */ ++ "ldl $16,%3 \n\t" /* set r16 = tst->os_state.exitcode */ ++ "sys_call 0x83 \n\t" /* exit(tst->os_state.exitcode) */ ++ "nop" ++ : "=m" (tst->status) ++ : "r" (VgTs_Empty), "n" (__NR_exit), "m" (tst->os_state.exitcode) ++ ); + #else + # error Unknown platform + #endif +@@ -535,6 +545,14 @@ static SysRes clone_new_thread ( Word (*fn)(void *), + (ML_(start_thread_NORETURN), stack, flags, ctst, + child_tidptr, parent_tidptr, NULL); + res = VG_ (mk_SysRes_nanomips_linux) (ret); ++#elif defined(VGP_sw64_linux) ++ ULong v0 = 0; ++ ctst->arch.vex.guest_r0 = 0; ++ ctst->arch.vex.guest_r19 = 0; ++ v0 = do_syscall_clone_sw64_linux ++ (ML_(start_thread_NORETURN), stack, flags, ctst, ++ parent_tidptr, NULL, child_tidptr); ++ res = VG_(mk_SysRes_sw64_linux)(v0, 0, 0); + #else + # error Unknown platform + #endif +@@ -597,6 +615,8 @@ static SysRes setup_child_tls (ThreadId ctid, Addr tlsaddr) + #elif defined(VGP_mips32_linux) || defined(VGP_nanomips_linux) + ctst->arch.vex.guest_ULR = tlsaddr; + ctst->arch.vex.guest_r27 = tlsaddr; ++#elif defined(VGP_sw64_linux) ++ ctst->arch.vex.guest_TID = tlsaddr; + #else + # error Unknown platform + #endif +@@ -759,9 +779,10 @@ static SysRes ML_(do_fork_clone) ( ThreadId tid, UInt flags, + res = VG_(do_syscall5)( __NR_clone, flags, + (UWord)NULL, (UWord)parent_tidptr, + (UWord)NULL, (UWord)child_tidptr ); +-#elif defined(VGP_amd64_linux) ++#elif defined(VGP_amd64_linux) || defined(VGP_sw64_linux) + /* note that the last two arguments are the opposite way round to x86 and + ppc32 as the amd64 kernel expects the arguments in a different order */ ++ /* also sw_64*/ + res = VG_(do_syscall5)( __NR_clone, flags, + (UWord)NULL, (UWord)parent_tidptr, + (UWord)child_tidptr, (UWord)NULL ); +@@ -828,7 +849,7 @@ PRE(sys_clone) + #define PRA_CHILD_TIDPTR PRA5 + #define ARG_TLS ARG4 + #define PRA_TLS PRA4 +-#elif defined(VGP_amd64_linux) || defined(VGP_s390x_linux) ++#elif defined(VGP_amd64_linux) || defined(VGP_s390x_linux) || defined(VGP_sw64_linux) + #define ARG_CHILD_TIDPTR ARG4 + #define PRA_CHILD_TIDPTR PRA4 + #define ARG_TLS ARG5 +@@ -4273,7 +4294,7 @@ POST(sys_sigpending) + // conditional compilation like this?) + #if defined(VGP_x86_linux) || defined(VGP_ppc32_linux) \ + || defined(VGP_arm_linux) || defined(VGP_mips32_linux) \ +- || defined(VGP_nanomips_linux) ++ || defined(VGP_nanomips_linux) || defined(VGP_sw64_linux) + PRE(sys_sigprocmask) + { + vki_old_sigset_t* set; +@@ -4460,9 +4481,12 @@ PRE(sys_rt_sigaction) + PRE_MEM_READ( "rt_sigaction(act->sa_handler)", (Addr)&sa->ksa_handler, sizeof(sa->ksa_handler)); + PRE_MEM_READ( "rt_sigaction(act->sa_mask)", (Addr)&sa->sa_mask, sizeof(sa->sa_mask)); + PRE_MEM_READ( "rt_sigaction(act->sa_flags)", (Addr)&sa->sa_flags, sizeof(sa->sa_flags)); ++ #if !defined(VGP_sw64_linux) ++ // TODO(Shaohua): Read mem + if (ML_(safe_to_deref)(sa,sizeof(vki_sigaction_toK_t)) + && (sa->sa_flags & VKI_SA_RESTORER)) + PRE_MEM_READ( "rt_sigaction(act->sa_restorer)", (Addr)&sa->sa_restorer, sizeof(sa->sa_restorer)); ++ #endif + } + if (ARG3 != 0) + PRE_MEM_WRITE( "rt_sigaction(oldact)", ARG3, sizeof(vki_sigaction_fromK_t)); +@@ -6815,7 +6839,8 @@ POST(sys_lookup_dcookie) + #endif + + #if defined(VGP_amd64_linux) || defined(VGP_s390x_linux) \ +- || defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) ++ || defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) + PRE(sys_lookup_dcookie) + { + *flags |= SfMayBlock; +@@ -7109,6 +7134,9 @@ PRE(sys_ioctl) + case VKI_FIOCLEX: + case VKI_FIONCLEX: + case VKI_TIOCNOTTY: ++#if defined(VGP_sw64_linux) ++ case VKI_TIOCGPTPEER: ++#endif + + /* linux perf_event ioctls */ + case VKI_PERF_EVENT_IOC_ENABLE: +@@ -10474,6 +10502,10 @@ POST(sys_ioctl) + break; + case VKI_TIOCNOTTY: + break; ++#if defined(VGP_sw64_linux) ++ case VKI_TIOCGPTPEER: ++ break; ++#endif + case VKI_FIOASYNC: + break; + case VKI_FIONREAD: /* identical to SIOCINQ */ +diff --git a/coregrind/m_syswrap/syswrap-main.c b/coregrind/m_syswrap/syswrap-main.c +index 91a1f7e53..3dc850286 100644 +--- a/coregrind/m_syswrap/syswrap-main.c ++++ b/coregrind/m_syswrap/syswrap-main.c +@@ -70,6 +70,7 @@ + mips32 v0 a0 a1 a2 a3 stack stack n/a n/a v0 (== NUM) + mips64 v0 a0 a1 a2 a3 a4 a5 a6 a7 v0 (== NUM) + arm64 x8 x0 x1 x2 x3 x4 x5 n/a n/a x0 ?? (== ARG1??) ++ sw64 v0 a0 a1 a2 a3 a4 a5 n/a n/a v0 (== NUM) + + FreeBSD: + x86 eax +4 +8 +12 +16 +20 +24 +28 +32 edx:eax, eflags.c +@@ -703,6 +704,19 @@ void getSyscallArgsFromGuestState ( /*OUT*/SyscallArgs* canonical, + canonical->arg6 = gst->guest_r9; // a5 + canonical->arg7 = gst->guest_r10; // a6 + canonical->arg8 = gst->guest_r11; // a7 ++ ++#elif defined(VGP_sw64_linux) ++ VexGuestSW64State* gst = (VexGuestSW64State*)gst_vanilla; ++ canonical->sysno = gst->guest_r0; ++ canonical->arg1 = gst->guest_r16; ++ canonical->arg2 = gst->guest_r17; ++ canonical->arg3 = gst->guest_r18; ++ canonical->arg4 = gst->guest_r19; ++ canonical->arg5 = gst->guest_r20; ++ canonical->arg6 = gst->guest_r21; ++ canonical->arg7 = 0; ++ canonical->arg8 = 0; ++ + #elif defined(VGP_x86_darwin) + VexGuestX86State* gst = (VexGuestX86State*)gst_vanilla; + UWord *stack = (UWord *)gst->guest_ESP; +@@ -1126,6 +1140,16 @@ void putSyscallArgsIntoGuestState ( /*IN*/ SyscallArgs* canonical, + gst->guest_r10 = canonical->arg7; + gst->guest_r11 = canonical->arg8; + ++#elif defined(VGP_sw64_linux) ++ VexGuestSW64State* gst = (VexGuestSW64State*)gst_vanilla; ++ gst->guest_r0 = canonical->sysno; ++ gst->guest_r16 = canonical->arg1; ++ gst->guest_r17 = canonical->arg2; ++ gst->guest_r18 = canonical->arg3; ++ gst->guest_r19 = canonical->arg4; ++ gst->guest_r20 = canonical->arg5; ++ gst->guest_r21 = canonical->arg6; ++ + #elif defined(VGP_x86_solaris) + VexGuestX86State* gst = (VexGuestX86State*)gst_vanilla; + UWord *stack = (UWord *)gst->guest_ESP; +@@ -1240,6 +1264,15 @@ void getSyscallStatusFromGuestState ( /*OUT*/SyscallStatus* canonical, + RegWord a0 = gst->guest_r4; // a0 + canonical->sres = VG_(mk_SysRes_nanomips_linux)(a0); + canonical->what = SsComplete; ++ ++# elif defined(VGP_sw64_linux) ++ VexGuestSW64State* gst = (VexGuestSW64State*)gst_vanilla; ++ ULong v0 = gst->guest_r0; // v0 ++ ULong r19 = gst->guest_r19; // r19 ++ ULong r20 = gst->guest_r20; // r20 ++ canonical->sres = VG_(mk_SysRes_sw64_linux)(v0, r19, r20); ++ canonical->what = SsComplete; ++ + # elif defined(VGP_amd64_freebsd) + /* duplicates logic in m_signals.VG_UCONTEXT_SYSCALL_SYSRES */ + VexGuestAMD64State* gst = (VexGuestAMD64State*)gst_vanilla; +@@ -1606,6 +1639,23 @@ void putSyscallStatusIntoGuestState ( /*IN*/ ThreadId tid, + VG_TRACK( post_reg_write, Vg_CoreSysCall, tid, + OFFSET_mips32_r4, sizeof(UWord) ); + ++# elif defined(VGP_sw64_linux) ++ VexGuestSW64State* gst = (VexGuestSW64State*)gst_vanilla; ++ vg_assert(canonical->what == SsComplete); ++ if (sr_isError(canonical->sres)) { ++ gst->guest_r0 = (Long)sr_Err(canonical->sres); ++ gst->guest_r19 = (Long) 1; ++ } else { ++ gst->guest_r0 = sr_Res(canonical->sres); ++ gst->guest_r19 = 0; ++ } ++ VG_TRACK( post_reg_write, Vg_CoreSysCall, tid, ++ OFFSET_sw64_r0, sizeof(UWord) ); ++ VG_TRACK( post_reg_write, Vg_CoreSysCall, tid, ++ OFFSET_sw64_r19, sizeof(UWord) ); ++ /* sw64: Not all syscall will touch r20, keep r20 unchanged. ++ If a special syscall do that, write gst->guest_r20 in post handler */ ++ + # elif defined(VGP_x86_solaris) + VexGuestX86State* gst = (VexGuestX86State*)gst_vanilla; + SysRes sres = canonical->sres; +@@ -1798,6 +1848,17 @@ void getSyscallArgLayout ( /*OUT*/SyscallArgLayout* layout ) + layout->o_arg7 = OFFSET_mips64_r10; + layout->o_arg8 = OFFSET_mips64_r11; + ++#elif defined(VGP_sw64_linux) ++ layout->o_sysno = OFFSET_sw64_r0; ++ layout->o_arg1 = OFFSET_sw64_r16; ++ layout->o_arg2 = OFFSET_sw64_r17; ++ layout->o_arg3 = OFFSET_sw64_r18; ++ layout->o_arg4 = OFFSET_sw64_r19; ++ layout->o_arg5 = OFFSET_sw64_r20; ++ layout->o_arg6 = OFFSET_sw64_r21; ++ layout->uu_arg7 = -1; /* impossible value */ ++ layout->uu_arg8 = -1; /* impossible value */ ++ + #elif defined(VGP_x86_darwin) + layout->o_sysno = OFFSET_x86_EAX; + // syscall parameters are on stack in C convention +@@ -2899,6 +2960,26 @@ void ML_(fixup_guest_state_to_restart_syscall) ( ThreadArchState* arch ) + arch->vex.guest_PC -= 2; + } + } ++ ++#elif defined(VGP_sw64_linux) ++ /* Make sure our caller is actually sane, and we're really backing ++ back over a syscall. ++ syscall (w/o barrier) == 83 00 00 02 ++ syscall (with barrier) == 83 00 00 00 ++ */ ++ { ++ arch->vex.guest_PC -= 4; // sizeof(sw64 instr) ++ UChar *p = (UChar *)arch->vex.guest_PC; ++ if (p[0] != 0x83 || p[1] != 0x00 || p[2] != 0x00 || (p[3] != 0x02 && p[3] != 0x00)) ++ VG_(message)( ++ Vg_DebugMsg, ++ "?! restarting over syscall at %#llx %02x %02x %02x %02x\n", ++ arch->vex.guest_PC, p[0], p[1], p[2], p[3] ++ ); ++ ++ vg_assert(p[0] == 0x83 && p[1] == 0x00 && p[2] == 0x00 && (p[3] == 0x02 || p[3] == 0x00)); ++ } ++ + #elif defined(VGP_x86_solaris) + arch->vex.guest_EIP -= 2; // sizeof(int $0x91) or sizeof(syscall) + +diff --git a/coregrind/m_syswrap/syswrap-sw64-linux.c b/coregrind/m_syswrap/syswrap-sw64-linux.c +new file mode 100644 +index 000000000..80db0fbd9 +--- /dev/null ++++ b/coregrind/m_syswrap/syswrap-sw64-linux.c +@@ -0,0 +1,973 @@ ++ ++/*--------------------------------------------------------------------*/ ++/*--- Platform-specific syscalls stuff. syswrap-sw64-linux.c ----*/ ++/*--------------------------------------------------------------------*/ ++ ++/* ++ This file is part of Valgrind, a dynamic binary instrumentation ++ framework. ++ ++ Copyright (C) 2010-2017 RT-RK ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, see . ++ ++ The GNU General Public License is contained in the file COPYING. ++*/ ++ ++#if defined(VGP_sw64_linux) ++#include "libvex_guest_offsets.h" ++#include "pub_core_basics.h" ++#include "pub_core_vki.h" ++#include "pub_core_vkiscnums.h" ++#include "pub_core_threadstate.h" ++#include "pub_core_aspacemgr.h" ++#include "pub_core_debuglog.h" ++#include "pub_core_libcbase.h" ++#include "pub_core_libcassert.h" ++#include "pub_core_libcprint.h" ++#include "pub_core_libcproc.h" ++#include "pub_core_libcsignal.h" ++#include "pub_core_options.h" ++#include "pub_core_scheduler.h" ++#include "pub_core_sigframe.h" /* For VG_(sigframe_destroy)() */ ++#include "pub_core_signals.h" ++#include "pub_core_syscall.h" ++#include "pub_core_syswrap.h" ++#include "pub_core_tooliface.h" ++#include "pub_core_transtab.h" /* VG_(discard_translations) */ ++#include "priv_types_n_macros.h" ++#include "priv_syswrap-generic.h" /* for decls of generic wrappers */ ++#include "priv_syswrap-linux.h" /* for decls of linux-ish wrappers */ ++#include "priv_syswrap-main.h" ++ ++#include "pub_core_debuginfo.h" /* VG_(di_notify_*) */ ++#include "pub_core_xarray.h" ++#include "pub_core_clientstate.h" /* VG_(brk_base), VG_(brk_limit) */ ++#include "pub_core_errormgr.h" ++#include "pub_core_gdbserver.h" /* VG_(gdbserver) */ ++#include "pub_core_libcfile.h" ++#include "pub_core_machine.h" /* VG_(get_SP) */ ++#include "pub_core_mallocfree.h" ++#include "pub_core_stacktrace.h" /* For VG_(get_and_pp_StackTrace)() */ ++#include "pub_core_ume.h" ++ ++#include "config.h" ++ ++#include ++ ++/* --------------------------------------------------------------------- ++ clone() handling ++ ------------------------------------------------------------------ */ ++ ++/* Call f(arg1), but first switch stacks, using 'stack' as the new stack, and ++ use 'retaddr' as f's return-to address. Also, clear all the integer registers ++ before entering f. */ ++__attribute__ ((noreturn)) ++void ML_(call_on_new_stack_0_1) ( Addr stack, /* $16 - $a0 */ ++ Addr retaddr, /* $17 - $a1 */ ++ void (*f_desc) (Word), /* $18 - $a2 */ ++ Word arg1 ); /* $19 - $a3 */ ++asm ( ++".text\n" ++".globl vgModuleLocal_call_on_new_stack_0_1\n" ++"vgModuleLocal_call_on_new_stack_0_1:\n" ++" mov $16, $30\n" /* set stack */ ++" mov $19, $16\n" /* arg1 to $16 */ ++" mov $18, $27\n" ++" mov $17, $26\n" /* retaddr to $ra */ ++" ldi $0, 0($31)\n\t" /* zero all GP regs */ ++" ldi $1, 0($31)\n\t" ++" ldi $2, 0($31)\n\t" ++" ldi $3, 0($31)\n\t" ++" ldi $4, 0($31)\n\t" ++" ldi $5, 0($31)\n\t" ++" ldi $6, 0($31)\n\t" ++" ldi $7, 0($31)\n\t" ++" ldi $8, 0($31)\n\t" ++" ldi $9, 0($31)\n\t" ++" ldi $10,0($31)\n\t" ++" ldi $11,0($31)\n\t" ++" ldi $12,0($31)\n\t" ++" ldi $13,0($31)\n\t" ++" ldi $14,0($31)\n\t" ++" ldi $17,0($31)\n\t" ++" ldi $18,0($31)\n\t" ++" ldi $19,0($31)\n\t" ++" ldi $20,0($31)\n\t" ++" ldi $21,0($31)\n\t" ++" ldi $22,0($31)\n\t" ++" ldi $23,0($31)\n\t" ++" ldi $24,0($31)\n\t" ++" ldi $25,0($31)\n\t" ++" mov $30, $15\n\t" ++" jmp $31, ($27)\n" /* jump to f */ ++" halt\n" /* should never get here */ ++".previous\n" ++); ++ ++/* ULong do_syscall_clone_sw64_linux(Word (*fn)(void*), void *stack, Int flags, ++ void *arg, Int *parent_tid, void *tls, ++ Int *child_tid); ++ Perform a clone system call. clone is strange because it has fork()-like ++ return-twice semantics, so it needs special handling here. ++*/ ++asm( ++".text\n" ++".global do_syscall_clone_sw64_linux\n" ++".ent do_syscall_clone_sw64_linux\n" ++"do_syscall_clone_sw64_linux:\n" ++" .cfi_startproc\n" ++ ++" ldi $17, -16($17)\n" /* allocate space on child stack*/ ++" stl $16, 0($17)\n" /* save fn */ ++" stl $19, 8($17)\n" /* save arg*/ ++ ++/* arg of syscalls is clone(flags, usp, ptid, ctid, tls) ++ from /sysdeps/unix/sysv/linux/sw_64/clone.S:61 */ ++" mov $16, $1\n" ++" mov $17, $2\n" ++" mov $18, $3\n" ++" mov $19, $4\n" ++" mov $20, $5\n" ++" mov $21, $6\n" ++" ldl $7, 0($30)\n" ++" mov $3, $16\n" ++" mov $2, $17\n" ++" mov $5, $18\n" ++" mov $7, $19\n" ++" mov $6, $20\n" ++" ldi $0, " VG_STRINGIFY(__NR_clone) "\n" ++" sys_call 0x83\n" ++" bne $19, parent_or_error\n" ++" bne $0, parent_or_error\n" ++ ++/* CHILD - call thread function, then call to exit() */ ++" ldl $27, 0($30)\n" /* pop fn */ ++" ldl $16, 8($30)\n" /* pop arg */ ++" ldi $30, 16($30)\n" ++ ++" call $26, ($27), 0\n" /* call to funcion */ ++ ++" mov $0, $16\n" /* call to exit() */ ++" ldi $0, " VG_STRINGIFY(__NR_exit) "\n" ++" sys_call 0x83\n" ++ ++/* PARENT or ERROR - return */ ++"parent_or_error:\n" ++" ret $31, ($26), 0\n" ++ ++" .cfi_endproc\n" ++".end do_syscall_clone_sw64_linux\n" ++); ++ ++/* --------------------------------------------------------------------- ++ More thread stuff ++ ------------------------------------------------------------------ */ ++void VG_(cleanup_thread) ( ThreadArchState * arch ) { }; ++ ++// SysRes sys_set_tls ( ThreadId tid, Addr tlsptr ) ++// { ++// /* SW_NOT_COMPLETE */ ++// } ++ ++/* --------------------------------------------------------------------- ++ PRE/POST wrappers for sw/Linux-specific syscalls ++ ------------------------------------------------------------------ */ ++ ++#define PRE(name) DEFN_PRE_TEMPLATE(sw64_linux, name) ++#define POST(name) DEFN_POST_TEMPLATE(sw64_linux, name) ++ ++/* Add prototypes for the wrappers declared here, so that gcc doesn't harass us ++ for not having prototypes. Really this is a kludge -- the right thing to do ++ is to make these wrappers 'static' since they aren't visible outside this ++ file, but that requires even more macro magic. */ ++ ++DECL_TEMPLATE(sw64_linux, sys_ptrace); // 26 ++DECL_TEMPLATE(sw64_linux, sys_pipe); // 42 ++DECL_TEMPLATE(sw64_linux, sys_odd_sigprocmask); // 48 ++DECL_TEMPLATE(sw64_linux, sys_mmap); // 71 ++DECL_TEMPLATE(sw64_linux, sys_gethostname); // 87 ++DECL_TEMPLATE(sw64_linux, sys_sethostname); // 88 ++DECL_TEMPLATE(sw64_linux, sys_sigreturn); // 103 ++DECL_TEMPLATE(sw64_linux, sys_sigsuspend); // 111 ++DECL_TEMPLATE(sw64_linux, sys_setdomainname); // 166 ++DECL_TEMPLATE(sw64_linux, sys_sysfs); // 254 ++DECL_TEMPLATE(sw64_linux, sys_getsysinfo); // 256 ++DECL_TEMPLATE(sw64_linux, sys_setsysinfo); // 257 ++DECL_TEMPLATE(sw64_linux, sys_swapoff); // 304 ++DECL_TEMPLATE(sw64_linux, sys_reboot); // 311 ++DECL_TEMPLATE(sw64_linux, sys_swapon); // 322 ++DECL_TEMPLATE(sw64_linux, sys_ustat); // 327 ++DECL_TEMPLATE(sw64_linux, sys_sched_rr_get_interval); // 337 ++DECL_TEMPLATE(sw64_linux, sys_rt_sigreturn); // 351 ++DECL_TEMPLATE(sw64_linux, sys_fadvise64); // 413 ++DECL_TEMPLATE(sw64_linux, sys_stat64); // 425 ++DECL_TEMPLATE(sw64_linux, sys_lstat64); // 426 ++DECL_TEMPLATE(sw64_linux, sys_fstat64); // 427 ++DECL_TEMPLATE(sw64_linux, sys_fstatat64); // 455 ++DECL_TEMPLATE(sw64_linux, sys_vmsplice); // 471 ++ ++PRE(sys_ptrace) ++{ ++ PRINT("sys_ptrace ( %ld, %ld, %#" FMT_REGWORD "x, %#" FMT_REGWORD "x )", ++ SARG1, SARG2, ARG3, ARG4); ++ PRE_REG_READ4(int, "ptrace", ++ long, request, long, pid, unsigned long, addr, ++ unsigned long, data); ++ switch (ARG1) { ++ case VKI_PTRACE_PEEKTEXT: ++ case VKI_PTRACE_PEEKDATA: ++ case VKI_PTRACE_PEEKUSR: ++ PRE_MEM_WRITE("ptrace(peek)", ARG4, sizeof(long)); ++ break; ++ case VKI_PTRACE_GETEVENTMSG: ++ PRE_MEM_WRITE("ptrace(geteventmsg)", ARG4, sizeof(unsigned long)); ++ break; ++ case VKI_PTRACE_GETSIGINFO: ++ PRE_MEM_WRITE("ptrace(getsiginfo)", ARG4, sizeof(vki_siginfo_t)); ++ break; ++ case VKI_PTRACE_SETSIGINFO: ++ PRE_MEM_READ("ptrace(setsiginfo)", ARG4, sizeof(vki_siginfo_t)); ++ break; ++ case VKI_PTRACE_GETREGSET: ++ ML_(linux_PRE_getregset)(tid, ARG3, ARG4); ++ break; ++ default: ++ break; ++ } ++} ++POST(sys_ptrace) ++{ ++ switch (ARG1) { ++ case VKI_PTRACE_TRACEME: ++ ML_(linux_POST_traceme)(tid); ++ break; ++ case VKI_PTRACE_PEEKTEXT: ++ case VKI_PTRACE_PEEKDATA: ++ case VKI_PTRACE_PEEKUSR: ++ POST_MEM_WRITE (ARG4, sizeof(long)); ++ break; ++ case VKI_PTRACE_GETEVENTMSG: ++ POST_MEM_WRITE (ARG4, sizeof(unsigned long)); ++ break; ++ case VKI_PTRACE_GETSIGINFO: ++ POST_MEM_WRITE (ARG4, sizeof(vki_siginfo_t)); ++ break; ++ case VKI_PTRACE_GETREGSET: ++ ML_(linux_POST_getregset)(tid, ARG3, ARG4); ++ break; ++ default: ++ break; ++ } ++} ++ ++PRE(sys_pipe) ++{ ++ PRINT("sys_pipe ( %#" FMT_REGWORD "x )", ARG1); ++ PRE_REG_READ1(int, "pipe", int *, filedes); ++ PRE_MEM_WRITE( "pipe(filedes)", ARG1, 2*sizeof(int) ); ++} ++POST(sys_pipe) ++{ ++ Int p0, p1; ++ ThreadState *gst; ++ ++ vg_assert(SUCCESS); ++ p0 = sr_Res(status->sres); ++ p1 = sr_ResEx(status->sres); ++ ++ if (!ML_(fd_allowed)(p0, "pipe", tid, True) || ++ !ML_(fd_allowed)(p1, "pipe", tid, True)) { ++ VG_(close)(p0); ++ VG_(close)(p1); ++ SET_STATUS_Failure( VKI_EMFILE ); ++ } else { ++ if (VG_(clo_track_fds)) { ++ ML_(record_fd_open_nameless)(tid, p0); ++ ML_(record_fd_open_nameless)(tid, p1); ++ } ++ } ++ ++ gst = VG_(get_ThreadState)(tid); ++ gst->arch.vex.guest_r20 = p1; ++ VG_TRACK( post_reg_write, Vg_CoreSysCall, tid, ++ OFFSET_sw64_r20, sizeof(UWord) ); ++} ++ ++PRE(sys_odd_sigprocmask) ++{ ++ /* see linux-4.19.y-sw/arch/sw_64/kernel/signal.c ++ SYSCALL_DEFINE2(odd_sigprocmask, int, how, unsigned long, newmask) ++ ++ these code is copy from valgrind-sw/coregrind/m_syswrap/syswrap-linux.c ++ in PRE(sys_sigprocmask) ++ */ ++ vki_old_sigset_t* set; ++ vki_sigset_t bigger_set; ++ ++ PRINT("sys_odd_sigprocmask ( %ld, %#lx )", SARG1, ARG2); ++ PRE_REG_READ2(long, "sys_odd_sigprocmask", ++ int, how, vki_old_sigset_t *, set); ++ if (ARG2 != 0) ++ PRE_MEM_READ( "sigprocmask(set)", ARG2, sizeof(vki_old_sigset_t)); ++ ++ // Nb: We must convert the smaller vki_old_sigset_t params into bigger ++ // vki_sigset_t params. ++ set = (vki_old_sigset_t*)(Addr)ARG2; ++ ++ VG_(memset)(&bigger_set, 0, sizeof(vki_sigset_t)); ++ if (set) ++ bigger_set.sig[0] = *(vki_old_sigset_t*)set; ++ ++ SET_STATUS_from_SysRes( ++ VG_(do_sys_sigprocmask) ( tid, ++ ARG1 /*how*/, ++ set ? &bigger_set : NULL, /*set*/ ++ NULL) ++ ); ++ ++ if (SUCCESS) ++ *flags |= SfPollAfter; ++} ++ ++PRE(sys_mmap) ++{ ++ SysRes r; ++ PRINT("sys_mmap ( %#" FMT_REGWORD "x, %" FMT_REGWORD "u, %ld, %ld, %ld, %" ++ FMT_REGWORD "u )", ++ ARG1, ARG2, SARG3, SARG4, SARG5, ARG6); ++ PRE_REG_READ6(long, "mmap", unsigned long, start, vki_size_t, length, ++ int, prot, int, flags, int, fd, unsigned long, offset); ++ r = ML_(generic_PRE_sys_mmap)(tid, ARG1, ARG2, ARG3, ARG4, ARG5, ++ (Off64T) ARG6); ++ SET_STATUS_from_SysRes(r); ++} ++ ++PRE(sys_gethostname) ++{ ++ PRINT ("sys_gethostname ( %#" FMT_REGWORD "x, %ld )", ARG1, SARG2); ++ PRE_REG_READ2 (long, "gethostname", void *, name, int, len); ++} ++ ++PRE(sys_sethostname) ++{ ++ PRINT ("sys_sethostname ( %#" FMT_REGWORD "x, %ld )", ARG1, SARG2); ++ PRE_REG_READ2 (long, "sethostname", const void *, name, int, len); ++} ++ ++PRE(sys_sigreturn) ++{ ++ /* See comments on PRE(sys_rt_sigreturn) in syswrap-s390x-linux.c for ++ an explanation of what follows. */ ++ ThreadState* tst; ++ PRINT("sys_rt_sigreturn ( )"); ++ ++ vg_assert(VG_(is_valid_tid)(tid)); ++ vg_assert(tid >= 1 && tid < VG_N_THREADS); ++ vg_assert(VG_(is_running_thread)(tid)); ++ ++ tst = VG_(get_ThreadState)(tid); ++ ++ /* This is only so that the IA is (might be) useful to report if ++ something goes wrong in the sigreturn */ ++ ML_(fixup_guest_state_to_restart_syscall)(&tst->arch); ++ ++ /* Restore register state from frame and remove it */ ++ VG_(sigframe_destroy)(tid, False); ++ ++ /* Tell the driver not to update the guest state with the "result", ++ and set a bogus result to keep it happy. */ ++ *flags |= SfNoWriteResult; ++ SET_STATUS_Success(0); ++ ++ /* Check to see if any signals arose as a result of this. */ ++ *flags |= SfPollAfter; ++} ++ ++/* NB: This is an almost identical clone of versions for x86-linux and ++ arm-linux, which are themselves literally identical. */ ++PRE(sys_sigsuspend) ++{ ++ /* The C library interface to sigsuspend just takes a pointer to ++ a signal mask but this system call only takes the first word of ++ the signal mask as an argument so only 32 signals are supported. ++ ++ In fact glibc normally uses rt_sigsuspend if it is available as ++ that takes a pointer to the signal mask so supports more signals. ++ */ ++ *flags |= SfMayBlock; ++ PRINT("sys_sigsuspend ( %lu )", ARG1 ); ++ PRE_REG_READ1(int, "sigsuspend", vki_old_sigset_t, mask); ++} ++ ++PRE(sys_setdomainname) ++{ ++ PRINT ("sys_setdomainname ( %#" FMT_REGWORD "x, %ld )", ARG1, SARG2); ++ PRE_REG_READ2 (long, "setdomainname", const void *, name, int, len); ++} ++ ++PRE(sys_sysfs) ++{ ++ PRINT("sys_sysfs ( %ld, %#" FMT_REGWORD "x, %#" FMT_REGWORD "x )", ++ SARG1, ARG2, ARG3); ++ PRE_REG_READ3(long, "sysfs", int, flags, int, desc, const void *, path); ++} ++ ++PRE(sys_swapoff) ++{ ++ PRINT("sys_swapoff ( %#" FMT_REGWORD "x )", ARG1); ++ PRE_REG_READ1(long, "swapoff", const void *, path); ++} ++ ++PRE(sys_reboot) ++{ ++ PRINT("sys_reboot ( %ld, %" FMT_REGWORD "u, %" FMT_REGWORD "u, %#" ++ FMT_REGWORD "x )", SARG1, ARG2, ARG3, ARG4); ++ // An approximation. ARG4 is only read conditionally by the kernel ++ PRE_REG_READ4(int, "reboot", ++ int, magic1, int, magic2, unsigned int, cmd, ++ void *, arg); ++ ++ *flags |= SfMayBlock; ++} ++ ++PRE(sys_swapon) ++{ ++ PRINT("sys_swapon ( %#" FMT_REGWORD "x, %#" FMT_REGWORD "x )", ARG1, ARG2); ++ PRE_REG_READ2(long, "swapon", const void *, path, int, flags); ++} ++ ++PRE(sys_ustat) ++{ ++ PRINT("sys_ustat ( %#" FMT_REGWORD "x, %#" FMT_REGWORD "x)", ARG1, ARG2); ++ PRE_REG_READ2(long, "ustat", int, flags, const void *, path); ++} ++ ++PRE(sys_sched_rr_get_interval) ++{ ++ PRINT("sys_sched_rr_get_interval ( %ld, %#" FMT_REGWORD "x)", SARG1, ARG2); ++ PRE_REG_READ2(long, "sched_rr_get_interval", vki_pid_t, pid, ++ struct timespec *, timer); ++ *flags |= SfMayBlock; ++} ++ ++PRE(sys_rt_sigreturn) ++{ ++ /* See comments on PRE(sys_rt_sigreturn) in syswrap-s390x-linux.c for ++ an explanation of what follows. */ ++ ThreadState* tst; ++ PRINT("sys_rt_sigreturn ( )"); ++ ++ vg_assert(VG_(is_valid_tid)(tid)); ++ vg_assert(tid >= 1 && tid < VG_N_THREADS); ++ vg_assert(VG_(is_running_thread)(tid)); ++ ++ tst = VG_(get_ThreadState)(tid); ++ ++ /* This is only so that the IA is (might be) useful to report if ++ something goes wrong in the sigreturn */ ++ ML_(fixup_guest_state_to_restart_syscall)(&tst->arch); ++ ++ /* Restore register state from frame and remove it */ ++ VG_(sigframe_destroy)(tid, True); ++ ++ /* Tell the driver not to update the guest state with the "result", ++ and set a bogus result to keep it happy. */ ++ *flags |= SfNoWriteResult; ++ SET_STATUS_Success(0); ++ ++ /* Check to see if any signals arose as a result of this. */ ++ *flags |= SfPollAfter; ++} ++ ++PRE(sys_fadvise64) ++{ ++ PRINT("sys_fadvise64 ( %ld, %ld, %" FMT_REGWORD "u, %ld )", SARG1, SARG2, ++ ARG3, SARG4); ++ PRE_REG_READ4(long, "fadvise64", ++ int, fd, vki_loff_t, offset, vki_loff_t, len, int, advice); ++} ++ ++PRE(sys_stat64) ++{ ++ PRINT("sys_stat64 ( %#lx(%s), %#lx )",ARG1,(char*)ARG1,ARG2); ++ PRE_REG_READ2(long, "stat64", char *, file_name, struct stat64 *, buf); ++ PRE_MEM_RASCIIZ( "stat64(file_name)", ARG1 ); ++ PRE_MEM_WRITE( "stat64(buf)", ARG2, sizeof(struct vki_stat64) ); ++} ++ ++POST(sys_stat64) ++{ ++ POST_MEM_WRITE( ARG2, sizeof(struct vki_stat64) ); ++} ++ ++PRE(sys_lstat64) ++{ ++ PRINT("sys_lstat64 ( %#lx(%s), %#lx )",ARG1,(char*)ARG1,ARG2); ++ PRE_REG_READ2(long, "lstat64", char *, file_name, struct stat64 *, buf); ++ PRE_MEM_RASCIIZ( "lstat64(file_name)", ARG1 ); ++ PRE_MEM_WRITE( "lstat64(buf)", ARG2, sizeof(struct vki_stat64) ); ++} ++ ++POST(sys_lstat64) ++{ ++ vg_assert(SUCCESS); ++ if (RES == 0) { ++ POST_MEM_WRITE( ARG2, sizeof(struct vki_stat64) ); ++ } ++} ++ ++PRE(sys_fstat64) ++{ ++ PRINT("sys_fstat64 ( %lx, %#lx )",ARG1,ARG2); ++ PRE_REG_READ2(long, "fstat64", unsigned long, fd, struct stat64 *, buf); ++ PRE_MEM_WRITE( "fstat64(buf)", ARG2, sizeof(struct vki_stat64) ); ++} ++ ++POST(sys_fstat64) ++{ ++ POST_MEM_WRITE( ARG2, sizeof(struct vki_stat64) ); ++} ++ ++PRE(sys_fstatat64) ++{ ++ // ARG4 = int flags; Flags are or'ed together, therefore writing them ++ // as a hex constant is more meaningful. ++ PRINT("sys_fstatat64 ( %ld, %#lx(%s), %#lx, %#lx )", ++ SARG1, ARG2, (HChar*)ARG2, ARG3, ARG4); ++ PRE_REG_READ4(long, "fstatat64", ++ int, dfd, char *, file_name, struct stat64 *, buf, int, flags); ++ PRE_MEM_RASCIIZ ("fstatat64(file_name)", ARG2); ++ PRE_MEM_WRITE ("fstatat64(buf)", ARG3, sizeof (struct vki_stat64)); ++} ++POST(sys_fstatat64) ++{ ++ POST_MEM_WRITE (ARG3, sizeof (struct vki_stat64)); ++} ++ ++PRE(sys_vmsplice) ++{ ++ PRINT("sys_vmsplice ( %ld, %#" FMT_REGWORD "x, %" FMT_REGWORD "u, %ld )", ++ SARG1, ARG2, ARG3, SARG4); ++ PRE_REG_READ4(long, "sys_vmsplice", int, fdin, struct vki_iovec *, v, ++ vki_size_t, len, int, flags); ++} ++ ++// SYSCALL_DEFINE5(getsysinfo, unsigned long, op, void __user *, buffer, ++// unsigned long, nbytes, int __user *, start, void __user *, arg); ++PRE(sys_getsysinfo) ++{ ++ PRINT("sys_getsysinfo ( %ld, %#lx, %ld, %#lx, %#lx )", ++ SARG1, ARG2, SARG3, ARG4, ARG5); ++ PRE_REG_READ5(long, "sys_getsysinfo", unsigned long, op, void *, buffer, ++ unsigned long, nbytes, int *, start, void *, arg); ++} ++ ++POST(sys_getsysinfo) ++{ ++ POST_MEM_WRITE (ARG2, sizeof (unsigned long)); ++} ++ ++// SYSCALL_DEFINE5(setsysinfo, unsigned long, op, void __user *, buffer, ++// unsigned long, nbytes, int __user *, start, void __user *, arg) ++PRE(sys_setsysinfo) ++{ ++ PRINT("sys_setsysinfo ( %ld, %#lx, %ld, %#lx, %#lx )", ++ SARG1, ARG2, SARG3, ARG4, ARG5); ++ PRE_REG_READ5(long, "sys_setsysinfo", unsigned long, op, void *, buffer, ++ unsigned long, nbytes, int *, start, void *, arg); ++} ++ ++#undef PRE ++#undef POST ++ ++/* --------------------------------------------------------------------- ++ The sw64/Linux syscall table ++ ------------------------------------------------------------------ */ ++ ++/* Add an sw64-linux specific wrapper to a syscall table. */ ++#define PLAX_(sysno, name) WRAPPER_ENTRY_X_(sw64_linux, sysno, name) ++#define PLAXY(sysno, name) WRAPPER_ENTRY_XY(sw64_linux, sysno, name) ++ ++static SyscallTableEntry syscall_main_table[] = { ++ GENX_(__NR_exit, sys_exit), // 1 ++ GENX_(__NR_fork, sys_fork), // 2 ++ GENXY(__NR_read, sys_read), // 3 ++ GENX_(__NR_write, sys_write), // 4 ++ GENXY(__NR_close, sys_close), // 6 ++ GENX_(__NR_link, sys_link), // 9 ++ GENX_(__NR_unlink, sys_unlink), // 10 ++ GENX_(__NR_chdir, sys_chdir), // 12 ++ GENX_(__NR_fchdir, sys_fchdir), // 13 ++ GENX_(__NR_mknod, sys_mknod), // 14 ++ GENX_(__NR_chmod, sys_chmod), // 15 ++ GENX_(__NR_chown, sys_chown), // 16 ++ GENX_(__NR_brk, sys_brk), // 17 ++ LINX_(__NR_lseek, sys_lseek), // 19 ++ GENX_(__NR_getxpid, sys_getpid), // 20 ++ LINX_(__NR_umount2, sys_umount), // 22 ++ GENX_(__NR_setuid, sys_setuid), // 23 ++ GENX_(__NR_getxuid, sys_getuid), // 24 ++ PLAXY(__NR_ptrace, sys_ptrace), // 26 ++ GENX_(__NR_access, sys_access), // 33 ++ GENX_(__NR_sync, sys_sync), // 36 ++ GENX_(__NR_kill, sys_kill), // 37 ++ GENX_(__NR_setpgid, sys_setpgid), // 39 ++ GENXY(__NR_dup, sys_dup), // 41 ++ PLAXY(__NR_pipe, sys_pipe), // 42 ++ GENXY(__NR_open, sys_open), // 45 ++ GENX_(__NR_getxgid, sys_getgid), // 47 ++ PLAX_(__NR_odd_sigprocmask, sys_odd_sigprocmask), // 48 ++ GENX_(__NR_acct, sys_acct), // 51 ++ LINXY(__NR_sigpending, sys_sigpending), // 52 ++ LINXY(__NR_ioctl, sys_ioctl), // 54 ++ GENX_(__NR_symlink, sys_symlink), // 57 ++ GENX_(__NR_readlink, sys_readlink), // 58 ++ GENX_(__NR_execve, sys_execve), // 59 ++ GENX_(__NR_umask, sys_umask), // 60 ++ GENX_(__NR_chroot, sys_chroot), // 61 ++ GENX_(__NR_getpgrp, sys_getpgrp), // 63 ++ GENX_(__NR_vfork, sys_fork), // 66 ++ GENXY(__NR_stat, sys_newstat), // 67 ++ GENXY(__NR_lstat, sys_newlstat), // 68 ++ PLAX_(__NR_mmap, sys_mmap), // 71 ++ GENXY(__NR_munmap, sys_munmap), // 73 ++ GENXY(__NR_mprotect, sys_mprotect), // 74 ++ GENX_(__NR_madvise, sys_madvise), // 75 ++ LINX_(__NR_vhangup, sys_vhangup), // 76 ++ GENXY(__NR_getgroups, sys_getgroups), // 79 ++ GENX_(__NR_setgroups, sys_setgroups), // 80 ++ GENX_(__NR_setpgrp, sys_setpgid), // 82 ++ PLAX_(__NR_gethostname, sys_gethostname), // 87 ++ PLAX_(__NR_sethostname, sys_sethostname), // 88 ++ GENXY(__NR_dup2, sys_dup2), // 90 ++ GENXY(__NR_fstat, sys_newfstat), // 91 ++ LINXY(__NR_fcntl, sys_fcntl), // 92 ++ GENXY(__NR_poll, sys_poll), // 94 ++ GENX_(__NR_fsync, sys_fsync), // 95 ++ GENX_(__NR_setpriority, sys_setpriority), // 96 ++ LINXY(__NR_socket, sys_socket), // 97 ++ LINX_(__NR_connect, sys_connect), // 98 ++ LINXY(__NR_accept, sys_accept), // 99 ++ // _____(__NR_odd_getpriority, sys_unknow), // 100 ++ LINX_(__NR_send, sys_send), // 101 ++ LINXY(__NR_recv, sys_recv), // 102 ++ PLAX_(__NR_sigreturn, sys_sigreturn), // 103 ++ LINX_(__NR_bind, sys_bind), // 104 ++ LINX_(__NR_setsockopt, sys_setsockopt), // 105 ++ LINX_(__NR_listen, sys_listen), // 106 ++ PLAX_(__NR_sigsuspend, sys_sigsuspend), // 111 ++ LINXY(__NR_recvmsg, sys_recvmsg), // 113 ++ LINX_(__NR_sendmsg, sys_sendmsg), // 114 ++ LINXY(__NR_getsockopt, sys_getsockopt), // 118 ++ LINX_(__NR_socketcall, sys_socketcall), // 119 ++ GENXY(__NR_readv, sys_readv), // 120 ++ GENX_(__NR_writev, sys_writev), // 121 ++ GENX_(__NR_fchown, sys_fchown), // 123 ++ GENX_(__NR_fchmod, sys_fchmod), // 124 ++ LINXY(__NR_recvfrom, sys_recvfrom), // 125 ++ GENX_(__NR_setreuid, sys_setreuid), // 126 ++ GENX_(__NR_setregid, sys_setregid), // 127 ++ GENX_(__NR_rename, sys_rename), // 128 ++ GENX_(__NR_truncate, sys_truncate), // 129 ++ GENX_(__NR_ftruncate, sys_ftruncate), // 130 ++ GENX_(__NR_flock, sys_flock), // 131 ++ GENX_(__NR_setgid, sys_setgid), // 132 ++ LINX_(__NR_sendto, sys_sendto), // 133 ++ LINX_(__NR_shutdown, sys_shutdown), // 134 ++ LINXY(__NR_socketpair, sys_socketpair), // 135 ++ GENX_(__NR_mkdir, sys_mkdir), // 136 ++ GENX_(__NR_rmdir, sys_rmdir), // 137 ++ LINXY(__NR_getpeername, sys_getpeername), // 141 ++ GENXY(__NR_getrlimit, sys_getrlimit), // 144 ++ GENX_(__NR_setrlimit, sys_setrlimit), // 145 ++ GENX_(__NR_setsid, sys_setsid), // 147 ++ LINX_(__NR_quotactl, sys_quotactl), // 148 ++ LINXY(__NR_getsockname, sys_getsockname), // 150 ++ LINXY(__NR_sigaction, sys_sigaction), // 156 ++ PLAX_(__NR_setdomainname, sys_setdomainname), // 166 ++ LINXY(__NR_bpf, sys_bpf), // 170 ++ // _____(__NR_userfaultfd, sys_unknow), // 171 ++ LINX_(__NR_membarrier, sys_membarrier), // 172 ++ // _____(__NR_mlock2, sys_unknow), // 173 ++ GENX_(__NR_getpid, sys_getpid), // 174 ++ GENX_(__NR_getppid, sys_getppid), // 175 ++ GENX_(__NR_getuid, sys_getuid), // 176 ++ GENX_(__NR_geteuid, sys_geteuid), // 177 ++ GENX_(__NR_getgid, sys_getgid), // 178 ++ GENX_(__NR_getegid, sys_getegid), // 179 ++ LINXY(__NR_msgctl, sys_msgctl), // 200 ++ LINX_(__NR_msgget, sys_msgget), // 201 ++ LINXY(__NR_msgrcv, sys_msgrcv), // 202 ++ LINX_(__NR_msgsnd, sys_msgsnd), // 203 ++ LINXY(__NR_semctl, sys_semctl), // 204 ++ LINX_(__NR_semget, sys_semget), // 205 ++ LINX_(__NR_semop, sys_semop), // 206 ++ GENX_(__NR_lchown, sys_lchown), // 208 ++ LINXY(__NR_shmat, sys_shmat), // 209 ++ LINXY(__NR_shmctl, sys_shmctl), // 210 ++ LINXY(__NR_shmdt, sys_shmdt), // 211 ++ LINX_(__NR_shmget, sys_shmget), // 212 ++ GENX_(__NR_msync, sys_msync), // 217 ++ GENXY(__NR_statfs64, sys_statfs64), // 229 ++ GENXY(__NR_fstatfs64, sys_fstatfs64), // 230 ++ GENX_(__NR_getpgid, sys_getpgid), // 233 ++ GENX_(__NR_getsid, sys_getsid), // 234 ++ GENXY(__NR_sigaltstack, sys_sigaltstack), // 235 ++ PLAX_(__NR_sysfs, sys_sysfs), // 254 ++ PLAX_(__NR_getsysinfo, sys_getsysinfo), // 256 ++ PLAX_(__NR_setsysinfo, sys_setsysinfo), // 257 ++ GENX_(266, sys_ni_syscall), // 266 ++ GENX_(__NR_getpriority, sys_getpriority), // 298 ++ LINXY(__NR_sigprocmask, sys_sigprocmask), // 299 ++ // _____(__NR_bdflush, sys_unknow), //300 ++ LINX_(__NR_mount, sys_mount), // 302 ++ PLAX_(__NR_swapoff, sys_swapoff), // 304 ++ GENXY(__NR_getdents, sys_getdents), // 305 ++ GENX_(__NR_create_module, sys_ni_syscall), // 306 ++ LINX_(__NR_init_module, sys_init_module), // 307 ++ LINX_(__NR_delete_module, sys_delete_module), // 308 ++ GENX_(__NR_get_kernel_syms, sys_ni_syscall), // 309 ++ LINXY(__NR_syslog, sys_syslog), // 310 ++ PLAX_(__NR_reboot, sys_reboot), // 311 ++ LINX_(__NR_clone, sys_clone), // 312 ++ // _____(__NR_uselib, sys_unknow), // 313 ++ GENX_(__NR_mlock, sys_mlock), // 314 ++ GENX_(__NR_munlock, sys_munlock), // 315 ++ GENX_(__NR_mlockall, sys_mlockall), // 316 ++ LINX_(__NR_munlockall, sys_munlockall), // 317 ++ LINXY(__NR_sysinfo, sys_sysinfo), // 318 ++ LINXY(__NR__sysctl, sys_sysctl), // 319 ++ LINX_(__NR_oldumount, sys_oldumount), // 321 ++ PLAX_(__NR_swapon, sys_swapon), // 322 ++ GENXY(__NR_times, sys_times), // 323 ++ LINX_(__NR_personality, sys_personality), // 324 ++ LINX_(__NR_setfsuid, sys_setfsuid), // 325 ++ LINX_(__NR_setfsgid, sys_setfsgid), // 326 ++ PLAX_(__NR_ustat, sys_ustat), // 327 ++ GENXY(__NR_statfs, sys_statfs), // 328 ++ GENXY(__NR_fstatfs, sys_fstatfs), // 329 ++ LINXY(__NR_sched_setparam, sys_sched_setparam), // 330 ++ LINXY(__NR_sched_getparam, sys_sched_getparam), // 331 ++ LINX_(__NR_sched_setscheduler, sys_sched_setscheduler), // 332 ++ LINX_(__NR_sched_getscheduler, sys_sched_getscheduler), // 333 ++ LINX_(__NR_sched_yield, sys_sched_yield), // 334 ++ LINX_(__NR_sched_get_priority_max, sys_sched_get_priority_max), // 335 ++ LINX_(__NR_sched_get_priority_min, sys_sched_get_priority_min), // 336 ++ PLAX_(__NR_sched_rr_get_interval, sys_sched_rr_get_interval), // 337 ++ GENX_(__NR_afs_syscall, sys_ni_syscall), // 338 ++ GENXY(__NR_uname, sys_newuname), // 339 ++ GENXY(__NR_nanosleep, sys_nanosleep), // 340 ++ GENX_(__NR_mremap, sys_mremap), // 341 ++ GENX_(__NR_nfsservctl, sys_ni_syscall), // 342 ++ LINX_(__NR_setresuid, sys_setresuid), // 343 ++ LINXY(__NR_getresuid, sys_getresuid), // 344 ++ // _____(__NR_pciconfig_read, sys_unknow), // 345 ++ // _____(__NR_pciconfig_write, sys_unknow), // 346 ++ GENX_(__NR_query_module, sys_ni_syscall), // 347 ++ LINXY(__NR_prctl, sys_prctl), // 348 ++ GENXY(__NR_pread64, sys_pread64), // 349 ++ GENX_(__NR_pwrite64, sys_pwrite64), // 350 ++ PLAX_(__NR_rt_sigreturn, sys_rt_sigreturn), // 351 ++ LINXY(__NR_rt_sigaction, sys_rt_sigaction), // 352 ++ LINXY(__NR_rt_sigprocmask, sys_rt_sigprocmask), // 353 ++ LINXY(__NR_rt_sigpending, sys_rt_sigpending), // 354 ++ LINXY(__NR_rt_sigtimedwait, sys_rt_sigtimedwait), // 355 ++ LINXY(__NR_rt_sigqueueinfo, sys_rt_sigqueueinfo), // 356 ++ LINX_(__NR_rt_sigsuspend, sys_rt_sigsuspend), // 357 ++ GENX_(__NR_select, sys_select), // 358 ++ GENXY(__NR_gettimeofday, sys_gettimeofday), // 359 ++ GENX_(__NR_settimeofday, sys_settimeofday), // 360 ++ GENXY(__NR_getitimer, sys_getitimer), // 361 ++ GENXY(__NR_setitimer, sys_setitimer), // 362 ++ GENX_(__NR_utimes, sys_utimes), // 363 ++ GENXY(__NR_getrusage, sys_getrusage), // 364 ++ GENXY(__NR_wait4, sys_wait4), // 365 ++ LINXY(__NR_adjtimex, sys_adjtimex), // 366 ++ GENXY(__NR_getcwd, sys_getcwd), // 367 ++ LINXY(__NR_capget, sys_capget), // 368 ++ LINX_(__NR_capset, sys_capset), // 369 ++ LINXY(__NR_sendfile, sys_sendfile), // 370 ++ LINX_(__NR_setresgid, sys_setresgid), // 371 ++ LINXY(__NR_getresgid, sys_getresgid), // 372 ++ GENX_(__NR_dipc, sys_ni_syscall), // 373 ++ LINX_(__NR_pivot_root, sys_pivot_root), // 374 ++ GENXY(__NR_mincore, sys_mincore), // 375 ++ // _____(__NR_pciconfig_iobase, sys_unknow), // 376 ++ GENXY(__NR_getdents64, sys_getdents64), // 377 ++ LINX_(__NR_gettid, sys_gettid), // 378 ++ LINX_(__NR_readahead, sys_readahead), // 379 ++ LINXY(__NR_tkill, sys_tkill), // 381 ++ LINX_(__NR_setxattr, sys_setxattr), // 382 ++ LINX_(__NR_lsetxattr, sys_lsetxattr), // 383 ++ LINX_(__NR_fsetxattr, sys_fsetxattr), // 384 ++ LINXY(__NR_getxattr, sys_getxattr), // 385 ++ LINXY(__NR_lgetxattr, sys_lgetxattr), // 386 ++ LINXY(__NR_fgetxattr, sys_fgetxattr), // 387 ++ LINXY(__NR_listxattr, sys_listxattr), // 388 ++ LINXY(__NR_llistxattr, sys_llistxattr), // 389 ++ LINXY(__NR_flistxattr, sys_flistxattr), // 390 ++ LINX_(__NR_removexattr, sys_removexattr), // 391 ++ LINX_(__NR_lremovexattr, sys_lremovexattr), // 392 ++ LINX_(__NR_fremovexattr, sys_fremovexattr), // 393 ++ LINXY(__NR_futex, sys_futex), // 394 ++ LINX_(__NR_sched_setaffinity, sys_sched_setaffinity), // 395 ++ LINXY(__NR_sched_getaffinity, sys_sched_getaffinity), // 396 ++ GENX_(__NR_tuxcall, sys_ni_syscall), // 397 ++ LINXY(__NR_io_setup, sys_io_setup), // 398 ++ LINX_(__NR_io_destroy, sys_io_destroy), // 399 ++ LINXY(__NR_io_getevents, sys_io_getevents), // 400 ++ LINX_(__NR_io_submit, sys_io_submit), // 401 ++ LINXY(__NR_io_cancel, sys_io_cancel), // 402 ++ // _____(__NR_io_pgetevents, sys_unknow), // 403 ++ GENX_(__NR_rseq, sys_ni_syscall), // 404 ++ LINX_(__NR_exit_group, sys_exit_group), // 405 ++ LINXY(__NR_lookup_dcookie, sys_lookup_dcookie), // 406 ++ LINXY(__NR_epoll_create, sys_epoll_create), // 407 ++ LINX_(__NR_epoll_ctl, sys_epoll_ctl), // 408 ++ LINXY(__NR_epoll_wait, sys_epoll_wait), // 409 ++ // _____(__NR_remap_file_pages, sys_unknow), // 410 ++ LINX_(__NR_set_tid_address, sys_set_tid_address), // 411 ++ // _____(__NR_restart_syscall, sys_unknow), // 412 ++ PLAX_(__NR_fadvise64, sys_fadvise64), // 413 ++ LINXY(__NR_timer_create, sys_timer_create), // 414 ++ LINXY(__NR_timer_settime, sys_timer_settime), // 415 ++ LINXY(__NR_timer_gettime, sys_timer_gettime), // 416 ++ LINX_(__NR_timer_getoverrun, sys_timer_getoverrun), // 417 ++ LINX_(__NR_timer_delete, sys_timer_delete), // 418 ++ LINX_(__NR_clock_settime, sys_clock_settime), // 419 ++ LINXY(__NR_clock_gettime, sys_clock_gettime), // 420 ++ LINXY(__NR_clock_getres, sys_clock_getres), // 421 ++ LINXY(__NR_clock_nanosleep, sys_clock_nanosleep), // 422 ++ LINX_(__NR_semtimedop, sys_semtimedop), // 423 ++ LINX_(__NR_tgkill, sys_tgkill), // 424 ++ PLAXY(__NR_stat64, sys_stat64), // 425 ++ PLAXY(__NR_lstat64, sys_lstat64), // 426 ++ PLAXY(__NR_fstat64, sys_fstat64), // 427 ++ GENX_(__NR_vserver, sys_ni_syscall), // 428 ++ LINX_(__NR_mbind, sys_mbind), // 429 ++ LINXY(__NR_get_mempolicy, sys_get_mempolicy), // 430 ++ LINX_(__NR_set_mempolicy, sys_set_mempolicy), // 431 ++ LINXY(__NR_mq_open, sys_mq_open), // 432 ++ LINX_(__NR_mq_unlink, sys_mq_unlink), // 433 ++ LINX_(__NR_mq_timedsend, sys_mq_timedsend), // 434 ++ LINXY(__NR_mq_timedreceive, sys_mq_timedreceive), // 435 ++ LINX_(__NR_mq_notify, sys_mq_notify), // 436 ++ LINXY(__NR_mq_getsetattr, sys_mq_getsetattr), // 437 ++ LINXY(__NR_waitid, sys_waitid), // 438 ++ LINX_(__NR_add_key, sys_add_key), // 439 ++ LINX_(__NR_request_key, sys_request_key), // 440 ++ LINXY(__NR_keyctl, sys_keyctl), // 441 ++ LINX_(__NR_ioprio_set, sys_ioprio_set), // 442 ++ LINX_(__NR_ioprio_get, sys_ioprio_get), // 443 ++ LINX_(__NR_inotify_init, sys_inotify_init), // 444 ++ LINX_(__NR_inotify_add_watch, sys_inotify_add_watch), // 445 ++ LINX_(__NR_inotify_rm_watch, sys_inotify_rm_watch), // 446 ++ GENX_(__NR_fdatasync, sys_fdatasync), // 447 ++ // _____(__NR_kexec_load, sys_unknow), // 448 ++ // _____(__NR_migrate_pages, sys_unknow), // 449 ++ LINXY(__NR_openat, sys_openat), // 450 ++ LINX_(__NR_mkdirat, sys_mkdirat), // 451 ++ LINX_(__NR_mknodat, sys_mknodat), // 452 ++ LINX_(__NR_fchownat, sys_fchownat), // 453 ++ LINX_(__NR_futimesat, sys_futimesat), // 454 ++ PLAXY(__NR_fstatat64, sys_fstatat64), // 455 ++ LINX_(__NR_unlinkat, sys_unlinkat), // 456 ++ LINX_(__NR_renameat, sys_renameat), // 457 ++ LINX_(__NR_linkat, sys_linkat), // 458 ++ LINX_(__NR_symlinkat, sys_symlinkat), // 459 ++ LINX_(__NR_readlinkat, sys_readlinkat), // 460 ++ LINX_(__NR_fchmodat, sys_fchmodat), // 461 ++ LINX_(__NR_faccessat, sys_faccessat), // 462 ++ LINXY(__NR_pselect6, sys_pselect6), // 463 ++ LINXY(__NR_ppoll, sys_ppoll), // 464 ++ LINX_(__NR_unshare, sys_unshare), // 465 ++ LINX_(__NR_set_robust_list, sys_set_robust_list), // 466 ++ LINXY(__NR_get_robust_list, sys_get_robust_list), // 467 ++ LINX_(__NR_splice, sys_splice), // 468 ++ LINX_(__NR_sync_file_range, sys_sync_file_range), // 469 ++ LINX_(__NR_tee, sys_tee), // 470 ++ PLAX_(__NR_vmsplice, sys_vmsplice), // 471 ++ LINXY(__NR_move_pages, sys_move_pages), // 472 ++ LINXY(__NR_getcpu, sys_getcpu), // 473 ++ LINXY(__NR_epoll_pwait, sys_epoll_pwait), // 474 ++ LINX_(__NR_utimensat, sys_utimensat), // 475 ++ LINXY(__NR_signalfd, sys_signalfd), // 476 ++ GENX_(__NR_timerfd, sys_ni_syscall), // 477 ++ LINXY(__NR_eventfd, sys_eventfd), // 478 ++ LINXY(__NR_recvmmsg, sys_recvmmsg), // 479 ++ LINX_(__NR_fallocate, sys_fallocate), // 480 ++ LINXY(__NR_timerfd_create, sys_timerfd_create), // 481 ++ LINXY(__NR_timerfd_gettime, sys_timerfd_gettime), // 483 ++ LINXY(__NR_timerfd_settime, sys_timerfd_settime), // 482 ++ LINXY(__NR_signalfd4, sys_signalfd4), // 484 ++ LINXY(__NR_eventfd2, sys_eventfd2), // 485 ++ LINXY(__NR_epoll_create1, sys_epoll_create1), // 486 ++ LINXY(__NR_dup3, sys_dup3), // 487 ++ LINXY(__NR_pipe2, sys_pipe2), // 488 ++ LINX_(__NR_inotify_init1, sys_inotify_init1), // 489 ++ LINXY(__NR_preadv, sys_preadv), // 490 ++ LINX_(__NR_pwritev, sys_pwritev), // 491 ++ LINXY(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo), // 492 ++ LINXY(__NR_perf_event_open, sys_perf_event_open), // 493 ++ LINXY(__NR_fanotify_init, sys_fanotify_init), // 494 ++ LINX_(__NR_fanotify_mark, sys_fanotify_mark), // 495 ++ LINXY(__NR_prlimit64, sys_prlimit64), // 496 ++ LINXY(__NR_name_to_handle_at, sys_name_to_handle_at), // 497 ++ LINXY(__NR_open_by_handle_at, sys_open_by_handle_at), // 498 ++ LINXY(__NR_clock_adjtime, sys_clock_adjtime), // 499 ++ LINX_(__NR_syncfs, sys_syncfs), // 500 ++ LINX_(__NR_setns, sys_setns), // 501 ++ LINXY(__NR_accept4, sys_accept4), // 502 ++ LINXY(__NR_sendmmsg, sys_sendmmsg), // 503 ++ LINXY(__NR_process_vm_readv, sys_process_vm_readv), // 504 ++ LINX_(__NR_process_vm_writev, sys_process_vm_writev), // 505 ++ LINX_(__NR_kcmp, sys_kcmp), // 506 ++ LINX_(__NR_finit_module, sys_finit_module), // 507 ++ LINX_(__NR_sched_setattr, sys_sched_setattr), // 508 ++ LINXY(__NR_sched_getattr, sys_sched_getattr), // 509 ++ LINX_(__NR_renameat2, sys_renameat2), // 510 ++ LINXY(__NR_getrandom, sys_getrandom), // 511 ++ LINXY(__NR_memfd_create, sys_memfd_create), // 512 ++ LINX_(__NR_execveat, sys_execveat), // 513 ++ // _____(__NR_seccomp, sys_unknow), // 514 ++ LINX_(__NR_copy_file_range, sys_copy_file_range), // 515 ++ LINXY(__NR_preadv2, sys_preadv2), // 516 ++ LINX_(__NR_pwritev2, sys_pwritev2), // 517 ++ LINXY(__NR_statx, sys_statx) // 518 ++}; ++ ++SyscallTableEntry * ML_(get_linux_syscall_entry) ( UInt sysno ) ++{ ++ const UInt syscall_main_table_size ++ = sizeof(syscall_main_table) / sizeof(syscall_main_table[0]); ++ ++ /* Is it in the contiguous initial section of the table? */ ++ if (sysno < syscall_main_table_size) { ++ SyscallTableEntry* sys = &syscall_main_table[sysno]; ++ if (sys->before == NULL) ++ return NULL; /* no entry */ ++ else ++ return sys; ++ } ++ ++ /* Can't find a wrapper */ ++ return NULL; ++} ++ ++#endif /* defined(VGP_sw64_linux) */ ++ ++/*--------------------------------------------------------------------*/ ++/*--- end syswrap-sw64-linux.c ---*/ ++/*--------------------------------------------------------------------*/ +diff --git a/coregrind/m_trampoline.S b/coregrind/m_trampoline.S +index da9697232..0ba6fb849 100644 +--- a/coregrind/m_trampoline.S ++++ b/coregrind/m_trampoline.S +@@ -1520,6 +1520,67 @@ VG_(trampoline_stuff_end): + # undef UD2_1024 + # undef UD2_PAGE + ++/*---------------------- sw64-linux ----------------------*/ ++#else ++#if defined(VGP_sw64_linux) ++ ++.global VG_(trampoline_stuff_start) ++VG_(trampoline_stuff_start): ++ ++/* ref: glibc-2.28-sw/sysdeps/unix/sysv/linux/sw_64/rt_sigaction.S */ ++.global VG_(sw64_linux_SUBST_FOR_rt_sigreturn) ++VG_(sw64_linux_SUBST_FOR_rt_sigreturn): ++ mov $30, $16 ++ ldi $0,__NR_rt_sigreturn ++ sys_call 0x83 ++ nop ++ .long 0 /*illegal insn*/ ++ ++/* There's no particular reason that this needs to be handwritten ++ assembly, but since that's what this file contains, here's a ++ simple index() and strlen() implementations. ++*/ ++ ++.set noat ++.set noreorder ++ ++.global VG_(sw64_linux_REDIR_FOR_index) ++.type VG_(sw64_linux_REDIR_FOR_index), @function ++VG_(sw64_linux_REDIR_FOR_index): ++ mov $16, $0 /* current pos */ ++ and $17, 0xff, $17 /* target character */ ++1: ++ ldbu $1, 0($0) ++ cmpeq $1, $17, $2 ++ bne $2, 3f /* found */ ++ beq $1, 2f /* not found */ ++ ldi $0, 1($0) ++ br $31, 1b /* loop */ ++2: ++ mov $31, $0 ++3: ++ ret $31, ($26), 1 ++ ++.size VG_(sw64_linux_REDIR_FOR_index), .-VG_(sw64_linux_REDIR_FOR_index) ++ ++.global VG_(sw64_linux_REDIR_FOR_strlen) ++.type VG_(sw64_linux_REDIR_FOR_strlen), @function ++VG_(sw64_linux_REDIR_FOR_strlen): ++ mov $16, $0 /* current pos */ ++1: ++ ldbu $1, 0($0) ++ beq $1, 2f /* return */ ++ ldi $0, 1($0) ++ br $31, 1b /* loop */ ++2: ++ subl $0, $16, $0 ++ ret $31, ($26), 1 ++ ++.size VG_(sw64_linux_REDIR_FOR_strlen), .-VG_(sw64_linux_REDIR_FOR_strlen) ++ ++.global VG_(trampoline_stuff_end) ++VG_(trampoline_stuff_end): ++ + /*---------------- x86-solaris ----------------*/ + #else + #if defined(VGP_x86_solaris) +@@ -1699,6 +1760,74 @@ VG_(amd64_solaris_REDIR_FOR_strlen): + .global VG_(trampoline_stuff_end) + VG_(trampoline_stuff_end): + ++/*---------------------- sw_64-linux ----------------------*/ ++#else ++#if defined(VGP_sw_64_linux) ++ ++# define UD2_16 trap ; trap ; trap; trap ++# define UD2_64 UD2_16 ; UD2_16 ; UD2_16 ; UD2_16 ++# define UD2_256 UD2_64 ; UD2_64 ; UD2_64 ; UD2_64 ++# define UD2_1024 UD2_256 ; UD2_256 ; UD2_256 ; UD2_256 ++# define UD2_PAGE UD2_1024 ; UD2_1024 ; UD2_1024 ; UD2_1024 ++ ++.global VG_(trampoline_stuff_start) ++VG_(trampoline_stuff_start): ++ ++.global VG_(sw_64_linux_SUBST_FOR_rt_sigreturn) ++VG_(sw_64_linux_SUBST_FOR_rt_sigreturn): ++ ldi $16,__NR_rt_sigreturn($31) ++ sys_call 0x83 ++ nop ++ .long 0 /*illegal insn*/ ++ ++/* There's no particular reason that this needs to be handwritten ++ assembly, but since that's what this file contains, here's a ++ simple index() and strlen() implementations. ++*/ ++.set noreorder ++ ++.global VG_(sw_64_linux_REDIR_FOR_index) ++ .type VG_(sw_64_linux_REDIR_FOR_index), @function ++ VG_(sw_64_linux_REDIR_FOR_index): ++ mov $16, $18 ++ ldl $1, 0($16) ++ cmpeq $17,$1,$2 ++ beq $2, index_end ++ ++index_loop: ++ addl $18,1,$18 ++ ldl $1, 0($18) ++ cmpeq $17,$1,$2 ++ bne $2, index_loop ++ mov $18, $0 ++ ret $31,($26),1 ++index_end: ++ ldi $0,0($31) ++ ret $31,($26),1 ++.size VG_(sw_64_linux_REDIR_FOR_index), .-VG_(sw_64_linux_REDIR_FOR_index) ++ ++.global VG_(sw_64_linux_REDIR_FOR_strlen) ++ .type VG_(sw_64_linux_REDIR_FOR_strlen), @function ++ VG_(sw_64_linux_REDIR_FOR_strlen): ++ ++ ldl $1, 0($16) ++ beq $1, end ++ ldi $0, 0($31) ++loop: ++ addl $0,1,$0 ++ addl $16,1,$16 ++ ldl $1, 0($16) ++ bne $1, loop ++ ret $31,($26),1 ++end: ++ ldi $0,0($31) ++ ret $31,($26),1 ++ ++.size VG_(sw_64_linux_REDIR_FOR_strlen), .-VG_(sw_64_linux_REDIR_FOR_strlen) ++ ++.global VG_(trampoline_stuff_end) ++VG_(trampoline_stuff_end): ++ + /*---------------- unknown ----------------*/ + #else + # error Unknown platform +@@ -1719,6 +1848,8 @@ VG_(trampoline_stuff_end): + #endif + #endif + #endif ++#endif ++#endif + + /* Let the linker know we don't need an executable stack */ + MARK_STACK_NO_EXEC +diff --git a/coregrind/m_translate.c b/coregrind/m_translate.c +index 0dd36082d..ccd0e7273 100644 +--- a/coregrind/m_translate.c ++++ b/coregrind/m_translate.c +@@ -1363,7 +1363,16 @@ Bool mk_preamble__set_NRADDR_to_zero ( void* closureV, IRSB* bb ) + VgCallbackClosure* closure = (VgCallbackClosure*)closureV; + Int offB_GPR25 = offsetof(VexGuestMIPS64State, guest_r25); + addStmtToIRSB(bb, IRStmt_Put(offB_GPR25, mkU64(closure->readdr))); ++ // r27 needs to be set to point to the start of the redirected function. ++ // // see also in coregrind/m_main.c:2451 + # endif ++ ++# if defined(VGP_sw64_linux) ++ VgCallbackClosure* closure = (VgCallbackClosure*)closureV; ++ Int offB_GPR27 = offsetof(VexGuestSW64State, guest_r27); ++ addStmtToIRSB(bb, IRStmt_Put(offB_GPR27, mkU64(closure->readdr))); ++# endif ++ + # if defined(VG_PLAT_USES_PPCTOC) + { VgCallbackClosure* closure = (VgCallbackClosure*)closureV; + addStmtToIRSB( +@@ -1423,6 +1432,12 @@ Bool mk_preamble__set_NRADDR_to_nraddr ( void* closureV, IRSB* bb ) + Int offB_GPR25 = offsetof(VexGuestMIPS64State, guest_r25); + addStmtToIRSB(bb, IRStmt_Put(offB_GPR25, mkU64(closure->readdr))); + # endif ++ ++# if defined(VGP_sw64_linux) ++ Int offB_GPR27 = offsetof(VexGuestSW64State, guest_r27); ++ addStmtToIRSB(bb, IRStmt_Put(offB_GPR27, mkU64(closure->readdr))); ++# endif ++ + # if defined(VG_PLAT_USES_PPCTOC) + addStmtToIRSB( + bb, +@@ -1582,7 +1597,7 @@ Bool VG_(translate) ( ThreadId tid, + tid, "(translator)", addr, 1 ); + + /* If doing any code printing, print a basic block start marker */ +- if (VG_(clo_trace_flags) || debugging_translation) { ++ if (VG_(clo_trace_flags) || debugging_translation /*debug logger */) { + const HChar* objname = "UNKNOWN_OBJECT"; + OffT objoff = 0; + const DiEpoch ep = VG_(current_DiEpoch)(); +@@ -1796,6 +1811,7 @@ Bool VG_(translate) ( ThreadId tid, + vta.needs_self_check = needs_self_check; + vta.preamble_function = preamble_fn; + vta.traceflags = verbosity; ++ vta.dump_expansion_ratio = VG_(clo_dump_expansion_ratio); + vta.sigill_diag = VG_(clo_sigill_diag); + vta.addProfInc = VG_(clo_profyle_sbs) && kind != T_NoRedir; + +diff --git a/coregrind/m_vki.c b/coregrind/m_vki.c +index 0cc1882a1..0f2bb59e9 100644 +--- a/coregrind/m_vki.c ++++ b/coregrind/m_vki.c +@@ -43,7 +43,7 @@ + #if defined(VGP_ppc32_linux) || defined(VGP_ppc64be_linux) \ + || defined(VGP_ppc64le_linux) || defined(VGP_arm64_linux) \ + || defined(VGP_mips32_linux) || defined(VGP_mips64_linux) \ +- || defined(VGP_nanomips_linux) ++ || defined(VGP_nanomips_linux) || defined(VGP_sw64_linux) + unsigned long VKI_PAGE_SHIFT = 12; + unsigned long VKI_PAGE_SIZE = 1UL << 12; + #endif +diff --git a/coregrind/pub_core_aspacemgr.h b/coregrind/pub_core_aspacemgr.h +index b867108a2..ecd6a1691 100644 +--- a/coregrind/pub_core_aspacemgr.h ++++ b/coregrind/pub_core_aspacemgr.h +@@ -335,7 +335,8 @@ extern Bool VG_(am_relocate_nooverlap_client)( /*OUT*/Bool* need_discard, + #if defined(VGP_ppc32_linux) \ + || defined(VGP_ppc64be_linux) || defined(VGP_ppc64le_linux) \ + || defined(VGP_mips32_linux) || defined(VGP_mips64_linux) \ +- || defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) ++ || defined(VGP_arm64_linux) || defined(VGP_nanomips_linux) \ ++ || defined(VGP_sw64_linux) + # define VG_STACK_GUARD_SZB 65536 // 1 or 16 pages + #else + # define VG_STACK_GUARD_SZB 8192 // 2 pages +diff --git a/coregrind/pub_core_basics.h b/coregrind/pub_core_basics.h +index abc5a066a..d8d779763 100644 +--- a/coregrind/pub_core_basics.h ++++ b/coregrind/pub_core_basics.h +@@ -102,6 +102,11 @@ typedef + ULong r31; /* Return address of the last subroutine call */ + ULong r28; + } MIPS64; ++ struct { ++ ULong r15; /* fp */ ++ ULong r26; /* ra */ ++ ULong r29; /* gp */ ++ } SW64; + } misc; + } + UnwindStartRegs; +diff --git a/coregrind/pub_core_debuginfo.h b/coregrind/pub_core_debuginfo.h +index 4d6ebda81..9d64e3677 100644 +--- a/coregrind/pub_core_debuginfo.h ++++ b/coregrind/pub_core_debuginfo.h +@@ -134,6 +134,10 @@ typedef + Addr f4; Addr f5; Addr f6; Addr f7; } + D3UnwindRegs; + #elif defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips) ++typedef ++ struct { Addr pc; Addr sp; Addr fp; Addr ra; } ++ D3UnwindRegs; ++#elif defined(VGA_sw64) + typedef + struct { Addr pc; Addr sp; Addr fp; Addr ra; } + D3UnwindRegs; +diff --git a/coregrind/pub_core_initimg.h b/coregrind/pub_core_initimg.h +index cfbd41f8b..7718b9885 100644 +--- a/coregrind/pub_core_initimg.h ++++ b/coregrind/pub_core_initimg.h +@@ -58,7 +58,7 @@ IIFinaliseImageInfo VG_(ii_create_image)( IICreateImageInfo, + starting values. This is handed the IIFinaliseImageInfo created by + VG_(ii_create_image). */ + extern +-void VG_(ii_finalise_image)( IIFinaliseImageInfo ); ++void VG_(ii_finalise_image)( IIFinaliseImageInfo, IICreateImageInfo ); + + /* Note that both IICreateImageInfo and IIFinaliseImageInfo are + OS-specific. We now go on to give instantiations of them +diff --git a/coregrind/pub_core_machine.h b/coregrind/pub_core_machine.h +index a9b7dd8b1..e9319ae88 100644 +--- a/coregrind/pub_core_machine.h ++++ b/coregrind/pub_core_machine.h +@@ -126,6 +126,11 @@ + # define VG_ELF_MACHINE EM_NANOMIPS + # define VG_ELF_CLASS ELFCLASS32 + # undef VG_PLAT_USES_PPCTOC ++#elif defined(VGP_sw64_linux) ++# define VG_ELF_DATA2XXX ELFDATA2LSB ++# define VG_ELF_MACHINE EM_SW_64 ++# define VG_ELF_CLASS ELFCLASS64 ++# undef VG_PLAT_USES_PPCTOC + #else + # error Unknown platform + #endif +@@ -163,6 +168,10 @@ + # define VG_INSTR_PTR guest_PC + # define VG_STACK_PTR guest_r29 + # define VG_FRAME_PTR guest_r30 ++#elif defined(VGA_sw64) ++# define VG_INSTR_PTR guest_PC ++# define VG_STACK_PTR guest_r30 ++# define VG_FRAME_PTR guest_r15 + #else + # error Unknown arch + #endif +diff --git a/coregrind/pub_core_mallocfree.h b/coregrind/pub_core_mallocfree.h +index b5922ca50..61dcaf435 100644 +--- a/coregrind/pub_core_mallocfree.h ++++ b/coregrind/pub_core_mallocfree.h +@@ -83,6 +83,7 @@ typedef Int ArenaId; + defined(VGP_x86_darwin) || \ + defined(VGP_amd64_darwin) || \ + defined(VGP_arm64_linux) || \ ++ defined(VGP_sw64_linux) || \ + defined(VGP_amd64_solaris) + # define VG_MIN_MALLOC_SZB 16 + #else +diff --git a/coregrind/pub_core_options.h b/coregrind/pub_core_options.h +index e949311af..d1d1742da 100644 +--- a/coregrind/pub_core_options.h ++++ b/coregrind/pub_core_options.h +@@ -188,6 +188,8 @@ extern ULong VG_(clo_profyle_interval); + extern Int VG_(clo_trace_notbelow); + /* DEBUG: if tracing codegen, be quiet after this bb */ + extern Int VG_(clo_trace_notabove); ++/* DEBUG: print register after sched, defualt: NO */ ++extern Int VG_(clo_trace_reg); + /* DEBUG: print system calls? default: NO */ + extern Bool VG_(clo_trace_syscalls); + /* DEBUG: print signal details? default: NO */ +@@ -204,6 +206,8 @@ extern Bool VG_(clo_debug_dump_syms); + extern Bool VG_(clo_debug_dump_line); + /* DEBUG: mimic /usr/bin/readelf --debug-dump=frames? default: NO */ + extern Bool VG_(clo_debug_dump_frames); ++/* Show instruction expansion ratio. default: NO */ ++extern Bool VG_(clo_dump_expansion_ratio); + /* DEBUG: print redirection details? default: NO */ + extern Bool VG_(clo_trace_redir); + /* Enable fair scheduling on multicore systems? default: NO */ +diff --git a/coregrind/pub_core_scheduler.h b/coregrind/pub_core_scheduler.h +index d74eb0629..f8e5bf96a 100644 +--- a/coregrind/pub_core_scheduler.h ++++ b/coregrind/pub_core_scheduler.h +@@ -110,6 +110,9 @@ extern void VG_(force_vgdb_poll) ( void ); + /* Stats ... */ + extern void VG_(print_scheduler_stats) ( void ); + ++/* States */ ++extern void VG_(print_guest_state) ( void * vex_ptr ); ++ + /* If False, a fault is Valgrind-internal (ie, a bug) */ + extern Bool VG_(in_generated_code); + +diff --git a/coregrind/pub_core_syscall.h b/coregrind/pub_core_syscall.h +index 6c4f82591..6709e8f9b 100644 +--- a/coregrind/pub_core_syscall.h ++++ b/coregrind/pub_core_syscall.h +@@ -105,6 +105,7 @@ extern SysRes VG_(mk_SysRes_mips32_linux)( UWord v0, UWord v1, + extern SysRes VG_(mk_SysRes_mips64_linux)( ULong v0, ULong v1, + ULong a3 ); + extern SysRes VG_(mk_SysRes_nanomips_linux)( UWord a0); ++extern SysRes VG_(mk_SysRes_sw64_linux)( ULong v0, ULong r19, ULong r20 ); + extern SysRes VG_(mk_SysRes_x86_solaris) ( Bool isErr, UInt val, UInt val2 ); + extern SysRes VG_(mk_SysRes_amd64_solaris) ( Bool isErr, ULong val, ULong val2 ); + extern SysRes VG_(mk_SysRes_Error) ( UWord val ); +diff --git a/coregrind/pub_core_trampoline.h b/coregrind/pub_core_trampoline.h +index 54c575a72..42d6f88a2 100644 +--- a/coregrind/pub_core_trampoline.h ++++ b/coregrind/pub_core_trampoline.h +@@ -171,6 +171,12 @@ extern Char* VG_(nanomips_linux_REDIR_FOR_index)( const Char*, Int ); + extern UInt VG_(nanomips_linux_REDIR_FOR_strlen)( void* ); + #endif + ++#if defined(VGP_sw64_linux) ++extern Addr VG_(sw64_linux_SUBST_FOR_rt_sigreturn); ++extern Char* VG_(sw64_linux_REDIR_FOR_index)( const Char*, Int ); ++extern UInt VG_(sw64_linux_REDIR_FOR_strlen)( void* ); ++#endif ++ + #if defined(VGP_x86_solaris) + extern SizeT VG_(x86_solaris_REDIR_FOR_strcmp)(const HChar *, const HChar *); + extern SizeT VG_(x86_solaris_REDIR_FOR_strlen)(const HChar *); +diff --git a/coregrind/pub_core_transtab.h b/coregrind/pub_core_transtab.h +index 6cc11f658..95152ebff 100644 +--- a/coregrind/pub_core_transtab.h ++++ b/coregrind/pub_core_transtab.h +@@ -81,7 +81,8 @@ static inline UWord VG_TT_FAST_HASH ( Addr guest ) { + } + + #elif defined(VGA_ppc32) || defined(VGA_ppc64be) || defined(VGA_ppc64le) \ +- || defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_arm64) ++ || defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_arm64) \ ++ || defined(VGA_sw64) + static inline UWord VG_TT_FAST_HASH ( Addr guest ) { + // Instructions are 4-byte aligned. + UWord merged = ((UWord)guest) >> 2; +diff --git a/coregrind/pub_core_transtab_asm.h b/coregrind/pub_core_transtab_asm.h +index 8b585f17d..e4761c2e7 100644 +--- a/coregrind/pub_core_transtab_asm.h ++++ b/coregrind/pub_core_transtab_asm.h +@@ -83,7 +83,7 @@ + #if defined(VGA_amd64) || defined(VGA_arm64) \ + || defined(VGA_ppc64be) || defined(VGA_ppc64le) \ + || (defined(VGA_mips64) && defined(VGABI_64)) \ +- || defined(VGA_s390x) ++ || defined(VGA_s390x) || defined(VGA_sw64) + // And all other 64-bit hosts + # define VG_FAST_CACHE_SET_BITS 6 + // These FCS_{g,h}{0,1,2,3} are the values of +diff --git a/coregrind/vgdb-invoker-ptrace.c b/coregrind/vgdb-invoker-ptrace.c +index 78a6a168c..7cce16491 100644 +--- a/coregrind/vgdb-invoker-ptrace.c ++++ b/coregrind/vgdb-invoker-ptrace.c +@@ -874,6 +874,9 @@ Bool invoker_invoke_gdbserver (pid_t pid) + sp = p[29]; + #elif defined(VGA_mips64) + sp = user_mod.regs[29]; ++#elif defined(VGA_sw64) ++ //user defined in sys/user.h ++ sp = user_mod.regs[30]; + #else + I_die_here : (sp) architecture missing in vgdb-invoker-ptrace.c + #endif +@@ -961,6 +964,8 @@ Bool invoker_invoke_gdbserver (pid_t pid) + + #elif defined(VGA_mips64) + assert(0); // cannot vgdb a 32 bits executable with a 64 bits exe ++#elif defined(VGA_sw64) ++ assert(0); // cannot vgdb a 32 bits executable with a 64 bits exe + #else + I_die_here : architecture missing in vgdb-invoker-ptrace.c + #endif +@@ -1068,6 +1073,8 @@ Bool invoker_invoke_gdbserver (pid_t pid) + user_mod.regs[31] = bad_return; + user_mod.regs[34] = shared64->invoke_gdbserver; + user_mod.regs[25] = shared64->invoke_gdbserver; ++#elif defined(VGA_sw64) ++ /* TODO(Shaohua): SW_NOT_COMPLETE */ + #else + I_die_here: architecture missing in vgdb-invoker-ptrace.c + #endif +diff --git a/drd/drd_bitmap.h b/drd/drd_bitmap.h +index 3b71d749a..7f8cea5dd 100644 +--- a/drd/drd_bitmap.h ++++ b/drd/drd_bitmap.h +@@ -140,7 +140,8 @@ Addr make_address(const UWord a1, const UWord a0) + #define BITS_PER_BITS_PER_UWORD 5 + #elif defined(VGA_amd64) || defined(VGA_ppc64be) || defined(VGA_ppc64le) \ + || defined(VGA_s390x) || (defined(VGA_mips64) && !defined(VGABI_N32)) \ +- || defined(VGA_arm64) ++ || defined(VGA_arm64) || defined(VGA_tilegx) || defined(VGA_sw64) ++/* TODO(Shaohua): SW_NOT_COMPLETE */ + #define BITS_PER_BITS_PER_UWORD 6 + #else + #error Unknown platform. +diff --git a/drd/drd_load_store.c b/drd/drd_load_store.c +index 80d326a0e..bb9a5371f 100644 +--- a/drd/drd_load_store.c ++++ b/drd/drd_load_store.c +@@ -53,6 +53,8 @@ + #define STACK_POINTER_OFFSET OFFSET_mips32_r29 + #elif defined(VGA_mips64) + #define STACK_POINTER_OFFSET OFFSET_mips64_r29 ++#elif defined(VGA_sw64) ++#define STACK_POINTER_OFFSET OFFSET_sw64_r30 + #else + #error Unknown architecture. + #endif +diff --git a/drd/drd_main.c b/drd/drd_main.c +index 2161e0316..2f2918b62 100644 +--- a/drd/drd_main.c ++++ b/drd/drd_main.c +@@ -449,6 +449,21 @@ static void DRD_(suppress_relocation_conflicts)(const Addr a, const SizeT len) + DRD_(start_suppression)(avma, avma + size, ".bss"); + } + ++ /* ++ * Same as above, for some architecture (e.g. sw_64) place some ++ * global variable in .sbss instead of .bss ++ */ ++ avma = VG_(DebugInfo_get_sbss_avma)(di); ++ size = VG_(DebugInfo_get_sbss_size)(di); ++ tl_assert((avma && size) || (avma == 0 && size == 0)); ++ if (size > 0 && ++ VG_(strcmp)(VG_(DebugInfo_get_soname)(di), "libpthread.so.0") == 0) { ++ if (trace_sectsuppr) ++ VG_(dmsg)("Suppressing .sbss @ 0x%lx size %lu\n", avma, size); ++ tl_assert(VG_(DebugInfo_sect_kind)(NULL, avma) == Vg_SectBSS); ++ DRD_(start_suppression)(avma, avma + size, ".sbss"); ++ } ++ + avma = VG_(DebugInfo_get_plt_avma)(di); + size = VG_(DebugInfo_get_plt_size)(di); + tl_assert((avma && size) || (avma == 0 && size == 0)); +diff --git a/drd/tests/Makefile.am b/drd/tests/Makefile.am +index fcea8cdce..bd99b595f 100755 +--- a/drd/tests/Makefile.am ++++ b/drd/tests/Makefile.am +@@ -311,6 +311,7 @@ EXTRA_DIST = \ + tc04_free_lock.stderr.exp-x86 \ + tc04_free_lock.stderr.exp-ppc \ + tc04_free_lock.stderr.exp-s390 \ ++ tc04_free_lock.stderr.exp-sw64 \ + tc04_free_lock.vgtest \ + tc05_simple_race.stderr.exp \ + tc05_simple_race.vgtest \ +@@ -329,6 +330,7 @@ EXTRA_DIST = \ + tc09_bad_unlock.stderr.exp-solaris \ + tc09_bad_unlock.stderr.exp-freebsd \ + tc09_bad_unlock.stderr.exp-freebsd-clang \ ++ tc09_bad_unlock.stderr.exp-sw64 \ + tc09_bad_unlock.vgtest \ + tc10_rec_lock.stderr.exp \ + tc10_rec_lock.vgtest \ +diff --git a/drd/tests/tc04_free_lock.stderr.exp-sw64 b/drd/tests/tc04_free_lock.stderr.exp-sw64 +new file mode 100644 +index 000000000..a22ea5ee9 +--- /dev/null ++++ b/drd/tests/tc04_free_lock.stderr.exp-sw64 +@@ -0,0 +1,26 @@ ++ ++Destroying locked mutex: mutex 0x........, recursion count 1, owner 1. ++ at 0x........: free (vg_replace_malloc.c:...) ++ by 0x........: main (tc04_free_lock.c:24) ++mutex 0x........ was first observed at: ++ at 0x........: pthread_mutex_init (drd_pthread_intercepts.c:?) ++ by 0x........: main (tc04_free_lock.c:20) ++ ++Destroying locked mutex: mutex 0x........, recursion count 1, owner 1. ++ at 0x........: bar (tc04_free_lock.c:40) ++ by 0x........: (below main) ++mutex 0x........ was first observed at: ++ at 0x........: pthread_mutex_lock (drd_pthread_intercepts.c:?) ++ by 0x........: bar (tc04_free_lock.c:38) ++ by 0x........: main (tc04_free_lock.c:26) ++ ++Destroying locked mutex: mutex 0x........, recursion count 1, owner 1. ++ at 0x........: foo (tc04_free_lock.c:49) ++ by 0x........: (below main) ++mutex 0x........ was first observed at: ++ at 0x........: pthread_mutex_init (drd_pthread_intercepts.c:?) ++ by 0x........: foo (tc04_free_lock.c:46) ++ by 0x........: main (tc04_free_lock.c:27) ++ ++ ++ERROR SUMMARY: 4 errors from 3 contexts (suppressed: 0 from 0) +diff --git a/drd/tests/tc09_bad_unlock.stderr.exp-sw64 b/drd/tests/tc09_bad_unlock.stderr.exp-sw64 +new file mode 100644 +index 000000000..06e322b04 +--- /dev/null ++++ b/drd/tests/tc09_bad_unlock.stderr.exp-sw64 +@@ -0,0 +1,51 @@ ++ ++Mutex not locked by calling thread: mutex 0x........, recursion count 0, owner 1. ++ at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?) ++ by 0x........: nearly_main (tc09_bad_unlock.c:28) ++ by 0x........: main (tc09_bad_unlock.c:52) ++mutex 0x........ was first observed at: ++ at 0x........: pthread_mutex_init (drd_pthread_intercepts.c:?) ++ by 0x........: nearly_main (tc09_bad_unlock.c:24) ++ by 0x........: main (tc09_bad_unlock.c:52) ++ ++Thread 2: ++Mutex not locked by calling thread: mutex 0x........, recursion count 1, owner 1. ++ at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?) ++ by 0x........: child_fn (tc09_bad_unlock.c:12) ++ by 0x........: vgDrd_thread_wrapper (drd_pthread_intercepts.c:?) ++mutex 0x........ was first observed at: ++ at 0x........: pthread_mutex_init (drd_pthread_intercepts.c:?) ++ by 0x........: nearly_main (tc09_bad_unlock.c:32) ++ by 0x........: main (tc09_bad_unlock.c:52) ++ ++Thread 1: ++The object at address 0x........ is not a mutex. ++ at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?) ++ by 0x........: nearly_main (tc09_bad_unlock.c:43) ++ by 0x........: main (tc09_bad_unlock.c:52) ++ ++Destroying locked mutex: mutex 0x........, recursion count 1, owner 1. ++ at 0x........: nearly_main (tc09_bad_unlock.c:48) ++ by 0x........: (below main) ++mutex 0x........ was first observed at: ++ at 0x........: pthread_mutex_init (drd_pthread_intercepts.c:?) ++ by 0x........: nearly_main (tc09_bad_unlock.c:32) ++ by 0x........: main (tc09_bad_unlock.c:52) ++ ++--------------------- ++Mutex not locked by calling thread: mutex 0x........, recursion count 0, owner 1. ++ at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?) ++ by 0x........: nearly_main (tc09_bad_unlock.c:28) ++ by 0x........: main (tc09_bad_unlock.c:53) ++mutex 0x........ was first observed at: ++ at 0x........: pthread_mutex_init (drd_pthread_intercepts.c:?) ++ by 0x........: nearly_main (tc09_bad_unlock.c:24) ++ by 0x........: main (tc09_bad_unlock.c:53) ++ ++The object at address 0x........ is not a mutex. ++ at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?) ++ by 0x........: nearly_main (tc09_bad_unlock.c:43) ++ by 0x........: main (tc09_bad_unlock.c:53) ++ ++ ++ERROR SUMMARY: 8 errors from 6 contexts (suppressed: 0 from 0) +diff --git a/gdbserver_tests/Makefile.am b/gdbserver_tests/Makefile.am +index fbcb6596d..ccbfbd85e 100755 +--- a/gdbserver_tests/Makefile.am ++++ b/gdbserver_tests/Makefile.am +@@ -29,6 +29,7 @@ EXTRA_DIST = \ + hgtls.stderr.exp \ + hgtls.stdinB.gdb \ + hgtls.stdoutB.exp \ ++ hgtls.stdoutB.exp-sw64 \ + hgtls.vgtest \ + mcblocklistsearch.stderr.exp \ + mcblocklistsearch.stdinB.gdb \ +@@ -151,6 +152,7 @@ EXTRA_DIST = \ + nlvgdbsigqueue.stderr.exp \ + nlvgdbsigqueue.stdinB.gdb \ + nlvgdbsigqueue.stdoutB.exp \ ++ nlvgdbsigqueue.stdoutB.exp-sw64 \ + nlvgdbsigqueue.stdoutB.exp-solaris1 \ + nlvgdbsigqueue.stdoutB.exp-solaris2 + +diff --git a/gdbserver_tests/hgtls.stdinB.gdb b/gdbserver_tests/hgtls.stdinB.gdb +index 2541e9ea4..db165fc97 100644 +--- a/gdbserver_tests/hgtls.stdinB.gdb ++++ b/gdbserver_tests/hgtls.stdinB.gdb +@@ -34,4 +34,6 @@ continue + end + # continue till the end + continue ++continue ++continue + quit +diff --git a/gdbserver_tests/hgtls.stdoutB.exp-sw64 b/gdbserver_tests/hgtls.stdoutB.exp-sw64 +new file mode 100644 +index 000000000..0b5c9ae46 +--- /dev/null ++++ b/gdbserver_tests/hgtls.stdoutB.exp-sw64 +@@ -0,0 +1,45 @@ ++Breakpoint 1 at 0x........: file tls.c, line 55. ++Continuing. ++Breakpoint 1, tls_ptr (p=0x........) at tls.c:55 ++55 int here = 0; ++test race tls_ip 0x........ ip 0x........ equal 1 ++Breakpoint 1, tls_ptr (p=0x........) at tls.c:55 ++55 int here = 0; ++test race tls_ip 0x........ ip 0x........ equal 1 ++Breakpoint 1, tls_ptr (p=0x........) at tls.c:55 ++55 int here = 0; ++Continuing. ++Breakpoint 1, tls_ptr (p=0x........) at tls.c:55 ++55 int here = 0; ++Continuing. ++Breakpoint 1, tls_ptr (p=0x........) at tls.c:55 ++55 int here = 0; ++test global tls_ip 0x........ ip 0x........ equal 1 ++Breakpoint 1, tls_ptr (p=0x........) at tls.c:55 ++55 int here = 0; ++test global tls_ip 0x........ ip 0x........ equal 1 ++Breakpoint 1, tls_ptr (p=0x........) at tls.c:55 ++55 int here = 0; ++test static_extern tls_ip 0x........ ip 0x........ equal 1 ++Breakpoint 1, tls_ptr (p=0x........) at tls.c:55 ++55 int here = 0; ++test static_extern tls_ip 0x........ ip 0x........ equal 1 ++Breakpoint 1, tls_ptr (p=0x........) at tls.c:55 ++55 int here = 0; ++test so_extern tls_ip 0x........ ip 0x........ equal 1 ++Breakpoint 1, tls_ptr (p=0x........) at tls.c:55 ++55 int here = 0; ++test so_extern tls_ip 0x........ ip 0x........ equal 1 ++Breakpoint 1, tls_ptr (p=0x........) at tls.c:55 ++55 int here = 0; ++test so_local tls_ip 0x........ ip 0x........ equal 1 ++Breakpoint 1, tls_ptr (p=0x........) at tls.c:55 ++55 int here = 0; ++test so_local tls_ip 0x........ ip 0x........ equal 1 ++Breakpoint 1, tls_ptr (p=0x........) at tls.c:55 ++55 int here = 0; ++test so_global tls_ip 0x........ ip 0x........ equal 1 ++Breakpoint 1, tls_ptr (p=0x........) at tls.c:55 ++55 int here = 0; ++test so_global tls_ip 0x........ ip 0x........ equal 1 ++Program exited normally. +diff --git a/gdbserver_tests/mcinvokeWS.vgtest b/gdbserver_tests/mcinvokeWS.vgtest +index ced90fa18..a9e810717 100644 +--- a/gdbserver_tests/mcinvokeWS.vgtest ++++ b/gdbserver_tests/mcinvokeWS.vgtest +@@ -2,7 +2,7 @@ + # If the test goes wrong, it might be blocked during 10000 seconds. + prog: sleepers + args: 1 10000000 0 -S-S-S-S +-vgopts: --tool=memcheck --vgdb=yes --vgdb-prefix=./vgdb-prefix-mcinvokeWS ++#vgopts: --tool=memcheck --vgdb=yes --vgdb-prefix=./vgdb-prefix-mcinvokeWS + stderr_filter: filter_make_empty + prereq: test -f vgdb.invoker + progB: invoker +diff --git a/gdbserver_tests/nlcontrolc.vgtest b/gdbserver_tests/nlcontrolc.vgtest +index 09edfcaba..3ae8eafed 100644 +--- a/gdbserver_tests/nlcontrolc.vgtest ++++ b/gdbserver_tests/nlcontrolc.vgtest +@@ -13,7 +13,7 @@ args: 1000000000 0 100000 BSBSBSBS 1 + vgopts: --tool=none --vgdb=yes --vgdb-error=0 --vgdb-prefix=./vgdb-prefix-nlcontrolc + stderr_filter: filter_stderr + # Bug 338633 nlcontrol hangs on arm64 currently. +-prereq: test -e gdb -a -f vgdb.invoker && ! ../tests/os_test solaris ++prereq: test -e gdb -a -f vgdb.invoker && ! ../tests/os_test solaris && ! ../tests/arch_test sw64 + progB: gdb + argsB: --quiet -l 60 --nx ./sleepers + stdinB: nlcontrolc.stdinB.gdb +diff --git a/gdbserver_tests/nlvgdbsigqueue.stderr.exp b/gdbserver_tests/nlvgdbsigqueue.stderr.exp +index 52b10c9db..b63a9a988 100644 +--- a/gdbserver_tests/nlvgdbsigqueue.stderr.exp ++++ b/gdbserver_tests/nlvgdbsigqueue.stderr.exp +@@ -3,7 +3,7 @@ Nulgrind, the minimal Valgrind tool + (action at startup) vgdb me ... + + +-loops/sleep_ms/burn/threads_spec/affinity: 1000000000 1000000000 1 BSBSBSBS 1 ++loops/sleep_ms/burn/threads_spec/affinity: 1000000000 0 100000 BSBSBSBS 1 + Brussels ready to sleep and/or burn + London ready to sleep and/or burn + Petaouchnok ready to sleep and/or burn +diff --git a/gdbserver_tests/nlvgdbsigqueue.stdoutB.exp-sw64 b/gdbserver_tests/nlvgdbsigqueue.stdoutB.exp-sw64 +new file mode 100644 +index 000000000..eef4b2001 +--- /dev/null ++++ b/gdbserver_tests/nlvgdbsigqueue.stdoutB.exp-sw64 +@@ -0,0 +1,19 @@ ++continuing to have vgdb interrupted by simulate_control_c ++Continuing. ++Program received signal SIGTRAP, Trace/breakpoint trap. ++do_burn () at sleepers.c:40 ++40 for (i = 0; i < burn; i++) loopnr++; ++attachedwaitingforsigusr1 ++sending signal ++sending signal ++continuing to receive first SIGUSR1 ++Continuing. ++Program received signal SIGUSR1, User defined signal 1. ++do_burn () at sleepers.c:40 ++40 for (i = 0; i < burn; i++) loopnr++; ++continuing to receive second SIGUSR1 ++Continuing. ++Program received signal SIGTRAP, Trace/breakpoint trap. ++do_burn () at sleepers.c:40 ++40 for (i = 0; i < burn; i++) loopnr++; ++Kill the program being debugged? (y or n) [answered Y; input not from terminal] +diff --git a/gdbserver_tests/nlvgdbsigqueue.vgtest b/gdbserver_tests/nlvgdbsigqueue.vgtest +index 877568211..7b9437bdc 100644 +--- a/gdbserver_tests/nlvgdbsigqueue.vgtest ++++ b/gdbserver_tests/nlvgdbsigqueue.vgtest +@@ -3,7 +3,7 @@ + # vgdb must queue these signals and deliver them before PTRACE_DETACHing. + # sleepers is started with argument so that it will mostly sleep. + prog: sleepers +-args: 1000000000 1000000000 1 BSBSBSBS 1 ++args: 1000000000 0 100000 BSBSBSBS 1 + vgopts: --tool=none --vgdb=yes --vgdb-error=0 --vgdb-prefix=./vgdb-prefix-nlvgdbsigqueue + stderr_filter: filter_stderr + prereq: test -e gdb -a -f vgdb.invoker +diff --git a/helgrind/tests/Makefile.am b/helgrind/tests/Makefile.am +index 3e2efad0b..f54c41ec4 100755 +--- a/helgrind/tests/Makefile.am ++++ b/helgrind/tests/Makefile.am +@@ -126,6 +126,7 @@ EXTRA_DIST = \ + tc20_verifywrap.stderr.exp-mips32-b \ + tc20_verifywrap.stderr.exp-s390x \ + tc20_verifywrap.stderr.exp-solaris \ ++ tc20_verifywrap.stderr.exp-sw64 \ + tc21_pthonce.vgtest tc21_pthonce.stdout.exp tc21_pthonce.stderr.exp \ + tc22_exit_w_lock.vgtest tc22_exit_w_lock.stdout.exp \ + tc22_exit_w_lock.stderr.exp \ +diff --git a/helgrind/tests/annotate_hbefore.c b/helgrind/tests/annotate_hbefore.c +index 259d3b64c..3e7cb179c 100644 +--- a/helgrind/tests/annotate_hbefore.c ++++ b/helgrind/tests/annotate_hbefore.c +@@ -314,6 +314,37 @@ UWord do_acasW ( UWord* addr, UWord expected, UWord nyu ) + return success; + } + ++#elif defined(VGA_sw64) ++ ++// sw64 ++/* return 1 if success, 0 if failure */ ++UWord do_acasW ( UWord* addr, UWord expected, UWord nyu ) ++{ ++ UWord succ, cmp, prev; ++ ++ __asm__ __volatile__( ++ "0: lldl %[prev], 0(%[addr])\n" ++ " cmpeq %[prev], %[exp], %[cmp]\n" ++ " wr_f %[cmp]\n" ++ " mov %[nyu], %[succ]\n" ++ " lstl %[succ], 0(%[addr])\n" ++ " rd_f %[succ]\n" ++ " beq %[cmp], 1f\n" ++ " beq %[succ], 0b\n" ++ "1:\n" ++ : [succ] "=&r"(succ), ++ [prev] "=&r"(prev), ++ [cmp] "=&r"(cmp) ++ : [nyu] "r"(nyu), ++ [addr] "r"(addr), ++ [exp] "r"(expected) ++ : "memory" ++ ); ++ ++ assert(succ == 0 || succ == 1); ++ return succ; ++} ++ + #endif + + void atomic_incW ( UWord* w ) +diff --git a/helgrind/tests/tc07_hbl1.c b/helgrind/tests/tc07_hbl1.c +index 54297dee6..4afa1574b 100644 +--- a/helgrind/tests/tc07_hbl1.c ++++ b/helgrind/tests/tc07_hbl1.c +@@ -18,6 +18,7 @@ + #undef PLAT_arm64_linux + #undef PLAT_s390x_linux + #undef PLAT_mips32_linux ++#undef PLAT_sw64_linux + #undef PLAT_x86_solaris + #undef PLAT_amd64_solaris + +@@ -47,6 +48,8 @@ + # define PLAT_mips32_linux 1 + #elif defined(__linux__) && defined(__nanomips__) + # define PLAT_nanomips_linux 1 ++#elif defined(__linux__) && defined(__sw_64__) ++# define PLAT_sw64_linux 1 + #elif defined(__sun__) && defined(__i386__) + # define PLAT_x86_solaris 1 + #elif defined(__sun__) && defined(__x86_64__) +@@ -131,6 +134,22 @@ + : /*out*/ : /*in*/ "r"(&(_lval)) \ + : /*trash*/ "$t0", "$t1", "memory" \ + ) ++#elif defined(PLAT_sw64_linux) ++# define INC(_lval,_lqual) \ ++ __asm__ __volatile__ ( \ ++ "0:\n" \ ++ " lldw $5, 0(%0)\n" \ ++ " ldi $8, 1\n" \ ++ " wr_f $8\n" \ ++ " addw $5, 1, $5\n" \ ++ " memb \n" \ ++ " lstw $5, 0(%0)\n" \ ++ " rd_f $5\n" \ ++ " beq $5, 0b\n" \ ++ : /*out*/ \ ++ : /*in*/ "r"(&(_lval)) \ ++ : /*trash*/ "$5", "$8", "memory" \ ++ ) + #else + # error "Fix Me for this platform" + #endif +diff --git a/helgrind/tests/tc08_hbl2.c b/helgrind/tests/tc08_hbl2.c +index c3a2ec794..e82c44cd4 100644 +--- a/helgrind/tests/tc08_hbl2.c ++++ b/helgrind/tests/tc08_hbl2.c +@@ -35,6 +35,7 @@ + #undef PLAT_s390x_linux + #undef PLAT_mips32_linux + #undef PLAT_mips64_linux ++#undef PLAT_sw64_linux + #undef PLAT_x86_solaris + #undef PLAT_amd64_solaris + +@@ -68,6 +69,8 @@ + #endif + #elif defined(__linux__) && defined(__nanomips__) + # define PLAT_nanomips_linux 1 ++#elif defined(__linux__) && defined(__sw_64__) ++# define PLAT_sw64_linux 1 + #elif defined(__sun__) && defined(__i386__) + # define PLAT_x86_solaris 1 + #elif defined(__sun__) && defined(__x86_64__) +@@ -151,6 +154,22 @@ + : /*out*/ : /*in*/ "r"(&(_lval)) \ + : /*trash*/ "$t0", "$t1", "memory" \ + ) ++#elif defined(PLAT_sw64_linux) ++# define INC(_lval,_lqual) \ ++ __asm__ __volatile__ ( \ ++ "0:\n" \ ++ " lldw $5, 0(%0)\n" \ ++ " ldi $8, 1\n" \ ++ " wr_f $8\n" \ ++ " addw $5, 1, $5\n" \ ++ " memb \n" \ ++ " lstw $5, 0(%0)\n" \ ++ " rd_f $5\n" \ ++ " beq $5, 0b\n" \ ++ : /*out*/ \ ++ : /*in*/ "r"(&(_lval)) \ ++ : /*trash*/ "$5", "$8", "memory" \ ++ ) + #else + # error "Fix Me for this platform" + #endif +diff --git a/helgrind/tests/tc11_XCHG.c b/helgrind/tests/tc11_XCHG.c +index 08e34a0b5..44e425df8 100644 +--- a/helgrind/tests/tc11_XCHG.c ++++ b/helgrind/tests/tc11_XCHG.c +@@ -20,6 +20,7 @@ + #undef PLAT_arm_linux + #undef PLAT_s390x_linux + #undef PLAT_mips32_linux ++#undef PLAT_sw64_linux + #undef PLAT_x86_solaris + #undef PLAT_amd64_solaris + +@@ -49,6 +50,8 @@ + # define PLAT_mips32_linux 1 + #elif defined(__linux__) && defined(__nanomips__) + # define PLAT_nanomips_linux 1 ++#elif defined(__linux__) && defined(__sw_64__) ++# define PLAT_sw64_linux 1 + #elif defined(__sun__) && defined(__i386__) + # define PLAT_x86_solaris 1 + #elif defined(__sun__) && defined(__x86_64__) +@@ -81,7 +84,7 @@ + __asm__ __volatile__( \ + "0: l 0,%[global]\n\t" \ + " cs 0,%[local],%[global]\n\t" \ +- " jne 0b\n\t" \ ++ " bne 0b\n\t" \ + " lr %[local],0\n\t" \ + : /*out*/ [global]"+m"(_addr), [local]"+d"(_lval) \ + : /*in*/ \ +@@ -146,6 +149,26 @@ + # define XCHG_M_R_with_redundant_LOCK(_addr,_lval) \ + XCHG_M_R(_addr,_lval) + ++#elif defined(PLAT_sw64_linux) ++# define XCHG_M_R(_addr,_lval) \ ++ __asm__ __volatile__( \ ++ "0:\n" \ ++ " lldw $5, 0(%1)\n" \ ++ " ldi $8, 1\n" \ ++ " wr_f $8\n" \ ++ " memb \n" \ ++ " lstw %0, 0(%1)\n" \ ++ " rd_f %0\n" \ ++ " beq %0, 0b\n" \ ++ " mov $5, %0\n" \ ++ : /*out*/ "+r"(_lval) \ ++ : /*in*/ "r"(&_addr) \ ++ : "$5", "$8", "memory" \ ++ ) ++ ++# define XCHG_M_R_with_redundant_LOCK(_addr,_lval) \ ++ XCHG_M_R(_addr,_lval) ++ + #else + # error "Unsupported architecture" + +diff --git a/helgrind/tests/tc20_verifywrap.stderr.exp-sw64 b/helgrind/tests/tc20_verifywrap.stderr.exp-sw64 +new file mode 100644 +index 000000000..90e746a40 +--- /dev/null ++++ b/helgrind/tests/tc20_verifywrap.stderr.exp-sw64 +@@ -0,0 +1,250 @@ ++ ++ ++ ++------ This is output for >= glibc 2.4 ------ ++ ++---------------- pthread_create/join ---------------- ++ ++---Thread-Announcement------------------------------------------ ++ ++Thread #x is the program's root thread ++ ++---Thread-Announcement------------------------------------------ ++ ++Thread #x was created ++ ... ++ by 0x........: pthread_create@* (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:86) ++ ++---------------------------------------------------------------- ++ ++Possible data race during write of size 2 at 0x........ by thread #x ++Locks held: none ++ at 0x........: main (tc20_verifywrap.c:88) ++ ++This conflicts with a previous write of size 2 by thread #x ++Locks held: none ++ at 0x........: racy_child (tc20_verifywrap.c:44) ++ by 0x........: mythread_wrapper (hg_intercepts.c:...) ++ ... ++ Location 0x........ is 0 bytes inside global var "unprotected" ++ declared at tc20_verifywrap.c:37 ++ ++---------------------------------------------------------------- ++ ++Thread #x's call to pthread_join failed ++ with error code 11 (EDEADLK: Resource deadlock would occur) ++ at 0x........: pthread_join_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_join (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:93) ++ ++ ++---------------- pthread_mutex_lock et al ---------------- ++ ++---------------------------------------------------------------- ++ ++Thread #x's call to pthread_mutex_init failed ++ with error code 45 (EOPNOTSUPP: Operation not supported on transport endpoint) ++ at 0x........: pthread_mutex_init (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:107) ++ ++---------------------------------------------------------------- ++ ++Thread #x: pthread_mutex_destroy of a locked mutex ++ at 0x........: mutex_destroy_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_mutex_destroy (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:117) ++ ++---------------------------------------------------------------- ++ ++Thread #x's call to pthread_mutex_destroy failed ++ with error code 16 (EBUSY: Device or resource busy) ++ at 0x........: mutex_destroy_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_mutex_destroy (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:117) ++ ++---------------------------------------------------------------- ++ ++Thread #x's call to pthread_mutex_lock failed ++ with error code 22 (EINVAL: Invalid argument) ++ at 0x........: mutex_lock_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_mutex_lock (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:123) ++ ++---------------------------------------------------------------- ++ ++Thread #x's call to pthread_mutex_trylock failed ++ with error code 22 (EINVAL: Invalid argument) ++ at 0x........: mutex_trylock_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_mutex_trylock (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:131) ++ ++---------------------------------------------------------------- ++ ++Thread #x's call to pthread_mutex_timedlock failed ++ with error code 22 (EINVAL: Invalid argument) ++ at 0x........: mutex_timedlock_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_mutex_timedlock (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:136) ++ ++---------------------------------------------------------------- ++ ++Thread #x unlocked an invalid lock at 0x........ ++ at 0x........: mutex_unlock_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_mutex_unlock (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:140) ++ ++---------------------------------------------------------------- ++ ++Thread #x's call to pthread_mutex_unlock failed ++ with error code 22 (EINVAL: Invalid argument) ++ at 0x........: mutex_unlock_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_mutex_unlock (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:140) ++ ++ ++---------------- pthread_cond_wait et al ---------------- ++ ++---------------------------------------------------------------- ++ ++Thread #x: pthread_cond_{timed}wait called with un-held mutex ++ at 0x........: pthread_cond_wait_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:162) ++ ++---------------------------------------------------------------- ++ ++Thread #x's call to pthread_cond_wait failed ++ with error code 1 (EPERM: Operation not permitted) ++ at 0x........: pthread_cond_wait_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:162) ++ ++---------------------------------------------------------------- ++ ++Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread ++ at 0x........: pthread_cond_signal_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_cond_signal@* (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:167) ++ ++ ++FIXME: can't figure out how to verify wrap of pthread_cond_signal ++ ++---------------------------------------------------------------- ++ ++Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread ++ at 0x........: pthread_cond_broadcast_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_cond_broadcast@* (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:173) ++ ++ ++FIXME: can't figure out how to verify wrap of pthread_broadcast_signal ++ ++---------------------------------------------------------------- ++ ++Thread #x: pthread_cond_{timed}wait called with un-held mutex ++ at 0x........: pthread_cond_timedwait_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_cond_timedwait@* (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:180) ++ ++---------------------------------------------------------------- ++ ++Thread #x's call to pthread_cond_timedwait failed ++ with error code 22 (EINVAL: Invalid argument) ++ at 0x........: pthread_cond_timedwait_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_cond_timedwait@* (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:180) ++ ++ ++---------------- pthread_rwlock_* ---------------- ++ ++---------------------------------------------------------------- ++ ++Thread #x unlocked a not-locked lock at 0x........ ++ at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...) ++ ... ++ by 0x........: main (tc20_verifywrap.c:194) ++ Lock at 0x........ was first observed ++ at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_rwlock_init (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:193) ++ Location 0x........ is 0 bytes inside local var "rwl" ++ declared at tc20_verifywrap.c:57, in frame #x of thread x ++ ++ ++(1) no error on next line ++(2) no error on next line ++(3) ERROR on next line ++---------------------------------------------------------------- ++ ++Thread #x unlocked a not-locked lock at 0x........ ++ at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...) ++ ... ++ by 0x........: main (tc20_verifywrap.c:211) ++ Lock at 0x........ was first observed ++ at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_rwlock_init (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:201) ++ Location 0x........ is 0 bytes inside local var "rwl2" ++ declared at tc20_verifywrap.c:58, in frame #x of thread x ++ ++ ++(4) no error on next line ++(5) no error on next line ++(6) no error on next line ++(7) no error on next line ++(8) ERROR on next line ++---------------------------------------------------------------- ++ ++Thread #x unlocked a not-locked lock at 0x........ ++ at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...) ++ ... ++ by 0x........: main (tc20_verifywrap.c:232) ++ Lock at 0x........ was first observed ++ at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...) ++ by 0x........: pthread_rwlock_init (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:201) ++ Location 0x........ is 0 bytes inside local var "rwl2" ++ declared at tc20_verifywrap.c:58, in frame #x of thread x ++ ++ ++ ++---------------- pthread_spin_* ---------------- ++ ++ ++---------------- sem_* ---------------- ++ ++---------------------------------------------------------------- ++ ++Thread #x's call to sem_init failed ++ with error code 22 (EINVAL: Invalid argument) ++ at 0x........: sem_init_WRK (hg_intercepts.c:...) ++ by 0x........: sem_init@* (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:267) ++ ++ ++FIXME: can't figure out how to verify wrap of sem_destroy ++ ++---------------------------------------------------------------- ++ ++Thread #x: Bug in libpthread: sem_wait succeeded on semaphore without prior sem_post ++ at 0x........: sem_wait_WRK (hg_intercepts.c:...) ++ by 0x........: sem_wait (hg_intercepts.c:...) ++ by 0x........: main (tc20_verifywrap.c:281) ++ ++ ++FIXME: can't figure out how to verify wrap of sem_post ++ ++ ++------------ dealloc of mem holding locks ------------ ++ ++---------------------------------------------------------------- ++ ++Thread #x: Exiting thread still holds 1 lock ++ ... ++ ++ ++ERROR SUMMARY: 22 errors from 22 contexts (suppressed: 0 from 0) +diff --git a/include/Makefile.am b/include/Makefile.am +index 972d394b8..059bc486c 100644 +--- a/include/Makefile.am ++++ b/include/Makefile.am +@@ -63,6 +63,7 @@ nobase_pkginclude_HEADERS = \ + vki/vki-posixtypes-mips32-linux.h \ + vki/vki-posixtypes-mips64-linux.h \ + vki/vki-posixtypes-nanomips-linux.h \ ++ vki/vki-posixtypes-sw64-linux.h \ + vki/vki-amd64-linux.h \ + vki/vki-arm64-linux.h \ + vki/vki-ppc32-linux.h \ +@@ -75,6 +76,7 @@ nobase_pkginclude_HEADERS = \ + vki/vki-mips32-linux.h \ + vki/vki-mips64-linux.h \ + vki/vki-nanomips-linux.h \ ++ vki/vki-sw64-linux.h \ + vki/vki-scnums-amd64-linux.h \ + vki/vki-scnums-arm64-linux.h \ + vki/vki-scnums-ppc32-linux.h \ +@@ -86,6 +88,7 @@ nobase_pkginclude_HEADERS = \ + vki/vki-scnums-mips32-linux.h \ + vki/vki-scnums-mips64-linux.h \ + vki/vki-scnums-nanomips-linux.h \ ++ vki/vki-scnums-sw64-linux.h \ + vki/vki-scnums-darwin.h \ + vki/vki-scnums-solaris.h \ + vki/vki-scnums-shared-linux.h \ +diff --git a/include/pub_tool_basics.h b/include/pub_tool_basics.h +index bf5a5ba7f..bf833b853 100644 +--- a/include/pub_tool_basics.h ++++ b/include/pub_tool_basics.h +@@ -208,6 +208,7 @@ typedef + struct { + Bool _isError; + UWord _val; ++ UWord _valEx; + } + SysRes; + +@@ -316,6 +317,12 @@ static inline Bool sr_EQ ( UInt sysno, SysRes sr1, SysRes sr2 ) { + && sr1._isError == sr2._isError; + } + ++#if defined(VGP_sw64_linux) ++static inline UWord sr_ResEx ( SysRes sr ) { ++ return sr._isError ? 0 : sr._valEx; ++} ++#endif ++ + #elif defined(VGO_freebsd) + + static inline Bool sr_isError ( SysRes sr ) { +@@ -437,7 +444,8 @@ static inline Bool sr_EQ ( UInt sysno, SysRes sr1, SysRes sr2 ) { + + #if defined(VGA_x86) || defined(VGA_amd64) || defined (VGA_arm) \ + || ((defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips)) \ +- && defined (_MIPSEL)) || defined(VGA_arm64) || defined(VGA_ppc64le) ++ && defined (_MIPSEL)) || defined(VGA_arm64) || defined(VGA_ppc64le) \ ++ || defined(VGA_sw64) + # define VG_LITTLEENDIAN 1 + #elif defined(VGA_ppc32) || defined(VGA_ppc64be) || defined(VGA_s390x) \ + || ((defined(VGA_mips32) || defined(VGA_mips64) || defined(VGA_nanomips)) \ +@@ -485,7 +493,8 @@ static inline Bool sr_EQ ( UInt sysno, SysRes sr1, SysRes sr2 ) { + || defined(VGA_ppc64be) || defined(VGA_ppc64le) \ + || defined(VGA_arm) || defined(VGA_s390x) \ + || defined(VGA_mips32) || defined(VGA_mips64) \ +- || defined(VGA_arm64) || defined(VGA_nanomips) ++ || defined(VGA_arm64) || defined(VGA_nanomips) \ ++ || defined(VGA_sw64) + # define VG_REGPARM(n) /* */ + #else + # error Unknown arch +diff --git a/include/pub_tool_debuginfo.h b/include/pub_tool_debuginfo.h +index 7631ff67a..7ed9ae707 100644 +--- a/include/pub_tool_debuginfo.h ++++ b/include/pub_tool_debuginfo.h +@@ -272,6 +272,8 @@ Addr VG_(DebugInfo_get_text_avma) ( const DebugInfo *di ); + SizeT VG_(DebugInfo_get_text_size) ( const DebugInfo *di ); + Addr VG_(DebugInfo_get_bss_avma) ( const DebugInfo *di ); + SizeT VG_(DebugInfo_get_bss_size) ( const DebugInfo *di ); ++Addr VG_(DebugInfo_get_sbss_avma) ( const DebugInfo *di ); ++SizeT VG_(DebugInfo_get_sbss_size) ( const DebugInfo *di ); + Addr VG_(DebugInfo_get_plt_avma) ( const DebugInfo *di ); + SizeT VG_(DebugInfo_get_plt_size) ( const DebugInfo *di ); + Addr VG_(DebugInfo_get_gotplt_avma) ( const DebugInfo *di ); +diff --git a/include/pub_tool_guest.h b/include/pub_tool_guest.h +index 08a72efac..fe6671e7d 100644 +--- a/include/pub_tool_guest.h ++++ b/include/pub_tool_guest.h +@@ -62,6 +62,9 @@ + #elif defined(VGA_mips64) + # include "libvex_guest_mips64.h" + typedef VexGuestMIPS64State VexGuestArchState; ++#elif defined(VGA_sw64) ++# include "libvex_guest_sw64.h" ++ typedef VexGuestSW64State VexGuestArchState; + #else + # error Unknown arch + #endif +diff --git a/include/pub_tool_machine.h b/include/pub_tool_machine.h +index 9bdd4f514..efeb3a395 100644 +--- a/include/pub_tool_machine.h ++++ b/include/pub_tool_machine.h +@@ -108,6 +108,12 @@ + # define VG_CLREQ_SZB 20 + # define VG_STACK_REDZONE_SZB 0 + ++#elif defined(VGP_sw64_linux) ++# define VG_MIN_INSTR_SZB 4 ++# define VG_MAX_INSTR_SZB 4 ++# define VG_CLREQ_SZB 20 ++# define VG_STACK_REDZONE_SZB 0 ++ + #else + # error Unknown platform + #endif +diff --git a/include/pub_tool_vkiscnums_asm.h b/include/pub_tool_vkiscnums_asm.h +index 14b483c4d..63b5fbd17 100644 +--- a/include/pub_tool_vkiscnums_asm.h ++++ b/include/pub_tool_vkiscnums_asm.h +@@ -74,6 +74,10 @@ + # include "vki/vki-scnums-shared-linux.h" + # include "vki/vki-scnums-mips64-linux.h" + ++#elif defined(VGP_sw64_linux) ++# include "vki/vki-scnums-shared-linux.h" ++# include "vki/vki-scnums-sw64-linux.h" ++ + #elif defined(VGP_x86_freebsd) || defined(VGP_amd64_freebsd) + # include "vki/vki-scnums-freebsd.h" + +diff --git a/include/valgrind.h.in b/include/valgrind.h.in +index 45f6522f3..4036b7c90 100644 +--- a/include/valgrind.h.in ++++ b/include/valgrind.h.in +@@ -125,6 +125,7 @@ + #undef PLAT_mips32_linux + #undef PLAT_mips64_linux + #undef PLAT_nanomips_linux ++#undef PLAT_sw64_linux + #undef PLAT_x86_solaris + #undef PLAT_amd64_solaris + +@@ -169,6 +170,8 @@ + # define PLAT_mips32_linux 1 + #elif defined(__linux__) && defined(__nanomips__) + # define PLAT_nanomips_linux 1 ++#elif defined(__linux__) && defined(__sw_64__) ++# define PLAT_sw64_linux 1 + #elif defined(__sun) && defined(__i386__) + # define PLAT_x86_solaris 1 + #elif defined(__sun) && defined(__x86_64__) +@@ -1057,6 +1060,80 @@ typedef + + #endif /* PLAT_mips64_linux */ + ++ ++/* ------------------------- sw64-linux ---------------- */ ++ ++#if defined(PLAT_sw64_linux) ++ ++typedef ++ struct { ++ unsigned long nraddr; /* where's the code? */ ++ } ++ OrigFn; ++ ++/* sll $31,3, $31 ++ * sll $31,13,$31 ++ * sll $31,29,$31 ++ * sll $31,19,$31 */ ++ /* write r31 means noop, others copied and modified from mips64 */ ++#define __SPECIAL_INSTRUCTION_PREAMBLE \ ++ "sll $31,3, $31; sll $31,13,$31\n\t" \ ++ "sll $31,29,$31; sll $31,19,$31\n\t" ++ ++#define VALGRIND_DO_CLIENT_REQUEST_EXPR( \ ++ _zzq_default, _zzq_request, \ ++ _zzq_arg1, _zzq_arg2, _zzq_arg3, _zzq_arg4, _zzq_arg5) \ ++ __extension__ \ ++ ({ volatile unsigned long int _zzq_args[6]; \ ++ volatile unsigned long int _zzq_result; \ ++ _zzq_args[0] = (unsigned long int)(_zzq_request); \ ++ _zzq_args[1] = (unsigned long int)(_zzq_arg1); \ ++ _zzq_args[2] = (unsigned long int)(_zzq_arg2); \ ++ _zzq_args[3] = (unsigned long int)(_zzq_arg3); \ ++ _zzq_args[4] = (unsigned long int)(_zzq_arg4); \ ++ _zzq_args[5] = (unsigned long int)(_zzq_arg5); \ ++ __asm__ volatile("mov %1, $4\n\t" /*default*/ \ ++ "mov %2, $5\n\t" /*ptr*/ \ ++ __SPECIAL_INSTRUCTION_PREAMBLE \ ++ /* $4 = client_request ( $5 ) */ \ ++ "bis $6, $6, $6\n\t" \ ++ "mov $4, %0\n\t" /*result*/ \ ++ : "=r" (_zzq_result) \ ++ : "r" (_zzq_default), "r" (&_zzq_args[0]) \ ++ : "$4", "$5", "memory"); \ ++ _zzq_result; \ ++ }) ++ ++#define VALGRIND_GET_NR_CONTEXT(_zzq_rlval) \ ++ { volatile OrigFn* _zzq_orig = &(_zzq_rlval); \ ++ volatile unsigned long int __addr; \ ++ __asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \ ++ /* $4 = guest_NRADDR */ \ ++ "bis $7, $7, $7\n\t" \ ++ "mov $4, %0" /*result*/ \ ++ : "=r" (__addr) \ ++ : \ ++ : "$4"); \ ++ _zzq_orig->nraddr = __addr; \ ++ } ++ ++#define VALGRIND_CALL_NOREDIR_T9 \ ++ __SPECIAL_INSTRUCTION_PREAMBLE \ ++ /* branch-and-link-to-noredir r27 */ \ ++ "bis $8, $8, $8\n\t" \ ++ ".set macro\n\t" \ ++ "br $gp, 0f\n" \ ++ "0: ldgp $gp, 0($gp)\n\t" ++ ++#define VALGRIND_VEX_INJECT_IR() \ ++ do { \ ++ __asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \ ++ "bis $4, $4, $4\n\t" \ ++ ); \ ++ } while (0) ++ ++#endif /* PLAT_sw64_linux */ ++ + #if defined(PLAT_nanomips_linux) + + typedef +@@ -6603,6 +6680,440 @@ typedef + + #endif /* PLAT_mips64_linux */ + ++/* ------------------------ sw64-linux ------------------------ */ ++ ++#if defined(PLAT_sw64_linux) ++ ++/* These regs are trashed by the hidden call. */ ++#define __CALLER_SAVED_REGS \ ++ "$0", "$1", "$2", "$3", "$4", "$5", "$6", "$7", "$8", \ ++ "$16", "$17", "$18", "$19", "$20", "$21", \ ++ "$22", "$23", "$24", "$25", \ ++ "$27", "$28" ++ ++/* These CALL_FN_ macros assume that on sw64-linux, ++ sizeof(long) == 8. */ ++ ++#define CALL_FN_W_v(lval, orig) \ ++ do { \ ++ volatile OrigFn _orig = (orig); \ ++ volatile unsigned long _argvec[1]; \ ++ volatile unsigned long _res; \ ++ _argvec[0] = (unsigned long)(_orig.nraddr); \ ++ __asm__ volatile( \ ++ "ldl $27, 0(%1)\n\t" \ ++ VALGRIND_CALL_NOREDIR_T9 \ ++ "mov $0, %0\n" \ ++ : /*out*/ "=r" (_res) \ ++ : /*in*/ "0" (&_argvec[0]) \ ++ : /*trash*/ "memory", __CALLER_SAVED_REGS \ ++ ); \ ++ lval = (__typeof__(lval)) (long)_res; \ ++ } while (0) ++ ++#define CALL_FN_W_W(lval, orig, arg1) \ ++ do { \ ++ volatile OrigFn _orig = (orig); \ ++ volatile unsigned long _argvec[2]; \ ++ volatile unsigned long _res; \ ++ _argvec[0] = (unsigned long)(_orig.nraddr); \ ++ _argvec[1] = (unsigned long)(arg1); \ ++ __asm__ volatile( \ ++ "ldl $16, 8(%1)\n\t" /* arg1*/ \ ++ "ldl $27, 0(%1)\n\t" \ ++ VALGRIND_CALL_NOREDIR_T9 \ ++ "mov $0, %0\n" \ ++ : /*out*/ "=r" (_res) \ ++ : /*in*/ "r" (&_argvec[0]) \ ++ : /*trash*/ "memory", __CALLER_SAVED_REGS \ ++ ); \ ++ lval = (__typeof__(lval)) (long)_res; \ ++ } while (0) ++ ++#define CALL_FN_W_WW(lval, orig, arg1,arg2) \ ++ do { \ ++ volatile OrigFn _orig = (orig); \ ++ volatile unsigned long _argvec[3]; \ ++ volatile unsigned long _res; \ ++ _argvec[0] = _orig.nraddr; \ ++ _argvec[1] = (unsigned long)(arg1); \ ++ _argvec[2] = (unsigned long)(arg2); \ ++ __asm__ volatile( \ ++ "ldl $17, 16(%1)\n\t" /* arg2 */ \ ++ "ldl $16, 8(%1)\n\t" /* arg1 */ \ ++ "ldl $27, 0(%1)\n\t" \ ++ VALGRIND_CALL_NOREDIR_T9 \ ++ "mov $0, %0\n" \ ++ : /*out*/ "=r" (_res) \ ++ : /*in*/ "r" (&_argvec[0]) \ ++ : /*trash*/ "memory", __CALLER_SAVED_REGS \ ++ ); \ ++ lval = (__typeof__(lval)) (long)_res; \ ++ } while (0) ++ ++#define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \ ++ do { \ ++ volatile OrigFn _orig = (orig); \ ++ volatile unsigned long _argvec[4]; \ ++ volatile unsigned long _res; \ ++ _argvec[0] = _orig.nraddr; \ ++ _argvec[1] = (unsigned long)(arg1); \ ++ _argvec[2] = (unsigned long)(arg2); \ ++ _argvec[3] = (unsigned long)(arg3); \ ++ __asm__ volatile( \ ++ "ldl $18, 24(%1)\n\t" /* arg3 */ \ ++ "ldl $17, 16(%1)\n\t" /* arg2 */ \ ++ "ldl $16, 8(%1)\n\t" /* arg1 */ \ ++ "ldl $27, 0(%1)\n\t" \ ++ VALGRIND_CALL_NOREDIR_T9 \ ++ "mov $0, %0\n" \ ++ : /*out*/ "=r" (_res) \ ++ : /*in*/ "r" (&_argvec[0]) \ ++ : /*trash*/ "memory", __CALLER_SAVED_REGS \ ++ ); \ ++ lval = (__typeof__(lval)) (long)_res; \ ++ } while (0) ++ ++#define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \ ++ do { \ ++ volatile OrigFn _orig = (orig); \ ++ volatile unsigned long _argvec[5]; \ ++ volatile unsigned long _res; \ ++ _argvec[0] = (unsigned long)(_orig.nraddr); \ ++ _argvec[1] = (unsigned long)(arg1); \ ++ _argvec[2] = (unsigned long)(arg2); \ ++ _argvec[3] = (unsigned long)(arg3); \ ++ _argvec[4] = (unsigned long)(arg4); \ ++ __asm__ volatile( \ ++ "ldl $19, 32(%1)\n\t" /* arg4 */ \ ++ "ldl $18, 24(%1)\n\t" /* arg3 */ \ ++ "ldl $17, 16(%1)\n\t" /* arg2 */ \ ++ "ldl $16, 8(%1)\n\t" /* arg1 */ \ ++ "ldl $27, 0(%1)\n\t" \ ++ VALGRIND_CALL_NOREDIR_T9 \ ++ "mov $0, %0\n" \ ++ : /*out*/ "=r" (_res) \ ++ : /*in*/ "r" (&_argvec[0]) \ ++ : /*trash*/ "memory", __CALLER_SAVED_REGS \ ++ ); \ ++ lval = (__typeof__(lval)) (long)_res; \ ++ } while (0) ++ ++#define CALL_FN_W_5W(lval, orig, arg1,arg2,arg3,arg4,arg5) \ ++ do { \ ++ volatile OrigFn _orig = (orig); \ ++ volatile unsigned long _argvec[6]; \ ++ volatile unsigned long _res; \ ++ _argvec[0] = (unsigned long)(_orig.nraddr); \ ++ _argvec[1] = (unsigned long)(arg1); \ ++ _argvec[2] = (unsigned long)(arg2); \ ++ _argvec[3] = (unsigned long)(arg3); \ ++ _argvec[4] = (unsigned long)(arg4); \ ++ _argvec[5] = (unsigned long)(arg5); \ ++ __asm__ volatile( \ ++ "ldl $20, 40(%1)\n\t" /* arg5 */ \ ++ "ldl $19, 32(%1)\n\t" /* arg4 */ \ ++ "ldl $18, 24(%1)\n\t" /* arg3 */ \ ++ "ldl $17, 16(%1)\n\t" /* arg2 */ \ ++ "ldl $16, 8(%1)\n\t" /* arg1 */ \ ++ "ldl $27, 0(%1)\n\t" \ ++ VALGRIND_CALL_NOREDIR_T9 \ ++ "mov $0, %0\n" \ ++ : /*out*/ "=r" (_res) \ ++ : /*in*/ "r" (&_argvec[0]) \ ++ : /*trash*/ "memory", __CALLER_SAVED_REGS \ ++ ); \ ++ lval = (__typeof__(lval)) (long)_res; \ ++ } while (0) ++ ++#define CALL_FN_W_6W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6) \ ++ do { \ ++ volatile OrigFn _orig = (orig); \ ++ volatile unsigned long _argvec[7]; \ ++ volatile unsigned long _res; \ ++ _argvec[0] = (unsigned long)(_orig.nraddr); \ ++ _argvec[1] = (unsigned long)(arg1); \ ++ _argvec[2] = (unsigned long)(arg2); \ ++ _argvec[3] = (unsigned long)(arg3); \ ++ _argvec[4] = (unsigned long)(arg4); \ ++ _argvec[5] = (unsigned long)(arg5); \ ++ _argvec[6] = (unsigned long)(arg6); \ ++ __asm__ volatile( \ ++ "ldl $21, 48(%1)\n\t" /* arg6 */ \ ++ "ldl $20, 40(%1)\n\t" /* arg5 */ \ ++ "ldl $19, 32(%1)\n\t" /* arg4 */ \ ++ "ldl $18, 24(%1)\n\t" /* arg3 */ \ ++ "ldl $17, 16(%1)\n\t" /* arg2 */ \ ++ "ldl $16, 8(%1)\n\t" /* arg1 */ \ ++ "ldl $27, 0(%1)\n\t" \ ++ VALGRIND_CALL_NOREDIR_T9 \ ++ "mov $0, %0\n" \ ++ : /*out*/ "=r" (_res) \ ++ : /*in*/ "r" (&_argvec[0]) \ ++ : /*trash*/ "memory", __CALLER_SAVED_REGS \ ++ ); \ ++ lval = (__typeof__(lval)) (long)_res; \ ++ } while (0) ++ ++#define CALL_FN_W_7W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \ ++ arg7) \ ++ do { \ ++ volatile OrigFn _orig = (orig); \ ++ volatile unsigned long _argvec[8]; \ ++ volatile unsigned long _res; \ ++ _argvec[0] = (unsigned long)(_orig.nraddr); \ ++ _argvec[1] = (unsigned long)(arg1); \ ++ _argvec[2] = (unsigned long)(arg2); \ ++ _argvec[3] = (unsigned long)(arg3); \ ++ _argvec[4] = (unsigned long)(arg4); \ ++ _argvec[5] = (unsigned long)(arg5); \ ++ _argvec[6] = (unsigned long)(arg6); \ ++ _argvec[7] = (unsigned long)(arg7); \ ++ __asm__ volatile( \ ++ "ldi $30, -64($30)\n\t" \ ++ "ldl $0, 56(%1)\n\t" /* arg7 */ \ ++ "stl $0, 0($30)\n\t" /* arg7 */ \ ++ "ldl $21, 48(%1)\n\t" /* arg6 */ \ ++ "ldl $20, 40(%1)\n\t" /* arg5 */ \ ++ "ldl $19, 32(%1)\n\t" /* arg4 */ \ ++ "ldl $18, 24(%1)\n\t" /* arg3 */ \ ++ "ldl $17, 16(%1)\n\t" /* arg2 */ \ ++ "ldl $16, 8(%1)\n\t" /* arg1 */ \ ++ "ldl $27, 0(%1)\n\t" \ ++ VALGRIND_CALL_NOREDIR_T9 \ ++ "ldi $30, 64($30)\n\t" \ ++ "mov $0, %0\n" \ ++ : /*out*/ "=r" (_res) \ ++ : /*in*/ "r" (&_argvec[0]) \ ++ : /*trash*/ "memory", __CALLER_SAVED_REGS \ ++ ); \ ++ lval = (__typeof__(lval)) (long)_res; \ ++ } while (0) ++ ++#define CALL_FN_W_8W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \ ++ arg7,arg8) \ ++ do { \ ++ volatile OrigFn _orig = (orig); \ ++ volatile unsigned long _argvec[9]; \ ++ volatile unsigned long _res; \ ++ _argvec[0] = (unsigned long)(_orig.nraddr); \ ++ _argvec[1] = (unsigned long)(arg1); \ ++ _argvec[2] = (unsigned long)(arg2); \ ++ _argvec[3] = (unsigned long)(arg3); \ ++ _argvec[4] = (unsigned long)(arg4); \ ++ _argvec[5] = (unsigned long)(arg5); \ ++ _argvec[6] = (unsigned long)(arg6); \ ++ _argvec[7] = (unsigned long)(arg7); \ ++ _argvec[8] = (unsigned long)(arg8); \ ++ __asm__ volatile( \ ++ "ldi $30, -64($30)\n\t" \ ++ "ldl $0, 64(%1)\n\t" /* arg8 */ \ ++ "stl $0, 8($30)\n\t" /* arg8 */ \ ++ "ldl $0, 56(%1)\n\t" /* arg7 */ \ ++ "stl $0, 0($30)\n\t" /* arg7 */ \ ++ "ldl $21, 48(%1)\n\t" /* arg6 */ \ ++ "ldl $20, 40(%1)\n\t" /* arg5 */ \ ++ "ldl $19, 32(%1)\n\t" /* arg4 */ \ ++ "ldl $18, 24(%1)\n\t" /* arg3 */ \ ++ "ldl $17, 16(%1)\n\t" /* arg2 */ \ ++ "ldl $16, 8(%1)\n\t" /* arg1 */ \ ++ "ldl $27, 0(%1)\n\t" \ ++ VALGRIND_CALL_NOREDIR_T9 \ ++ "ldi $30, 64($30)\n\t" \ ++ "mov $0, %0\n" \ ++ : /*out*/ "=r" (_res) \ ++ : /*in*/ "r" (&_argvec[0]) \ ++ : /*trash*/ "memory", __CALLER_SAVED_REGS \ ++ ); \ ++ lval = (__typeof__(lval)) (long)_res; \ ++ } while (0) ++ ++#define CALL_FN_W_9W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \ ++ arg7,arg8,arg9) \ ++ do { \ ++ volatile OrigFn _orig = (orig); \ ++ volatile unsigned long _argvec[10]; \ ++ volatile unsigned long _res; \ ++ _argvec[0] = (unsigned long)(_orig.nraddr); \ ++ _argvec[1] = (unsigned long)(arg1); \ ++ _argvec[2] = (unsigned long)(arg2); \ ++ _argvec[3] = (unsigned long)(arg3); \ ++ _argvec[4] = (unsigned long)(arg4); \ ++ _argvec[5] = (unsigned long)(arg5); \ ++ _argvec[6] = (unsigned long)(arg6); \ ++ _argvec[7] = (unsigned long)(arg7); \ ++ _argvec[8] = (unsigned long)(arg8); \ ++ _argvec[9] = (unsigned long)(arg9); \ ++ __asm__ volatile( \ ++ "ldi $30, -64($30)\n\t" \ ++ "ldl $0, 72(%1)\n\t" /* arg9 */ \ ++ "stl $0, 16($30)\n\t" /* arg9 */ \ ++ "ldl $0, 64(%1)\n\t" /* arg8 */ \ ++ "stl $0, 8($30)\n\t" /* arg8 */ \ ++ "ldl $0, 56(%1)\n\t" /* arg7 */ \ ++ "stl $0, 0($30)\n\t" /* arg7 */ \ ++ "ldl $21, 48(%1)\n\t" /* arg6 */ \ ++ "ldl $20, 40(%1)\n\t" /* arg5 */ \ ++ "ldl $19, 32(%1)\n\t" /* arg4 */ \ ++ "ldl $18, 24(%1)\n\t" /* arg3 */ \ ++ "ldl $17, 16(%1)\n\t" /* arg2 */ \ ++ "ldl $16, 8(%1)\n\t" /* arg1 */ \ ++ "ldl $27, 0(%1)\n\t" \ ++ VALGRIND_CALL_NOREDIR_T9 \ ++ "ldi $30, 64($30)\n\t" \ ++ "mov $0, %0\n" \ ++ : /*out*/ "=r" (_res) \ ++ : /*in*/ "r" (&_argvec[0]) \ ++ : /*trash*/ "memory", __CALLER_SAVED_REGS \ ++ ); \ ++ lval = (__typeof__(lval)) (long)_res; \ ++ } while (0) ++ ++#define CALL_FN_W_10W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \ ++ arg7,arg8,arg9,arg10) \ ++ do { \ ++ volatile OrigFn _orig = (orig); \ ++ volatile unsigned long _argvec[11]; \ ++ volatile unsigned long _res; \ ++ _argvec[0] = (unsigned long)(_orig.nraddr); \ ++ _argvec[1] = (unsigned long)(arg1); \ ++ _argvec[2] = (unsigned long)(arg2); \ ++ _argvec[3] = (unsigned long)(arg3); \ ++ _argvec[4] = (unsigned long)(arg4); \ ++ _argvec[5] = (unsigned long)(arg5); \ ++ _argvec[6] = (unsigned long)(arg6); \ ++ _argvec[7] = (unsigned long)(arg7); \ ++ _argvec[8] = (unsigned long)(arg8); \ ++ _argvec[9] = (unsigned long)(arg9); \ ++ _argvec[10] = (unsigned long)(arg10); \ ++ __asm__ volatile( \ ++ "ldi $30, -64($30)\n\t" \ ++ "ldl $0, 80(%1)\n\t" /* arg10 */ \ ++ "stl $0, 24($30)\n\t" /* arg10 */ \ ++ "ldl $0, 72(%1)\n\t" /* arg9 */ \ ++ "stl $0, 16($30)\n\t" /* arg9 */ \ ++ "ldl $0, 64(%1)\n\t" /* arg8 */ \ ++ "stl $0, 8($30)\n\t" /* arg8 */ \ ++ "ldl $0, 56(%1)\n\t" /* arg7 */ \ ++ "stl $0, 0($30)\n\t" /* arg7 */ \ ++ "ldl $21, 48(%1)\n\t" /* arg6 */ \ ++ "ldl $20, 40(%1)\n\t" /* arg5 */ \ ++ "ldl $19, 32(%1)\n\t" /* arg4 */ \ ++ "ldl $18, 24(%1)\n\t" /* arg3 */ \ ++ "ldl $17, 16(%1)\n\t" /* arg2 */ \ ++ "ldl $16, 8(%1)\n\t" /* arg1 */ \ ++ "ldl $27, 0(%1)\n\t" \ ++ VALGRIND_CALL_NOREDIR_T9 \ ++ "ldi $30, 64($30)\n\t" \ ++ "mov $0, %0\n" \ ++ : /*out*/ "=r" (_res) \ ++ : /*in*/ "r" (&_argvec[0]) \ ++ : /*trash*/ "memory", __CALLER_SAVED_REGS \ ++ ); \ ++ lval = (__typeof__(lval)) (long)_res; \ ++ } while (0) ++ ++#define CALL_FN_W_11W(lval, orig, arg1,arg2,arg3,arg4,arg5, \ ++ arg6,arg7,arg8,arg9,arg10, \ ++ arg11) \ ++ do { \ ++ volatile OrigFn _orig = (orig); \ ++ volatile unsigned long _argvec[12]; \ ++ volatile unsigned long _res; \ ++ _argvec[0] = (unsigned long)(_orig.nraddr); \ ++ _argvec[1] = (unsigned long)(arg1); \ ++ _argvec[2] = (unsigned long)(arg2); \ ++ _argvec[3] = (unsigned long)(arg3); \ ++ _argvec[4] = (unsigned long)(arg4); \ ++ _argvec[5] = (unsigned long)(arg5); \ ++ _argvec[6] = (unsigned long)(arg6); \ ++ _argvec[7] = (unsigned long)(arg7); \ ++ _argvec[8] = (unsigned long)(arg8); \ ++ _argvec[9] = (unsigned long)(arg9); \ ++ _argvec[10] = (unsigned long)(arg10); \ ++ _argvec[11] = (unsigned long)(arg11); \ ++ __asm__ volatile( \ ++ "ldi $30, -64($30)\n\t" \ ++ "ldl $0, 88(%1)\n\t" /* arg11 */ \ ++ "stl $0, 32($30)\n\t" /* arg11 */ \ ++ "ldl $0, 80(%1)\n\t" /* arg10 */ \ ++ "stl $0, 24($30)\n\t" /* arg10 */ \ ++ "ldl $0, 72(%1)\n\t" /* arg9 */ \ ++ "stl $0, 16($30)\n\t" /* arg9 */ \ ++ "ldl $0, 64(%1)\n\t" /* arg8 */ \ ++ "stl $0, 8($30)\n\t" /* arg8 */ \ ++ "ldl $0, 56(%1)\n\t" /* arg7 */ \ ++ "stl $0, 0($30)\n\t" /* arg7 */ \ ++ "ldl $21, 48(%1)\n\t" /* arg6 */ \ ++ "ldl $20, 40(%1)\n\t" /* arg5 */ \ ++ "ldl $19, 32(%1)\n\t" /* arg4 */ \ ++ "ldl $18, 24(%1)\n\t" /* arg3 */ \ ++ "ldl $17, 16(%1)\n\t" /* arg2 */ \ ++ "ldl $16, 8(%1)\n\t" /* arg1 */ \ ++ "ldl $27, 0(%1)\n\t" \ ++ VALGRIND_CALL_NOREDIR_T9 \ ++ "ldi $30, 64($30)\n\t" \ ++ "mov $0, %0\n" \ ++ : /*out*/ "=r" (_res) \ ++ : /*in*/ "r" (&_argvec[0]) \ ++ : /*trash*/ "memory", __CALLER_SAVED_REGS \ ++ ); \ ++ lval = (__typeof__(lval)) (long)_res; \ ++ } while (0) ++ ++#define CALL_FN_W_12W(lval, orig, arg1,arg2,arg3,arg4,arg5, \ ++ arg6,arg7,arg8,arg9,arg10, \ ++ arg11,arg12) \ ++ do { \ ++ volatile OrigFn _orig = (orig); \ ++ volatile unsigned long _argvec[13]; \ ++ volatile unsigned long _res; \ ++ _argvec[0] = (unsigned long)(_orig.nraddr); \ ++ _argvec[1] = (unsigned long)(arg1); \ ++ _argvec[2] = (unsigned long)(arg2); \ ++ _argvec[3] = (unsigned long)(arg3); \ ++ _argvec[4] = (unsigned long)(arg4); \ ++ _argvec[5] = (unsigned long)(arg5); \ ++ _argvec[6] = (unsigned long)(arg6); \ ++ _argvec[7] = (unsigned long)(arg7); \ ++ _argvec[8] = (unsigned long)(arg8); \ ++ _argvec[9] = (unsigned long)(arg9); \ ++ _argvec[10] = (unsigned long)(arg10); \ ++ _argvec[11] = (unsigned long)(arg11); \ ++ _argvec[12] = (unsigned long)(arg12); \ ++ __asm__ volatile( \ ++ "ldi $30, -64($30)\n\t" \ ++ "ldl $0, 96(%1)\n\t" /* arg12 */ \ ++ "stl $0, 40($30)\n\t" /* arg12 */ \ ++ "ldl $0, 88(%1)\n\t" /* arg11 */ \ ++ "stl $0, 32($30)\n\t" /* arg11 */ \ ++ "ldl $0, 80(%1)\n\t" /* arg10 */ \ ++ "stl $0, 24($30)\n\t" /* arg10 */ \ ++ "ldl $0, 72(%1)\n\t" /* arg9 */ \ ++ "stl $0, 16($30)\n\t" /* arg9 */ \ ++ "ldl $0, 64(%1)\n\t" /* arg8 */ \ ++ "stl $0, 8($30)\n\t" /* arg8 */ \ ++ "ldl $0, 56(%1)\n\t" /* arg7 */ \ ++ "stl $0, 0($30)\n\t" /* arg7 */ \ ++ "ldl $21, 48(%1)\n\t" /* arg6 */ \ ++ "ldl $20, 40(%1)\n\t" /* arg5 */ \ ++ "ldl $19, 32(%1)\n\t" /* arg4 */ \ ++ "ldl $18, 24(%1)\n\t" /* arg3 */ \ ++ "ldl $17, 16(%1)\n\t" /* arg2 */ \ ++ "ldl $16, 8(%1)\n\t" /* arg1 */ \ ++ "ldl $27, 0(%1)\n\t" \ ++ VALGRIND_CALL_NOREDIR_T9 \ ++ "ldi $30, 64($30)\n\t" \ ++ "mov $0, %0\n" \ ++ : /*out*/ "=r" (_res) \ ++ : /*in*/ "r" (&_argvec[0]) \ ++ : /*trash*/ "memory", __CALLER_SAVED_REGS \ ++ ); \ ++ lval = (__typeof__(lval)) (long)_res; \ ++ } while (0) ++ ++#endif /* PLAT_sw64_linux */ ++ + /* ------------------------------------------------------------------ */ + /* ARCHITECTURE INDEPENDENT MACROS for CLIENT REQUESTS. */ + /* */ +diff --git a/include/vki/vki-linux.h b/include/vki/vki-linux.h +index be3d76690..aeea87a0b 100644 +--- a/include/vki/vki-linux.h ++++ b/include/vki/vki-linux.h +@@ -97,6 +97,8 @@ + # include "vki-posixtypes-mips64-linux.h" + #elif defined(VGA_nanomips) + # include "vki-posixtypes-nanomips-linux.h" ++#elif defined(VGA_sw64) ++# include "vki-posixtypes-sw64-linux.h" + #else + # error Unknown platform + #endif +@@ -225,6 +227,8 @@ typedef unsigned int vki_uint; + # include "vki-mips64-linux.h" + #elif defined(VGA_nanomips) + # include "vki-nanomips-linux.h" ++#elif defined(VGA_sw64) ++# include "vki-sw64-linux.h" + #else + # error Unknown platform + #endif +@@ -1317,6 +1321,13 @@ struct vki_seminfo { + #define VKI_EDOM 33 /* Math argument out of domain of func */ + #define VKI_ERANGE 34 /* Math result not representable */ + ++#if defined( VGP_sw64_linux ) ++/* From arch/sw_64/include/uapi/asm/errno.h */ ++#undef VKI_EAGAIN /* 11 in errno-base.h */ ++#define VKI_EDEADLK 11 /* Resource deadlock would occur */ ++#define VKI_EAGAIN 35 /* Try again */ ++#endif ++ + //---------------------------------------------------------------------- + // From linux-2.6.8.1/include/asm-generic/errno.h + //---------------------------------------------------------------------- +diff --git a/include/vki/vki-posixtypes-sw64-linux.h b/include/vki/vki-posixtypes-sw64-linux.h +new file mode 100644 +index 000000000..af84e6506 +--- /dev/null ++++ b/include/vki/vki-posixtypes-sw64-linux.h +@@ -0,0 +1,74 @@ ++ ++/*--------------------------------------------------------------------*/ ++/*--- sw64/Linux-specific kernel interface: posix types. ---*/ ++/*--- vki-posixtypes-sw64-linux.h ---*/ ++/*--------------------------------------------------------------------*/ ++ ++/* ++ This file is part of Valgrind, a dynamic binary instrumentation ++ framework. ++ ++ Copyright (C) 2010-2017 RT-RK ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, see . ++*/ ++ ++#ifndef __VKI_POSIXTYPES_SW64_LINUX_H ++#define __VKI_POSIXTYPES_SW64_LINUX_H ++ ++typedef unsigned int __vki_kernel_ino_t; ++typedef unsigned long __vki_kernel_sigset_t; ++ ++typedef long __vki_kernel_long_t; ++typedef unsigned long __vki_kernel_ulong_t; ++typedef unsigned int __vki_kernel_mode_t; ++ ++typedef int __vki_kernel_pid_t; ++typedef int __vki_kernel_ipc_pid_t; ++typedef unsigned int __vki_kernel_uid_t; ++typedef unsigned int __vki_kernel_gid_t; ++typedef long __vki_kernel_suseconds_t; ++typedef int __vki_kernel_daddr_t; ++typedef unsigned int __vki_kernel_uid32_t; ++typedef unsigned int __vki_kernel_gid32_t; ++typedef __vki_kernel_uid_t __vki_kernel_old_uid_t; ++typedef __vki_kernel_gid_t __vki_kernel_old_gid_t; ++typedef unsigned int __vki_kernel_old_dev_t; ++ ++typedef unsigned long __vki_kernel_size_t; ++typedef long __vki_kernel_ssize_t; ++typedef long __vki_kernel_ptrdiff_t; ++ ++ ++ ++typedef long __vki_kernel_time_t; ++typedef long long __vki_kernel_time64_t; ++typedef long __vki_kernel_clock_t; ++typedef int __vki_kernel_timer_t; ++typedef int __vki_kernel_clockid_t; ++typedef char * __vki_kernel_caddr_t; ++typedef unsigned short __vki_kernel_uid16_t; ++typedef unsigned short __vki_kernel_gid16_t; ++typedef long long __vki_kernel_loff_t; ++typedef long __vki_kernel_off_t; ++ ++typedef struct { ++ int val[2]; ++} __vki_kernel_fsid_t; ++ ++#endif // __VKI_POSIXTYPES_SW64_LINUX_H ++ ++/*--------------------------------------------------------------------*/ ++/*--- end vki-posixtypes-sw64-linux.h ---*/ ++/*--------------------------------------------------------------------*/ +diff --git a/include/vki/vki-scnums-sw64-linux.h b/include/vki/vki-scnums-sw64-linux.h +new file mode 100644 +index 000000000..e0bbec202 +--- /dev/null ++++ b/include/vki/vki-scnums-sw64-linux.h +@@ -0,0 +1,390 @@ ++ ++/*--------------------------------------------------------------------*/ ++/*--- System call numbers for sw64-linux. ---*/ ++/*--- vki-scnums-sw64-linux.h ---*/ ++/*--------------------------------------------------------------------*/ ++ ++/* ++ This file is part of Valgrind, a dynamic binary instrumentation ++ framework. ++ ++ Copyright (C) 2013-2017 OpenWorks ++ info@open-works.net ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, see . ++ ++ The GNU General Public License is contained in the file COPYING. ++*/ ++ ++#ifndef __VKI_SCNUMS_SW64_LINUX_H ++#define __VKI_SCNUMS_SW64_LINUX_H ++ ++/* ++ From linux-4.19.y/arch/sw_64/include/generated/uapi/asm/unistd_64.h ++ which is not exists in source tree, and it was generated from ++ linux-4.19.y/arch/sw_64/kernel/syscalls/syscall.tbl ++*/ ++ ++#define __NR_exit 1 ++#define __NR_fork 2 ++#define __NR_read 3 ++#define __NR_write 4 ++#define __NR_close 6 ++#define __NR_link 9 ++#define __NR_unlink 10 ++#define __NR_chdir 12 ++#define __NR_fchdir 13 ++#define __NR_mknod 14 ++#define __NR_chmod 15 ++#define __NR_chown 16 ++#define __NR_brk 17 ++#define __NR_lseek 19 ++#define __NR_getxpid 20 ++#define __NR_umount2 22 ++#define __NR_setuid 23 ++#define __NR_getxuid 24 ++#define __NR_ptrace 26 ++#define __NR_access 33 ++#define __NR_sync 36 ++#define __NR_kill 37 ++#define __NR_setpgid 39 ++#define __NR_dup 41 ++#define __NR_pipe 42 ++#define __NR_open 45 ++#define __NR_getxgid 47 ++#define __NR_odd_sigprocmask 48 ++#define __NR_acct 51 ++#define __NR_sigpending 52 ++#define __NR_ioctl 54 ++#define __NR_symlink 57 ++#define __NR_readlink 58 ++#define __NR_execve 59 ++#define __NR_umask 60 ++#define __NR_chroot 61 ++#define __NR_getpgrp 63 ++#define __NR_vfork 66 ++#define __NR_stat 67 ++#define __NR_lstat 68 ++#define __NR_mmap 71 ++#define __NR_munmap 73 ++#define __NR_mprotect 74 ++#define __NR_madvise 75 ++#define __NR_vhangup 76 ++#define __NR_getgroups 79 ++#define __NR_setgroups 80 ++#define __NR_setpgrp 82 ++#define __NR_gethostname 87 ++#define __NR_sethostname 88 ++#define __NR_dup2 90 ++#define __NR_fstat 91 ++#define __NR_fcntl 92 ++#define __NR_poll 94 ++#define __NR_fsync 95 ++#define __NR_setpriority 96 ++#define __NR_socket 97 ++#define __NR_connect 98 ++#define __NR_accept 99 ++#define __NR_odd_getpriority 100 ++#define __NR_send 101 ++#define __NR_recv 102 ++#define __NR_sigreturn 103 ++#define __NR_bind 104 ++#define __NR_setsockopt 105 ++#define __NR_listen 106 ++#define __NR_sigsuspend 111 ++#define __NR_recvmsg 113 ++#define __NR_sendmsg 114 ++#define __NR_getsockopt 118 ++#define __NR_socketcall 119 ++#define __NR_readv 120 ++#define __NR_writev 121 ++#define __NR_fchown 123 ++#define __NR_fchmod 124 ++#define __NR_recvfrom 125 ++#define __NR_setreuid 126 ++#define __NR_setregid 127 ++#define __NR_rename 128 ++#define __NR_truncate 129 ++#define __NR_ftruncate 130 ++#define __NR_flock 131 ++#define __NR_setgid 132 ++#define __NR_sendto 133 ++#define __NR_shutdown 134 ++#define __NR_socketpair 135 ++#define __NR_mkdir 136 ++#define __NR_rmdir 137 ++#define __NR_getpeername 141 ++#define __NR_getrlimit 144 ++#define __NR_setrlimit 145 ++#define __NR_setsid 147 ++#define __NR_quotactl 148 ++#define __NR_getsockname 150 ++#define __NR_sigaction 156 ++#define __NR_setdomainname 166 ++#define __NR_bpf 170 ++#define __NR_userfaultfd 171 ++#define __NR_membarrier 172 ++#define __NR_mlock2 173 ++#define __NR_getpid 174 ++#define __NR_getppid 175 ++#define __NR_getuid 176 ++#define __NR_geteuid 177 ++#define __NR_getgid 178 ++#define __NR_getegid 179 ++#define __NR_msgctl 200 ++#define __NR_msgget 201 ++#define __NR_msgrcv 202 ++#define __NR_msgsnd 203 ++#define __NR_semctl 204 ++#define __NR_semget 205 ++#define __NR_semop 206 ++#define __NR_lchown 208 ++#define __NR_shmat 209 ++#define __NR_shmctl 210 ++#define __NR_shmdt 211 ++#define __NR_shmget 212 ++#define __NR_msync 217 ++#define __NR_statfs64 229 ++#define __NR_fstatfs64 230 ++#define __NR_getpgid 233 ++#define __NR_getsid 234 ++#define __NR_sigaltstack 235 ++#define __NR_sysfs 254 ++#define __NR_getsysinfo 256 ++#define __NR_setsysinfo 257 ++#define __NR_getpriority 298 ++#define __NR_sigprocmask 299 ++#define __NR_bdflush 300 ++#define __NR_mount 302 ++#define __NR_swapoff 304 ++#define __NR_getdents 305 ++#define __NR_create_module 306 ++#define __NR_init_module 307 ++#define __NR_delete_module 308 ++#define __NR_get_kernel_syms 309 ++#define __NR_syslog 310 ++#define __NR_reboot 311 ++#define __NR_clone 312 ++#define __NR_uselib 313 ++#define __NR_mlock 314 ++#define __NR_munlock 315 ++#define __NR_mlockall 316 ++#define __NR_munlockall 317 ++#define __NR_sysinfo 318 ++#define __NR__sysctl 319 ++#define __NR_oldumount 321 ++#define __NR_swapon 322 ++#define __NR_times 323 ++#define __NR_personality 324 ++#define __NR_setfsuid 325 ++#define __NR_setfsgid 326 ++#define __NR_ustat 327 ++#define __NR_statfs 328 ++#define __NR_fstatfs 329 ++#define __NR_sched_setparam 330 ++#define __NR_sched_getparam 331 ++#define __NR_sched_setscheduler 332 ++#define __NR_sched_getscheduler 333 ++#define __NR_sched_yield 334 ++#define __NR_sched_get_priority_max 335 ++#define __NR_sched_get_priority_min 336 ++#define __NR_sched_rr_get_interval 337 ++#define __NR_afs_syscall 338 ++#define __NR_uname 339 ++#define __NR_nanosleep 340 ++#define __NR_mremap 341 ++#define __NR_nfsservctl 342 ++#define __NR_setresuid 343 ++#define __NR_getresuid 344 ++#define __NR_pciconfig_read 345 ++#define __NR_pciconfig_write 346 ++#define __NR_query_module 347 ++#define __NR_prctl 348 ++#define __NR_pread64 349 ++#define __NR_pwrite64 350 ++#define __NR_rt_sigreturn 351 ++#define __NR_rt_sigaction 352 ++#define __NR_rt_sigprocmask 353 ++#define __NR_rt_sigpending 354 ++#define __NR_rt_sigtimedwait 355 ++#define __NR_rt_sigqueueinfo 356 ++#define __NR_rt_sigsuspend 357 ++#define __NR_select 358 ++#define __NR_gettimeofday 359 ++#define __NR_settimeofday 360 ++#define __NR_getitimer 361 ++#define __NR_setitimer 362 ++#define __NR_utimes 363 ++#define __NR_getrusage 364 ++#define __NR_wait4 365 ++#define __NR_adjtimex 366 ++#define __NR_getcwd 367 ++#define __NR_capget 368 ++#define __NR_capset 369 ++#define __NR_sendfile 370 ++#define __NR_setresgid 371 ++#define __NR_getresgid 372 ++#define __NR_dipc 373 ++#define __NR_pivot_root 374 ++#define __NR_mincore 375 ++#define __NR_pciconfig_iobase 376 ++#define __NR_getdents64 377 ++#define __NR_gettid 378 ++#define __NR_readahead 379 ++#define __NR_tkill 381 ++#define __NR_setxattr 382 ++#define __NR_lsetxattr 383 ++#define __NR_fsetxattr 384 ++#define __NR_getxattr 385 ++#define __NR_lgetxattr 386 ++#define __NR_fgetxattr 387 ++#define __NR_listxattr 388 ++#define __NR_llistxattr 389 ++#define __NR_flistxattr 390 ++#define __NR_removexattr 391 ++#define __NR_lremovexattr 392 ++#define __NR_fremovexattr 393 ++#define __NR_futex 394 ++#define __NR_sched_setaffinity 395 ++#define __NR_sched_getaffinity 396 ++#define __NR_tuxcall 397 ++#define __NR_io_setup 398 ++#define __NR_io_destroy 399 ++#define __NR_io_getevents 400 ++#define __NR_io_submit 401 ++#define __NR_io_cancel 402 ++#define __NR_io_pgetevents 403 ++#define __NR_rseq 404 ++#define __NR_exit_group 405 ++#define __NR_lookup_dcookie 406 ++#define __NR_epoll_create 407 ++#define __NR_epoll_ctl 408 ++#define __NR_epoll_wait 409 ++#define __NR_remap_file_pages 410 ++#define __NR_set_tid_address 411 ++#define __NR_restart_syscall 412 ++#define __NR_fadvise64 413 ++#define __NR_timer_create 414 ++#define __NR_timer_settime 415 ++#define __NR_timer_gettime 416 ++#define __NR_timer_getoverrun 417 ++#define __NR_timer_delete 418 ++#define __NR_clock_settime 419 ++#define __NR_clock_gettime 420 ++#define __NR_clock_getres 421 ++#define __NR_clock_nanosleep 422 ++#define __NR_semtimedop 423 ++#define __NR_tgkill 424 ++#define __NR_stat64 425 ++#define __NR_lstat64 426 ++#define __NR_fstat64 427 ++#define __NR_vserver 428 ++#define __NR_mbind 429 ++#define __NR_get_mempolicy 430 ++#define __NR_set_mempolicy 431 ++#define __NR_mq_open 432 ++#define __NR_mq_unlink 433 ++#define __NR_mq_timedsend 434 ++#define __NR_mq_timedreceive 435 ++#define __NR_mq_notify 436 ++#define __NR_mq_getsetattr 437 ++#define __NR_waitid 438 ++#define __NR_add_key 439 ++#define __NR_request_key 440 ++#define __NR_keyctl 441 ++#define __NR_ioprio_set 442 ++#define __NR_ioprio_get 443 ++#define __NR_inotify_init 444 ++#define __NR_inotify_add_watch 445 ++#define __NR_inotify_rm_watch 446 ++#define __NR_fdatasync 447 ++#define __NR_kexec_load 448 ++#define __NR_migrate_pages 449 ++#define __NR_openat 450 ++#define __NR_mkdirat 451 ++#define __NR_mknodat 452 ++#define __NR_fchownat 453 ++#define __NR_futimesat 454 ++#define __NR_fstatat64 455 ++#define __NR_unlinkat 456 ++#define __NR_renameat 457 ++#define __NR_linkat 458 ++#define __NR_symlinkat 459 ++#define __NR_readlinkat 460 ++#define __NR_fchmodat 461 ++#define __NR_faccessat 462 ++#define __NR_pselect6 463 ++#define __NR_ppoll 464 ++#define __NR_unshare 465 ++#define __NR_set_robust_list 466 ++#define __NR_get_robust_list 467 ++#define __NR_splice 468 ++#define __NR_sync_file_range 469 ++#define __NR_tee 470 ++#define __NR_vmsplice 471 ++#define __NR_move_pages 472 ++#define __NR_getcpu 473 ++#define __NR_epoll_pwait 474 ++#define __NR_utimensat 475 ++#define __NR_signalfd 476 ++#define __NR_timerfd 477 ++#define __NR_eventfd 478 ++#define __NR_recvmmsg 479 ++#define __NR_fallocate 480 ++#define __NR_timerfd_create 481 ++#define __NR_timerfd_settime 482 ++#define __NR_timerfd_gettime 483 ++#define __NR_signalfd4 484 ++#define __NR_eventfd2 485 ++#define __NR_epoll_create1 486 ++#define __NR_dup3 487 ++#define __NR_pipe2 488 ++#define __NR_inotify_init1 489 ++#define __NR_preadv 490 ++#define __NR_pwritev 491 ++#define __NR_rt_tgsigqueueinfo 492 ++#define __NR_perf_event_open 493 ++#define __NR_fanotify_init 494 ++#define __NR_fanotify_mark 495 ++#define __NR_prlimit64 496 ++#define __NR_name_to_handle_at 497 ++#define __NR_open_by_handle_at 498 ++#define __NR_clock_adjtime 499 ++#define __NR_syncfs 500 ++#define __NR_setns 501 ++#define __NR_accept4 502 ++#define __NR_sendmmsg 503 ++#define __NR_process_vm_readv 504 ++#define __NR_process_vm_writev 505 ++#define __NR_kcmp 506 ++#define __NR_finit_module 507 ++#define __NR_sched_setattr 508 ++#define __NR_sched_getattr 509 ++#define __NR_renameat2 510 ++#define __NR_getrandom 511 ++#define __NR_memfd_create 512 ++#define __NR_execveat 513 ++#define __NR_seccomp 514 ++#define __NR_copy_file_range 515 ++#define __NR_preadv2 516 ++#define __NR_pwritev2 517 ++#define __NR_statx 518 ++#define NR_SYSCALLS 519 ++#define NR_syscalls NR_SYSCALLS ++ ++#endif /* __VKI_SCNUMS_SW64_LINUX_H */ ++ ++/*--------------------------------------------------------------------*/ ++/*--- end vki-scnums-sw64-linux.h ---*/ ++/*--------------------------------------------------------------------*/ +diff --git a/include/vki/vki-sw64-linux.h b/include/vki/vki-sw64-linux.h +new file mode 100644 +index 000000000..007e54e0d +--- /dev/null ++++ b/include/vki/vki-sw64-linux.h +@@ -0,0 +1,977 @@ ++ ++/*--------------------------------------------------------------------*/ ++/*--- sw64/Linux-specific kernel interface. vki-sw64-linux.h ---*/ ++/*--------------------------------------------------------------------*/ ++ ++/* ++ This file is part of Valgrind, a dynamic binary instrumentation ++ framework. ++ ++ Copyright (C) 2010-2017 RT-RK ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, see . ++*/ ++ ++#ifndef __VKI_SW64_LINUX_H ++#define __VKI_SW64_LINUX_H ++ ++#include ++ ++// sw64 endian ++#define VKI_LITTLE_ENDIAN 1 ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/include/uapi/asm-generic/int-ll64.h ++//---------------------------------------------------------------------- ++ ++typedef __signed__ char __vki_s8; ++typedef unsigned char __vki_u8; ++ ++typedef __signed__ short __vki_s16; ++typedef unsigned short __vki_u16; ++ ++typedef __signed__ int __vki_s32; ++typedef unsigned int __vki_u32; ++ ++typedef __signed__ long long __vki_s64; ++typedef unsigned long long __vki_u64; ++ ++typedef unsigned short vki_u16; ++ ++typedef unsigned int vki_u32; ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/asm/page.h ++//---------------------------------------------------------------------- ++ ++extern UWord VKI_PAGE_SHIFT; ++extern UWord VKI_PAGE_SIZE; ++#define VKI_PAGE_MASK (~(VKI_PAGE_SIZE-1)) ++#define VKI_MAX_PAGE_SHIFT 13 ++#define VKI_MAX_PAGE_SIZE (1UL << VKI_MAX_PAGE_SHIFT) ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/asm/shmparam.h ++//---------------------------------------------------------------------- ++ ++#define VKI_SHMLBA VKI_PAGE_SIZE ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/include/uapi/asm-generic/signal.h ++//---------------------------------------------------------------------- ++ ++#define _VKI_NSIG 64 ++#define _VKI_NSIG_BPW 64 ++#define _VKI_NSIG_WORDS (_VKI_NSIG / _VKI_NSIG_BPW) ++ ++#define VKI_SIGHUP 1 ++#define VKI_SIGINT 2 ++#define VKI_SIGQUIT 3 ++#define VKI_SIGILL 4 ++#define VKI_SIGTRAP 5 ++#define VKI_SIGABRT 6 ++#define VKI_SIGEMT 7 ++#define VKI_SIGFPE 8 ++#define VKI_SIGKILL 9 ++#define VKI_SIGBUS 10 ++#define VKI_SIGSEGV 11 ++#define VKI_SIGSYS 12 ++#define VKI_SIGPIPE 13 ++#define VKI_SIGALRM 14 ++#define VKI_SIGTERM 15 ++#define VKI_SIGURG 16 ++#define VKI_SIGSTOP 17 ++#define VKI_SIGTSTP 18 ++#define VKI_SIGCONT 19 ++#define VKI_SIGCHLD 20 ++#define VKI_SIGTTIN 21 ++#define VKI_SIGTTOU 22 ++#define VKI_SIGIO 23 ++#define VKI_SIGXCPU 24 ++#define VKI_SIGXFSZ 25 ++#define VKI_SIGVTALRM 26 ++#define VKI_SIGPROF 27 ++#define VKI_SIGWINCH 28 ++#define VKI_SIGINFO 29 ++#define VKI_SIGUSR1 30 ++#define VKI_SIGUSR2 31 ++ ++#define VKI_SIGPOLL VKI_SIGIO ++//#define VKI_SIGPWR VKI_SIGINFO ++#define VKI_SIGIOT VKI_SIGABRT ++ ++/* These should not be considered constants from userland. */ ++#define VKI_SIGRTMIN 32 ++#define VKI_SIGRTMAX _VKI_NSIG ++ ++/* ++ * SA_FLAGS values: ++ * ++ * SA_ONSTACK indicates that a registered stack_t will be used. ++ * SA_RESTART flag to get restarting signals (which were the default long ago) ++ * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop. ++ * SA_RESETHAND clears the handler when the signal is delivered. ++ * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies. ++ * SA_NODEFER prevents the current signal from being masked in the handler. ++ * ++ * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single ++ * Unix names RESETHAND and NODEFER respectively. ++ */ ++#define VKI_SA_ONSTACK 0x00000001 ++#define VKI_SA_RESTART 0x00000002 ++#define VKI_SA_NOCLDSTOP 0x00000004 ++#define VKI_SA_NODEFER 0x00000008 ++#define VKI_SA_RESETHAND 0x00000010 ++#define VKI_SA_NOCLDWAIT 0x00000020 ++#define VKI_SA_SIGINFO 0x00000040 ++ ++#define VKI_SA_NOMASK VKI_SA_NODEFER ++#define VKI_SA_ONESHOT VKI_SA_RESETHAND ++ ++// This is obsolete and should not be defined for new archs ++#define VKI_SA_RESTORER 0x04000000 ++ ++#define VKI_SS_ONSTACK 1 ++#define VKI_SS_DISABLE 2 ++ ++#define VKI_MINSIGSTKSZ 4096 ++#define VKI_SIGSTKSZ 16384 ++#define VKI_SIG_BLOCK 1 /* for blocking signals */ ++#define VKI_SIG_UNBLOCK 2 /* for unblocking signals */ ++#define VKI_SIG_SETMASK 3 /* for setting the signal mask */ ++ ++typedef struct { ++ unsigned long sig[_VKI_NSIG_WORDS]; ++} vki_sigset_t; ++ ++/* not actually used, but required for linux/syscalls.h */ ++typedef unsigned long vki_old_sigset_t; ++ ++typedef void __vki_signalfn_t(int); ++typedef __vki_signalfn_t __user *__vki_sighandler_t; ++ ++typedef void __vki_restorefn_t(void); ++typedef __vki_restorefn_t __user *__vki_sigrestore_t; ++ ++#define VKI_SIG_DFL ((__vki_sighandler_t)0) /* default signal handling */ ++#define VKI_SIG_IGN ((__vki_sighandler_t)1) /* ignore signal */ ++#define VKI_SIG_ERR ((__vki_sighandler_t)-1) ++ ++struct vki_sigaction_base { ++ __vki_sighandler_t ksa_handler; ++ unsigned int sa_flags; ++ vki_sigset_t sa_mask; ++ __vki_sigrestore_t sa_restorer; ++}; ++ ++/* On Linux we use the same type for passing sigactions to ++ and from the kernel. Hence: */ ++typedef struct vki_sigaction_base vki_sigaction_toK_t; ++typedef struct vki_sigaction_base vki_sigaction_fromK_t; ++ ++typedef struct vki_sigaltstack { ++ void __user *ss_sp; ++ int ss_flags; ++ vki_size_t ss_size; ++} vki_stack_t; ++ ++struct vki_old_sigaction { ++ // [[Nb: a 'k' prefix is added to "sa_handler" because ++ // bits/sigaction.h (which gets dragged in somehow via signal.h) ++ // #defines it as something else. Since that is done for glibc's ++ // purposes, which we don't care about here, we use our own name.]] ++ unsigned long sa_flags; ++ __vki_sighandler_t ksa_handler; ++ vki_old_sigset_t sa_mask; ++ __vki_sigrestore_t sa_restorer; ++}; ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/upi/asm/sigcontext.h ++//---------------------------------------------------------------------- ++ ++struct vki_sigcontext { ++ /* ++ * What should we have here? I'd probably better use the same ++ * stack layout as OSF/1, just in case we ever want to try ++ * running their binaries.. ++ * ++ * This is the basic layout, but I don't know if we'll ever ++ * actually fill in all the values.. ++ */ ++ long sc_onstack; ++ long sc_mask; ++ long sc_pc; ++ long sc_ps; ++ long sc_regs[32]; ++ long sc_ownedfp; ++ long sc_fpregs[128]; /* SIMD-FP */ ++ unsigned long sc_fpcr; ++ unsigned long sc_fp_control; ++ unsigned long sc_reserved1, sc_reserved2; ++ unsigned long sc_ssize; ++ char *sc_sbase; ++ unsigned long sc_traparg_a0; ++ unsigned long sc_traparg_a1; ++ unsigned long sc_traparg_a2; ++ unsigned long sc_fp_trap_pc; ++ unsigned long sc_fp_trigger_sum; ++ unsigned long sc_fp_trigger_inst; ++}; ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/include/uapi/asm-generic/siginfo.h ++//---------------------------------------------------------------------- ++ ++#define __VKI_ARCH_SI_PREAMBLE_SIZE (4 * sizeof(int)) ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/upi/asm/mman.h ++//---------------------------------------------------------------------- ++ ++#define VKI_PROT_READ 0x1 /* page can be read */ ++#define VKI_PROT_WRITE 0x2 /* page can be written */ ++#define VKI_PROT_EXEC 0x4 /* page can be executed */ ++#define VKI_PROT_SEM 0x8 /* page may be used for atomic ops */ ++#define VKI_PROT_NONE 0x0 /* page can not be accessed */ ++#define VKI_PROT_GROWSDOWN 0x01000000 /* mprotect flag: extend change to start ++ of growsdown vma */ ++#define VKI_PROT_GROWSUP 0x02000000 /* mprotect flag: extend change to end ++ of growsup vma */ ++ ++#define VKI_MAP_SHARED 0x01 /* Share changes */ ++#define VKI_MAP_PRIVATE 0x02 /* Changes are private */ ++#define VKI_MAP_SHARED_VALIDATE 0x03 /* share + validate extension flags */ ++//#define VKI_MAP_TYPE 0x0f /* Mask for type of mapping */ ++#define VKI_MAP_FIXED 0x100 /* Interpret addr exactly */ ++#define VKI_MAP_ANONYMOUS 0x10 /* do not use a file*/ ++#define VKI_MAP_UNINITIALIZED 0x4000000 /* For anonymous mmap, memory could be uninitialized */ ++ ++/* These are linux-specific */ ++#define VKI_MAP_GROWSDOWN 0x01000 /* stack-like segment */ ++#define VKI_MAP_DENYWRITE 0x02000 /* ETXTBSY */ ++#define VKI_MAP_EXECUTABLE 0x04000 /* mark it as an executable */ ++#define VKI_MAP_LOCKED 0x08000 /* lock the mapping */ ++#define VKI_MAP_NORESERVE 0x10000 /* don't check for reservations */ ++#define VKI_MAP_POPULATE 0x20000 /* populate (prefault) pagetables */ ++#define VKI_MAP_NONBLOCK 0x40000 /* do not block on IO */ ++#define VKI_MAP_STACK 0x80000 /* give out an address that is best suited for process/thread stacks */ ++#define VKI_MAP_HUGETLB 0x100000 /* create a huge page mapping */ ++#define VKI_MAP_FIXED_NOREPLACE 0x200000 /* MAP_FIXED which doesn't unmap underlying mapping */ ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/include/uapi/asm-generic/fcntl.h ++//---------------------------------------------------------------------- ++#define VKI_O_RDONLY 00 ++#define VKI_O_WRONLY 01 ++#define VKI_O_RDWR 02 ++#define VKI_O_ACCMODE 03 ++ ++#define VKI_O_CREAT 01000 /* not fcntl */ ++#define VKI_O_TRUNC 02000 /* not fcntl */ ++#define VKI_O_EXCL 04000 /* not fcntl */ ++#define VKI_O_NOCTTY 010000 /* not fcntl */ ++ ++#define VKI_O_NONBLOCK 00004 ++#define VKI_O_APPEND 00010 ++#define VKI_O_DSYNC 040000 /* used to be O_SYNC, see below */ ++#define VKI_O_DIRECTORY 0100000 /* must be a directory */ ++#define VKI_O_NOFOLLOW 0200000 /* don't follow links */ ++#define VKI_O_LARGEFILE 0400000 /* will be set by the kernel on every open */ ++#define VKI_O_DIRECT 02000000 /* direct disk access - should check with OSF/1 */ ++#define VKI_O_NOATIME 04000000 ++#define VKI_O_CLOEXEC 010000000 /* set close_on_exec */ ++ ++#define VKI_AT_FDCWD -100 ++ ++#define VKI_F_DUPFD 0 /* dup */ ++#define VKI_F_GETFD 1 /* get close_on_exec */ ++#define VKI_F_SETFD 2 /* set/clear close_on_exec */ ++#define VKI_F_GETFL 3 /* get file->f_flags */ ++#define VKI_F_SETFL 4 /* set file->f_flags */ ++ ++#define VKI_F_GETLK 7 ++#define VKI_F_SETLK 8 ++#define VKI_F_SETLKW 9 ++ ++#define VKI_F_SETOWN 5 /* for sockets. */ ++#define VKI_F_GETOWN 6 /* for sockets. */ ++#define VKI_F_SETSIG 10 /* for sockets. */ ++#define VKI_F_GETSIG 11 /* for sockets. */ ++ ++#define VKI_F_GETLK64 12 /* using 'struct flock64' */ ++#define VKI_F_SETLK64 13 ++#define VKI_F_SETLKW64 14 ++ ++#define VKI_F_SETOWN_EX 15 ++#define VKI_F_GETOWN_EX 16 ++#define VKI_F_GETOWNER_UIDS 17 ++ ++#define VKI_F_OFD_GETLK 36 ++#define VKI_F_OFD_SETLK 37 ++#define VKI_F_OFD_SETLKW 38 ++ ++/* for F_[GET|SET]FL */ ++#define VKI_FD_CLOEXEC 1 /* actually anything with low bit set goes */ ++ ++#define VKI_F_LINUX_SPECIFIC_BASE 1024 ++ ++struct vki_f_owner_ex { ++ int type; ++ __vki_kernel_pid_t pid; ++}; ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/include/uapi/asm-generic/resource.h ++//---------------------------------------------------------------------- ++ ++#define VKI_RLIMIT_DATA 2 /* max data size */ ++#define VKI_RLIMIT_STACK 3 /* max stack size */ ++#define VKI_RLIMIT_CORE 4 /* max core file size */ ++#define VKI_RLIMIT_NOFILE 6 /* max number of open files */ ++#define VKI_RLIMIT_AS 7 /* address space limit */ ++#define VKI_RLIMIT_NPROC 8 /* max number of processes */ ++#define VKI_RLIMIT_MEMLOCK 9 /* max locked-in-memory address space */ ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.y/arch/sw_64/include/uapi/asm/socket.h ++//---------------------------------------------------------------------- ++ ++#define VKI_SOL_SOCKET 0xffff ++#define VKI_SO_TYPE 0x1008 ++#define VKI_SO_ATTACH_FILTER 26 ++#define VKI_SOCK_NONBLOCK 0x40000000 ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/include/uapi/asm-generic/sockios.h ++//---------------------------------------------------------------------- ++ ++#define VKI_SIOCATMARK _VKI_IOR('s', 7, int) ++#define VKI_SIOCSPGRP _VKI_IOW('s', 8, vki_pid_t) ++#define VKI_SIOCGPGRP _VKI_IOR('s', 9, vki_pid_t) ++#define VKI_SIOCGSTAMP 0x8906 /* Get stamp (timeval) */ ++#define VKI_SIOCGSTAMPNS 0x8907 /* Get stamp (timespec) */ ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/uapi/asm/stat.h ++//---------------------------------------------------------------------- ++ ++struct vki_stat { ++ unsigned int st_dev; ++ unsigned int st_ino; ++ unsigned int st_mode; ++ unsigned int st_nlink; ++ unsigned int st_uid; ++ unsigned int st_gid; ++ unsigned int st_rdev; ++ long st_size; ++ unsigned long st_atime; ++ unsigned long st_mtime; ++ unsigned long st_ctime; ++ unsigned int st_blksize; ++ unsigned int st_blocks; ++ unsigned int st_flags; ++ unsigned int st_gen; ++}; ++ ++/* The stat64 structure increases the size of dev_t, blkcnt_t, adds ++ nanosecond resolution times, and padding for expansion. */ ++ ++struct vki_stat64 { ++ unsigned long st_dev; ++ unsigned long st_ino; ++ unsigned long st_rdev; ++ long st_size; ++ unsigned long st_blocks; ++ ++ unsigned int st_mode; ++ unsigned int st_uid; ++ unsigned int st_gid; ++ unsigned int st_blksize; ++ unsigned int st_nlink; ++ unsigned int __pad0; ++ ++ unsigned long st_atime; ++ unsigned long st_atime_nsec; ++ unsigned long st_mtime; ++ unsigned long st_mtime_nsec; ++ unsigned long st_ctime; ++ unsigned long st_ctime_nsec; ++ long __unused[3]; ++}; ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/include/uapi/asm-generic/statfs.h ++//---------------------------------------------------------------------- ++ ++struct vki_statfs { ++ long f_type; ++ long f_bsize; ++ long f_blocks; ++ long f_bfree; ++ long f_bavail; ++ long f_files; ++ long f_ffree; ++ __vki_kernel_fsid_t f_fsid; ++ long f_namelen; ++ long f_frsize; ++ long f_flags; ++ long f_spare[4]; ++}; ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/include/uapi/asm-generic/termios.h ++//---------------------------------------------------------------------- ++ ++struct vki_winsize { ++ unsigned short ws_row; ++ unsigned short ws_col; ++ unsigned short ws_xpixel; ++ unsigned short ws_ypixel; ++}; ++ ++struct vki_sgttyb { ++ char sg_ispeed; ++ char sg_ospeed; ++ char sg_erase; ++ char sg_kill; ++ short sg_flags; ++}; ++ ++struct vki_tchars { ++ char t_intrc; ++ char t_quitc; ++ char t_startc; ++ char t_stopc; ++ char t_eofc; ++ char t_brkc; ++}; ++ ++struct vki_ltchars { ++ char t_suspc; ++ char t_dsuspc; ++ char t_rprntc; ++ char t_flushc; ++ char t_werasc; ++ char t_lnextc; ++}; ++ ++#define VKI_NCC 8 ++#define VKI_NCCS 19 /* arch/sw_64/include/uapi/asm/termbits.h */ ++ ++struct vki_termio { ++ unsigned short c_iflag; /* input mode flags */ ++ unsigned short c_oflag; /* output mode flags */ ++ unsigned short c_cflag; /* control mode flags */ ++ unsigned short c_lflag; /* local mode flags */ ++ unsigned char c_line; /* line discipline */ ++ unsigned char c_cc[VKI_NCC]; /* control characters */ ++}; ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/asm/termbits.h ++//---------------------------------------------------------------------- ++ ++typedef unsigned char vki_cc_t; ++typedef unsigned int vki_speed_t; ++typedef unsigned int vki_tcflag_t; ++ ++struct vki_termios { ++ vki_tcflag_t c_iflag; /* input mode flags */ ++ vki_tcflag_t c_oflag; /* output mode flags */ ++ vki_tcflag_t c_cflag; /* control mode flags */ ++ vki_tcflag_t c_lflag; /* local mode flags */ ++ vki_cc_t c_cc[VKI_NCCS]; /* control characters */ ++ vki_cc_t c_line; /* line discipline */ ++ vki_speed_t c_ispeed; /* input speed */ ++ vki_speed_t c_ospeed; /* output speed */ ++}; ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/asm/ioctl.h ++//---------------------------------------------------------------------- ++ ++#define _VKI_IOC_NRBITS 8 ++#define _VKI_IOC_TYPEBITS 8 ++#define _VKI_IOC_SIZEBITS 13 ++#define _VKI_IOC_DIRBITS 3 ++ ++#define _VKI_IOC_NRMASK ((1 << _VKI_IOC_NRBITS)-1) ++#define _VKI_IOC_TYPEMASK ((1 << _VKI_IOC_TYPEBITS)-1) ++#define _VKI_IOC_SIZEMASK ((1 << _VKI_IOC_SIZEBITS)-1) ++#define _VKI_IOC_DIRMASK ((1 << _VKI_IOC_DIRBITS)-1) ++ ++#define _VKI_IOC_NRSHIFT 0 ++#define _VKI_IOC_TYPESHIFT (_VKI_IOC_NRSHIFT+_VKI_IOC_NRBITS) ++#define _VKI_IOC_SIZESHIFT (_VKI_IOC_TYPESHIFT+_VKI_IOC_TYPEBITS) ++#define _VKI_IOC_DIRSHIFT (_VKI_IOC_SIZESHIFT+_VKI_IOC_SIZEBITS) ++ ++#define _VKI_IOC_NONE 1U ++#define _VKI_IOC_READ 2U ++#define _VKI_IOC_WRITE 4U ++ ++#define _VKI_IOC(dir,type,nr,size) \ ++ ((unsigned int) \ ++ (((dir) << _VKI_IOC_DIRSHIFT) | \ ++ ((type) << _VKI_IOC_TYPESHIFT) | \ ++ ((nr) << _VKI_IOC_NRSHIFT) | \ ++ ((size) << _VKI_IOC_SIZESHIFT))) ++ ++/* provoke compile error for invalid uses of size argument */ ++extern unsigned int __VKI_invalid_size_argument_for_IOC; ++/* used to create numbers */ ++#define _VKI_IO(type,nr) _VKI_IOC(_VKI_IOC_NONE,(type),(nr),0) ++#define _VKI_IOR(type,nr,size) _VKI_IOC(_VKI_IOC_READ,(type),(nr), sizeof(size)) ++#define _VKI_IOW(type,nr,size) _VKI_IOC(_VKI_IOC_WRITE,(type),(nr), sizeof(size)) ++#define _VKI_IOWR(type,nr,size) _VKI_IOC(_VKI_IOC_READ|_VKI_IOC_WRITE,(type), (nr), sizeof(size)) ++ ++/* used to decode ioctl numbers.. */ ++#define _VKI_IOC_DIR(nr) (((nr) >> _VKI_IOC_DIRSHIFT) & _VKI_IOC_DIRMASK) ++#define _VKI_IOC_TYPE(nr) (((nr) >> _VKI_IOC_TYPESHIFT) & _VKI_IOC_TYPEMASK) ++#define _VKI_IOC_NR(nr) (((nr) >> _VKI_IOC_NRSHIFT) & _VKI_IOC_NRMASK) ++#define _VKI_IOC_SIZE(nr) (((nr) >> _VKI_IOC_SIZESHIFT) & _VKI_IOC_SIZEMASK) ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/asm/ioctls.h ++//---------------------------------------------------------------------- ++ ++#define VKI_FIOCLEX _VKI_IO('f', 1) ++#define VKI_FIONCLEX _VKI_IO('f', 2) ++#define VKI_FIOASYNC _VKI_IOW('f', 125, int) ++#define VKI_FIONBIO _VKI_IOW('f', 126, int) ++#define VKI_FIONREAD _VKI_IOR('f', 127, int) ++#define VKI_TIOCINQ VKI_FIONREAD ++#define VKI_FIOQSIZE _VKI_IOR('f', 128, vki_loff_t) ++ ++#define VKI_IOCGETP _VKI_IOR('t', 8, struct vki_sgttyb) ++#define VKI_TIOCSETP _VKI_IOW('t', 9, struct vki_sgttyb) ++#define VKI_TIOCSETN _VKI_IOW('t', 10, struct vki_sgttyb) /* TIOCSETP wo flush */ ++ ++#define VKI_TIOCSETC _VKI_IOW('t', 17, struct vki_tchars) ++#define VKI_TIOCGETC _VKI_IOR('t', 18, struct vki_tchars) ++#define VKI_TCGETS _VKI_IOR('t', 19, struct vki_termios) ++#define VKI_TCSETS _VKI_IOW('t', 20, struct vki_termios) ++#define VKI_TCSETSW _VKI_IOW('t', 21, struct vki_termios) ++#define VKI_TCSETSF _VKI_IOW('t', 22, struct vki_termios) ++ ++#define VKI_TCGETA _VKI_IOR('t', 23, struct vki_termio) ++#define VKI_TCSETA _VKI_IOW('t', 24, struct vki_termio) ++#define VKI_TCSETAW _VKI_IOW('t', 25, struct vki_termio) ++#define VKI_TCSETAF _VKI_IOW('t', 28, struct vki_termio) ++ ++#define VKI_TCSBRK _VKI_IO('t', 29) ++#define VKI_TCXONC _VKI_IO('t', 30) ++#define VKI_TCFLSH _VKI_IO('t', 31) ++ ++#define VKI_TIOCSWINSZ _VKI_IOW('t', 103, struct vki_winsize) ++#define VKI_TIOCGWINSZ _VKI_IOR('t', 104, struct vki_winsize) ++#define VKI_TIOCSTART _VKI_IO('t', 110) /* start output, like ^Q */ ++#define VKI_TIOCSTOP _VKI_IO('t', 111) /* stop output, like ^S */ ++#define VKI_TIOCOUTQ _VKI_IOR('t', 115, int) /* output queue size */ ++ ++#define VKI_TIOCGLTC _VKI_IOR('t', 116, struct vki_ltchars) ++#define VKI_TIOCSLTC _VKI_IOW('t', 117, struct vki_ltchars) ++#define VKI_TIOCSPGRP _VKI_IOW('t', 118, int) ++#define VKI_TIOCGPGRP _VKI_IOR('t', 119, int) ++ ++#define VKI_TIOCEXCL 0x540C ++#define VKI_TIOCNXCL 0x540D ++#define VKI_TIOCSCTTY 0x540E ++ ++#define VKI_TIOCSTI 0x5412 ++#define VKI_TIOCMGET 0x5415 ++#define VKI_TIOCMBIS 0x5416 ++#define VKI_TIOCMBIC 0x5417 ++#define VKI_TIOCMSET 0x5418 ++#define VKI_TIOCM_LE 0x001 ++#define VKI_TIOCM_DTR 0x002 ++#define VKI_TIOCM_RTS 0x004 ++#define VKI_TIOCM_ST 0x008 ++#define VKI_TIOCM_SR 0x010 ++#define VKI_TIOCM_CTS 0x020 ++#define VKI_TIOCM_CAR 0x040 ++#define VKI_TIOCM_RNG 0x080 ++#define VKI_TIOCM_DSR 0x100 ++#define VKI_TIOCM_CD VKI_TIOCM_CAR ++#define VKI_TIOCM_RI VKI_TIOCM_RNG ++#define VKI_TIOCM_OUT1 0x2000 ++#define VKI_TIOCM_OUT2 0x4000 ++#define VKI_TIOCM_LOOP 0x8000 ++ ++#define VKI_TIOCGSOFTCAR 0x5419 ++#define VKI_TIOCSSOFTCAR 0x541A ++#define VKI_TIOCLINUX 0x541C ++#define VKI_TIOCCONS 0x541D ++#define VKI_TIOCGSERIAL 0x541E ++#define VKI_TIOCSSERIAL 0x541F ++#define VKI_TIOCPKT 0x5420 ++#define VKI_TIOCPKT_DATA 0 ++#define VKI_TIOCPKT_FLUSHREAD 1 ++#define VKI_TIOCPKT_FLUSHWRITE 2 ++#define VKI_TIOCPKT_STOP 4 ++#define VKI_TIOCPKT_START 8 ++#define VKI_TIOCPKT_NOSTOP 16 ++#define VKI_TIOCPKT_DOSTOP 32 ++#define VKI_TIOCPKT_IOCTL 64 ++ ++ ++#define VKI_TIOCNOTTY 0x5422 ++#define VKI_TIOCSETD 0x5423 ++#define VKI_TIOCGETD 0x5424 ++#define VKI_TCSBRKP 0x5425 /* Needed for POSIX tcsendbreak() */ ++#define VKI_TIOCSBRK 0x5427 /* BSD compatibility */ ++#define VKI_TIOCCBRK 0x5428 /* BSD compatibility */ ++#define VKI_TIOCGSID 0x5429 /* Return the session ID of FD */ ++#define VKI_TIOCGRS485 _VKI_IOR('T', 0x2E, struct vki_serial_rs485) ++#define VKI_TIOCSRS485 _VKI_IOWR('T', 0x2F, struct vki_serial_rs485) ++#define VKI_TIOCGPTN _VKI_IOR('T', 0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ ++#define VKI_TIOCSPTLCK _VKI_IOW('T', 0x31, int) /* Lock/unlock Pty */ ++#define VKI_TIOCGDEV _VKI_IOR('T', 0x32, unsigned int) /* Get primary device node of /dev/console */ ++#define VKI_TIOCSIG _VKI_IOW('T', 0x36, int) /* Generate signal on Pty slave */ ++#define VKI_TIOCVHANGUP 0x5437 ++#define VKI_TIOCGPKT _VKI_IOR('T', 0x38, int) /* Get packet mode state */ ++#define VKI_TIOCGPTLCK _VKI_IOR('T', 0x39, int) /* Get Pty lock state */ ++#define VKI_TIOCGEXCL _VKI_IOR('T', 0x40, int) /* Get exclusive mode state */ ++#define VKI_TIOCGPTPEER _VKI_IO('T', 0x41) /* Safely open the slave */ ++ ++#define VKI_TIOCSERCONFIG 0x5453 ++#define VKI_TIOCSERGWILD 0x5454 ++#define VKI_TIOCSERSWILD 0x5455 ++#define VKI_TIOCGLCKTRMIOS 0x5456 ++#define VKI_TIOCSLCKTRMIOS 0x5457 ++#define VKI_TIOCSERGSTRUCT 0x5458 /* For debugging only */ ++#define VKI_TIOCSERGETLSR 0x5459 /* Get line status register */ ++/* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */ ++#define VKI_TIOCSER_TEMT 0x01 /* Transmitter physically empty */ ++#define VKI_TIOCSERGETMULTI 0x545A /* Get multiport config */ ++#define VKI_TIOCSERSETMULTI 0x545B /* Set multiport config */ ++ ++#define VKI_TIOCMIWAIT 0x545C /* wait for a change on serial input line(s) */ ++#define VKI_TIOCGICOUNT 0x545D /* read serial port inline interrupt counts */ ++ ++//---------------------------------------------------------------------- ++// From asm-generic/poll.h ++//---------------------------------------------------------------------- ++ ++/* These are specified by iBCS2 */ ++#define VKI_POLLIN 0x0001 ++ ++struct vki_pollfd { ++ int fd; ++ short events; ++ short revents; ++}; ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/asm/elf.h ++//---------------------------------------------------------------------- ++ ++#define VKI_ELF_NGREG 33 /* includes nip, msr, lr, etc. */ ++#define VKI_ELF_NFPREG 32 /* includes fpscr */ ++ ++typedef unsigned long vki_elf_greg_t; ++typedef vki_elf_greg_t vki_elf_gregset_t[VKI_ELF_NGREG]; ++ ++typedef double vki_elf_fpreg_t; ++typedef vki_elf_fpreg_t vki_elf_fpregset_t[VKI_ELF_NFPREG]; ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/asm/ucontext.h ++//---------------------------------------------------------------------- ++ ++struct vki_ucontext { ++ unsigned long uc_flags; ++ struct vki_ucontext *uc_link; ++ vki_old_sigset_t uc_old_sigmask; ++ vki_stack_t uc_stack; ++ struct vki_sigcontext uc_mcontext; ++ vki_sigset_t uc_sigmask; /* mask last for extensibility */ ++}; ++ ++typedef char vki_modify_ldt_t; /* ldt.h */ ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/include/uapi/asm-generic/ipcbuf.h ++//---------------------------------------------------------------------- ++ ++struct vki_ipc64_perm { ++ __vki_kernel_key_t key; ++ __vki_kernel_uid32_t uid; ++ __vki_kernel_gid32_t gid; ++ __vki_kernel_uid32_t cuid; ++ __vki_kernel_gid32_t cgid; ++ __vki_kernel_mode_t mode; ++ unsigned char __pad1[4 - sizeof(__vki_kernel_mode_t)]; ++ unsigned short seq; ++ unsigned short __pad2; ++ __vki_kernel_ulong_t __unused1; ++ __vki_kernel_ulong_t __unused2; ++}; ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/asm/sembuf.h ++//---------------------------------------------------------------------- ++ ++struct vki_semid64_ds { ++ struct vki_ipc64_perm sem_perm; /* permissions .. see ipc.h */ ++ __vki_kernel_time_t sem_otime; /* last semop time */ ++ __vki_kernel_time_t sem_ctime; /* last change time */ ++ unsigned long sem_nsems; /* no. of semaphores in array */ ++ unsigned long __unused1; ++ unsigned long __unused2; ++}; ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/uapi/asm/msgbuf.h ++//---------------------------------------------------------------------- ++ ++struct vki_msqid64_ds { ++ struct vki_ipc64_perm msg_perm; ++ __vki_kernel_time_t msg_stime; /* last msgsnd time */ ++ __vki_kernel_time_t msg_rtime; /* last msgrcv time */ ++ __vki_kernel_time_t msg_ctime; /* last change time */ ++ unsigned long msg_cbytes; /* current number of bytes on queue */ ++ unsigned long msg_qnum; /* number of messages in queue */ ++ unsigned long msg_qbytes; /* max number of bytes on queue */ ++ __vki_kernel_pid_t msg_lspid; /* pid of last msgsnd */ ++ __vki_kernel_pid_t msg_lrpid; /* last receive pid */ ++ unsigned long __unused1; ++ unsigned long __unused2; ++}; ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/include/uapi/linux/ipc.h ++//---------------------------------------------------------------------- ++ ++struct vki_ipc_kludge { ++ struct vki_msgbuf __user *msgp; ++ long msgtyp; ++}; ++ ++#define VKI_SEMOP 1 ++#define VKI_SEMGET 2 ++#define VKI_SEMCTL 3 ++#define VKI_SEMTIMEDOP 4 ++#define VKI_MSGSND 11 ++#define VKI_MSGRCV 12 ++#define VKI_MSGGET 13 ++#define VKI_MSGCTL 14 ++#define VKI_SHMAT 21 ++#define VKI_SHMDT 22 ++#define VKI_SHMGET 23 ++#define VKI_SHMCTL 24 ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/uapi/asm/shmbuf.h ++//---------------------------------------------------------------------- ++ ++struct vki_shmid64_ds { ++ struct vki_ipc64_perm shm_perm; /* operation perms */ ++ vki_size_t shm_segsz; /* size of segment (bytes) */ ++ __vki_kernel_time_t shm_atime; /* last attach time */ ++ __vki_kernel_time_t shm_dtime; /* last detach time */ ++ __vki_kernel_time_t shm_ctime; /* last change time */ ++ __vki_kernel_pid_t shm_cpid; /* pid of creator */ ++ __vki_kernel_pid_t shm_lpid; /* pid of last operator */ ++ unsigned long shm_nattch; /* no. of current attaches */ ++ unsigned long __unused1; ++ unsigned long __unused2; ++}; ++ ++struct vki_shminfo64 { ++ unsigned long shmmax; ++ unsigned long shmmin; ++ unsigned long shmmni; ++ unsigned long shmseg; ++ unsigned long shmall; ++ unsigned long __unused1; ++ unsigned long __unused2; ++ unsigned long __unused3; ++ unsigned long __unused4; ++}; ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/uapi/asm/ptrace.h ++//---------------------------------------------------------------------- ++ ++struct vki_pt_regs { ++ unsigned long r0; ++ unsigned long r1; ++ unsigned long r2; ++ unsigned long r3; ++ unsigned long r4; ++ unsigned long r5; ++ unsigned long r6; ++ unsigned long r7; ++ unsigned long r8; ++ unsigned long r19; ++ unsigned long r20; ++ unsigned long r21; ++ unsigned long r22; ++ unsigned long r23; ++ unsigned long r24; ++ unsigned long r25; ++ unsigned long r26; ++ unsigned long r27; ++ unsigned long r28; ++ unsigned long hae; ++/* JRP - These are the values provided to a0-a2 by HMcode */ ++ unsigned long trap_a0; ++ unsigned long trap_a1; ++ unsigned long trap_a2; ++/* These are saved by HMcode: */ ++ unsigned long ps; ++ unsigned long pc; ++ unsigned long gp; ++ unsigned long r16; ++ unsigned long r17; ++ unsigned long r18; ++}; ++ ++#define VKI_PTRACE_GETREGS 12 /* get general purpose registers */ ++#define VKI_PTRACE_SETREGS 13 /* set general purpose registers */ ++#define VKI_PTRACE_GETFPREGS 14 /* get floating-point registers */ ++#define VKI_PTRACE_SETFPREGS 15 /* set floating-point registers */ ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/arch/sw_64/include/uapi/asm/errno.h ++//---------------------------------------------------------------------- ++ ++#define VKI_EOPNOTSUPP 45 /* Operation not supported on transport endpoint */ ++#define VKI_ENOSYS 78 /* Function not implemented */ ++#define VKI_EOVERFLOW 112 /* Value too large for defined data type */ ++ ++//---------------------------------------------------------------------- ++// From linux-4.19.180/include/uapi/asm-generic/siginfo.h ++//---------------------------------------------------------------------- ++ ++#define HAVE_ARCH_SIGINFO_T ++#define __VKI_ARCH_SI_TRAPNO ++typedef union vki_sigval { ++ int sival_int; ++ void __user *sival_ptr; ++} vki_sigval_t; ++ ++#ifndef __VKI_ARCH_SI_PREAMBLE_SIZE ++#define __VKI_ARCH_SI_PREAMBLE_SIZE (4 * sizeof(int)) ++#endif ++ ++#define VKI_SI_MAX_SIZE 128 ++ ++#ifndef VKI_SI_PAD_SIZE ++#define VKI_SI_PAD_SIZE ((VKI_SI_MAX_SIZE - __VKI_ARCH_SI_PREAMBLE_SIZE) / sizeof(int)) ++#endif ++ ++#ifndef __VKI_ARCH_SI_UID_T ++#define __VKI_ARCH_SI_UID_T vki_uid_t ++#endif ++ ++#ifndef __VKI_ARCH_SI_BAND_T ++#define __VKI_ARCH_SI_BAND_T long ++#endif ++ ++#ifndef __VKI_ARCH_SI_CLOCK_T ++#define __VKI_ARCH_SI_CLOCK_T __vki_kernel_clock_t ++#endif ++ ++#ifndef __VKI_ARCH_SI_ATTRIBUTES ++#define __VKI_ARCH_SI_ATTRIBUTES ++#endif ++ ++typedef struct vki_siginfo { ++ int si_signo; ++ int si_errno; ++ int si_code; ++ ++ union { ++ int _pad[VKI_SI_PAD_SIZE]; ++ ++ /* kill() */ ++ struct { ++ __vki_kernel_pid_t _pid; /* sender's pid */ ++ __vki_kernel_uid32_t _uid; /* sender's uid */ ++ } _kill; ++ ++ /* POSIX.1b timers */ ++ struct { ++ __vki_kernel_timer_t _tid; /* timer id */ ++ int _overrun; /* overrun count */ ++ vki_sigval_t _sigval; /* same as below */ ++ int _sys_private; /* not to be passed to user */ ++ } _timer; ++ ++ /* POSIX.1b signals */ ++ struct { ++ __vki_kernel_pid_t _pid; /* sender's pid */ ++ __vki_kernel_uid32_t _uid; /* sender's uid */ ++ vki_sigval_t _sigval; ++ } _rt; ++ ++ /* SIGCHLD */ ++ struct { ++ __vki_kernel_pid_t _pid; /* which child */ ++ __vki_kernel_uid32_t _uid; /* sender's uid */ ++ int _status; /* exit code */ ++ __VKI_ARCH_SI_CLOCK_T _utime; ++ __VKI_ARCH_SI_CLOCK_T _stime; ++ } _sigchld; ++ ++ /* SIGILL, SIGFPE, SIGSEGV, SIGBUS, SIGTRAP, SIGEMT */ ++ struct { ++ void __user *_addr; /* faulting insn/memory ref. */ ++#ifdef __VKI_ARCH_SI_TRAPNO ++ int _trapno; /* TRAP # which caused the signal */ ++#endif ++ ++#define __VKI_ADDR_BND_PKEY_PAD (__alignof__(void *) < sizeof(short) ? \ ++ sizeof(short) : __alignof__(void *)) ++ union { ++ /* ++ * used when si_code=BUS_MCEERR_AR or ++ * used when si_code=BUS_MCEERR_AO ++ */ ++ short _addr_lsb; /* LSB of the reported address */ ++ /* used when si_code=SEGV_BNDERR */ ++ struct { ++ char _dummy_bnd[__VKI_ADDR_BND_PKEY_PAD]; ++ void __user *_lower; ++ void __user *_upper; ++ } _addr_bnd; ++ /* used when si_code=SEGV_PKUERR */ ++ struct { ++ char _dummy_pkey[__VKI_ADDR_BND_PKEY_PAD]; ++ __vki_u32 _pkey; ++ } _addr_pkey; ++ }; ++ } _sigfault; ++ ++ /* SIGPOLL */ ++ struct { ++ __VKI_ARCH_SI_BAND_T _band; /* POLL_IN, POLL_OUT, POLL_MSG */ ++ int _fd; ++ } _sigpoll; ++ ++ /* SIGSYS */ ++ struct { ++ void __user *_call_addr; /* calling user insn */ ++ int _syscall; /* triggering system call number */ ++ unsigned int _arch; /* AUDIT_ARCH_* of syscall */ ++ } _sigsys; ++ } _sifields; ++} __VKI_ARCH_SI_ATTRIBUTES vki_siginfo_t; ++ ++#endif // __VKI_SW64_LINUX_H ++ ++/*--------------------------------------------------------------------*/ ++/*--- end vki-sw64-linux.h ---*/ ++/*--------------------------------------------------------------------*/ +diff --git a/massif/tests/Makefile.am b/massif/tests/Makefile.am +index 636bc8f85..8b11eaf77 100644 +--- a/massif/tests/Makefile.am ++++ b/massif/tests/Makefile.am +@@ -9,6 +9,7 @@ EXTRA_DIST = \ + basic.post.exp basic.stderr.exp basic.vgtest \ + basic2.post.exp basic2.stderr.exp basic2.vgtest \ + big-alloc.post.exp big-alloc.post.exp-64bit big-alloc.post.exp-ppc64 \ ++ big-alloc.post.exp-sw64 \ + big-alloc.stderr.exp big-alloc.vgtest \ + big-alloc.post.exp-x86-freebsd \ + bug469146.post.exp bug469146.stderr.exp bug469146.vgtest \ +diff --git a/massif/tests/big-alloc.post.exp-sw64 b/massif/tests/big-alloc.post.exp-sw64 +new file mode 100644 +index 000000000..601ddee4f +--- /dev/null ++++ b/massif/tests/big-alloc.post.exp-sw64 +@@ -0,0 +1,54 @@ ++-------------------------------------------------------------------------------- ++Command: ./big-alloc ++Massif arguments: --stacks=no --time-unit=B --massif-out-file=massif.out --ignore-fn=__part_load_locale --ignore-fn=__time_load_locale --ignore-fn=dwarf2_unwind_dyld_add_image_hook --ignore-fn=get_or_create_key_element ++ms_print arguments: massif.out ++-------------------------------------------------------------------------------- ++ ++ ++ MB ++100.1^ : ++ | : ++ | @@@@@@@: ++ | @ : ++ | :::::::@ : ++ | : @ : ++ | :::::::: @ : ++ | : : @ : ++ | :::::::: : @ : ++ | : : : @ : ++ | :::::::: : : @ : ++ | : : : : @ : ++ | ::::::::: : : : @ : ++ | : : : : : @ : ++ | :::::::: : : : : @ : ++ | : : : : : : @ : ++ | :::::::: : : : : : @ : ++ | : : : : : : : @ : ++ | :::::::: : : : : : : @ : ++ | : : : : : : : : @ : ++ 0 +----------------------------------------------------------------------->MB ++ 0 100.1 ++ ++Number of snapshots: 11 ++ Detailed snapshots: [9] ++ ++-------------------------------------------------------------------------------- ++ n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) ++-------------------------------------------------------------------------------- ++ 0 0 0 0 0 0 ++ 1 10,493,896 10,493,896 10,485,760 8,136 0 ++ 2 20,987,792 20,987,792 20,971,520 16,272 0 ++ 3 31,481,688 31,481,688 31,457,280 24,408 0 ++ 4 41,975,584 41,975,584 41,943,040 32,544 0 ++ 5 52,469,480 52,469,480 52,428,800 40,680 0 ++ 6 62,963,376 62,963,376 62,914,560 48,816 0 ++ 7 73,457,272 73,457,272 73,400,320 56,952 0 ++ 8 83,951,168 83,951,168 83,886,080 65,088 0 ++ 9 94,445,064 94,445,064 94,371,840 73,224 0 ++99.92% (94,371,840B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. ++->99.92% (94,371,840B) 0x........: main (big-alloc.c:12) ++ ++-------------------------------------------------------------------------------- ++ n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) ++-------------------------------------------------------------------------------- ++ 10 104,938,960 104,938,960 104,857,600 81,360 0 +diff --git a/memcheck/mc_machine.c b/memcheck/mc_machine.c +index 176c8e5cb..51aa21522 100644 +--- a/memcheck/mc_machine.c ++++ b/memcheck/mc_machine.c +@@ -1394,6 +1394,82 @@ static Int get_otrack_shadow_offset_wrk ( Int offset, Int szB ) + offset,szB); + tl_assert(0); + # undef GOF ++# undef SZB ++ ++ /* --------------------- sw64 --------------------- */ ++ ++# elif defined(VGA_sw64) ++ ++# define GOF(_fieldname) \ ++ (offsetof(VexGuestSW64State,guest_##_fieldname)) ++# define SZB(_fieldname) \ ++ (sizeof(((VexGuestSW64State*)0)->guest_##_fieldname)) ++ ++ Int o = offset; ++ Int sz = szB; ++ tl_assert(sz > 0); ++ tl_assert(host_is_little_endian()); ++ ++ if (o >= GOF(r0) && sz <= 8 && o <= (GOF(r31) + 8 - sz)) ++ return GOF(r0) + ((o-GOF(r0)) & -8) ; ++ ++ if (o == GOF(PC) && sz == SZB(PC)) return -1; /* slot unused */ ++ if (o == GOF(CSR) && sz == SZB(CSR)) return -1; /* slot unused */ ++ ++ if (o >= GOF(f0) && o+sz <= GOF(f0) +SZB(f0)) return GOF(f0); ++ if (o >= GOF(f1) && o+sz <= GOF(f1) +SZB(f1)) return GOF(f1); ++ if (o >= GOF(f2) && o+sz <= GOF(f2) +SZB(f2)) return GOF(f2); ++ if (o >= GOF(f3) && o+sz <= GOF(f3) +SZB(f3)) return GOF(f3); ++ if (o >= GOF(f4) && o+sz <= GOF(f4) +SZB(f4)) return GOF(f4); ++ if (o >= GOF(f5) && o+sz <= GOF(f5) +SZB(f5)) return GOF(f5); ++ if (o >= GOF(f6) && o+sz <= GOF(f6) +SZB(f6)) return GOF(f6); ++ if (o >= GOF(f7) && o+sz <= GOF(f7) +SZB(f7)) return GOF(f7); ++ if (o >= GOF(f8) && o+sz <= GOF(f8) +SZB(f8)) return GOF(f8); ++ if (o >= GOF(f9) && o+sz <= GOF(f9) +SZB(f9)) return GOF(f9); ++ if (o >= GOF(f10) && o+sz <= GOF(f10)+SZB(f10)) return GOF(f10); ++ if (o >= GOF(f11) && o+sz <= GOF(f11)+SZB(f11)) return GOF(f11); ++ if (o >= GOF(f12) && o+sz <= GOF(f12)+SZB(f12)) return GOF(f12); ++ if (o >= GOF(f13) && o+sz <= GOF(f13)+SZB(f13)) return GOF(f13); ++ if (o >= GOF(f14) && o+sz <= GOF(f14)+SZB(f14)) return GOF(f14); ++ if (o >= GOF(f15) && o+sz <= GOF(f15)+SZB(f15)) return GOF(f15); ++ if (o >= GOF(f16) && o+sz <= GOF(f16)+SZB(f16)) return GOF(f16); ++ if (o >= GOF(f17) && o+sz <= GOF(f17)+SZB(f17)) return GOF(f17); ++ if (o >= GOF(f18) && o+sz <= GOF(f18)+SZB(f18)) return GOF(f18); ++ if (o >= GOF(f19) && o+sz <= GOF(f19)+SZB(f19)) return GOF(f19); ++ if (o >= GOF(f20) && o+sz <= GOF(f20)+SZB(f20)) return GOF(f20); ++ if (o >= GOF(f21) && o+sz <= GOF(f21)+SZB(f21)) return GOF(f21); ++ if (o >= GOF(f22) && o+sz <= GOF(f22)+SZB(f22)) return GOF(f22); ++ if (o >= GOF(f23) && o+sz <= GOF(f23)+SZB(f23)) return GOF(f23); ++ if (o >= GOF(f24) && o+sz <= GOF(f24)+SZB(f24)) return GOF(f24); ++ if (o >= GOF(f25) && o+sz <= GOF(f25)+SZB(f25)) return GOF(f25); ++ if (o >= GOF(f26) && o+sz <= GOF(f26)+SZB(f26)) return GOF(f26); ++ if (o >= GOF(f27) && o+sz <= GOF(f27)+SZB(f27)) return GOF(f27); ++ if (o >= GOF(f28) && o+sz <= GOF(f28)+SZB(f28)) return GOF(f28); ++ if (o >= GOF(f29) && o+sz <= GOF(f29)+SZB(f29)) return GOF(f29); ++ if (o >= GOF(f30) && o+sz <= GOF(f30)+SZB(f30)) return GOF(f30); ++ if (o >= GOF(f31) && o+sz <= GOF(f31)+SZB(f31)) return GOF(f31); ++ ++ if (o == GOF(FPCR) && sz == SZB(FPCR)) return -1; ++ ++ if (o == GOF(EMNOTE) && sz == SZB(EMNOTE)) return -1; ++ ++ if (o == GOF(CMSTART) && sz == SZB(CMSTART)) return -1; ++ if (o == GOF(CMLEN) && sz == SZB(CMLEN)) return -1; ++ ++ if (o == GOF(NRADDR) && sz == SZB(NRADDR)) return -1; ++ if (o == GOF(LOCKFLAG) && sz == SZB(LOCKFLAG)) return -1; ++ if (o == GOF(LOCKVALID) && sz == SZB(LOCKVALID)) return -1; ++ if (o == GOF(LOCKSUCCESS) && sz == SZB(LOCKSUCCESS)) return -1; ++ if (o == GOF(LOCKSIZE) && sz == SZB(LOCKSIZE)) return -1; ++ if (o == GOF(LOCKADDR) && sz == SZB(LOCKADDR)) return -1; ++ if (o == GOF(LOCKDATA) && sz == SZB(LOCKDATA)) return -1; ++ ++ if (o == GOF(TID) && sz == SZB(TID)) return -1; ++ ++ VG_(printf)("MC_(get_otrack_shadow_offset)(sw)(off=%d,sz=%d)\n", ++ offset,szB); ++ tl_assert(0); ++# undef GOF + # undef SZB + + # else +@@ -1517,6 +1593,13 @@ IRType MC_(get_otrack_reg_array_equiv_int_type) ( IRRegArray* arr ) + VG_(printf)("\n"); + tl_assert(0); + ++ /* --------------------- sw64 --------------------- */ ++# elif defined(VGA_sw64) ++ VG_(printf)("get_reg_array_equiv_int_type(sw64): unhandled: "); ++ ppIRRegArray(arr); ++ VG_(printf)("\n"); ++ tl_assert(0); ++ + # else + # error "FIXME: not implemented for this architecture" + # endif +diff --git a/memcheck/mc_translate.c b/memcheck/mc_translate.c +index ec8ac5321..db90eea47 100644 +--- a/memcheck/mc_translate.c ++++ b/memcheck/mc_translate.c +@@ -4877,6 +4877,20 @@ IRAtom* expr2vbits_Binop ( MCEnv* mce, + cheap_cmp8: + return mkPCastTo(mce, Ity_I1, mkUifU8(mce, vatom1,vatom2)); + ++ ////---- CmpFXX64 ++ // Iop_CmpFUN64, ++ // Iop_CmpFLT64, ++ // Iop_CmpFLE64, ++ // Iop_CmpFGT64, ++ // Iop_CmpFGE64, ++ // Iop_CmpFEQ64, ++ // Iop_CmpFNE64, ++ case Iop_CmpFEQ64: case Iop_CmpFNE64: ++ case Iop_CmpFLT64: case Iop_CmpFLE64: ++ case Iop_CmpFGT64: case Iop_CmpFGE64: ++ case Iop_CmpFUN64: ++ return mkPCastTo(mce, Ity_I1, mkUifU64(mce, vatom1,vatom2)); ++ + ////---- end CmpXX{64,32,16,8} + + case Iop_CasCmpEQ8: case Iop_CasCmpNE8: +@@ -8763,6 +8777,8 @@ IRSB* MC_(instrument) ( VgCallbackClosure* closure, + mce.dlbo.dl_CmpEQ64_CmpNE64 = DLexpensive; + # elif defined(VGA_arm) + mce.dlbo.dl_CmpEQ32_CmpNE32 = DLexpensive; ++# elif defined(VGA_sw64) ++ mce.dlbo.dl_CmpEQ64_CmpNE64 = DLexpensive; + # endif + + /* preInstrumentationAnalysis() will allocate &mce.tmpHowUsed and then +diff --git a/memcheck/tests/Makefile.am b/memcheck/tests/Makefile.am +index 47b538474..312a1cb01 100644 +--- a/memcheck/tests/Makefile.am ++++ b/memcheck/tests/Makefile.am +@@ -25,6 +25,9 @@ endif + if VGCONF_ARCHS_INCLUDE_S390X + SUBDIRS += s390x + endif ++if VGCONF_ARCHS_INCLUDE_SW64 ++SUBDIRS += sw64 ++endif + + # OS-specific tests + if VGCONF_OS_IS_LINUX +@@ -365,10 +368,11 @@ EXTRA_DIST = \ + sh-mem-random.stdout.exp sh-mem-random.vgtest \ + sigaltstack.stderr.exp sigaltstack.vgtest \ + sigkill.stderr.exp sigkill.stderr.exp-darwin sigkill.stderr.exp-freebsd sigkill.stderr.exp-mips32 \ +- sigkill.stderr.exp-solaris \ ++ sigkill.stderr.exp-solaris sigkill.stderr.exp-sw64 \ + sigkill.stderr.exp-glibc-2.28 sigkill.vgtest \ + signal2.stderr.exp signal2.stdout.exp signal2.vgtest \ + sigprocmask.stderr.exp sigprocmask.stderr.exp2 sigprocmask.vgtest \ ++ sigprocmask.stderr.exp-sw64 \ + sized_delete.stderr.exp sized_delete.stderr.exp-x86 sized_delete.vgtest \ + static_malloc.stderr.exp static_malloc.vgtest \ + stpncpy.vgtest stpncpy.stderr.exp stpncpy.stdout.exp \ +diff --git a/memcheck/tests/atomic_incs.c b/memcheck/tests/atomic_incs.c +index 1c738c530..f83900d9c 100644 +--- a/memcheck/tests/atomic_incs.c ++++ b/memcheck/tests/atomic_incs.c +@@ -245,6 +245,26 @@ __attribute__((noinline)) void atomic_add_8bit ( char* p, int n ) + ); + } while (block[2] != 1); + #endif ++#elif defined(VGA_sw64) ++ __asm__ __volatile__( ++ " bic %0, 0x7, $22\n" ++ "0: \n" ++ " lldl $5, 0($r22)\n" ++ " ldi $8, 1\n" ++ " wr_f $8\n" ++ " extlb $5, %0, $6\n" ++ " addl $6, %1, $6\n" ++ " inslb $6, %0, $6\n" ++ " masklb $5, %0, $5\n" ++ " or $5, $6, $5\n" ++ " memb \n" ++ " lstl $5, 0($22)\n" ++ " rd_f $5\n" ++ " beq $5, 0b\n" ++ : ++ : "r"(p), "r"(n) ++ : "memory", "$5", "$6", "$8", "$22" ++ ); + #else + # error "Unsupported arch" + #endif +@@ -461,6 +481,26 @@ __attribute__((noinline)) void atomic_add_16bit ( short* p, int n ) + ); + } while (block[2] != 1); + #endif ++#elif defined(VGA_sw64) ++ __asm__ __volatile__( ++ " bic %0, 0x7, $22\n" ++ "0: \n" ++ " lldl $5, 0($r22)\n" ++ " ldi $8, 1\n" ++ " wr_f $8\n" ++ " extlh $5, %0, $6\n" ++ " addl $6, %1, $6\n" ++ " inslh $6, %0, $6\n" ++ " masklh $5, %0, $5\n" ++ " or $5, $6, $5\n" ++ " memb \n" ++ " lstl $5, 0($22)\n" ++ " rd_f $5\n" ++ " beq $5, 0b\n" ++ : ++ : "r"(p), "r"(n) ++ : "memory", "$5", "$6", "$8", "$22" ++ ); + #else + # error "Unsupported arch" + #endif +@@ -616,6 +656,21 @@ __attribute__((noinline)) void atomic_add_32bit ( int* p, int n ) + : /*trash*/ "memory", "t0", "t1", "t2", "t3" + ); + } while (block[2] != 1); ++#elif defined(VGA_sw64) ++ __asm__ __volatile__ ( ++ "0:\n" ++ " lldw $5, 0(%0)\n" ++ " ldi $8, 1\n" ++ " wr_f $8\n" ++ " addw $5, %1, $5\n" ++ " memb \n" ++ " lstw $5, 0(%0)\n" ++ " rd_f $5\n" ++ " beq $5, 0b\n" ++ : /*out*/ ++ : /*in*/ "r"(p), "r"(n) ++ : /*trash*/ "$5", "$8", "memory" ++ ); + #else + # error "Unsupported arch" + #endif +@@ -718,6 +773,21 @@ __attribute__((noinline)) void atomic_add_64bit ( long long int* p, int n ) + : /*trash*/ "memory", "t0", "t1", "t2", "t3" + ); + } while (block[2] != 1); ++#elif defined(VGA_sw64) ++ __asm__ __volatile__ ( ++ "0:\n" ++ " lldl $5, 0(%0)\n" ++ " ldi $8, 1\n" ++ " wr_f $8\n" ++ " addl $5, %1, $5\n" ++ " memb \n" ++ " lstl $5, 0(%0)\n" ++ " rd_f $5\n" ++ " beq $5, 0b\n" ++ : /*out*/ ++ : /*in*/ "r"(p), "r"(n) ++ : /*trash*/ "$5", "$8", "memory" ++ ); + #else + # error "Unsupported arch" + #endif +@@ -752,6 +822,8 @@ __attribute__((noinline)) void atomic_add_128bit ( MyU128* p, + : /*trash*/ "memory", "cc", "x5", "x7", "x8", "x9", "x10", "x4" + ); + } while (block[2] != 0); ++#elif defined(VGA_sw64) ++ // TODO(Shaohua): Impl atomic_add_128bit() + #else + # error "Unsupported arch" + #endif +diff --git a/memcheck/tests/badjump2.c b/memcheck/tests/badjump2.c +index ae858e773..a6faef7d2 100644 +--- a/memcheck/tests/badjump2.c ++++ b/memcheck/tests/badjump2.c +@@ -26,7 +26,7 @@ int main(void) + memset(&sigsegv_new, 0, sizeof(sigsegv_new)); + sigsegv_new.sa_handler = SIGSEGV_handler; + sigsegv_new.sa_flags = 0; +-#if !defined(__APPLE__) && !defined(__sun) && !defined(__FreeBSD__) ++#if !defined(__APPLE__) && !defined(__sun) && !defined(__FreeBSD__) && !defined(__sw_64__) + sigsegv_new.sa_restorer = NULL; + #endif + res = sigemptyset( &sigsegv_new.sa_mask ); +diff --git a/memcheck/tests/leak-segv-jmp.c b/memcheck/tests/leak-segv-jmp.c +index 97bddaf23..8bb5e5636 100644 +--- a/memcheck/tests/leak-segv-jmp.c ++++ b/memcheck/tests/leak-segv-jmp.c +@@ -308,7 +308,9 @@ asm( + " ret\n" + ".previous\n" + ); +- ++#elif defined(VGP_sw64_linux) ++extern UWord do_syscall_WRK(UWord syscall_no, UWord a1, UWord a2, ++ UWord a3, UWord a4, UWord a5, UWord a6); + #else + // Ensure the file compiles even if the syscall nr is not defined. + #ifndef __NR_mprotect +@@ -470,3 +472,27 @@ int main(void) + + return 0; + } ++ ++/* ++ HACK: The line number recorded in .exp file will be mismatch if we put this ++ code block in top of file, so here we are ++*/ ++#if defined(VGP_sw64_linux) ++#define __NR_mprotect 74 ++asm ( ++ ".text \n\t" ++ ".globl do_syscall_WRK \n\t" ++ ".type do_syscall_WRK, @function \n\t" ++ "do_syscall_WRK: \n\t" ++ " mov $16, $0 \n\t" ++ " mov $17, $16 \n\t" ++ " mov $18, $17 \n\t" ++ " mov $19, $18 \n\t" ++ " mov $20, $19 \n\t" ++ " mov $21, $20 \n\t" ++ " ldl $21, 0($30) \n\t" ++ " sys_call 0x83 \n\t" ++ " ret \n\t" ++ ".previous \n\t" ++); ++#endif +diff --git a/memcheck/tests/leak.h b/memcheck/tests/leak.h +index 79e3cd6ac..16931d272 100644 +--- a/memcheck/tests/leak.h ++++ b/memcheck/tests/leak.h +@@ -143,6 +143,35 @@ + "$8", "$9", "$10", "$11", "$12", "$13", \ + "$14", "$15", "$24", "$25", "$31"); \ + } while (0) ++#elif defined(__sw_64__) ++#define CLEAR_CALLER_SAVED_REGS \ ++ do { \ ++ __asm__ __volatile__ ("ldi $0, 0 \n\t" /* v0 = 0 */ \ ++ "ldi $1, 0 \n\t" /* t0 = 0 */ \ ++ "ldi $2, 0 \n\t" /* t1 = 0 */ \ ++ "ldi $3, 0 \n\t" /* t2 = 0 */ \ ++ "ldi $4, 0 \n\t" /* t3 = 0 */ \ ++ "ldi $5, 0 \n\t" /* t4 = 0 */ \ ++ "ldi $6, 0 \n\t" /* t5 = 0 */ \ ++ "ldi $7, 0 \n\t" /* t6 = 0 */ \ ++ "ldi $8, 0 \n\t" /* t7 = 0 */ \ ++ "ldi $16, 0 \n\t" /* a0 = 0 */ \ ++ "ldi $17, 0 \n\t" /* a1 = 0 */ \ ++ "ldi $18, 0 \n\t" /* a2 = 0 */ \ ++ "ldi $19, 0 \n\t" /* a3 = 0 */ \ ++ "ldi $20, 0 \n\t" /* a4 = 0 */ \ ++ "ldi $21, 0 \n\t" /* a5 = 0 */ \ ++ "ldi $22, 0 \n\t" /* t8 = 0 */ \ ++ "ldi $23, 0 \n\t" /* t9 = 0 */ \ ++ "ldi $24, 0 \n\t" /* t10 = 0 */ \ ++ "ldi $25, 0 \n\t" /* t11 = 0 */ \ ++ "ldi $27, 0 \n\t" /* pv = 0 */ \ ++ "ldi $31, 0 \n\t" /* zero= 0 */ \ ++ : : : "$0", "$1", "$2", "$3", "$4", "$5", "$6", \ ++ "$7", "$8", "$16", "$17", "$18", "$19", \ ++ "$20", "$21", "$22", "$23", "$24", "$25", \ ++ "$27"); \ ++ } while (0) + #elif defined (__clang__) && defined(VGA_x86) + #define CLEAR_CALLER_SAVED_REGS \ + do { \ +diff --git a/memcheck/tests/sigkill.stderr.exp-sw64 b/memcheck/tests/sigkill.stderr.exp-sw64 +new file mode 100644 +index 000000000..f37c709c8 +--- /dev/null ++++ b/memcheck/tests/sigkill.stderr.exp-sw64 +@@ -0,0 +1,197 @@ ++ ++setting signal 1: Success ++getting signal 1: Success ++ ++setting signal 2: Success ++getting signal 2: Success ++ ++setting signal 3: Success ++getting signal 3: Success ++ ++setting signal 4: Success ++getting signal 4: Success ++ ++setting signal 5: Success ++getting signal 5: Success ++ ++setting signal 6: Success ++getting signal 6: Success ++ ++setting signal 7: Success ++getting signal 7: Success ++ ++setting signal 8: Success ++getting signal 8: Success ++ ++setting signal 9: Warning: ignored attempt to set SIGKILL handler in sigaction(); ++ the SIGKILL signal is uncatchable ++Invalid argument ++getting signal 9: Success ++ ++setting signal 10: Success ++getting signal 10: Success ++ ++setting signal 11: Success ++getting signal 11: Success ++ ++setting signal 12: Success ++getting signal 12: Success ++ ++setting signal 13: Success ++getting signal 13: Success ++ ++setting signal 14: Success ++getting signal 14: Success ++ ++setting signal 15: Success ++getting signal 15: Success ++ ++setting signal 16: Success ++getting signal 16: Success ++ ++setting signal 17: Warning: ignored attempt to set SIGSTOP handler in sigaction(); ++ the SIGSTOP signal is uncatchable ++Invalid argument ++getting signal 17: Success ++ ++setting signal 18: Success ++getting signal 18: Success ++ ++setting signal 19: Success ++getting signal 19: Success ++ ++setting signal 20: Success ++getting signal 20: Success ++ ++setting signal 21: Success ++getting signal 21: Success ++ ++setting signal 22: Success ++getting signal 22: Success ++ ++setting signal 23: Success ++getting signal 23: Success ++ ++setting signal 24: Success ++getting signal 24: Success ++ ++setting signal 25: Success ++getting signal 25: Success ++ ++setting signal 26: Success ++getting signal 26: Success ++ ++setting signal 27: Success ++getting signal 27: Success ++ ++setting signal 28: Success ++getting signal 28: Success ++ ++setting signal 29: Success ++getting signal 29: Success ++ ++setting signal 30: Success ++getting signal 30: Success ++ ++setting signal 31: Success ++getting signal 31: Success ++ ++setting signal 34: Success ++getting signal 34: Success ++ ++setting signal 35: Success ++getting signal 35: Success ++ ++setting signal 36: Success ++getting signal 36: Success ++ ++setting signal 37: Success ++getting signal 37: Success ++ ++setting signal 38: Success ++getting signal 38: Success ++ ++setting signal 39: Success ++getting signal 39: Success ++ ++setting signal 40: Success ++getting signal 40: Success ++ ++setting signal 41: Success ++getting signal 41: Success ++ ++setting signal 42: Success ++getting signal 42: Success ++ ++setting signal 43: Success ++getting signal 43: Success ++ ++setting signal 44: Success ++getting signal 44: Success ++ ++setting signal 45: Success ++getting signal 45: Success ++ ++setting signal 46: Success ++getting signal 46: Success ++ ++setting signal 47: Success ++getting signal 47: Success ++ ++setting signal 48: Success ++getting signal 48: Success ++ ++setting signal 49: Success ++getting signal 49: Success ++ ++setting signal 50: Success ++getting signal 50: Success ++ ++setting signal 51: Success ++getting signal 51: Success ++ ++setting signal 52: Success ++getting signal 52: Success ++ ++setting signal 53: Success ++getting signal 53: Success ++ ++setting signal 54: Success ++getting signal 54: Success ++ ++setting signal 55: Success ++getting signal 55: Success ++ ++setting signal 56: Success ++getting signal 56: Success ++ ++setting signal 57: Success ++getting signal 57: Success ++ ++setting signal 58: Success ++getting signal 58: Success ++ ++setting signal 59: Success ++getting signal 59: Success ++ ++setting signal 60: Success ++getting signal 60: Success ++ ++setting signal 61: Success ++getting signal 61: Success ++ ++setting signal 62: Success ++getting signal 62: Success ++ ++setting signal 65: Invalid argument ++getting signal 65: Invalid argument ++ ++ ++HEAP SUMMARY: ++ in use at exit: ... bytes in ... blocks ++ total heap usage: ... allocs, ... frees, ... bytes allocated ++ ++For a detailed leak analysis, rerun with: --leak-check=full ++ ++For lists of detected and suppressed errors, rerun with: -s ++ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) +diff --git a/memcheck/tests/sigprocmask.stderr.exp-sw64 b/memcheck/tests/sigprocmask.stderr.exp-sw64 +new file mode 100644 +index 000000000..bf809cab6 +--- /dev/null ++++ b/memcheck/tests/sigprocmask.stderr.exp-sw64 +@@ -0,0 +1,6 @@ ++before ++11111111 89abcdef 22222222 33333333 0 44444444 ++after1 ++11111111 89abcdef 22222222 33333333 0 44444444 ++after2 ++11111111 89abcdef 22222222 33333333 89aaccef 66666666 +diff --git a/memcheck/tests/sw64/Makefile.am b/memcheck/tests/sw64/Makefile.am +new file mode 100644 +index 000000000..ccb147ae2 +--- /dev/null ++++ b/memcheck/tests/sw64/Makefile.am +@@ -0,0 +1,16 @@ ++ ++include $(top_srcdir)/Makefile.tool-tests.am ++ ++dist_noinst_SCRIPTS = filter_stderr ++ ++EXTRA_DIST = \ ++ arith-fp.vgtest arith-fp.stdout.exp arith-fp.stdout.exp-8a arith-fp.stderr.exp \ ++ arith-int-imm.vgtest arith-int-imm.stdout.exp arith-int-imm.stderr.exp \ ++ arith-int-reg.vgtest arith-int-reg.stdout.exp arith-int-reg.stderr.exp \ ++ branch.vgtest branch.stdout.exp branch.stderr.exp \ ++ loadstore-fp.vgtest loadstore-fp.stdout.exp loadstore-fp.stderr.exp \ ++ stack.vgtest stack.stdout.exp stack.stderr.exp ++ ++AM_CFLAGS += @FLAG_M64@ ++AM_CXXFLAGS += @FLAG_M64@ ++AM_CCASFLAGS += @FLAG_M64@ +diff --git a/memcheck/tests/sw64/arith-fp.stderr.exp b/memcheck/tests/sw64/arith-fp.stderr.exp +new file mode 120000 +index 000000000..2283ae8c5 +--- /dev/null ++++ b/memcheck/tests/sw64/arith-fp.stderr.exp +@@ -0,0 +1 @@ ++../../../none/tests/sw64/arith-fp.stderr.exp +\ No newline at end of file +diff --git a/memcheck/tests/sw64/arith-fp.stdout.exp b/memcheck/tests/sw64/arith-fp.stdout.exp +new file mode 120000 +index 000000000..0aba8cf45 +--- /dev/null ++++ b/memcheck/tests/sw64/arith-fp.stdout.exp +@@ -0,0 +1 @@ ++../../../none/tests/sw64/arith-fp.stdout.exp +\ No newline at end of file +diff --git a/memcheck/tests/sw64/arith-fp.stdout.exp-8a b/memcheck/tests/sw64/arith-fp.stdout.exp-8a +new file mode 120000 +index 000000000..89062894c +--- /dev/null ++++ b/memcheck/tests/sw64/arith-fp.stdout.exp-8a +@@ -0,0 +1 @@ ++../../../none/tests/sw64/arith-fp.stdout.exp-8a +\ No newline at end of file +diff --git a/memcheck/tests/sw64/arith-fp.vgtest b/memcheck/tests/sw64/arith-fp.vgtest +new file mode 100644 +index 000000000..c1db70340 +--- /dev/null ++++ b/memcheck/tests/sw64/arith-fp.vgtest +@@ -0,0 +1,3 @@ ++prereq: test -e ../../../none/tests/sw64/arith-fp ++prog: ../../../none/tests/sw64/arith-fp ++vgopts: -q +diff --git a/memcheck/tests/sw64/arith-int-imm.stderr.exp b/memcheck/tests/sw64/arith-int-imm.stderr.exp +new file mode 120000 +index 000000000..9c380d8c0 +--- /dev/null ++++ b/memcheck/tests/sw64/arith-int-imm.stderr.exp +@@ -0,0 +1 @@ ++../../../none/tests/sw64/arith-int-imm.stderr.exp +\ No newline at end of file +diff --git a/memcheck/tests/sw64/arith-int-imm.stdout.exp b/memcheck/tests/sw64/arith-int-imm.stdout.exp +new file mode 120000 +index 000000000..bb5eb65e8 +--- /dev/null ++++ b/memcheck/tests/sw64/arith-int-imm.stdout.exp +@@ -0,0 +1 @@ ++../../../none/tests/sw64/arith-int-imm.stdout.exp +\ No newline at end of file +diff --git a/memcheck/tests/sw64/arith-int-imm.vgtest b/memcheck/tests/sw64/arith-int-imm.vgtest +new file mode 100644 +index 000000000..3104d9d2a +--- /dev/null ++++ b/memcheck/tests/sw64/arith-int-imm.vgtest +@@ -0,0 +1,3 @@ ++prereq: test -e ../../../none/tests/sw64/arith-int-imm ++prog: ../../../none/tests/sw64/arith-int-imm ++vgopts: -q +diff --git a/memcheck/tests/sw64/arith-int-reg.stderr.exp b/memcheck/tests/sw64/arith-int-reg.stderr.exp +new file mode 120000 +index 000000000..dcb40ceca +--- /dev/null ++++ b/memcheck/tests/sw64/arith-int-reg.stderr.exp +@@ -0,0 +1 @@ ++../../../none/tests/sw64/arith-int-reg.stderr.exp +\ No newline at end of file +diff --git a/memcheck/tests/sw64/arith-int-reg.stdout.exp b/memcheck/tests/sw64/arith-int-reg.stdout.exp +new file mode 120000 +index 000000000..80c58b959 +--- /dev/null ++++ b/memcheck/tests/sw64/arith-int-reg.stdout.exp +@@ -0,0 +1 @@ ++../../../none/tests/sw64/arith-int-reg.stdout.exp +\ No newline at end of file +diff --git a/memcheck/tests/sw64/arith-int-reg.vgtest b/memcheck/tests/sw64/arith-int-reg.vgtest +new file mode 100644 +index 000000000..fb7bfade6 +--- /dev/null ++++ b/memcheck/tests/sw64/arith-int-reg.vgtest +@@ -0,0 +1,3 @@ ++prereq: test -e ../../../none/tests/sw64/arith-int-reg ++prog: ../../../none/tests/sw64/arith-int-reg ++vgopts: -q +diff --git a/memcheck/tests/sw64/branch.stderr.exp b/memcheck/tests/sw64/branch.stderr.exp +new file mode 120000 +index 000000000..e1a9340ef +--- /dev/null ++++ b/memcheck/tests/sw64/branch.stderr.exp +@@ -0,0 +1 @@ ++../../../none/tests/sw64/branch.stderr.exp +\ No newline at end of file +diff --git a/memcheck/tests/sw64/branch.stdout.exp b/memcheck/tests/sw64/branch.stdout.exp +new file mode 120000 +index 000000000..f533c62f6 +--- /dev/null ++++ b/memcheck/tests/sw64/branch.stdout.exp +@@ -0,0 +1 @@ ++../../../none/tests/sw64/branch.stdout.exp +\ No newline at end of file +diff --git a/memcheck/tests/sw64/branch.vgtest b/memcheck/tests/sw64/branch.vgtest +new file mode 100644 +index 000000000..c4d9b51b4 +--- /dev/null ++++ b/memcheck/tests/sw64/branch.vgtest +@@ -0,0 +1,3 @@ ++prereq: test -e ../../../none/tests/sw64/branch ++prog: ../../../none/tests/sw64/branch ++vgopts: -q +diff --git a/memcheck/tests/sw64/filter_stderr b/memcheck/tests/sw64/filter_stderr +new file mode 100755 +index 000000000..a778e971f +--- /dev/null ++++ b/memcheck/tests/sw64/filter_stderr +@@ -0,0 +1,3 @@ ++#! /bin/sh ++ ++../filter_stderr "$@" +diff --git a/memcheck/tests/sw64/loadstore-fp.stderr.exp b/memcheck/tests/sw64/loadstore-fp.stderr.exp +new file mode 120000 +index 000000000..3b98563c9 +--- /dev/null ++++ b/memcheck/tests/sw64/loadstore-fp.stderr.exp +@@ -0,0 +1 @@ ++../../../none/tests/sw64/loadstore-fp.stderr.exp +\ No newline at end of file +diff --git a/memcheck/tests/sw64/loadstore-fp.stdout.exp b/memcheck/tests/sw64/loadstore-fp.stdout.exp +new file mode 120000 +index 000000000..2edd1ff27 +--- /dev/null ++++ b/memcheck/tests/sw64/loadstore-fp.stdout.exp +@@ -0,0 +1 @@ ++../../../none/tests/sw64/loadstore-fp.stdout.exp +\ No newline at end of file +diff --git a/memcheck/tests/sw64/loadstore-fp.vgtest b/memcheck/tests/sw64/loadstore-fp.vgtest +new file mode 100644 +index 000000000..436c8fb9c +--- /dev/null ++++ b/memcheck/tests/sw64/loadstore-fp.vgtest +@@ -0,0 +1,3 @@ ++prereq: test -e ../../../none/tests/sw64/loadstore-fp ++prog: ../../../none/tests/sw64/loadstore-fp ++vgopts: -q +diff --git a/memcheck/tests/sw64/stack.stderr.exp b/memcheck/tests/sw64/stack.stderr.exp +new file mode 120000 +index 000000000..ec63fe029 +--- /dev/null ++++ b/memcheck/tests/sw64/stack.stderr.exp +@@ -0,0 +1 @@ ++../../../none/tests/sw64/stack.stderr.exp +\ No newline at end of file +diff --git a/memcheck/tests/sw64/stack.stdout.exp b/memcheck/tests/sw64/stack.stdout.exp +new file mode 120000 +index 000000000..66be6236f +--- /dev/null ++++ b/memcheck/tests/sw64/stack.stdout.exp +@@ -0,0 +1 @@ ++../../../none/tests/sw64/stack.stdout.exp +\ No newline at end of file +diff --git a/memcheck/tests/sw64/stack.vgtest b/memcheck/tests/sw64/stack.vgtest +new file mode 100644 +index 000000000..d361c251e +--- /dev/null ++++ b/memcheck/tests/sw64/stack.vgtest +@@ -0,0 +1,3 @@ ++prereq: test -e ../../../none/tests/sw64/stack ++prog: ../../../none/tests/sw64/stack ++vgopts: -q +diff --git a/memcheck/tests/unit_libcbase.c b/memcheck/tests/unit_libcbase.c +index 0ce65be26..d93a6a542 100644 +--- a/memcheck/tests/unit_libcbase.c ++++ b/memcheck/tests/unit_libcbase.c +@@ -11,7 +11,8 @@ + + /* On PPC, MIPS and ARM64 Linux VKI_PAGE_SIZE is a variable, not a macro. */ + #if defined(VGP_ppc32_linux) || defined(VGP_ppc64be_linux) \ +- || defined(VGP_ppc64le_linux) ++ || defined(VGP_ppc64le_linux) | defined(VGP_sw64_linux) ++// TODO(Shaohua): PAGE_SIZE = 8192 on sw64 + unsigned long VKI_PAGE_SIZE = 1UL << 12; + #elif defined(VGP_arm64_linux) + unsigned long VKI_PAGE_SIZE = 1UL << 16; +diff --git a/memcheck/tests/vbit-test/irops.c b/memcheck/tests/vbit-test/irops.c +index 24f258bf0..d7768feec 100644 +--- a/memcheck/tests/vbit-test/irops.c ++++ b/memcheck/tests/vbit-test/irops.c +@@ -49,16 +49,16 @@ static irop_t irops[] = { + { DEFOP(Iop_Or1, UNDEF_OR), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, + { DEFOP(Iop_Or8, UNDEF_OR), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, + { DEFOP(Iop_Or16, UNDEF_OR), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, +- { DEFOP(Iop_Or32, UNDEF_OR), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, ++ { DEFOP(Iop_Or32, UNDEF_OR), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1, .sw64 = 1 }, + { DEFOP(Iop_Or64, UNDEF_OR), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 0, .mips64 = 1 }, // mips asserts + { DEFOP(Iop_And1, UNDEF_AND), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, + { DEFOP(Iop_And8, UNDEF_AND), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, + { DEFOP(Iop_And16, UNDEF_AND), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, + { DEFOP(Iop_And32, UNDEF_AND), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, +- { DEFOP(Iop_And64, UNDEF_AND), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, ++ { DEFOP(Iop_And64, UNDEF_AND), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1, .sw64 = 1 }, + { DEFOP(Iop_Xor8, UNDEF_SAME), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, + { DEFOP(Iop_Xor16, UNDEF_SAME), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, +- { DEFOP(Iop_Xor32, UNDEF_SAME), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, ++ { DEFOP(Iop_Xor32, UNDEF_SAME), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 , .sw64 = 1 }, + { DEFOP(Iop_Xor64, UNDEF_SAME), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, + { DEFOP(Iop_Shl8, UNDEF_SHL), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 = 1, .mips32 = 0, .mips64 = 0 }, + { DEFOP(Iop_Shl16, UNDEF_SHL), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 = 1, .mips32 = 0, .mips64 = 0 }, +@@ -74,12 +74,12 @@ static irop_t irops[] = { + { DEFOP(Iop_Sar64, UNDEF_SAR), .s390x = 1, .amd64 = 1, .x86 = 0, .arm = 1, .ppc64 = 1, .ppc32 = 0, .mips32 = 0, .mips64 = 1 }, // ppc32 asserts + { DEFOP(Iop_CmpEQ8, UNDEF_CMP_EQ_NE), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 = 0, .mips64 = 0 }, + { DEFOP(Iop_CmpEQ16, UNDEF_CMP_EQ_NE), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 = 1, .mips64 = 1 }, +- { DEFOP(Iop_CmpEQ32, UNDEF_CMP_EQ_NE), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, +- { DEFOP(Iop_CmpEQ64, UNDEF_CMP_EQ_NE), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 = 0, .mips32 = 0, .mips64 = 1 }, // ppc32, mips assert ++ { DEFOP(Iop_CmpEQ32, UNDEF_CMP_EQ_NE), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1, .sw64 = 1 }, ++ { DEFOP(Iop_CmpEQ64, UNDEF_CMP_EQ_NE), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 = 0, .mips32 = 0, .mips64 = 1 , .sw64 = 1 }, // sw64 ppc32, mips assert + { DEFOP(Iop_CmpNE8, UNDEF_CMP_EQ_NE), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 = 0, .mips64 = 0 }, + { DEFOP(Iop_CmpNE16, UNDEF_CMP_EQ_NE), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 = 0, .mips64 = 0 }, +- { DEFOP(Iop_CmpNE32, UNDEF_CMP_EQ_NE), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, +- { DEFOP(Iop_CmpNE64, UNDEF_CMP_EQ_NE), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 = 0, .mips32 = 0, .mips64 = 1 }, // ppc32, mips assert ++ { DEFOP(Iop_CmpNE32, UNDEF_CMP_EQ_NE), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1, .s390x = 1 }, ++ { DEFOP(Iop_CmpNE64, UNDEF_CMP_EQ_NE), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 = 0, .mips32 = 0, .mips64 = 1, .sw64 = 1 } , // sw64 ppc32, mips assert + { DEFOP(Iop_Not1, UNDEF_SAME), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, + { DEFOP(Iop_Not8, UNDEF_SAME), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, + { DEFOP(Iop_Not16, UNDEF_SAME), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, +@@ -119,13 +119,20 @@ static irop_t irops[] = { + { DEFOP(Iop_PopCount64, UNDEF_ALL), .s390x = 0, .amd64 = 0, .x86 = 0, .arm = 0, .ppc64 = 1, .ppc32 = 0, .mips32 =0, .mips64 = 0 }, + { DEFOP(Iop_PopCount32, UNDEF_ALL), .s390x = 0, .amd64 = 0, .x86 = 0, .arm = 0, .ppc64 = 1, .ppc32 = 1, .mips32 =0, .mips64 = 0 }, + { DEFOP(Iop_CmpLT32S, UNDEF_ALL), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 =1, .mips64 = 1 }, +- { DEFOP(Iop_CmpLT64S, UNDEF_ALL), .s390x = 1, .amd64 = 1, .x86 = 0, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 =0, .mips64 = 1 }, // ppc, mips assert ++ { DEFOP(Iop_CmpLT64S, UNDEF_ALL), .s390x = 1, .amd64 = 1, .x86 = 0, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 =0, .mips64 = 1, .sw64 = 1 }, // sw64 ppc, mips assert + { DEFOP(Iop_CmpLE32S, UNDEF_ALL), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 =1, .mips64 = 1 }, +- { DEFOP(Iop_CmpLE64S, UNDEF_ALL), .s390x = 1, .amd64 = 1, .x86 = 0, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 =0, .mips64 = 1 }, // ppc, mips assert ++ { DEFOP(Iop_CmpLE64S, UNDEF_ALL), .s390x = 1, .amd64 = 1, .x86 = 0, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 =0, .mips64 = 1, .sw64 = 1 }, // sw64 ppc, mips assert + { DEFOP(Iop_CmpLT32U, UNDEF_ALL), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 =1, .mips64 = 1 }, +- { DEFOP(Iop_CmpLT64U, UNDEF_ALL), .s390x = 1, .amd64 = 1, .x86 = 0, .arm = 0, .ppc64 = 1, .ppc32 = 0, .mips32 =0, .mips64 = 1}, // ppc32, mips assert ++ { DEFOP(Iop_CmpLT64U, UNDEF_ALL), .s390x = 1, .amd64 = 1, .x86 = 0, .arm = 0, .ppc64 = 1, .ppc32 = 0, .mips32 =0, .mips64 = 1 }, // ppc32, mips assert + { DEFOP(Iop_CmpLE32U, UNDEF_ALL), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 =1, .mips64 = 1 }, + { DEFOP(Iop_CmpLE64U, UNDEF_ALL), .s390x = 1, .amd64 = 1, .x86 = 0, .arm = 0, .ppc64 = 1, .ppc32 = 0, .mips32 =0, .mips64 = 0 }, // ppc32 asserts ++ { DEFOP(Iop_CmpFUN64, UNDEF_ALL), .s390x = 0, .amd64 = 0, .x86 = 0, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 =0, .mips64 = 0, .sw64 = 1 }, // sw64 asserts ++ { DEFOP(Iop_CmpFLT64, UNDEF_ALL), .s390x = 0, .amd64 = 0, .x86 = 0, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 =0, .mips64 = 0, .sw64 = 1 }, ++ { DEFOP(Iop_CmpFLE64, UNDEF_ALL), .s390x = 0, .amd64 = 0, .x86 = 0, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 =0, .mips64 = 0, .sw64 = 1 }, ++ { DEFOP(Iop_CmpFGT64, UNDEF_ALL), .s390x = 0, .amd64 = 0, .x86 = 0, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 =0, .mips64 = 0, .sw64 = 1 }, ++ { DEFOP(Iop_CmpFGE64, UNDEF_ALL), .s390x = 0, .amd64 = 0, .x86 = 0, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 =0, .mips64 = 0, .sw64 = 1 }, ++ { DEFOP(Iop_CmpFEQ64, UNDEF_ALL), .s390x = 0, .amd64 = 0, .x86 = 0, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 =0, .mips64 = 0, .sw64 = 1 }, ++ { DEFOP(Iop_CmpFNE64, UNDEF_ALL), .s390x = 0, .amd64 = 0, .x86 = 0, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 =0, .mips64 = 0, .sw64 = 1 }, + { DEFOP(Iop_CmpNEZ8, UNDEF_ALL), }, // not supported by mc_translate + { DEFOP(Iop_CmpNEZ16, UNDEF_ALL), }, // not supported by mc_translate + { DEFOP(Iop_CmpNEZ32, UNDEF_ALL), }, // not supported by mc_translate +@@ -218,7 +225,7 @@ static irop_t irops[] = { + { DEFOP(Iop_SqrtF64, UNDEF_ALL), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 0, .mips64 = 1 }, // mips asserts + { DEFOP(Iop_SqrtF32, UNDEF_ALL), .s390x = 1, .amd64 = 0, .x86 = 0, .arm = 1, .ppc64 = 0, .ppc32 = 0, .mips32 = 1, .mips64 = 1 }, + { DEFOP(Iop_SqrtF16, UNDEF_ALL), .s390x = 0, .amd64 = 0, .x86 = 0, .arm = 0, .arm64 = 1, .ppc64 = 0, .ppc32 = 0, .mips32 = 0, .mips64 = 0 }, +- { DEFOP(Iop_CmpF64, UNDEF_ALL), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1 }, ++ { DEFOP(Iop_CmpF64, UNDEF_ALL), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 = 1, .mips32 = 1, .mips64 = 1, .sw64 = 1 }, + { DEFOP(Iop_CmpF32, UNDEF_ALL), .s390x = 1, .amd64 = 0, .x86 = 0, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 = 0, .mips64 = 0 }, // mips asserts + { DEFOP(Iop_CmpF16, UNDEF_ALL), .s390x = 0, .amd64 = 0, .x86 = 0, .arm = 0, .arm64 = 1, .ppc64 = 0, .ppc32 = 0, .mips32 = 0, .mips64 = 0 }, + { DEFOP(Iop_CmpF128, UNDEF_ALL), .s390x = 1, .amd64 = 0, .x86 = 0, .arm = 0, .ppc64 = 0, .ppc32 = 0, .mips32 = 0, .mips64 = 0 }, +diff --git a/memcheck/tests/vbit-test/vtest.h b/memcheck/tests/vbit-test/vtest.h +index c724f4142..81a43b1f5 100644 +--- a/memcheck/tests/vbit-test/vtest.h ++++ b/memcheck/tests/vbit-test/vtest.h +@@ -188,6 +188,7 @@ typedef struct { + unsigned x86 : 1; + unsigned mips32 : 1; + unsigned mips64 : 1; ++ unsigned sw64 : 1; + } irop_t; + + +diff --git a/none/tests/Makefile.am b/none/tests/Makefile.am +index 253d4a140..18a0ab721 100644 +--- a/none/tests/Makefile.am ++++ b/none/tests/Makefile.am +@@ -35,7 +35,9 @@ endif + if VGCONF_ARCHS_INCLUDE_NANOMIPS + SUBDIRS += nanomips + endif +- ++if VGCONF_ARCHS_INCLUDE_SW64 ++SUBDIRS += sw64 ++endif + + # OS-specific tests + if VGCONF_OS_IS_LINUX +@@ -73,8 +75,12 @@ endif + if VGCONF_PLATFORMS_INCLUDE_X86_FREEBSD + SUBDIRS += x86-freebsd + endif ++if VGCONF_PLATFORMS_INCLUDE_SW64_LINUX ++SUBDIRS += sw64-linux ++endif + + DIST_SUBDIRS = x86 amd64 ppc32 ppc64 arm arm64 s390x mips32 mips64 nanomips \ ++ sw64 sw64-linux \ + linux darwin solaris freebsd amd64-linux x86-linux amd64-darwin \ + x86-darwin amd64-solaris x86-solaris x86-freebsd scripts . + +@@ -198,6 +204,7 @@ EXTRA_DIST = \ + require-text-symbol-2.stderr.exp-libcso1 \ + require-text-symbol-2.stderr.exp-libcso6 \ + require-text-symbol-2.stderr.exp-freebsd \ ++ require-text-symbol-2.stderr.exp-sw64 \ + res_search.stderr.exp res_search.stdout.exp res_search.vgtest \ + resolv.stderr.exp resolv.stdout.exp resolv.vgtest \ + rlimit_nofile.stderr.exp rlimit_nofile.stdout.exp rlimit_nofile.vgtest \ +@@ -295,8 +302,11 @@ if HAVE_ANSI + check_PROGRAMS += ansi + endif + +-if BUILD_IFUNC_TESTS +- check_PROGRAMS += ifunc ++# Disable ifunc on sw64, as glibc-2.28 does not support that attr. ++if !VGCONF_ARCHS_INCLUDE_SW64 ++ if BUILD_IFUNC_TESTS ++ check_PROGRAMS += ifunc ++ endif + endif + + AM_CFLAGS += $(AM_FLAG_M3264_PRI) +diff --git a/none/tests/allexec_prepare_prereq b/none/tests/allexec_prepare_prereq +index a541f4299..ad016f22b 100755 +--- a/none/tests/allexec_prepare_prereq ++++ b/none/tests/allexec_prepare_prereq +@@ -34,5 +34,6 @@ pair s390x_unexisting_in_32bits s390x + pair arm arm64 + pair mips32 mips64 + pair nanomips nanoMIPS_unexisting_in_64bits ++pair sw64_unexisting_in_32bits sw64 + + exit 0 +diff --git a/none/tests/cmdline2.stdout.exp b/none/tests/cmdline2.stdout.exp +index 241d33afa..7e0fdb4fd 100644 +--- a/none/tests/cmdline2.stdout.exp ++++ b/none/tests/cmdline2.stdout.exp +@@ -167,6 +167,10 @@ usage: valgrind [options] prog-and-args + --stats=no|yes show tool and core statistics [no] + --sanity-level= level of sanity checking to do [1] + --trace-flags= show generated code? (X = 0|1) [00000000] ++ --trace-reg= show register value? (X = 0|1) [000] ++ 001 ....... show control registers ++ 010 ....... show interger registers ++ 100 ....... show float-point registers + --profile-flags= ditto, but for profiling (X = 0|1) [00000000] + --profile-interval= show profile every event checks + [0, meaning only at the end of the run] +@@ -180,6 +184,7 @@ usage: valgrind [options] prog-and-args + --debug-dump=syms mimic /usr/bin/readelf --syms + --debug-dump=line mimic /usr/bin/readelf --debug-dump=line + --debug-dump=frames mimic /usr/bin/readelf --debug-dump=frames ++ --dump-expansion-ratio=no|yes show instruction expansion ratio? [no] + --trace-redir=no|yes show redirection details? [no] + --trace-sched=no|yes show thread scheduler details? [no] + --profile-heap=no|yes profile Valgrind's own space use +diff --git a/none/tests/libvex_test.c b/none/tests/libvex_test.c +index 5b57a4c2e..b3a38536e 100644 +--- a/none/tests/libvex_test.c ++++ b/none/tests/libvex_test.c +@@ -76,6 +76,8 @@ __attribute__((noinline)) static void get_guest_arch(VexArch *ga) + *ga = VexArchMIPS64; + #elif defined(VGA_nanomips) + *ga = VexArchNANOMIPS; ++#elif defined(VGA_sw64) ++ *ga = VexArchSW64; + #else + missing arch; + #endif +@@ -113,6 +115,7 @@ static VexEndness arch_endness (VexArch va) { + else + return VexEndnessBE; + } ++ case VexArchSW64: return VexEndnessLE; + default: failure_exit(); + } + } +@@ -139,6 +142,7 @@ static UInt arch_hwcaps (VexArch va) { + case VexArchMIPS64: return VEX_PRID_COMP_MIPS | VEX_MIPS_HOST_FR; + #endif + case VexArchNANOMIPS: return 0; ++ case VexArchSW64: return VEX_SW64_CORE3; + default: failure_exit(); + } + } +@@ -156,6 +160,7 @@ static Bool mode64 (VexArch va) { + case VexArchMIPS32: return False; + case VexArchMIPS64: return True; + case VexArchNANOMIPS: return False; ++ case VexArchSW64: return True; + default: failure_exit(); + } + } +diff --git a/none/tests/pause.c b/none/tests/pause.c +new file mode 100644 +index 000000000..5276aa651 +--- /dev/null ++++ b/none/tests/pause.c +@@ -0,0 +1,9 @@ ++ ++#include ++#include ++ ++int main() { ++ printf("Will pause()\n"); ++ pause(); ++ return 0; ++} +diff --git a/none/tests/require-text-symbol-2.stderr.exp-sw64 b/none/tests/require-text-symbol-2.stderr.exp-sw64 +new file mode 100644 +index 000000000..18aaa22d7 +--- /dev/null ++++ b/none/tests/require-text-symbol-2.stderr.exp-sw64 +@@ -0,0 +1,9 @@ ++ ++valgrind: Fatal error at when loading library with soname ++valgrind: libc.so.6.1 ++valgrind: Cannot find any text symbol with a name that matches the pattern ++valgrind: doesntexist ++valgrind: as required by a --require-text-symbol= specification. ++ ++valgrind: Cannot continue -- exiting now. ++ +diff --git a/none/tests/simple-func b/none/tests/simple-func +new file mode 100755 +index 0000000000000000000000000000000000000000..276693409c08829f679f81e4330011c9f44e264c +GIT binary patch +literal 9048 +zcmeHN&ubG=5T1=~Q^ndcjiwBJ+3hL)?UpBu1O|(mRx%V+mEqq(y)WIi8|fSv%KdU +z$70>mjC?=U&}!N5X*s^mWW26V0F0DN_V_3Z=Zt%zoqvbwmvEiI)qJ!AZ{9C|{x!ON +zx%U0(xlh}p=Nn(P7EW}bB#8o|fG8jehytR3C?E=m0-}H@APR^Ar=Y;jgO5kUXJ1d@ +zCb>cs5Cud5Q9u+B1w;W+Kok%KL;+Di6c7deR|V*en#_6q1e`zp>i%7E $@.lst ++ ++clean: ++ rm -rf \ ++ *.o \ ++ *.lst \ ++ $(targets) +diff --git a/none/tests/sw64-insn/README.md b/none/tests/sw64-insn/README.md +new file mode 100644 +index 000000000..327e74b36 +--- /dev/null ++++ b/none/tests/sw64-insn/README.md +@@ -0,0 +1,5 @@ ++ ++# How to ++First build all tests with `make`. ++ ++Then run `./test-all.sh` in current directory. +diff --git a/none/tests/sw64-insn/addl-48.S b/none/tests/sw64-insn/addl-48.S +new file mode 100644 +index 000000000..4c7855eae +--- /dev/null ++++ b/none/tests/sw64-insn/addl-48.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ addl $17, $18, $16 ++ subl $16, 3, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/addli-119.S b/none/tests/sw64-insn/addli-119.S +new file mode 100644 +index 000000000..372b65721 +--- /dev/null ++++ b/none/tests/sw64-insn/addli-119.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ addl $17, 1, $16 ++ subl $16, 3, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/addw-42.S b/none/tests/sw64-insn/addw-42.S +new file mode 100644 +index 000000000..30287b2b6 +--- /dev/null ++++ b/none/tests/sw64-insn/addw-42.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ addw $17, $18, $16 ++ subw $16, 3, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/addwi-113.S b/none/tests/sw64-insn/addwi-113.S +new file mode 100644 +index 000000000..64c0f8d63 +--- /dev/null ++++ b/none/tests/sw64-insn/addwi-113.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ addw $17, 1, $16 ++ subw $16, 3, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/and-62.S b/none/tests/sw64-insn/and-62.S +new file mode 100644 +index 000000000..4419e1636 +--- /dev/null ++++ b/none/tests/sw64-insn/and-62.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ and $17, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/andi-133.S b/none/tests/sw64-insn/andi-133.S +new file mode 100644 +index 000000000..79c192ada +--- /dev/null ++++ b/none/tests/sw64-insn/andi-133.S +@@ -0,0 +1,10 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ and $17, 1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/basic-insn-list b/none/tests/sw64-insn/basic-insn-list +new file mode 100644 +index 000000000..1a2fdef92 +--- /dev/null ++++ b/none/tests/sw64-insn/basic-insn-list +@@ -0,0 +1,253 @@ ++sys_call_b-1 ++sys_call-2 ++call-3 ++ret-4 ++jmp-5 ++br-6 ++bsr-7 ++memb-8 ++imemb-9 ++rtc-10 ++rcid-11 ++halt-12 ++rd_f-13 ++wr_f-14 ++rtid-15 ++pri_rcsr-16 ++pri_wcsr-17 ++pri_ret-18 ++lldw-19 ++lldl-20 ++ldw_inc-21 ++ldl_inc-22 ++ldw_dec-23 ++ldl_dec-24 ++ldw_set-25 ++ldl_set-26 ++lstw-27 ++lstl-28 ++ldw_nc-29 ++ldl_nc-30 ++ldd_nc-31 ++stw_nc-32 ++stl_nc-33 ++std_nc-34 ++addw-42 ++subw-43 ++s4addw-44 ++s4subw-45 ++s8addw-46 ++s8subw-47 ++addl-48 ++subl-49 ++s4addl-50 ++s4subl-51 ++s8addl-52 ++s8subl-53 ++mulw-54 ++mull-55 ++umulh-56 ++cmpeq-57 ++cmplt-58 ++cmple-59 ++cmpult-60 ++cmpule-61 ++and-62 ++bic-63 ++bis-64 ++ornot-65 ++xor-66 ++eqv-67 ++inslb-68 ++inslh-69 ++inslw-70 ++insll-71 ++inshb-72 ++inshh-73 ++inshw-74 ++inshl-75 ++sll-76 ++srl-77 ++sra-78 ++extlb-79 ++extlh-80 ++extlw-81 ++extll-82 ++exthb-83 ++exthh-84 ++exthw-85 ++exthl-86 ++ctpop-87 ++ctlz-88 ++cttz-89 ++masklb-90 ++masklh-91 ++masklw-92 ++maskll-93 ++maskhb-94 ++maskhh-95 ++maskhw-96 ++maskhl-97 ++zap-98 ++zapnot-99 ++sextb-100 ++sexth-101 ++cmpgeb-102 ++fimovs-103 ++fimovd-104 ++seleq-105 ++selge-106 ++selgt-107 ++selle-108 ++sellt-109 ++selne-110 ++sellbc-111 ++sellbs-112 ++addwi-113 ++subwi-114 ++s4addwi-115 ++s4subwi-116 ++s8addwi-117 ++s8subwi-118 ++addli-119 ++subli-120 ++s4addli-121 ++s4subli-122 ++s8addli-123 ++s8subli-124 ++mulwi-125 ++mulli-126 ++umulhi-127 ++cmpeqi-128 ++cmplti-129 ++cmplei-130 ++cmpulti-131 ++cmpulei-132 ++andi-133 ++bici-134 ++bisi-135 ++ornoti-136 ++xori-137 ++eqvi-138 ++inslbi-139 ++inslhi-140 ++inslwi-141 ++inslli-142 ++inshbi-143 ++inshhi-144 ++inshwi-145 ++inshli-146 ++slli-147 ++srli-148 ++srai-149 ++extlbi-150 ++extlhi-151 ++extlwi-152 ++extlli-153 ++exthbi-154 ++exthhi-155 ++exthwi-156 ++exthli-157 ++masklbi-158 ++masklhi-159 ++masklwi-160 ++masklli-161 ++maskhbi-162 ++maskhhi-163 ++maskhwi-164 ++maskhli-165 ++zapi-166 ++zapnoti-167 ++sextbi-168 ++sexthi-169 ++cmpgebi-170 ++seleqi-171 ++selgei-172 ++selgti-173 ++sellei-174 ++sellti-175 ++selnei-176 ++sellbci-177 ++sellbsi-178 ++fadds-180 ++faddd-181 ++fsubs-182 ++fsubd-183 ++fmuls-184 ++fmuld-185 ++fdivs-186 ++fdivd-187 ++fsqrts-188 ++fsqrtd-189 ++fcmpeq-190 ++fcmple-191 ++fcmplt-192 ++fcmpun-193 ++fcvtsd-194 ++fcvtds-195 ++fcvtdl_g-196 ++fcvtdl_p-197 ++fcvtdl_z-198 ++fcvtdl_n-199 ++fcvtdl-200 ++fcvtwl-201 ++fcvtlw-202 ++fcvtls-203 ++fcvtld-204 ++fcpys-205 ++fcpyse-206 ++fcpysn-207 ++ifmovs-208 ++ifmovd-209 ++rfpcr-210 ++wfpcr-211 ++setfpec0-212 ++setfpec1-213 ++setfpec2-214 ++setfpec3-215 ++fmas-216 ++fmad-217 ++fmss-218 ++fmsd-219 ++fnmas-220 ++fnmad-221 ++fnmss-222 ++fnmsd-223 ++fseleq-224 ++fselne-225 ++fsellt-226 ++fselle-227 ++fselgt-228 ++fselge-229 ++ldbu-336 ++ldhu-337 ++ldw-338 ++ldl-339 ++ldl_u-340 ++pri_ld-341 ++flds-342 ++fldd-343 ++stb-344 ++sth-345 ++stw-346 ++stl-347 ++stl_u-348 ++pri_st-349 ++fsts-350 ++fstd-351 ++beq-352 ++bne-353 ++blt-354 ++ble-355 ++bgt-356 ++bge-357 ++blbc-358 ++blbs-359 ++fbeq-360 ++fbne-361 ++fblt-362 ++fble-363 ++fbgt-364 ++fbge-365 ++ldi-366 ++ldih-367 +diff --git a/none/tests/sw64-insn/beq-352.S b/none/tests/sw64-insn/beq-352.S +new file mode 100644 +index 000000000..d70369101 +--- /dev/null ++++ b/none/tests/sw64-insn/beq-352.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ beq $17, exit ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/bge-357.S b/none/tests/sw64-insn/bge-357.S +new file mode 100644 +index 000000000..aa6d20c1f +--- /dev/null ++++ b/none/tests/sw64-insn/bge-357.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, -2 ++ bge $17, exit ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/bgt-356.S b/none/tests/sw64-insn/bgt-356.S +new file mode 100644 +index 000000000..9fa0e6a98 +--- /dev/null ++++ b/none/tests/sw64-insn/bgt-356.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, -2 ++ bgt $17, exit ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/bic-63.S b/none/tests/sw64-insn/bic-63.S +new file mode 100644 +index 000000000..fc6be15e1 +--- /dev/null ++++ b/none/tests/sw64-insn/bic-63.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ bic $17, $18, $16 ++ subl $16, 2 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/bici-134.S b/none/tests/sw64-insn/bici-134.S +new file mode 100644 +index 000000000..131f46882 +--- /dev/null ++++ b/none/tests/sw64-insn/bici-134.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ bic $17, 1, $16 ++ subl $16, 2 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/bis-64.S b/none/tests/sw64-insn/bis-64.S +new file mode 100644 +index 000000000..e4c7ff379 +--- /dev/null ++++ b/none/tests/sw64-insn/bis-64.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ bis $17, $18, $16 ++ subl $16, 3 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/bisi-135.S b/none/tests/sw64-insn/bisi-135.S +new file mode 100644 +index 000000000..65f299879 +--- /dev/null ++++ b/none/tests/sw64-insn/bisi-135.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ bis $17, 1, $16 ++ subl $16, 3 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/blbc-358.S b/none/tests/sw64-insn/blbc-358.S +new file mode 100644 +index 000000000..0540c7e10 +--- /dev/null ++++ b/none/tests/sw64-insn/blbc-358.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0b1001 ++ blbc $17, exit ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/blbs-359.S b/none/tests/sw64-insn/blbs-359.S +new file mode 100644 +index 000000000..0540c7e10 +--- /dev/null ++++ b/none/tests/sw64-insn/blbs-359.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0b1001 ++ blbc $17, exit ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/ble-355.S b/none/tests/sw64-insn/ble-355.S +new file mode 100644 +index 000000000..fa4293382 +--- /dev/null ++++ b/none/tests/sw64-insn/ble-355.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ble $17, exit ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/blt-354.S b/none/tests/sw64-insn/blt-354.S +new file mode 100644 +index 000000000..3691ed586 +--- /dev/null ++++ b/none/tests/sw64-insn/blt-354.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ blt $17, exit ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/bne-353.S b/none/tests/sw64-insn/bne-353.S +new file mode 100644 +index 000000000..601b65caa +--- /dev/null ++++ b/none/tests/sw64-insn/bne-353.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0 ++ bne $17, exit ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/br-6.S b/none/tests/sw64-insn/br-6.S +new file mode 100644 +index 000000000..407b74bc0 +--- /dev/null ++++ b/none/tests/sw64-insn/br-6.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $16, 0 ++ br exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/bsr-7.S b/none/tests/sw64-insn/bsr-7.S +new file mode 100644 +index 000000000..28abeb3aa +--- /dev/null ++++ b/none/tests/sw64-insn/bsr-7.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $16, 0 ++ bsr $26, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/call-3.S b/none/tests/sw64-insn/call-3.S +new file mode 100644 +index 000000000..f0fb2cc7b +--- /dev/null ++++ b/none/tests/sw64-insn/call-3.S +@@ -0,0 +1,16 @@ ++ ++ .global _start ++_start: ++ br $29, 1f ++1: ldgp $29, 0($29) ++ subl $30, 16, $30 ++ mov 0, $15 ++ ++ ldi $16, 0 ++ call $26, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/cmpeq-57.S b/none/tests/sw64-insn/cmpeq-57.S +new file mode 100644 +index 000000000..aca76e65a +--- /dev/null ++++ b/none/tests/sw64-insn/cmpeq-57.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ ldi $18, 42 ++ cmpeq $17, $18, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/cmpeqi-128.S b/none/tests/sw64-insn/cmpeqi-128.S +new file mode 100644 +index 000000000..7cfe65fd4 +--- /dev/null ++++ b/none/tests/sw64-insn/cmpeqi-128.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ cmpeq $17, 42, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/cmpgeb-102.S b/none/tests/sw64-insn/cmpgeb-102.S +new file mode 100644 +index 000000000..e8f5c7caa +--- /dev/null ++++ b/none/tests/sw64-insn/cmpgeb-102.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1f2 ++ ldi $18, 0xf0f2f1 ++ cmpgeb $17, $18, $16 ++ subl $16, 0xfd, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/cmpgebi-170.S b/none/tests/sw64-insn/cmpgebi-170.S +new file mode 100644 +index 000000000..dbe5c2fe2 +--- /dev/null ++++ b/none/tests/sw64-insn/cmpgebi-170.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0 ++ cmpgeb $17, 0xf0, $16 ++ subl $16, 0xff, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/cmple-59.S b/none/tests/sw64-insn/cmple-59.S +new file mode 100644 +index 000000000..baf5d9919 +--- /dev/null ++++ b/none/tests/sw64-insn/cmple-59.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ ldi $18, 42 ++ cmple $17, $18, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/cmplei-130.S b/none/tests/sw64-insn/cmplei-130.S +new file mode 100644 +index 000000000..b4851cc53 +--- /dev/null ++++ b/none/tests/sw64-insn/cmplei-130.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ cmple $17, 42, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/cmplt-58.S b/none/tests/sw64-insn/cmplt-58.S +new file mode 100644 +index 000000000..3cee2bcd5 +--- /dev/null ++++ b/none/tests/sw64-insn/cmplt-58.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ ldi $18, 43 ++ cmplt $17, $18, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/cmplti-129.S b/none/tests/sw64-insn/cmplti-129.S +new file mode 100644 +index 000000000..8822945ed +--- /dev/null ++++ b/none/tests/sw64-insn/cmplti-129.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ cmplt $17, 43, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/cmpule-61.S b/none/tests/sw64-insn/cmpule-61.S +new file mode 100644 +index 000000000..5a585ae21 +--- /dev/null ++++ b/none/tests/sw64-insn/cmpule-61.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ ldi $18, 42 ++ cmpule $17, $18, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/cmpulei-132.S b/none/tests/sw64-insn/cmpulei-132.S +new file mode 100644 +index 000000000..e76779678 +--- /dev/null ++++ b/none/tests/sw64-insn/cmpulei-132.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ cmpule $17, 42, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/cmpult-60.S b/none/tests/sw64-insn/cmpult-60.S +new file mode 100644 +index 000000000..0bde80a7d +--- /dev/null ++++ b/none/tests/sw64-insn/cmpult-60.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ ldi $18, 43 ++ cmpult $17, $18, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/cmpulti-131.S b/none/tests/sw64-insn/cmpulti-131.S +new file mode 100644 +index 000000000..6d7daffb0 +--- /dev/null ++++ b/none/tests/sw64-insn/cmpulti-131.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ cmpult $17, 43, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/ctlz-88.S b/none/tests/sw64-insn/ctlz-88.S +new file mode 100644 +index 000000000..b162156d7 +--- /dev/null ++++ b/none/tests/sw64-insn/ctlz-88.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ sll $17, 16, $17 ++ ctlz $17, $16 ++ subl $16, 32, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/ctlzow-247.S b/none/tests/sw64-insn/ctlzow-247.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/ctlzow-247.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/ctpop-87.S b/none/tests/sw64-insn/ctpop-87.S +new file mode 100644 +index 000000000..3373f00d4 +--- /dev/null ++++ b/none/tests/sw64-insn/ctpop-87.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf1 ++ ctpop $17, $16 ++ subl $16, 5, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/ctpopow-246.S b/none/tests/sw64-insn/ctpopow-246.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/ctpopow-246.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/cttz-89.S b/none/tests/sw64-insn/cttz-89.S +new file mode 100644 +index 000000000..90e50981f +--- /dev/null ++++ b/none/tests/sw64-insn/cttz-89.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f0 ++ cttz $17, $16 ++ subl $16, 4, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/eqv-67.S b/none/tests/sw64-insn/eqv-67.S +new file mode 100644 +index 000000000..f2860b8ee +--- /dev/null ++++ b/none/tests/sw64-insn/eqv-67.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ eqv $17, $18, $16 ++ addl $16, 4 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/eqvi-138.S b/none/tests/sw64-insn/eqvi-138.S +new file mode 100644 +index 000000000..acf1dd856 +--- /dev/null ++++ b/none/tests/sw64-insn/eqvi-138.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ eqv $17, 1, $16 ++ addl $16, 4 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/exthb-83.S b/none/tests/sw64-insn/exthb-83.S +new file mode 100644 +index 000000000..7bf8f50a4 +--- /dev/null ++++ b/none/tests/sw64-insn/exthb-83.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 0 ++ exthb $17, $18, $16 ++ subl $16, 0xf1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/exthbi-154.S b/none/tests/sw64-insn/exthbi-154.S +new file mode 100644 +index 000000000..3bdf8c4d8 +--- /dev/null ++++ b/none/tests/sw64-insn/exthbi-154.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ exthb $17, 0, $16 ++ subl $16, 0xf1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/exthh-84.S b/none/tests/sw64-insn/exthh-84.S +new file mode 100644 +index 000000000..ba913b866 +--- /dev/null ++++ b/none/tests/sw64-insn/exthh-84.S +@@ -0,0 +1,13 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 0 ++ exthh $17, $18, $16 ++ srl $16, 8, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/exthhi-155.S b/none/tests/sw64-insn/exthhi-155.S +new file mode 100644 +index 000000000..6acb0b981 +--- /dev/null ++++ b/none/tests/sw64-insn/exthhi-155.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ exthh $17, 0, $16 ++ srl $16, 8, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/exthl-86.S b/none/tests/sw64-insn/exthl-86.S +new file mode 100644 +index 000000000..f8ce13164 +--- /dev/null ++++ b/none/tests/sw64-insn/exthl-86.S +@@ -0,0 +1,13 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 7 ++ exthl $17, $18, $16 ++ srl $16, 16, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/exthli-157.S b/none/tests/sw64-insn/exthli-157.S +new file mode 100644 +index 000000000..4c572a3e7 +--- /dev/null ++++ b/none/tests/sw64-insn/exthli-157.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ exthl $17, 7, $16 ++ srl $16, 16, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/exthw-85.S b/none/tests/sw64-insn/exthw-85.S +new file mode 100644 +index 000000000..e52fb45f1 +--- /dev/null ++++ b/none/tests/sw64-insn/exthw-85.S +@@ -0,0 +1,13 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 7 ++ exthw $17, $18, $16 ++ srl $16, 16, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/exthwi-156.S b/none/tests/sw64-insn/exthwi-156.S +new file mode 100644 +index 000000000..ba5beb643 +--- /dev/null ++++ b/none/tests/sw64-insn/exthwi-156.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ exthw $17, 7, $16 ++ srl $16, 16, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/extlb-79.S b/none/tests/sw64-insn/extlb-79.S +new file mode 100644 +index 000000000..050cc79cb +--- /dev/null ++++ b/none/tests/sw64-insn/extlb-79.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 1 ++ extlb $17, $18, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/extlbi-150.S b/none/tests/sw64-insn/extlbi-150.S +new file mode 100644 +index 000000000..3be682a7f +--- /dev/null ++++ b/none/tests/sw64-insn/extlbi-150.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ extlb $17, 1, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/extlh-80.S b/none/tests/sw64-insn/extlh-80.S +new file mode 100644 +index 000000000..fd17aabc0 +--- /dev/null ++++ b/none/tests/sw64-insn/extlh-80.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 1 ++ extlh $17, $18, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/extlhi-151.S b/none/tests/sw64-insn/extlhi-151.S +new file mode 100644 +index 000000000..d55c60f3c +--- /dev/null ++++ b/none/tests/sw64-insn/extlhi-151.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ extlh $17, 1, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/extll-82.S b/none/tests/sw64-insn/extll-82.S +new file mode 100644 +index 000000000..9dc29c68e +--- /dev/null ++++ b/none/tests/sw64-insn/extll-82.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 1 ++ extll $17, $18, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/extlli-153.S b/none/tests/sw64-insn/extlli-153.S +new file mode 100644 +index 000000000..99391ab1d +--- /dev/null ++++ b/none/tests/sw64-insn/extlli-153.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ extll $17, 1, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/extlw-81.S b/none/tests/sw64-insn/extlw-81.S +new file mode 100644 +index 000000000..16f45a72e +--- /dev/null ++++ b/none/tests/sw64-insn/extlw-81.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 1 ++ extlw $17, $18, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/extlwi-152.S b/none/tests/sw64-insn/extlwi-152.S +new file mode 100644 +index 000000000..e5d038eba +--- /dev/null ++++ b/none/tests/sw64-insn/extlwi-152.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ extlw $17, 1, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/faddd-181.S b/none/tests/sw64-insn/faddd-181.S +new file mode 100644 +index 000000000..ffc0111f3 +--- /dev/null ++++ b/none/tests/sw64-insn/faddd-181.S +@@ -0,0 +1,15 @@ ++ .text ++ .global _start ++_start: ++ ldi $17, 42 ++ ifmovd $17, $f17 ++ fcvtld $f17, $f18 ++ faddd $f18, $f18, $f17 ++ fcvtdl $f17, $f16 ++ fimovd $f16, $16 ++ cmpeq $16, 84, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fadds-180.S b/none/tests/sw64-insn/fadds-180.S +new file mode 100644 +index 000000000..f9a44f1fe +--- /dev/null ++++ b/none/tests/sw64-insn/fadds-180.S +@@ -0,0 +1,16 @@ ++ .text ++ .global _start ++_start: ++ ldi $17, 1078523331 /* 3.14 */ ++ ldi $18, 1076719780 /* 2.71 */ ++ ldi $19, 1086010164 /* 5.85 */ ++ ifmovs $17, $f17 ++ ifmovs $18, $f18 ++ fadds $f17, $f18, $f16 ++ fimovs $f16, $16 ++ cmpeq $16, $19, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fbeq-360.S b/none/tests/sw64-insn/fbeq-360.S +new file mode 100644 +index 000000000..1e19ead6f +--- /dev/null ++++ b/none/tests/sw64-insn/fbeq-360.S +@@ -0,0 +1,14 @@ ++ .text ++ .global _start ++_start: ++ ldi $17, 42 ++ ifmovd $17, $f17 ++ fcvtld $f17, $f18 ++ fsubd $f18, $f18, $f17 ++ ldi $16, 0 ++ fbeq $f17, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fbge-365.S b/none/tests/sw64-insn/fbge-365.S +new file mode 100644 +index 000000000..4ca2b59ed +--- /dev/null ++++ b/none/tests/sw64-insn/fbge-365.S +@@ -0,0 +1,49 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539419327280001 = 0x4023 e86b 13b6 b318 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ fsubd $f17, $f18, $f21 ++ ldi $16, 0 ++ fbge $f21, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fbgt-364.S b/none/tests/sw64-insn/fbgt-364.S +new file mode 100644 +index 000000000..3fd4d4a79 +--- /dev/null ++++ b/none/tests/sw64-insn/fbgt-364.S +@@ -0,0 +1,49 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539419327280001 = 0x4023 e86b 13b6 b318 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ fsubd $f17, $f18, $f21 ++ ldi $16, 0 ++ fbgt $f21, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fble-363.S b/none/tests/sw64-insn/fble-363.S +new file mode 100644 +index 000000000..86ca7d14d +--- /dev/null ++++ b/none/tests/sw64-insn/fble-363.S +@@ -0,0 +1,49 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539419327280001 = 0x4023 e86b 13b6 b318 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ fsubd $f18, $f17, $f21 ++ ldi $16, 0 ++ fble $f21, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fblt-362.S b/none/tests/sw64-insn/fblt-362.S +new file mode 100644 +index 000000000..354fd9547 +--- /dev/null ++++ b/none/tests/sw64-insn/fblt-362.S +@@ -0,0 +1,49 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539419327280001 = 0x4023 e86b 13b6 b318 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ fsubd $f18, $f17, $f21 ++ ldi $16, 0 ++ fblt $f21, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fbne-361.S b/none/tests/sw64-insn/fbne-361.S +new file mode 100644 +index 000000000..66adedc40 +--- /dev/null ++++ b/none/tests/sw64-insn/fbne-361.S +@@ -0,0 +1,49 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539419327280001 = 0x4023 e86b 13b6 b318 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ fsubd $f17, $f18, $f21 ++ ldi $16, 0 ++ fbne $f21, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcmpeq-190.S b/none/tests/sw64-insn/fcmpeq-190.S +new file mode 100644 +index 000000000..67f846286 +--- /dev/null ++++ b/none/tests/sw64-insn/fcmpeq-190.S +@@ -0,0 +1,36 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.7724538357881143 = 0x3ffc 5bf8 8da6 1346 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8da6($19) ++ sll $19, 16 ++ ldi $19, 0x1346($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcmpeq $f17, $f18, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcmple-191.S b/none/tests/sw64-insn/fcmple-191.S +new file mode 100644 +index 000000000..a8915cc2f +--- /dev/null ++++ b/none/tests/sw64-insn/fcmple-191.S +@@ -0,0 +1,36 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.7724538357881143 = 0x3ffc 5bf8 8da6 1346 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8da6($19) ++ sll $19, 16 ++ ldi $19, 0x1346($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcmple $f17, $f18, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcmplt-192.S b/none/tests/sw64-insn/fcmplt-192.S +new file mode 100644 +index 000000000..325c33896 +--- /dev/null ++++ b/none/tests/sw64-insn/fcmplt-192.S +@@ -0,0 +1,36 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.7724538357881143 = 0x3ffc 5bf8 8da6 1346 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8da6($19) ++ sll $19, 16 ++ ldi $19, 0x1346($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcmplt $f18, $f17, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcmpun-193.S b/none/tests/sw64-insn/fcmpun-193.S +new file mode 100644 +index 000000000..9b162d2dd +--- /dev/null ++++ b/none/tests/sw64-insn/fcmpun-193.S +@@ -0,0 +1,36 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.7724538357881143 = 0x3ffc 5bf8 8da6 1346 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8da6($19) ++ sll $19, 16 ++ ldi $19, 0x1346($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcmpun $f17, $f18, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcpys-205.S b/none/tests/sw64-insn/fcpys-205.S +new file mode 100644 +index 000000000..239bd20a2 +--- /dev/null ++++ b/none/tests/sw64-insn/fcpys-205.S +@@ -0,0 +1,39 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.772453784942627 = 0x3ffc 5bf8 8000 0000 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8000($19) ++ sll $19, 16 ++ ldi $19, 0x0000($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcpys $f17, $f18, $f20 ++ fsubd $f18, $f20, $f1 ++ ldi $16, 0 ++ fbeq $f1, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcpyse-206.S b/none/tests/sw64-insn/fcpyse-206.S +new file mode 100644 +index 000000000..c5a924ef9 +--- /dev/null ++++ b/none/tests/sw64-insn/fcpyse-206.S +@@ -0,0 +1,39 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.772453784942627 = 0x3ffc 5bf8 8000 0000 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8000($19) ++ sll $19, 16 ++ ldi $19, 0x0000($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcpyse $f17, $f18, $f20 ++ fsubd $f18, $f20, $f1 ++ ldi $16, 0 ++ fbeq $f1, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcpysn-207.S b/none/tests/sw64-insn/fcpysn-207.S +new file mode 100644 +index 000000000..83bd676c2 +--- /dev/null ++++ b/none/tests/sw64-insn/fcpysn-207.S +@@ -0,0 +1,39 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.772453784942627 = 0x3ffc 5bf8 8000 0000 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8000($19) ++ sll $19, 16 ++ ldi $19, 0x0000($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcpysn $f17, $f18, $f20 ++ faddd $f18, $f20, $f1 ++ ldi $16, 0 ++ fbeq $f1, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcvtdl-200.S b/none/tests/sw64-insn/fcvtdl-200.S +new file mode 100644 +index 000000000..a073e1b56 +--- /dev/null ++++ b/none/tests/sw64-insn/fcvtdl-200.S +@@ -0,0 +1,18 @@ ++ .text ++ .global _start ++_start: ++ ldi $17, 42 ++ ifmovd $17, $f16 ++ fcvtld $f16, $f17 ++ ldi $18, 2 ++ ifmovd $18, $f16 ++ fcvtld $f16, $f18 ++ fmuld $f17, $f18, $f19 ++ fcvtdl $f19, $f16 ++ fimovd $f16, $16 ++ cmpeq $16, 84, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcvtdl_g-196.S b/none/tests/sw64-insn/fcvtdl_g-196.S +new file mode 100644 +index 000000000..0f4ff787f +--- /dev/null ++++ b/none/tests/sw64-insn/fcvtdl_g-196.S +@@ -0,0 +1,37 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.7724538357881143 = 0x3ffc 5bf8 8da6 1346 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8da6($19) ++ sll $19, 16 ++ ldi $19, 0x1346($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcvtdl_g $f17, $f16 ++ fimovd $f16, $16 ++ subl $16, 3 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcvtdl_n-199.S b/none/tests/sw64-insn/fcvtdl_n-199.S +new file mode 100644 +index 000000000..fe99e49ad +--- /dev/null ++++ b/none/tests/sw64-insn/fcvtdl_n-199.S +@@ -0,0 +1,37 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.7724538357881143 = 0x3ffc 5bf8 8da6 1346 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8da6($19) ++ sll $19, 16 ++ ldi $19, 0x1346($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcvtdl_n $f17, $f16 ++ fimovd $f16, $16 ++ subl $16, 3 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcvtdl_p-197.S b/none/tests/sw64-insn/fcvtdl_p-197.S +new file mode 100644 +index 000000000..d872c82e4 +--- /dev/null ++++ b/none/tests/sw64-insn/fcvtdl_p-197.S +@@ -0,0 +1,37 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.7724538357881143 = 0x3ffc 5bf8 8da6 1346 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8da6($19) ++ sll $19, 16 ++ ldi $19, 0x1346($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcvtdl_p $f17, $f16 ++ fimovd $f16, $16 ++ subl $16, 4 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcvtdl_z-198.S b/none/tests/sw64-insn/fcvtdl_z-198.S +new file mode 100644 +index 000000000..7925c4081 +--- /dev/null ++++ b/none/tests/sw64-insn/fcvtdl_z-198.S +@@ -0,0 +1,37 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.7724538357881143 = 0x3ffc 5bf8 8da6 1346 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8da6($19) ++ sll $19, 16 ++ ldi $19, 0x1346($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcvtdl_z $f17, $f16 ++ fimovd $f16, $16 ++ subl $16, 3 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcvtds-195.S b/none/tests/sw64-insn/fcvtds-195.S +new file mode 100644 +index 000000000..b51203274 +--- /dev/null ++++ b/none/tests/sw64-insn/fcvtds-195.S +@@ -0,0 +1,19 @@ ++ .text ++ .global _start ++_start: ++ ++.run: ++ ldi $17, 42 ++ ifmovd $17, $f17 ++ fcvtld $f17, $f18 ++ fcvtds $f18, $f19 ++ ++ fcvtls $f17, $f20 ++ ldi $16, 0 ++ fsubd $f19, $f20, $f1 ++ fbeq $f1, .exit ++ ldi $16, 1 ++ ++.exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcvtld-204.S b/none/tests/sw64-insn/fcvtld-204.S +new file mode 100644 +index 000000000..a073e1b56 +--- /dev/null ++++ b/none/tests/sw64-insn/fcvtld-204.S +@@ -0,0 +1,18 @@ ++ .text ++ .global _start ++_start: ++ ldi $17, 42 ++ ifmovd $17, $f16 ++ fcvtld $f16, $f17 ++ ldi $18, 2 ++ ifmovd $18, $f16 ++ fcvtld $f16, $f18 ++ fmuld $f17, $f18, $f19 ++ fcvtdl $f19, $f16 ++ fimovd $f16, $16 ++ cmpeq $16, 84, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcvtls-203.S b/none/tests/sw64-insn/fcvtls-203.S +new file mode 100644 +index 000000000..79e0b87c1 +--- /dev/null ++++ b/none/tests/sw64-insn/fcvtls-203.S +@@ -0,0 +1,36 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 0x43d0 0248 8000 0000 */ ++ ldi $19, 0x43d00248 ++ sll $19, 16 ++ ldi $19, 0x8000($19) ++ sll $19, 16 ++ ldi $19, 0x0000($19) ++ ++run: ++ fcvtls $f17, $f16 ++ fimovd $f16, $16 ++ subl $16, $19 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcvtlw-202.S b/none/tests/sw64-insn/fcvtlw-202.S +new file mode 100644 +index 000000000..e63335d0f +--- /dev/null ++++ b/none/tests/sw64-insn/fcvtlw-202.S +@@ -0,0 +1,36 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 0x41a2 5b09 4000 0000 */ ++ ldi $19, 0x41a25b09 ++ sll $19, 16 ++ ldi $19, 0x4000($19) ++ sll $19, 16 ++ ldi $19, 0x0000($19) ++ ++run: ++ fcvtlw $f17, $f16 ++ fimovd $f16, $16 ++ subl $16, $19 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcvtsd-194.S b/none/tests/sw64-insn/fcvtsd-194.S +new file mode 100644 +index 000000000..079858291 +--- /dev/null ++++ b/none/tests/sw64-insn/fcvtsd-194.S +@@ -0,0 +1,38 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.7724538357881143 = 0x3ffc 5bf8 8da6 1346 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8da6($19) ++ sll $19, 16 ++ ldi $19, 0x1346($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcvtds $f17, $f1 ++ fcvtsd $f1, $f2 ++ fcmpeq $f2, $f17, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fcvtwl-201.S b/none/tests/sw64-insn/fcvtwl-201.S +new file mode 100644 +index 000000000..d45d073b1 +--- /dev/null ++++ b/none/tests/sw64-insn/fcvtwl-201.S +@@ -0,0 +1,31 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ ldi $19, 0x40490fda ++ ++run: ++ fcvtwl $f17, $f16 ++ fimovd $f16, $16 ++ subl $16, $19 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fdivd-187.S b/none/tests/sw64-insn/fdivd-187.S +new file mode 100644 +index 000000000..3e6e01ee0 +--- /dev/null ++++ b/none/tests/sw64-insn/fdivd-187.S +@@ -0,0 +1,18 @@ ++ .text ++ .global _start ++_start: ++ ldi $17, 42 ++ ifmovd $17, $f16 ++ fcvtld $f16, $f17 ++ ldi $18, 2 ++ ifmovd $18, $f16 ++ fcvtld $f16, $f18 ++ fdivd $f17, $f18, $f19 ++ fcvtdl $f19, $f16 ++ fimovd $f16, $16 ++ cmpeq $16, 21, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fdivs-186.S b/none/tests/sw64-insn/fdivs-186.S +new file mode 100644 +index 000000000..4bd38e9ba +--- /dev/null ++++ b/none/tests/sw64-insn/fdivs-186.S +@@ -0,0 +1,42 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.1557279825210571 = 0x3ff27ddca0000000 */ ++ ldi $19, 0x3ff27ddc ++ sll $19, 16 ++ ldi $19, 0xa000($19) ++ sll $19, 16 ++ ldi $19, 0x0000($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcvtds $f17, $f1 ++ fcvtds $f18, $f2 ++ fcvtds $f19, $f3 ++ fdivs $f1, $f2, $f4 ++ ldi $16, 0 ++ fsubs $f4, $f3, $f1 ++ fbeq $f1, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fimovd-104.S b/none/tests/sw64-insn/fimovd-104.S +new file mode 100644 +index 000000000..bf5a9292c +--- /dev/null ++++ b/none/tests/sw64-insn/fimovd-104.S +@@ -0,0 +1,12 @@ ++ .text ++ .global _start ++_start: ++ ldi $17, 1078523331 ++ ifmovd $17, $f16 ++ fimovd $f16, $18 ++ cmpeq $17, $18, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fimovs-103.S b/none/tests/sw64-insn/fimovs-103.S +new file mode 100644 +index 000000000..050f2b58e +--- /dev/null ++++ b/none/tests/sw64-insn/fimovs-103.S +@@ -0,0 +1,13 @@ ++ ++ .global _start ++_start: ++ ldi $17, 1078523331 ++ ifmovs $17, $f16 ++ fimovs $f16, $18 ++ cmpeq $17, $18, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/fldd-343.S b/none/tests/sw64-insn/fldd-343.S +new file mode 100644 +index 000000000..763a14d6f +--- /dev/null ++++ b/none/tests/sw64-insn/fldd-343.S +@@ -0,0 +1,51 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539419327280001 = 0x4023 e86b 13b6 b318 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ ldi $sp, -8($sp) ++ fstd $f17, 0($sp) ++ fldd $f21, 0($sp) ++ fsubd $f17, $f21, $f16 ++ fimovd $f16, $16 ++ ldi $sp, 8($sp) ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/flds-342.S b/none/tests/sw64-insn/flds-342.S +new file mode 100644 +index 000000000..1c3ff831e +--- /dev/null ++++ b/none/tests/sw64-insn/flds-342.S +@@ -0,0 +1,17 @@ ++ .text ++ .global _start ++_start: ++ ldi $sp, -8($sp) ++ ldi $17, 42 ++ ifmovd $17, $f17 ++ fcvtds $f17, $f21 ++ fsts $f21, 0($sp) ++ flds $f22, 0($sp) ++ fsubd $f22, $f21, $f16 ++ ldi $16, 0 ++ fbeq $f16, .exit ++ ldi $16, 1 ++ ++.exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fmad-217.S b/none/tests/sw64-insn/fmad-217.S +new file mode 100644 +index 000000000..912789198 +--- /dev/null ++++ b/none/tests/sw64-insn/fmad-217.S +@@ -0,0 +1,48 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539419327280001 = 0x4023 e86b 13b6 b318 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ fmad $f17, $f18, $f19, $f21 ++ fsubd $f20, $f21, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fmas-216.S b/none/tests/sw64-insn/fmas-216.S +new file mode 100644 +index 000000000..d95aeeea2 +--- /dev/null ++++ b/none/tests/sw64-insn/fmas-216.S +@@ -0,0 +1,52 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539422988891602 = 0x4023 e86b 2000 0000 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x2000($20) ++ sll $20, 16 ++ ldi $20, 0x0000($20) ++ ifmovd $20, $f20 ++ ++run: ++ fcvtds $f17, $f1 ++ fcvtds $f18, $f2 ++ fcvtds $f19, $f3 ++ fcvtds $f20, $f21 ++ fmas $f1, $f2, $f3, $f4 ++ fsubs $f4, $f21, $f16 ++ fimovs $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fmsd-219.S b/none/tests/sw64-insn/fmsd-219.S +new file mode 100644 +index 000000000..b9e919c33 +--- /dev/null ++++ b/none/tests/sw64-insn/fmsd-219.S +@@ -0,0 +1,48 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 7.125514732728 = 0x401c 8086 ef20 ee88 */ ++ ldi $20, 0x401c ++ sll $20, 16 ++ ldi $20, 0x8086($20) ++ sll $20, 16 ++ ldi $20, 0xef20($20) ++ sll $20, 16 ++ ldi $20, 0xee88($20) ++ ifmovd $20, $f20 ++ ++run: ++ fmsd $f17, $f18, $f19, $f21 ++ fsubd $f20, $f21, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fmss-218.S b/none/tests/sw64-insn/fmss-218.S +new file mode 100644 +index 000000000..7dd42e57c +--- /dev/null ++++ b/none/tests/sw64-insn/fmss-218.S +@@ -0,0 +1,52 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 7.1255145072937012 = 0x401c 8086 e000 0000 */ ++ ldi $20, 0x401c ++ sll $20, 16 ++ ldi $20, 0x8086($20) ++ sll $20, 16 ++ ldi $20, 0xe000($20) ++ sll $20, 16 ++ ldi $20, 0x0000($20) ++ ifmovd $20, $f20 ++ ++run: ++ fcvtds $f17, $f1 ++ fcvtds $f18, $f2 ++ fcvtds $f19, $f3 ++ fcvtds $f20, $f21 ++ fmss $f1, $f2, $f3, $f4 ++ fsubs $f4, $f21, $f16 ++ fimovs $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fmuld-185.S b/none/tests/sw64-insn/fmuld-185.S +new file mode 100644 +index 000000000..a073e1b56 +--- /dev/null ++++ b/none/tests/sw64-insn/fmuld-185.S +@@ -0,0 +1,18 @@ ++ .text ++ .global _start ++_start: ++ ldi $17, 42 ++ ifmovd $17, $f16 ++ fcvtld $f16, $f17 ++ ldi $18, 2 ++ ifmovd $18, $f16 ++ fcvtld $f16, $f18 ++ fmuld $f17, $f18, $f19 ++ fcvtdl $f19, $f16 ++ fimovd $f16, $16 ++ cmpeq $16, 84, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fmuls-184.S b/none/tests/sw64-insn/fmuls-184.S +new file mode 100644 +index 000000000..9c3ca4632 +--- /dev/null ++++ b/none/tests/sw64-insn/fmuls-184.S +@@ -0,0 +1,40 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 8.5397281646728516 = 0x4021145740000000 */ ++ ldi $19, 0x40211457 ++ sll $19, 32 ++ ldi $19, 0x40000000($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcvtds $f17, $f1 ++ fcvtds $f18, $f2 ++ fcvtds $f19, $f3 ++ fmuls $f1, $f2, $f4 ++ ldi $16, 0 ++ fsubs $f4, $f3, $f1 ++ fbeq $f1, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fnmad-221.S b/none/tests/sw64-insn/fnmad-221.S +new file mode 100644 +index 000000000..817af484a +--- /dev/null ++++ b/none/tests/sw64-insn/fnmad-221.S +@@ -0,0 +1,48 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* -7.125514732728 = 0xc01c 8086 ef20 ee88 */ ++ ldi $20, 0xc01c ++ sll $20, 16 ++ ldi $20, 0x8086($20) ++ sll $20, 16 ++ ldi $20, 0xef20($20) ++ sll $20, 16 ++ ldi $20, 0xee88($20) ++ ifmovd $20, $f20 ++ ++run: ++ fnmad $f17, $f18, $f19, $f21 ++ fsubd $f20, $f21, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fnmas-220.S b/none/tests/sw64-insn/fnmas-220.S +new file mode 100644 +index 000000000..77244870c +--- /dev/null ++++ b/none/tests/sw64-insn/fnmas-220.S +@@ -0,0 +1,52 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* -7.1255145072937012 = 0xc01c 8086 e000 0000 */ ++ ldi $20, 0xc01c ++ sll $20, 16 ++ ldi $20, 0x8086($20) ++ sll $20, 16 ++ ldi $20, 0xe000($20) ++ sll $20, 16 ++ ldi $20, 0x0000($20) ++ ifmovd $20, $f20 ++ ++run: ++ fcvtds $f17, $f1 ++ fcvtds $f18, $f2 ++ fcvtds $f19, $f3 ++ fcvtds $f20, $f21 ++ fnmas $f1, $f2, $f3, $f4 ++ fsubs $f4, $f21, $f16 ++ fimovs $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fnmsd-223.S b/none/tests/sw64-insn/fnmsd-223.S +new file mode 100644 +index 000000000..472cbc2ba +--- /dev/null ++++ b/none/tests/sw64-insn/fnmsd-223.S +@@ -0,0 +1,48 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* -9.9539419327280001 = 0xc023 e86b 13b6 b318 */ ++ ldi $20, 0xc023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ fnmsd $f17, $f18, $f19, $f21 ++ fsubd $f20, $f21, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fnmss-222.S b/none/tests/sw64-insn/fnmss-222.S +new file mode 100644 +index 000000000..c7735a762 +--- /dev/null ++++ b/none/tests/sw64-insn/fnmss-222.S +@@ -0,0 +1,52 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* -9.9539422988891602 = 0xc023 e86b 2000 0000 */ ++ ldi $20, 0xc023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x2000($20) ++ sll $20, 16 ++ ldi $20, 0x0000($20) ++ ifmovd $20, $f20 ++ ++run: ++ fcvtds $f17, $f1 ++ fcvtds $f18, $f2 ++ fcvtds $f19, $f3 ++ fcvtds $f20, $f21 ++ fnmss $f1, $f2, $f3, $f4 ++ fsubs $f4, $f21, $f16 ++ fimovs $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fseleq-224.S b/none/tests/sw64-insn/fseleq-224.S +new file mode 100644 +index 000000000..b1f98f0cc +--- /dev/null ++++ b/none/tests/sw64-insn/fseleq-224.S +@@ -0,0 +1,15 @@ ++ .text ++ .global _start ++_start: ++ ldi $17, 42 ++ ifmovd $17, $f17 ++ ldi $18, 0 ++ ifmovd $18, $f18 ++ fseleq $f18, $f18, $f17, $f19 ++ ldi $16, 0 ++ fbeq $f19, .exit ++ ldi $16, 1 ++ ++.exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fselge-229.S b/none/tests/sw64-insn/fselge-229.S +new file mode 100644 +index 000000000..d41fb8e27 +--- /dev/null ++++ b/none/tests/sw64-insn/fselge-229.S +@@ -0,0 +1,49 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539419327280001 = 0x4023 e86b 13b6 b318 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ fsubd $f17, $f18, $f21 ++ fselge $f21, $f17, $f18, $f22 ++ fsubd $f17, $f22, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fselgt-228.S b/none/tests/sw64-insn/fselgt-228.S +new file mode 100644 +index 000000000..4c7657e14 +--- /dev/null ++++ b/none/tests/sw64-insn/fselgt-228.S +@@ -0,0 +1,49 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539419327280001 = 0x4023 e86b 13b6 b318 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ fsubd $f17, $f18, $f21 ++ fselgt $f21, $f17, $f18, $f22 ++ fsubd $f17, $f22, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fselle-227.S b/none/tests/sw64-insn/fselle-227.S +new file mode 100644 +index 000000000..c80328f40 +--- /dev/null ++++ b/none/tests/sw64-insn/fselle-227.S +@@ -0,0 +1,49 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539419327280001 = 0x4023 e86b 13b6 b318 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ fsubd $f17, $f18, $f21 ++ fselle $f21, $f17, $f18, $f22 ++ fsubd $f18, $f22, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fsellt-226.S b/none/tests/sw64-insn/fsellt-226.S +new file mode 100644 +index 000000000..ca3ba3b30 +--- /dev/null ++++ b/none/tests/sw64-insn/fsellt-226.S +@@ -0,0 +1,49 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539419327280001 = 0x4023 e86b 13b6 b318 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ fsubd $f17, $f18, $f21 ++ fsellt $f21, $f17, $f18, $f22 ++ fsubd $f18, $f22, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fselne-225.S b/none/tests/sw64-insn/fselne-225.S +new file mode 100644 +index 000000000..2e24d8826 +--- /dev/null ++++ b/none/tests/sw64-insn/fselne-225.S +@@ -0,0 +1,49 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539419327280001 = 0x4023 e86b 13b6 b318 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ fsubd $f17, $f18, $f21 ++ fselne $f21, $f17, $f18, $f22 ++ fsubd $f17, $f22, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fsqrtd-189.S b/none/tests/sw64-insn/fsqrtd-189.S +new file mode 100644 +index 000000000..8a0142297 +--- /dev/null ++++ b/none/tests/sw64-insn/fsqrtd-189.S +@@ -0,0 +1,39 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.7724538357881143 = 0x3ffc 5bf8 8da6 1346 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8da6($19) ++ sll $19, 16 ++ ldi $19, 0x1346($19) ++ ifmovd $19, $f19 ++ ++run: ++ fsqrtd $f17, $f20 ++ fsubd $f20, $f19, $f16 ++ ldi $16, 0 ++ fbeq $f16, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fsqrts-188.S b/none/tests/sw64-insn/fsqrts-188.S +new file mode 100644 +index 000000000..eba144a6a +--- /dev/null ++++ b/none/tests/sw64-insn/fsqrts-188.S +@@ -0,0 +1,42 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.772453784942627 = 0x3ffc 5bf8 8000 0000 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8000($19) ++ sll $19, 16 ++ ldi $19, 0x0000($19) ++ ifmovd $19, $f19 ++ ++run: ++ fcvtds $f17, $f1 ++ #fcvtds $f18, $f2 ++ fcvtds $f19, $f3 ++ fsqrts $f1, $f4 ++ fsubs $f4, $f3, $f1 ++ ldi $16, 0 ++ fbeq $f1, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fstd-351.S b/none/tests/sw64-insn/fstd-351.S +new file mode 100644 +index 000000000..763a14d6f +--- /dev/null ++++ b/none/tests/sw64-insn/fstd-351.S +@@ -0,0 +1,51 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539419327280001 = 0x4023 e86b 13b6 b318 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ ldi $sp, -8($sp) ++ fstd $f17, 0($sp) ++ fldd $f21, 0($sp) ++ fsubd $f17, $f21, $f16 ++ fimovd $f16, $16 ++ ldi $sp, 8($sp) ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fsts-350.S b/none/tests/sw64-insn/fsts-350.S +new file mode 100644 +index 000000000..a64538159 +--- /dev/null ++++ b/none/tests/sw64-insn/fsts-350.S +@@ -0,0 +1,52 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++x3: ++ /* 1.4142136 = 0x3ff6 a09e 7098 ef50 */ ++ ldi $19, 0x3ff6a09e ++ sll $19, 16 ++ ldi $19, 0x7098($19) ++ sll $19, 16 ++ ldi $19, 0xef50($19) ++ ifmovd $19, $f19 ++ ++result: ++ /* 9.9539419327280001 = 0x4023 e86b 13b6 b318 */ ++ ldi $20, 0x4023 ++ sll $20, 16 ++ ldi $20, 0xe86b($20) ++ sll $20, 16 ++ ldi $20, 0x13b6($20) ++ sll $20, 16 ++ ldi $20, 0xb318($20) ++ ifmovd $20, $f20 ++ ++run: ++ ldi $sp, -8($sp) ++ fcvtds $f17, $f21 ++ fsts $f21, 0($sp) ++ flds $f22, 0($sp) ++ fsubd $f22, $f21, $f16 ++ fimovd $f16, $16 ++ ldi $sp, 8($sp) ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fsubd-183.S b/none/tests/sw64-insn/fsubd-183.S +new file mode 100644 +index 000000000..6da04ae43 +--- /dev/null ++++ b/none/tests/sw64-insn/fsubd-183.S +@@ -0,0 +1,13 @@ ++ .text ++ .global _start ++_start: ++ ldi $17, 42 ++ ifmovd $17, $f17 ++ fcvtld $f17, $f18 ++ fsubd $f18, $f18, $f17 ++ fcvtdl $f17, $f16 ++ fimovd $f16, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/fsubs-182.S b/none/tests/sw64-insn/fsubs-182.S +new file mode 100644 +index 000000000..7b57b66b8 +--- /dev/null ++++ b/none/tests/sw64-insn/fsubs-182.S +@@ -0,0 +1,41 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 8.5397281646728516 = 0x4021145740000000 */ ++ ldi $19, 0x4005bf09 ++ sll $19, 16 ++ ldi $19, 0x95aa($19) ++ sll $19, 16 ++ ldi $19, 0xf790($19) ++ ifmovd $19, $f19 ++ ++ fcvtds $f17, $f1 ++ fcvtds $f18, $f2 ++ fcvtds $f19, $f3 ++ fmuls $f1, $f2, $f4 ++ ldi $16, 1 ++ fsubs $f4, $f3, $f1 ++ fbeq $f1, exit ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/halt-12.S b/none/tests/sw64-insn/halt-12.S +new file mode 100644 +index 000000000..f66bb4e15 +--- /dev/null ++++ b/none/tests/sw64-insn/halt-12.S +@@ -0,0 +1,10 @@ ++ ++ .global _start ++_start: ++ unop ++ halt ++ ++exit: ++ ldi $0, 1 ++ ldi $16, 0 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/ifmovd-209.S b/none/tests/sw64-insn/ifmovd-209.S +new file mode 120000 +index 000000000..5a582e3e3 +--- /dev/null ++++ b/none/tests/sw64-insn/ifmovd-209.S +@@ -0,0 +1 @@ ++fimovd-104.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/ifmovs-208.S b/none/tests/sw64-insn/ifmovs-208.S +new file mode 120000 +index 000000000..7549c2b3b +--- /dev/null ++++ b/none/tests/sw64-insn/ifmovs-208.S +@@ -0,0 +1 @@ ++fimovs-103.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/imemb-9.S b/none/tests/sw64-insn/imemb-9.S +new file mode 100644 +index 000000000..7b1782d7e +--- /dev/null ++++ b/none/tests/sw64-insn/imemb-9.S +@@ -0,0 +1,62 @@ ++ .text ++ ++ .globl xchg_u32 ++xchg_u32: ++ ldi $30,-64($30) ++ stl $26,0($30) ++ stl $15,8($30) ++ mov $30,$15 ++ stl $16,48($15) ++ stl $17,56($15) ++ ldl $5,48($15) ++ ldl $1,56($15) ++ ldl $2,48($15) ++ memb ++ imemb ++ ldi $6, 0($2) ++ ++f1: ++ lldw $4, 0($6) ++ ldi $3, 1 ++ wr_f $3 ++ bis $31, $1, $3 ++ memb ++ imemb ++ lstw $3, 0($6) ++ rd_f $3 ++ bne $3, f2 ++ br f1 ++ ++f2: ++ mov $6,$2 ++ stl $4,56($15) ++ stl $3,32($15) ++ stl $2,40($15) ++ ldl $1,56($15) ++ mov $1,$0 ++ mov $15,$30 ++ ldl $26,0($30) ++ ldl $15,8($30) ++ ldi $30,64($30) ++ ret $31,($26),1 ++ ++ .global _start ++_start: ++ br $29, 1f ++1: ldgp $29, 0($29) ++ subl $30, 16, $30 ++ mov 0, $15 ++ ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ stl $17, 0($sp) ++ ldi $16, 0($sp) ++ ldi $17, 43 ++ call $26, xchg_u32 ++ mov $0, $16 ++ subl $16, 42 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inshb-72.S b/none/tests/sw64-insn/inshb-72.S +new file mode 100644 +index 000000000..fe0ed2456 +--- /dev/null ++++ b/none/tests/sw64-insn/inshb-72.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1f2 ++ ldi $18, 1 ++ inshb $17, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inshbi-143.S b/none/tests/sw64-insn/inshbi-143.S +new file mode 100644 +index 000000000..66061cc5d +--- /dev/null ++++ b/none/tests/sw64-insn/inshbi-143.S +@@ -0,0 +1,10 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1f2 ++ inshb $17, 1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inshh-73.S b/none/tests/sw64-insn/inshh-73.S +new file mode 100644 +index 000000000..1bdb1ecce +--- /dev/null ++++ b/none/tests/sw64-insn/inshh-73.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1f2 ++ ldi $18, 7 ++ inshh $17, $18, $16 ++ subl $16, 0xf1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inshhi-144.S b/none/tests/sw64-insn/inshhi-144.S +new file mode 100644 +index 000000000..885a0959c +--- /dev/null ++++ b/none/tests/sw64-insn/inshhi-144.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1f2 ++ inshh $17, 7, $16 ++ subl $16, 0xf1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inshl-75.S b/none/tests/sw64-insn/inshl-75.S +new file mode 100644 +index 000000000..72e1bf3ac +--- /dev/null ++++ b/none/tests/sw64-insn/inshl-75.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1f2 ++ ldi $18, 6 ++ inshl $17, $18, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inshli-146.S b/none/tests/sw64-insn/inshli-146.S +new file mode 100644 +index 000000000..25ab03169 +--- /dev/null ++++ b/none/tests/sw64-insn/inshli-146.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1f2 ++ inshl $17, 6, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inshw-74.S b/none/tests/sw64-insn/inshw-74.S +new file mode 100644 +index 000000000..6f9051b41 +--- /dev/null ++++ b/none/tests/sw64-insn/inshw-74.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1f2 ++ ldi $18, 6 ++ inshw $17, $18, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inshwi-145.S b/none/tests/sw64-insn/inshwi-145.S +new file mode 100644 +index 000000000..3b95832fe +--- /dev/null ++++ b/none/tests/sw64-insn/inshwi-145.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1f2 ++ inshw $17, 6, $16 ++ subl $16, 0xf0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inslb-68.S b/none/tests/sw64-insn/inslb-68.S +new file mode 100644 +index 000000000..84c10994d +--- /dev/null ++++ b/none/tests/sw64-insn/inslb-68.S +@@ -0,0 +1,13 @@ ++ ++ .global _start ++_start: ++ ldi $17, 1 ++ ldi $18, 1 ++ inslb $17, $18, $16 ++ srl $16, 8 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inslbi-139.S b/none/tests/sw64-insn/inslbi-139.S +new file mode 100644 +index 000000000..4335feb3d +--- /dev/null ++++ b/none/tests/sw64-insn/inslbi-139.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 1 ++ inslb $17, 1, $16 ++ srl $16, 8 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inslh-69.S b/none/tests/sw64-insn/inslh-69.S +new file mode 100644 +index 000000000..f51da7de5 +--- /dev/null ++++ b/none/tests/sw64-insn/inslh-69.S +@@ -0,0 +1,13 @@ ++ ++ .global _start ++_start: ++ ldi $17, 1 ++ ldi $18, 1 ++ inslh $17, $18, $16 ++ srl $16, 8 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inslhi-140.S b/none/tests/sw64-insn/inslhi-140.S +new file mode 100644 +index 000000000..4e175d74e +--- /dev/null ++++ b/none/tests/sw64-insn/inslhi-140.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 1 ++ inslh $17, 1, $16 ++ srl $16, 8 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/insll-71.S b/none/tests/sw64-insn/insll-71.S +new file mode 100644 +index 000000000..39e10ef9d +--- /dev/null ++++ b/none/tests/sw64-insn/insll-71.S +@@ -0,0 +1,13 @@ ++ ++ .global _start ++_start: ++ ldi $17, 1 ++ ldi $18, 1 ++ insll $17, $18, $16 ++ srl $16, 8 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inslli-142.S b/none/tests/sw64-insn/inslli-142.S +new file mode 100644 +index 000000000..d66643c49 +--- /dev/null ++++ b/none/tests/sw64-insn/inslli-142.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 1 ++ insll $17, 1, $16 ++ srl $16, 8 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inslw-70.S b/none/tests/sw64-insn/inslw-70.S +new file mode 100644 +index 000000000..f5ac75d09 +--- /dev/null ++++ b/none/tests/sw64-insn/inslw-70.S +@@ -0,0 +1,13 @@ ++ ++ .global _start ++_start: ++ ldi $17, 1 ++ ldi $18, 1 ++ inslw $17, $18, $16 ++ srl $16, 8 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/inslwi-141.S b/none/tests/sw64-insn/inslwi-141.S +new file mode 100644 +index 000000000..557d6583a +--- /dev/null ++++ b/none/tests/sw64-insn/inslwi-141.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 1 ++ inslw $17, 1, $16 ++ srl $16, 8 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/insn-list b/none/tests/sw64-insn/insn-list +new file mode 100644 +index 000000000..b9a525007 +--- /dev/null ++++ b/none/tests/sw64-insn/insn-list +@@ -0,0 +1,367 @@ ++sys_call_b-1 ++sys_call-2 ++call-3 ++ret-4 ++jmp-5 ++br-6 ++bsr-7 ++memb-8 ++imemb-9 ++rtc-10 ++rcid-11 ++halt-12 ++rd_f-13 ++wr_f-14 ++rtid-15 ++pri_rcsr-16 ++pri_wcsr-17 ++pri_ret-18 ++lldw-19 ++lldl-20 ++ldw_inc-21 ++ldl_inc-22 ++ldw_dec-23 ++ldl_dec-24 ++ldw_set-25 ++ldl_set-26 ++lstw-27 ++lstl-28 ++ldw_nc-29 ++ldl_nc-30 ++ldd_nc-31 ++stw_nc-32 ++stl_nc-33 ++std_nc-34 ++ldwe-35 ++ldse-36 ++ldde-37 ++vlds-38 ++vldd-39 ++vsts-40 ++vstd-41 ++addw-42 ++subw-43 ++s4addw-44 ++s4subw-45 ++s8addw-46 ++s8subw-47 ++addl-48 ++subl-49 ++s4addl-50 ++s4subl-51 ++s8addl-52 ++s8subl-53 ++mulw-54 ++mull-55 ++umulh-56 ++cmpeq-57 ++cmplt-58 ++cmple-59 ++cmpult-60 ++cmpule-61 ++and-62 ++bic-63 ++bis-64 ++ornot-65 ++xor-66 ++eqv-67 ++inslb-68 ++inslh-69 ++inslw-70 ++insll-71 ++inshb-72 ++inshh-73 ++inshw-74 ++inshl-75 ++sll-76 ++srl-77 ++sra-78 ++extlb-79 ++extlh-80 ++extlw-81 ++extll-82 ++exthb-83 ++exthh-84 ++exthw-85 ++exthl-86 ++ctpop-87 ++ctlz-88 ++cttz-89 ++masklb-90 ++masklh-91 ++masklw-92 ++maskll-93 ++maskhb-94 ++maskhh-95 ++maskhw-96 ++maskhl-97 ++zap-98 ++zapnot-99 ++sextb-100 ++sexth-101 ++cmpgeb-102 ++fimovs-103 ++fimovd-104 ++seleq-105 ++selge-106 ++selgt-107 ++selle-108 ++sellt-109 ++selne-110 ++sellbc-111 ++sellbs-112 ++addwi-113 ++subwi-114 ++s4addwi-115 ++s4subwi-116 ++s8addwi-117 ++s8subwi-118 ++addli-119 ++subli-120 ++s4addli-121 ++s4subli-122 ++s8addli-123 ++s8subli-124 ++mulwi-125 ++mulli-126 ++umulhi-127 ++cmpeqi-128 ++cmplti-129 ++cmplei-130 ++cmpulti-131 ++cmpulei-132 ++andi-133 ++bici-134 ++bisi-135 ++ornoti-136 ++xori-137 ++eqvi-138 ++inslbi-139 ++inslhi-140 ++inslwi-141 ++inslli-142 ++inshbi-143 ++inshhi-144 ++inshwi-145 ++inshli-146 ++slli-147 ++srli-148 ++srai-149 ++extlbi-150 ++extlhi-151 ++extlwi-152 ++extlli-153 ++exthbi-154 ++exthhi-155 ++exthwi-156 ++exthli-157 ++masklbi-158 ++masklhi-159 ++masklwi-160 ++masklli-161 ++maskhbi-162 ++maskhhi-163 ++maskhwi-164 ++maskhli-165 ++zapi-166 ++zapnoti-167 ++sextbi-168 ++sexthi-169 ++cmpgebi-170 ++seleqi-171 ++selgei-172 ++selgti-173 ++sellei-174 ++sellti-175 ++selnei-176 ++sellbci-177 ++sellbsi-178 ++vlogzz-179 ++fadds-180 ++faddd-181 ++fsubs-182 ++fsubd-183 ++fmuls-184 ++fmuld-185 ++fdivs-186 ++fdivd-187 ++fsqrts-188 ++fsqrtd-189 ++fcmpeq-190 ++fcmple-191 ++fcmplt-192 ++fcmpun-193 ++fcvtsd-194 ++fcvtds-195 ++fcvtdl_g-196 ++fcvtdl_p-197 ++fcvtdl_z-198 ++fcvtdl_n-199 ++fcvtdl-200 ++fcvtwl-201 ++fcvtlw-202 ++fcvtls-203 ++fcvtld-204 ++fcpys-205 ++fcpyse-206 ++fcpysn-207 ++ifmovs-208 ++ifmovd-209 ++rfpcr-210 ++wfpcr-211 ++setfpec0-212 ++setfpec1-213 ++setfpec2-214 ++setfpec3-215 ++fmas-216 ++fmad-217 ++fmss-218 ++fmsd-219 ++fnmas-220 ++fnmad-221 ++fnmss-222 ++fnmsd-223 ++fseleq-224 ++fselne-225 ++fsellt-226 ++fselle-227 ++fselgt-228 ++fselge-229 ++vaddw-230 ++vsubw-231 ++vcmpgew-232 ++vcmpeqw-233 ++vcmplew-234 ++vcmpltw-235 ++vcmpulew-236 ++vcmpultw-237 ++vsllw-238 ++vsrlw-239 ++vsraw-240 ++vrolw-241 ++sllow-242 ++srlow-243 ++vaddl-244 ++vsubl-245 ++ctpopow-246 ++ctlzow-247 ++vucaddw-248 ++vucsubw-249 ++vucaddh-250 ++vucsubh-251 ++vucaddb-252 ++vucsubb-253 ++vaddwi-254 ++vsubwi-255 ++vcmpgewi-256 ++vcmpeqwi-257 ++vcmplewi-258 ++vcmpltwi-259 ++vcmpulewi-260 ++vcmpultwi-261 ++vsllwi-262 ++vsrlwi-263 ++vsrawi-264 ++vrolwi-265 ++sllowi-266 ++srlowi-267 ++vaddli-268 ++vsubli-269 ++vucaddwi-270 ++vucsubwi-271 ++vucaddhi-272 ++vucsubhi-273 ++vucaddbi-274 ++vucsubbi-275 ++vadds-276 ++vaddd-277 ++vsubs-278 ++vsubd-279 ++vmuls-280 ++vmuld-281 ++vdivs-282 ++vdivd-283 ++vsqrts-284 ++vsqrtd-285 ++vfcmpeq-286 ++vfcmple-287 ++vfcmplt-288 ++vfcmpun-289 ++vcpys-290 ++vcpyse-291 ++vcpysn-292 ++vmas-293 ++vmad-294 ++vmss-295 ++vmsd-296 ++vnmas-297 ++vnmad-298 ++vnmss-299 ++vnmsd-300 ++vfseleq-301 ++vfsellt-302 ++vfselle-303 ++vseleqw-304 ++vsellbcw-305 ++vselltw-306 ++vsellew-307 ++vinsw-308 ++vinsf-309 ++vextw-310 ++vextf-311 ++vcpyw-312 ++vcpyf-313 ++vconw-314 ++vshfw-315 ++vcons-316 ++vcond-317 ++vseleqwi-318 ++vsellbcwi-319 ++vselltwi-320 ++vsellewi-321 ++vldw_u-322 ++vstw_u-323 ++vlds_u-324 ++vsts_u-325 ++vldd_u-326 ++vstd_u-327 ++vstw_ul-328 ++vstw_uh-329 ++vsts_ul-330 ++vsts_uh-331 ++vstd_ul-332 ++vstd_uh-333 ++vldd_nc-334 ++vstd_nc-335 ++ldbu-336 ++ldhu-337 ++ldw-338 ++ldl-339 ++ldl_u-340 ++pri_ld-341 ++flds-342 ++fldd-343 ++stb-344 ++sth-345 ++stw-346 ++stl-347 ++stl_u-348 ++pri_st-349 ++fsts-350 ++fstd-351 ++beq-352 ++bne-353 ++blt-354 ++ble-355 ++bgt-356 ++bge-357 ++blbc-358 ++blbs-359 ++fbeq-360 ++fbne-361 ++fblt-362 ++fble-363 ++fbgt-364 ++fbge-365 ++ldi-366 ++ldih-367 +diff --git a/none/tests/sw64-insn/jmp-5.S b/none/tests/sw64-insn/jmp-5.S +new file mode 100644 +index 000000000..75e2b2184 +--- /dev/null ++++ b/none/tests/sw64-insn/jmp-5.S +@@ -0,0 +1,16 @@ ++ ++ .global _start ++_start: ++ br $29, 1f ++1: ldgp $29, 0($29) ++ subl $30, 16, $30 ++ mov 0, $15 ++ ++ ldi $16, 0 ++ jmp $26, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/ldbu-336.S b/none/tests/sw64-insn/ldbu-336.S +new file mode 120000 +index 000000000..904ba1366 +--- /dev/null ++++ b/none/tests/sw64-insn/ldbu-336.S +@@ -0,0 +1 @@ ++stb-344.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/ldd_nc-31.S b/none/tests/sw64-insn/ldd_nc-31.S +new file mode 100644 +index 000000000..ed9b33f2d +--- /dev/null ++++ b/none/tests/sw64-insn/ldd_nc-31.S +@@ -0,0 +1,19 @@ ++ ++ .global _start ++_start: ++ ldgp $29,0($27) ++ unop ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ ifmovd $17, $f17 ++ std_nc $f17, 0($sp) ++ ldd_nc $f18, 0($sp) ++ ldi $sp, 16($sp) ++ fcmpeq $f17, $f18, $f16 ++ ldi $16, 0 ++ fbne $f16, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/ldde-37.S b/none/tests/sw64-insn/ldde-37.S +new file mode 100644 +index 000000000..584bf54ac +--- /dev/null ++++ b/none/tests/sw64-insn/ldde-37.S +@@ -0,0 +1,52 @@ ++ ++ .global _start ++_start: ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 0.0 */ ++ ldi $18, 0x0 ++ ifmovd $18, $f18 ++ ++result: ++ /* 25.132740800000001 = 0x4039 21fb 4d12 d84a */ ++ ldi $19, 0x403921fb ++ sll $19, 16 ++ ldi $19, 0x4d12($19) ++ sll $19, 16 ++ ldi $19, 0xd84a($19) ++ ifmovd $19, $f19 ++ ++run: ++ ldi $sp, -256($sp) ++ fstd $f17, 0($sp) ++ ldde $f1, 0($sp) ++ vaddd $f1, $f1, $f2 /* 3.14 + 3.14 */ ++ vstd $f2, 0($sp) ++ ++sum_wrapper: ++ ldi $17, 0($sp) ++ ldi $23, 4 ++sum: ++ fldd $f2, 0($17) ++ faddd $f18, $f2 ++ subl $23, 1 ++ ldi $17, 8($17) ++ bne $23, sum ++ ++sum_end: ++ ldi $sp, 256($sp) ++ fcmpeq $f18, $f19, $f16 ++ ldi $16, 1 ++ fbeq $f16, exit ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/ldhu-337.S b/none/tests/sw64-insn/ldhu-337.S +new file mode 120000 +index 000000000..9901b1edc +--- /dev/null ++++ b/none/tests/sw64-insn/ldhu-337.S +@@ -0,0 +1 @@ ++sth-345.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/ldi-366.S b/none/tests/sw64-insn/ldi-366.S +new file mode 100644 +index 000000000..f75e1fa26 +--- /dev/null ++++ b/none/tests/sw64-insn/ldi-366.S +@@ -0,0 +1,11 @@ ++ ++.text ++ .global _start ++_start: ++ ldih $29, 0($27) !gpdisp!1 ++ ldi $29, 0($29) !gpdisp!1 ++ ++exit: ++ ldi $0, 1 ++ ldi $16, 0 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/ldih-367.S b/none/tests/sw64-insn/ldih-367.S +new file mode 120000 +index 000000000..8ab4dc5e7 +--- /dev/null ++++ b/none/tests/sw64-insn/ldih-367.S +@@ -0,0 +1 @@ ++ldi-366.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/ldl-339.S b/none/tests/sw64-insn/ldl-339.S +new file mode 120000 +index 000000000..5e197a67c +--- /dev/null ++++ b/none/tests/sw64-insn/ldl-339.S +@@ -0,0 +1 @@ ++stl-347.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/ldl_dec-24.S b/none/tests/sw64-insn/ldl_dec-24.S +new file mode 120000 +index 000000000..1ec4cb5a5 +--- /dev/null ++++ b/none/tests/sw64-insn/ldl_dec-24.S +@@ -0,0 +1 @@ ++ldl_inc-22.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/ldl_inc-22.S b/none/tests/sw64-insn/ldl_inc-22.S +new file mode 100644 +index 000000000..76fca28fd +--- /dev/null ++++ b/none/tests/sw64-insn/ldl_inc-22.S +@@ -0,0 +1,17 @@ ++ ++ .global _start ++_start: ++ ldgp $29,0($27) ++ unop ++ ldi $sp, -16($sp) ++ ldl $17, 42 ++ stw $17, 0($sp) ++ #ldl_set $18, 0($sp) ++ #ldl_inc $19, 0($sp) ++ #ldl_dec $20, 0$($sp) ++ ldi $sp, 16($sp) ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/ldl_nc-30.S b/none/tests/sw64-insn/ldl_nc-30.S +new file mode 100644 +index 000000000..d3b776276 +--- /dev/null ++++ b/none/tests/sw64-insn/ldl_nc-30.S +@@ -0,0 +1,16 @@ ++ ++ .global _start ++_start: ++ ldgp $29,0($27) ++ unop ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ stl_nc $17, 0($sp) ++ ldl_nc $18, 0($sp) ++ ldi $sp, 16($sp) ++ cmpeq $17, $18, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/ldl_set-26.S b/none/tests/sw64-insn/ldl_set-26.S +new file mode 120000 +index 000000000..1ec4cb5a5 +--- /dev/null ++++ b/none/tests/sw64-insn/ldl_set-26.S +@@ -0,0 +1 @@ ++ldl_inc-22.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/ldl_u-340.S b/none/tests/sw64-insn/ldl_u-340.S +new file mode 120000 +index 000000000..4962302c4 +--- /dev/null ++++ b/none/tests/sw64-insn/ldl_u-340.S +@@ -0,0 +1 @@ ++stl_u-348.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/ldse-36.S b/none/tests/sw64-insn/ldse-36.S +new file mode 100644 +index 000000000..44c3d5e89 +--- /dev/null ++++ b/none/tests/sw64-insn/ldse-36.S +@@ -0,0 +1,56 @@ ++ ++ .global _start ++_start: ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 2.71828 = 0x4005bf0995aaf790 */ ++ ldi $18, 0x4005bf09 ++ sll $18, 16 ++ ldi $18, 0x95aa($18) ++ sll $18, 16 ++ ldi $18, 0xf790($18) ++ ifmovd $18, $f18 ++ ++result: ++ /* 1.772453784942627 = 0x3ffc 5bf8 8000 0000 */ ++ ldi $19, 0x3ffc5bf8 ++ sll $19, 16 ++ ldi $19, 0x8000($19) ++ sll $19, 16 ++ ldi $19, 0x0000($19) ++ ifmovd $19, $f19 ++ ++run: ++ ldi $sp, -256($sp) ++ fcvtds $f17, $f20 ++ fsts $f20, 0($sp) ++ ldse $f1, 0($sp) ++ vadds $f1, $f1, $f2 /* 3.14 + 3.14 */ ++ vsts $f2, 0($sp) ++ ++sum_wrapper: ++ ldi $16, 0 ++ ldi $17, 0($sp) ++ ldi $23, 8 ++sum: ++ ldw $18, 0($17) ++ addw $16, $18 ++ subl $23, 1 ++ ldi $17, 4($17) ++ bne $23, sum ++ ++sum_end: ++ ldi $sp, 256($sp) ++ ldi $17, 52707176 ++ subl $16, $17 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/ldw-338.S b/none/tests/sw64-insn/ldw-338.S +new file mode 120000 +index 000000000..56a1155d1 +--- /dev/null ++++ b/none/tests/sw64-insn/ldw-338.S +@@ -0,0 +1 @@ ++stw-346.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/ldw_dec-23.S b/none/tests/sw64-insn/ldw_dec-23.S +new file mode 120000 +index 000000000..b9dc71db5 +--- /dev/null ++++ b/none/tests/sw64-insn/ldw_dec-23.S +@@ -0,0 +1 @@ ++ldw_inc-21.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/ldw_inc-21.S b/none/tests/sw64-insn/ldw_inc-21.S +new file mode 100644 +index 000000000..ff745ee3a +--- /dev/null ++++ b/none/tests/sw64-insn/ldw_inc-21.S +@@ -0,0 +1,17 @@ ++ ++ .global _start ++_start: ++ ldgp $29,0($27) ++ unop ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ stw $17, 0($sp) ++ #ldw_set $18, 0($sp) ++ #ldw_inc $19, 0($sp) ++ #ldw_dec $20, 0$($sp) ++ ldi $sp, 16($sp) ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/ldw_nc-29.S b/none/tests/sw64-insn/ldw_nc-29.S +new file mode 100644 +index 000000000..884f708d8 +--- /dev/null ++++ b/none/tests/sw64-insn/ldw_nc-29.S +@@ -0,0 +1,16 @@ ++ ++ .global _start ++_start: ++ ldgp $29,0($27) ++ unop ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ stw_nc $17, 0($sp) ++ ldw_nc $18, 0($sp) ++ ldi $sp, 16($sp) ++ cmpeq $17, $18, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/ldw_set-25.S b/none/tests/sw64-insn/ldw_set-25.S +new file mode 120000 +index 000000000..b9dc71db5 +--- /dev/null ++++ b/none/tests/sw64-insn/ldw_set-25.S +@@ -0,0 +1 @@ ++ldw_inc-21.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/ldwe-35.S b/none/tests/sw64-insn/ldwe-35.S +new file mode 100644 +index 000000000..7b51203d7 +--- /dev/null ++++ b/none/tests/sw64-insn/ldwe-35.S +@@ -0,0 +1,29 @@ ++ ++ .global _start ++_start: ++ ldi $sp, -256($sp) ++ ldi $17, 2 ++ stl $17, 0($sp) ++ ldwe $f1, 0($sp) ++ vaddw $f1, $f1, $f2 /* 2 + 2 = 4 */ ++ vstw_u $f2, 0($sp) ++ ++sum_wrapper: ++ ldi $16, 0 ++ ldi $17, 0($sp) ++ ldi $23, 8 ++sum: ++ ldw $18, 0($17) ++ addw $16, $18 ++ subl $23, 1 ++ ldi $17, 4($17) ++ bne $23, sum ++ ++result: ++ ldi $sp, 256($sp) ++ subl $16, 32 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/lldl-20.S b/none/tests/sw64-insn/lldl-20.S +new file mode 100644 +index 000000000..2b589a3c2 +--- /dev/null ++++ b/none/tests/sw64-insn/lldl-20.S +@@ -0,0 +1,60 @@ ++ .text ++ ++ .globl xchg_u64 ++xchg_u64: ++ ldi $30,-64($30) ++ stl $26,0($30) ++ stl $15,8($30) ++ mov $30,$15 ++ stl $16,48($15) ++ stl $17,56($15) ++ ldl $5,48($15) ++ ldl $1,56($15) ++ ldl $2,48($15) ++ memb ++ ldi $6, 0($2) ++ ++f1: ++ lldl $4, 0($6) ++ ldi $3, 1 ++ wr_f $3 ++ bis $31, $1, $3 ++ memb ++ lstl $3, 0($6) ++ rd_f $3 ++ bne $3, f2 ++ br f1 ++ ++f2: ++ mov $6,$2 ++ stl $4,56($15) ++ stl $3,32($15) ++ stl $2,40($15) ++ ldl $1,56($15) ++ mov $1,$0 ++ mov $15,$30 ++ ldl $26,0($30) ++ ldl $15,8($30) ++ ldi $30,64($30) ++ ret $31,($26),1 ++ ++ .global _start ++_start: ++ br $29, 1f ++1: ldgp $29, 0($29) ++ subl $30, 16, $30 ++ mov 0, $15 ++ ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ stl $17, 0($sp) ++ ldi $16, 0($sp) ++ ldi $17, 43 ++ call $26, xchg_u64 ++ mov $0, $16 ++ subl $16, 42 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/lldw-19.S b/none/tests/sw64-insn/lldw-19.S +new file mode 100644 +index 000000000..1b1e2d823 +--- /dev/null ++++ b/none/tests/sw64-insn/lldw-19.S +@@ -0,0 +1,60 @@ ++ .text ++ ++ .globl xchg_u32 ++xchg_u32: ++ ldi $30,-64($30) ++ stl $26,0($30) ++ stl $15,8($30) ++ mov $30,$15 ++ stl $16,48($15) ++ stl $17,56($15) ++ ldl $5,48($15) ++ ldl $1,56($15) ++ ldl $2,48($15) ++ memb ++ ldi $6, 0($2) ++ ++f1: ++ lldw $4, 0($6) ++ ldi $3, 1 ++ wr_f $3 ++ bis $31, $1, $3 ++ memb ++ lstw $3, 0($6) ++ rd_f $3 ++ bne $3, f2 ++ br f1 ++ ++f2: ++ mov $6,$2 ++ stl $4,56($15) ++ stl $3,32($15) ++ stl $2,40($15) ++ ldl $1,56($15) ++ mov $1,$0 ++ mov $15,$30 ++ ldl $26,0($30) ++ ldl $15,8($30) ++ ldi $30,64($30) ++ ret $31,($26),1 ++ ++ .global _start ++_start: ++ br $29, 1f ++1: ldgp $29, 0($29) ++ subl $30, 16, $30 ++ mov 0, $15 ++ ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ stl $17, 0($sp) ++ ldi $16, 0($sp) ++ ldi $17, 43 ++ call $26, xchg_u32 ++ mov $0, $16 ++ subl $16, 42 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/lstl-28.S b/none/tests/sw64-insn/lstl-28.S +new file mode 100644 +index 000000000..bddd21c74 +--- /dev/null ++++ b/none/tests/sw64-insn/lstl-28.S +@@ -0,0 +1,60 @@ ++ .text ++ ++ .globl xchg_u64 ++xchg_u64: ++ ldi $30,-64($30) ++ stl $26,0($30) ++ stl $15,8($30) ++ mov $30,$15 ++ stl $16,48($15) ++ stl $17,56($15) ++ ldl $5,48($15) ++ ldl $1,56($15) ++ ldl $2,48($15) ++ memb ++ ldi $6, 0($2) ++ ++f1: ++ lldl $4, 0($6) ++ ldi $3, 1 ++ wr_f $3 ++ bis $31, $1, $3 ++ memb ++ lstl $3, 0($6) ++ rd_f $3 ++ bne $3, f2 ++ br f1 ++ ++f2: ++ mov $6,$2 ++ stl $4,56($15) ++ stl $3,32($15) ++ stl $2,40($15) ++ ldl $1,56($15) ++ mov $1,$0 ++ mov $15,$30 ++ ldl $26,0($30) ++ ldl $15,8($30) ++ ldi $30,64($30) ++ ret $31,($26),1 ++ ++ .global _start ++_start: ++ br $29, 1f ++1: ldgp $29, 0($29) ++ subl $30, 16, $30 ++ mov 0, $15 ++ ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ stl $17, 0($sp) ++ ldi $16, 0($sp) ++ ldi $17, 43 ++ call $26, xchg_u64 ++ mov $0, $16 ++ subl $16, 42 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/lstw-27.S b/none/tests/sw64-insn/lstw-27.S +new file mode 100644 +index 000000000..1b1e2d823 +--- /dev/null ++++ b/none/tests/sw64-insn/lstw-27.S +@@ -0,0 +1,60 @@ ++ .text ++ ++ .globl xchg_u32 ++xchg_u32: ++ ldi $30,-64($30) ++ stl $26,0($30) ++ stl $15,8($30) ++ mov $30,$15 ++ stl $16,48($15) ++ stl $17,56($15) ++ ldl $5,48($15) ++ ldl $1,56($15) ++ ldl $2,48($15) ++ memb ++ ldi $6, 0($2) ++ ++f1: ++ lldw $4, 0($6) ++ ldi $3, 1 ++ wr_f $3 ++ bis $31, $1, $3 ++ memb ++ lstw $3, 0($6) ++ rd_f $3 ++ bne $3, f2 ++ br f1 ++ ++f2: ++ mov $6,$2 ++ stl $4,56($15) ++ stl $3,32($15) ++ stl $2,40($15) ++ ldl $1,56($15) ++ mov $1,$0 ++ mov $15,$30 ++ ldl $26,0($30) ++ ldl $15,8($30) ++ ldi $30,64($30) ++ ret $31,($26),1 ++ ++ .global _start ++_start: ++ br $29, 1f ++1: ldgp $29, 0($29) ++ subl $30, 16, $30 ++ mov 0, $15 ++ ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ stl $17, 0($sp) ++ ldi $16, 0($sp) ++ ldi $17, 43 ++ call $26, xchg_u32 ++ mov $0, $16 ++ subl $16, 42 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/maskhb-94.S b/none/tests/sw64-insn/maskhb-94.S +new file mode 100644 +index 000000000..11d6643b0 +--- /dev/null ++++ b/none/tests/sw64-insn/maskhb-94.S +@@ -0,0 +1,13 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 1 ++ maskhb $17, $18, $16 ++ srl $16, 8, $16 ++ subl $16, 0xf0, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/maskhbi-162.S b/none/tests/sw64-insn/maskhbi-162.S +new file mode 100644 +index 000000000..df326d56c +--- /dev/null ++++ b/none/tests/sw64-insn/maskhbi-162.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ maskhb $17, 1, $16 ++ srl $16, 8, $16 ++ subl $16, 0xf0, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/maskhh-95.S b/none/tests/sw64-insn/maskhh-95.S +new file mode 100644 +index 000000000..d7ed1bb71 +--- /dev/null ++++ b/none/tests/sw64-insn/maskhh-95.S +@@ -0,0 +1,13 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 1 ++ maskhh $17, $18, $16 ++ srl $16, 8, $16 ++ subl $16, 0xf0, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/maskhhi-163.S b/none/tests/sw64-insn/maskhhi-163.S +new file mode 100644 +index 000000000..b12dc6bd1 +--- /dev/null ++++ b/none/tests/sw64-insn/maskhhi-163.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ maskhh $17, 1, $16 ++ srl $16, 8, $16 ++ subl $16, 0xf0, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/maskhl-97.S b/none/tests/sw64-insn/maskhl-97.S +new file mode 100644 +index 000000000..29d0243ce +--- /dev/null ++++ b/none/tests/sw64-insn/maskhl-97.S +@@ -0,0 +1,13 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 1 ++ maskhl $17, $18, $16 ++ cttz $16, $16 ++ subl $16, 12, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/maskhli-165.S b/none/tests/sw64-insn/maskhli-165.S +new file mode 100644 +index 000000000..86462f0ad +--- /dev/null ++++ b/none/tests/sw64-insn/maskhli-165.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ maskhl $17, 1, $16 ++ cttz $16, $16 ++ subl $16, 12, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/maskhw-96.S b/none/tests/sw64-insn/maskhw-96.S +new file mode 100644 +index 000000000..1cbe62404 +--- /dev/null ++++ b/none/tests/sw64-insn/maskhw-96.S +@@ -0,0 +1,13 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 1 ++ maskhw $17, $18, $16 ++ srl $16, 8, $16 ++ subl $16, 0xf0, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/maskhwi-164.S b/none/tests/sw64-insn/maskhwi-164.S +new file mode 100644 +index 000000000..f9abb0e8b +--- /dev/null ++++ b/none/tests/sw64-insn/maskhwi-164.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ maskhw $17, 1, $16 ++ srl $16, 8, $16 ++ subl $16, 0xf0, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/masklb-90.S b/none/tests/sw64-insn/masklb-90.S +new file mode 100644 +index 000000000..63c5da1eb +--- /dev/null ++++ b/none/tests/sw64-insn/masklb-90.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 1 ++ masklb $17, $18, $16 ++ subl $16, 0xf1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/masklbi-158.S b/none/tests/sw64-insn/masklbi-158.S +new file mode 100644 +index 000000000..f6335a188 +--- /dev/null ++++ b/none/tests/sw64-insn/masklbi-158.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ masklb $17, 1, $16 ++ subl $16, 0xf1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/masklh-91.S b/none/tests/sw64-insn/masklh-91.S +new file mode 100644 +index 000000000..e8a80019a +--- /dev/null ++++ b/none/tests/sw64-insn/masklh-91.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 1 ++ masklh $17, $18, $16 ++ subl $16, 0xf1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/masklhi-159.S b/none/tests/sw64-insn/masklhi-159.S +new file mode 100644 +index 000000000..9dfcb4329 +--- /dev/null ++++ b/none/tests/sw64-insn/masklhi-159.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ masklh $17, 1, $16 ++ subl $16, 0xf1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/maskll-93.S b/none/tests/sw64-insn/maskll-93.S +new file mode 100644 +index 000000000..8ccf02966 +--- /dev/null ++++ b/none/tests/sw64-insn/maskll-93.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 1 ++ maskll $17, $18, $16 ++ subl $16, 0xf1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/masklli-161.S b/none/tests/sw64-insn/masklli-161.S +new file mode 100644 +index 000000000..141929444 +--- /dev/null ++++ b/none/tests/sw64-insn/masklli-161.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ maskll $17, 1, $16 ++ subl $16, 0xf1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/masklw-92.S b/none/tests/sw64-insn/masklw-92.S +new file mode 100644 +index 000000000..6d5657478 +--- /dev/null ++++ b/none/tests/sw64-insn/masklw-92.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 1 ++ masklw $17, $18, $16 ++ subl $16, 0xf1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/masklwi-160.S b/none/tests/sw64-insn/masklwi-160.S +new file mode 100644 +index 000000000..869038a97 +--- /dev/null ++++ b/none/tests/sw64-insn/masklwi-160.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ masklw $17, 1, $16 ++ subl $16, 0xf1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/memb-8.S b/none/tests/sw64-insn/memb-8.S +new file mode 100644 +index 000000000..1b1e2d823 +--- /dev/null ++++ b/none/tests/sw64-insn/memb-8.S +@@ -0,0 +1,60 @@ ++ .text ++ ++ .globl xchg_u32 ++xchg_u32: ++ ldi $30,-64($30) ++ stl $26,0($30) ++ stl $15,8($30) ++ mov $30,$15 ++ stl $16,48($15) ++ stl $17,56($15) ++ ldl $5,48($15) ++ ldl $1,56($15) ++ ldl $2,48($15) ++ memb ++ ldi $6, 0($2) ++ ++f1: ++ lldw $4, 0($6) ++ ldi $3, 1 ++ wr_f $3 ++ bis $31, $1, $3 ++ memb ++ lstw $3, 0($6) ++ rd_f $3 ++ bne $3, f2 ++ br f1 ++ ++f2: ++ mov $6,$2 ++ stl $4,56($15) ++ stl $3,32($15) ++ stl $2,40($15) ++ ldl $1,56($15) ++ mov $1,$0 ++ mov $15,$30 ++ ldl $26,0($30) ++ ldl $15,8($30) ++ ldi $30,64($30) ++ ret $31,($26),1 ++ ++ .global _start ++_start: ++ br $29, 1f ++1: ldgp $29, 0($29) ++ subl $30, 16, $30 ++ mov 0, $15 ++ ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ stl $17, 0($sp) ++ ldi $16, 0($sp) ++ ldi $17, 43 ++ call $26, xchg_u32 ++ mov $0, $16 ++ subl $16, 42 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/mull-55.S b/none/tests/sw64-insn/mull-55.S +new file mode 100644 +index 000000000..e115b8ede +--- /dev/null ++++ b/none/tests/sw64-insn/mull-55.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 3 ++ ldi $18, 2 ++ mull $17, $18, $16 ++ subl $16, 6, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/mulli-126.S b/none/tests/sw64-insn/mulli-126.S +new file mode 100644 +index 000000000..5db44faca +--- /dev/null ++++ b/none/tests/sw64-insn/mulli-126.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 3 ++ mull $17, 2, $16 ++ subl $16, 6, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/mulw-54.S b/none/tests/sw64-insn/mulw-54.S +new file mode 100644 +index 000000000..0b62cdbec +--- /dev/null ++++ b/none/tests/sw64-insn/mulw-54.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 3 ++ ldi $18, 2 ++ mulw $17, $18, $16 ++ subw $16, 6, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/mulwi-125.S b/none/tests/sw64-insn/mulwi-125.S +new file mode 100644 +index 000000000..0649da3a1 +--- /dev/null ++++ b/none/tests/sw64-insn/mulwi-125.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 3 ++ mulw $17, 2, $16 ++ subw $16, 6, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/not-found-insn.S b/none/tests/sw64-insn/not-found-insn.S +new file mode 100644 +index 000000000..5db70971d +--- /dev/null ++++ b/none/tests/sw64-insn/not-found-insn.S +@@ -0,0 +1,74 @@ ++ ++ .global _start ++_start: ++ addwi $16 ++ subwi $16 ++ s4addwi $16 ++ s4subwi $16 ++ s8addwi $16 ++ s8subwi $16 ++ addli $16 ++ subli $16 ++ s4addli $16 ++ s4subli $16 ++ s8addli $16 ++ s8subli $16 ++ mulwi $16 ++ mulli $16 ++ umulhi $16 ++ cmpeqi $16 ++ cmplti $16 ++ cmplei $16 ++ cmpulti $16 ++ cmpulei $16 ++ andi $16 ++ bici $16 ++ bisi $16 ++ ornoti $16 ++ xori $16 ++ eqvi $16 ++ inslbi $16 ++ inslhi $16 ++ inslwi $16 ++ inslli $16 ++ inshbi $16 ++ inshhi $16 ++ inshwi $16 ++ inshli $16 ++ slli $16 ++ srli $16 ++ srai $16 ++ extlbi $16 ++ extlhi $16 ++ extlwi $16 ++ extlli $16 ++ exthbi $16 ++ exthhi $16 ++ exthwi $16 ++ exthli $16 ++ masklbi $16 ++ masklhi $16 ++ masklwi $16 ++ masklli $16 ++ maskhbi $16 ++ maskhhi $16 ++ maskhwi $16 ++ maskhli $16 ++ zapi $16 ++ zapnoti $16 ++ sextbi $16 ++ sexthi $16 ++ cmpgebi $16 ++ seleqi $16 ++ selgei $16 ++ selgti $16 ++ sellei $16 ++ sellti $16 ++ selnei $16 ++ sellbci $16 ++ sellbsi $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/ornot-65.S b/none/tests/sw64-insn/ornot-65.S +new file mode 100644 +index 000000000..fac47d9e7 +--- /dev/null ++++ b/none/tests/sw64-insn/ornot-65.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ ornot $17, $18, $16 ++ addl $16, 2 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/ornoti-136.S b/none/tests/sw64-insn/ornoti-136.S +new file mode 100644 +index 000000000..fd558c0cb +--- /dev/null ++++ b/none/tests/sw64-insn/ornoti-136.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ornot $17, 1, $16 ++ addl $16, 2 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/pri_ld-341.S b/none/tests/sw64-insn/pri_ld-341.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/pri_ld-341.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/pri_rcsr-16.S b/none/tests/sw64-insn/pri_rcsr-16.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/pri_rcsr-16.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/pri_ret-18.S b/none/tests/sw64-insn/pri_ret-18.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/pri_ret-18.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/pri_st-349.S b/none/tests/sw64-insn/pri_st-349.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/pri_st-349.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/pri_wcsr-17.S b/none/tests/sw64-insn/pri_wcsr-17.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/pri_wcsr-17.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/rcid-11.S b/none/tests/sw64-insn/rcid-11.S +new file mode 100644 +index 000000000..45eb62638 +--- /dev/null ++++ b/none/tests/sw64-insn/rcid-11.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $16, 1($31) ++ rcid $16 ++ bgt $16, exit ++ ldi $16, 0($31) ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/rd_f-13.S b/none/tests/sw64-insn/rd_f-13.S +new file mode 100644 +index 000000000..1b1e2d823 +--- /dev/null ++++ b/none/tests/sw64-insn/rd_f-13.S +@@ -0,0 +1,60 @@ ++ .text ++ ++ .globl xchg_u32 ++xchg_u32: ++ ldi $30,-64($30) ++ stl $26,0($30) ++ stl $15,8($30) ++ mov $30,$15 ++ stl $16,48($15) ++ stl $17,56($15) ++ ldl $5,48($15) ++ ldl $1,56($15) ++ ldl $2,48($15) ++ memb ++ ldi $6, 0($2) ++ ++f1: ++ lldw $4, 0($6) ++ ldi $3, 1 ++ wr_f $3 ++ bis $31, $1, $3 ++ memb ++ lstw $3, 0($6) ++ rd_f $3 ++ bne $3, f2 ++ br f1 ++ ++f2: ++ mov $6,$2 ++ stl $4,56($15) ++ stl $3,32($15) ++ stl $2,40($15) ++ ldl $1,56($15) ++ mov $1,$0 ++ mov $15,$30 ++ ldl $26,0($30) ++ ldl $15,8($30) ++ ldi $30,64($30) ++ ret $31,($26),1 ++ ++ .global _start ++_start: ++ br $29, 1f ++1: ldgp $29, 0($29) ++ subl $30, 16, $30 ++ mov 0, $15 ++ ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ stl $17, 0($sp) ++ ldi $16, 0($sp) ++ ldi $17, 43 ++ call $26, xchg_u32 ++ mov $0, $16 ++ subl $16, 42 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/ret-4.S b/none/tests/sw64-insn/ret-4.S +new file mode 100644 +index 000000000..ff188d0d1 +--- /dev/null ++++ b/none/tests/sw64-insn/ret-4.S +@@ -0,0 +1,18 @@ ++ ++ .global _start ++_start: ++ br $29, 1f ++1: ldgp $29, 0($29) ++ subl $30, 16, $30 ++ mov 0, $15 ++ ++ ldi $16, 1 ++ call $26, noop ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ ++noop: ++ ret $31, ($26), 0x1 +diff --git a/none/tests/sw64-insn/rfpcr-210.S b/none/tests/sw64-insn/rfpcr-210.S +new file mode 100644 +index 000000000..8ca9cb274 +--- /dev/null ++++ b/none/tests/sw64-insn/rfpcr-210.S +@@ -0,0 +1,31 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ ldi $1, 0x00 ++ ifmovd $1, $f1 ++ ++x2: ++ ldi $2, 0x01 ++ ifmovd $2, $f2 ++ ++x3: ++ ldi $3, 0x02 ++ ifmovd $3, $f3 ++ ++x4: ++ ldi $4, 0x03 ++ ifmovd $4, $f4 ++ ++run: ++ wfpcr $f1 ++ rfpcr $f16 ++ fsubd $f16, $f1, $f17 ++ ldi $16, 0 ++ fbeq $f17, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/rtc-10.S b/none/tests/sw64-insn/rtc-10.S +new file mode 100644 +index 000000000..85e63a56e +--- /dev/null ++++ b/none/tests/sw64-insn/rtc-10.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $16, -1($31) ++ rtc $16 ++ blt $16, exit ++ ldi $16, 0($31) ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/rtid-15.S b/none/tests/sw64-insn/rtid-15.S +new file mode 100644 +index 000000000..52602263c +--- /dev/null ++++ b/none/tests/sw64-insn/rtid-15.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $16, -1($31) ++ rtid $16 ++ ble $16, exit ++ ldi $16, 0($31) ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s4addl-50.S b/none/tests/sw64-insn/s4addl-50.S +new file mode 100644 +index 000000000..3ecdb5e04 +--- /dev/null ++++ b/none/tests/sw64-insn/s4addl-50.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ s4addl $17, $18, $16 ++ subl $16, 9, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s4addli-121.S b/none/tests/sw64-insn/s4addli-121.S +new file mode 100644 +index 000000000..6367420ad +--- /dev/null ++++ b/none/tests/sw64-insn/s4addli-121.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ s4addl $17, 1, $16 ++ subl $16, 9, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s4addw-44.S b/none/tests/sw64-insn/s4addw-44.S +new file mode 100644 +index 000000000..b99135a6a +--- /dev/null ++++ b/none/tests/sw64-insn/s4addw-44.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ s4addw $17, $18, $16 ++ subw $16, 9, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s4addwi-115.S b/none/tests/sw64-insn/s4addwi-115.S +new file mode 100644 +index 000000000..16983f88c +--- /dev/null ++++ b/none/tests/sw64-insn/s4addwi-115.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ s4addw $17, 1, $16 ++ subw $16, 9, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s4subl-51.S b/none/tests/sw64-insn/s4subl-51.S +new file mode 100644 +index 000000000..7d7ff2cea +--- /dev/null ++++ b/none/tests/sw64-insn/s4subl-51.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ s4subl $17, $18, $16 ++ subl $16, 7, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s4subli-122.S b/none/tests/sw64-insn/s4subli-122.S +new file mode 100644 +index 000000000..f5b9f60ce +--- /dev/null ++++ b/none/tests/sw64-insn/s4subli-122.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ s4subl $17, 1, $16 ++ subl $16, 7, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s4subw-45.S b/none/tests/sw64-insn/s4subw-45.S +new file mode 100644 +index 000000000..c25bc8d3c +--- /dev/null ++++ b/none/tests/sw64-insn/s4subw-45.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ s4subw $17, $18, $16 ++ subw $16, 7, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s4subwi-116.S b/none/tests/sw64-insn/s4subwi-116.S +new file mode 100644 +index 000000000..9b5097d1e +--- /dev/null ++++ b/none/tests/sw64-insn/s4subwi-116.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ s4subw $17, 1, $16 ++ subw $16, 7, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s8addl-52.S b/none/tests/sw64-insn/s8addl-52.S +new file mode 100644 +index 000000000..d913eac9e +--- /dev/null ++++ b/none/tests/sw64-insn/s8addl-52.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ s8addl $17, $18, $16 ++ subl $16, 17, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s8addli-123.S b/none/tests/sw64-insn/s8addli-123.S +new file mode 100644 +index 000000000..570661b98 +--- /dev/null ++++ b/none/tests/sw64-insn/s8addli-123.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ s8addl $17, 1, $16 ++ subl $16, 17, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s8addw-46.S b/none/tests/sw64-insn/s8addw-46.S +new file mode 100644 +index 000000000..0058af6cb +--- /dev/null ++++ b/none/tests/sw64-insn/s8addw-46.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ s8addw $17, $18, $16 ++ subw $16, 17, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s8addwi-117.S b/none/tests/sw64-insn/s8addwi-117.S +new file mode 100644 +index 000000000..f27423ebc +--- /dev/null ++++ b/none/tests/sw64-insn/s8addwi-117.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ s8addw $17, 1, $16 ++ subw $16, 17, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s8subl-53.S b/none/tests/sw64-insn/s8subl-53.S +new file mode 100644 +index 000000000..cbf56ec71 +--- /dev/null ++++ b/none/tests/sw64-insn/s8subl-53.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ s8subl $17, $18, $16 ++ subl $16, 15, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s8subli-124.S b/none/tests/sw64-insn/s8subli-124.S +new file mode 100644 +index 000000000..3c134f28d +--- /dev/null ++++ b/none/tests/sw64-insn/s8subli-124.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ s8subl $17, 1, $16 ++ subl $16, 15, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s8subw-47.S b/none/tests/sw64-insn/s8subw-47.S +new file mode 100644 +index 000000000..8d770798a +--- /dev/null ++++ b/none/tests/sw64-insn/s8subw-47.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ s8subw $17, $18, $16 ++ subw $16, 15, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/s8subwi-118.S b/none/tests/sw64-insn/s8subwi-118.S +new file mode 100644 +index 000000000..929c3831c +--- /dev/null ++++ b/none/tests/sw64-insn/s8subwi-118.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ s8subw $17, 1, $16 ++ subw $16, 15, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/seleq-105.S b/none/tests/sw64-insn/seleq-105.S +new file mode 100644 +index 000000000..8d12907e5 +--- /dev/null ++++ b/none/tests/sw64-insn/seleq-105.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ ldi $18, 0 ++ ldi $19, 1 ++ seleq $17, $19, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/seleqi-171.S b/none/tests/sw64-insn/seleqi-171.S +new file mode 100644 +index 000000000..338ac28f5 +--- /dev/null ++++ b/none/tests/sw64-insn/seleqi-171.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ ldi $18, 0 ++ seleq $17, 1, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/selge-106.S b/none/tests/sw64-insn/selge-106.S +new file mode 100644 +index 000000000..2ee09fa30 +--- /dev/null ++++ b/none/tests/sw64-insn/selge-106.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, -42 ++ ldi $18, 0 ++ ldi $19, 3 ++ selge $17, $19, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/selgei-172.S b/none/tests/sw64-insn/selgei-172.S +new file mode 100644 +index 000000000..87c603595 +--- /dev/null ++++ b/none/tests/sw64-insn/selgei-172.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, -42 ++ ldi $18, 0 ++ selge $17, 3, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/selgt-107.S b/none/tests/sw64-insn/selgt-107.S +new file mode 100644 +index 000000000..1619bf441 +--- /dev/null ++++ b/none/tests/sw64-insn/selgt-107.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, -42 ++ ldi $18, 0 ++ ldi $19, 3 ++ selgt $17, $19, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/selgti-173.S b/none/tests/sw64-insn/selgti-173.S +new file mode 100644 +index 000000000..8fd00be70 +--- /dev/null ++++ b/none/tests/sw64-insn/selgti-173.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, -42 ++ ldi $18, 0 ++ selgt $17, 3, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/sellbc-111.S b/none/tests/sw64-insn/sellbc-111.S +new file mode 100644 +index 000000000..978a670ee +--- /dev/null ++++ b/none/tests/sw64-insn/sellbc-111.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0b1001 ++ ldi $18, 0 ++ ldi $19, 1 ++ sellbc $17, $19, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/sellbci-177.S b/none/tests/sw64-insn/sellbci-177.S +new file mode 100644 +index 000000000..1d87f0f5f +--- /dev/null ++++ b/none/tests/sw64-insn/sellbci-177.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0b1001 ++ ldi $18, 0 ++ sellbc $17, 1, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/sellbs-112.S b/none/tests/sw64-insn/sellbs-112.S +new file mode 100644 +index 000000000..db3ff272c +--- /dev/null ++++ b/none/tests/sw64-insn/sellbs-112.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0b1010 ++ ldi $18, 0 ++ ldi $19, 1 ++ sellbs $17, $19, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/sellbsi-178.S b/none/tests/sw64-insn/sellbsi-178.S +new file mode 100644 +index 000000000..0deb3746a +--- /dev/null ++++ b/none/tests/sw64-insn/sellbsi-178.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0b1010 ++ ldi $18, 0 ++ sellbs $17, 1, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/selle-108.S b/none/tests/sw64-insn/selle-108.S +new file mode 100644 +index 000000000..58a0bebad +--- /dev/null ++++ b/none/tests/sw64-insn/selle-108.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ ldi $18, 0 ++ ldi $19, 1 ++ selle $17, $19, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/sellei-174.S b/none/tests/sw64-insn/sellei-174.S +new file mode 100644 +index 000000000..59bbe5c21 +--- /dev/null ++++ b/none/tests/sw64-insn/sellei-174.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ ldi $18, 0 ++ selle $17, 1, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/sellt-109.S b/none/tests/sw64-insn/sellt-109.S +new file mode 100644 +index 000000000..a4cb2a442 +--- /dev/null ++++ b/none/tests/sw64-insn/sellt-109.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ ldi $18, 0 ++ ldi $19, 1 ++ sellt $17, $19, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/sellti-175.S b/none/tests/sw64-insn/sellti-175.S +new file mode 100644 +index 000000000..08ae05d9f +--- /dev/null ++++ b/none/tests/sw64-insn/sellti-175.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 42 ++ ldi $18, 0 ++ sellt $17, 1, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/selne-110.S b/none/tests/sw64-insn/selne-110.S +new file mode 100644 +index 000000000..0e616b131 +--- /dev/null ++++ b/none/tests/sw64-insn/selne-110.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0 ++ ldi $18, 0 ++ ldi $19, 1 ++ selne $17, $19, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/selnei-176.S b/none/tests/sw64-insn/selnei-176.S +new file mode 100644 +index 000000000..9d14f0b6f +--- /dev/null ++++ b/none/tests/sw64-insn/selnei-176.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0 ++ ldi $18, 0 ++ selne $17, 1, $18, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/setfpec0-212.S b/none/tests/sw64-insn/setfpec0-212.S +new file mode 100644 +index 000000000..58cd7bd1d +--- /dev/null ++++ b/none/tests/sw64-insn/setfpec0-212.S +@@ -0,0 +1,30 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ ldi $1, 0x00 ++ ifmovd $1, $f1 ++ ++x2: ++ ldi $2, 0x01 ++ ifmovd $2, $f2 ++ ++x3: ++ ldi $3, 0x02 ++ ifmovd $3, $f3 ++ ++x4: ++ ldi $4, 0x03 ++ ifmovd $4, $f4 ++ ++run: ++ wfpcr $f1 ++ setfpec0 ++ rfpcr $f16 ++ fimovd $f16, $16 ++ subl $16, $1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/setfpec1-213.S b/none/tests/sw64-insn/setfpec1-213.S +new file mode 100644 +index 000000000..1c7252c7d +--- /dev/null ++++ b/none/tests/sw64-insn/setfpec1-213.S +@@ -0,0 +1,30 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ ldi $1, 0x00 ++ ifmovd $1, $f1 ++ ++x2: ++ ldi $2, 0x01 ++ ifmovd $2, $f2 ++ ++x3: ++ ldi $3, 0x02 ++ ifmovd $3, $f3 ++ ++x4: ++ ldi $4, 0x03 ++ ifmovd $4, $f4 ++ ++run: ++ wfpcr $f1 ++ setfpec1 ++ rfpcr $f16 ++ fimovd $f16, $16 ++ subl $16, $2 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/setfpec2-214.S b/none/tests/sw64-insn/setfpec2-214.S +new file mode 100644 +index 000000000..c6bac4d1d +--- /dev/null ++++ b/none/tests/sw64-insn/setfpec2-214.S +@@ -0,0 +1,30 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ ldi $1, 0x00 ++ ifmovd $1, $f1 ++ ++x2: ++ ldi $2, 0x01 ++ ifmovd $2, $f2 ++ ++x3: ++ ldi $3, 0x02 ++ ifmovd $3, $f3 ++ ++x4: ++ ldi $4, 0x03 ++ ifmovd $4, $f4 ++ ++run: ++ wfpcr $f1 ++ setfpec2 ++ rfpcr $f16 ++ fimovd $f16, $16 ++ subl $16, $3 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/setfpec3-215.S b/none/tests/sw64-insn/setfpec3-215.S +new file mode 100644 +index 000000000..ac089f2e1 +--- /dev/null ++++ b/none/tests/sw64-insn/setfpec3-215.S +@@ -0,0 +1,30 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ ldi $1, 0x00 ++ ifmovd $1, $f1 ++ ++x2: ++ ldi $2, 0x01 ++ ifmovd $2, $f2 ++ ++x3: ++ ldi $3, 0x02 ++ ifmovd $3, $f3 ++ ++x4: ++ ldi $4, 0x03 ++ ifmovd $4, $f4 ++ ++run: ++ wfpcr $f1 ++ setfpec3 ++ rfpcr $f16 ++ fimovd $f16, $16 ++ subl $16, $4 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/sextb-100.S b/none/tests/sw64-insn/sextb-100.S +new file mode 100644 +index 000000000..06183ca83 +--- /dev/null ++++ b/none/tests/sw64-insn/sextb-100.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf1 ++ sextb $17, $16 ++ addl $16, 0xf, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/sextbi-168.S b/none/tests/sw64-insn/sextbi-168.S +new file mode 100644 +index 000000000..dff7b550f +--- /dev/null ++++ b/none/tests/sw64-insn/sextbi-168.S +@@ -0,0 +1,10 @@ ++ ++ .global _start ++_start: ++ sextb 0xf1, $16 ++ addl $16, 0xf, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/sexth-101.S b/none/tests/sw64-insn/sexth-101.S +new file mode 100644 +index 000000000..f8c386cfd +--- /dev/null ++++ b/none/tests/sw64-insn/sexth-101.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf1 ++ sexth $17, $16 ++ addl $16, 0xf, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/sexthi-169.S b/none/tests/sw64-insn/sexthi-169.S +new file mode 100644 +index 000000000..b7fbe57c1 +--- /dev/null ++++ b/none/tests/sw64-insn/sexthi-169.S +@@ -0,0 +1,10 @@ ++ ++ .global _start ++_start: ++ sexth 0xf1, $16 ++ addl $16, 0xf, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/sll-76.S b/none/tests/sw64-insn/sll-76.S +new file mode 100644 +index 000000000..3187a3b00 +--- /dev/null ++++ b/none/tests/sw64-insn/sll-76.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 2 ++ sll $17, $18, $16 ++ subl $16, 8 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/slli-147.S b/none/tests/sw64-insn/slli-147.S +new file mode 100644 +index 000000000..221575f7b +--- /dev/null ++++ b/none/tests/sw64-insn/slli-147.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ sll $17, 2, $16 ++ subl $16, 8 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/sllow-242.S b/none/tests/sw64-insn/sllow-242.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/sllow-242.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/sllowi-266.S b/none/tests/sw64-insn/sllowi-266.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/sllowi-266.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/sra-78.S b/none/tests/sw64-insn/sra-78.S +new file mode 100644 +index 000000000..b9e2964a0 +--- /dev/null ++++ b/none/tests/sw64-insn/sra-78.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 4 ++ ldi $18, 1 ++ sra $17, $18, $16 ++ subl $16, 2 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/srai-149.S b/none/tests/sw64-insn/srai-149.S +new file mode 100644 +index 000000000..c10a4fe64 +--- /dev/null ++++ b/none/tests/sw64-insn/srai-149.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 4 ++ sra $17, 1, $16 ++ subl $16, 2 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/srl-77.S b/none/tests/sw64-insn/srl-77.S +new file mode 100644 +index 000000000..33b428fa8 +--- /dev/null ++++ b/none/tests/sw64-insn/srl-77.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 4 ++ ldi $18, 1 ++ srl $17, $18, $16 ++ subl $16, 2 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/srli-148.S b/none/tests/sw64-insn/srli-148.S +new file mode 100644 +index 000000000..f5407e823 +--- /dev/null ++++ b/none/tests/sw64-insn/srli-148.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 4 ++ srl $17, 1, $16 ++ subl $16, 2 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/srlow-243.S b/none/tests/sw64-insn/srlow-243.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/srlow-243.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/srlowi-267.S b/none/tests/sw64-insn/srlowi-267.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/srlowi-267.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/stb-344.S b/none/tests/sw64-insn/stb-344.S +new file mode 100644 +index 000000000..e00a35aa0 +--- /dev/null ++++ b/none/tests/sw64-insn/stb-344.S +@@ -0,0 +1,16 @@ ++ ++ .global _start ++_start: ++ ldi $30, -1($30) ++ ldi $16, 42($31) ++ bis $31, $16, $17 ++ stb $16, 0($30) ++ ldbu $16, 0($30) ++ xor $17, $16, $16 ++ ldi $30, 1($30) ++ ++exit: ++ ldi $0, 1 ++ #ldi $16, 0 # Set status code to 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/std_nc-34.S b/none/tests/sw64-insn/std_nc-34.S +new file mode 100644 +index 000000000..ed9b33f2d +--- /dev/null ++++ b/none/tests/sw64-insn/std_nc-34.S +@@ -0,0 +1,19 @@ ++ ++ .global _start ++_start: ++ ldgp $29,0($27) ++ unop ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ ifmovd $17, $f17 ++ std_nc $f17, 0($sp) ++ ldd_nc $f18, 0($sp) ++ ldi $sp, 16($sp) ++ fcmpeq $f17, $f18, $f16 ++ ldi $16, 0 ++ fbne $f16, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/sth-345.S b/none/tests/sw64-insn/sth-345.S +new file mode 100644 +index 000000000..1c6fb6605 +--- /dev/null ++++ b/none/tests/sw64-insn/sth-345.S +@@ -0,0 +1,16 @@ ++ ++ .global _start ++_start: ++ ldi $30, -2($30) ++ ldi $16, 8770($31) ++ bis $31, $16, $17 ++ sth $16, 0($30) ++ ldhu $16, 0($30) ++ xor $17, $16, $16 ++ ldi $30, 2($30) ++ ++exit: ++ ldi $0, 1 ++ #ldi $16, 0 # Set status code to 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/stl-347.S b/none/tests/sw64-insn/stl-347.S +new file mode 100644 +index 000000000..0868878a4 +--- /dev/null ++++ b/none/tests/sw64-insn/stl-347.S +@@ -0,0 +1,23 @@ ++ ++ .section .rodata ++$BIG: ++ .quad 1311768467284833366 ++ ++ .text ++ .global _start ++_start: ++ ldi $30, -8($30) ++ # ($16) = 0x1234567890123456 ++ ldih $16, $BIG($29) !gprelhigh ++ ldi $16, $BIG($16) !gprellow ++ bis $31, $16, $17 ++ stl $16, 0($30) ++ ldl $16, 0($30) ++ xor $17, $16, $16 ++ ldi $30, 8($30) ++ ++exit: ++ ldi $0, 1 ++ #ldi $16, 0 # Set status code to 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/stl_nc-33.S b/none/tests/sw64-insn/stl_nc-33.S +new file mode 100644 +index 000000000..d3b776276 +--- /dev/null ++++ b/none/tests/sw64-insn/stl_nc-33.S +@@ -0,0 +1,16 @@ ++ ++ .global _start ++_start: ++ ldgp $29,0($27) ++ unop ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ stl_nc $17, 0($sp) ++ ldl_nc $18, 0($sp) ++ ldi $sp, 16($sp) ++ cmpeq $17, $18, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/stl_u-348.S b/none/tests/sw64-insn/stl_u-348.S +new file mode 100644 +index 000000000..c2e5881e1 +--- /dev/null ++++ b/none/tests/sw64-insn/stl_u-348.S +@@ -0,0 +1,23 @@ ++ ++ .section .rodata ++$BIG: ++ .quad 1311768467284833366 ++ ++ .text ++ .global _start ++_start: ++ ldi $30, -8($30) ++ # ($16) = 0x1234567890123456 ++ ldih $16, $BIG($29) !gprelhigh ++ ldi $16, $BIG($16) !gprellow ++ bis $31, $16, $17 ++ stl_u $16, 0($30) ++ ldl_u $16, 0($30) ++ xor $17, $16, $16 ++ ldi $30, 8($30) ++ ++exit: ++ ldi $0, 1 ++ #ldi $16, 0 # Set status code to 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/stw-346.S b/none/tests/sw64-insn/stw-346.S +new file mode 100644 +index 000000000..f9548b481 +--- /dev/null ++++ b/none/tests/sw64-insn/stw-346.S +@@ -0,0 +1,18 @@ ++ ++ .global _start ++_start: ++ ldi $30, -4($30) ++ # ($16) = 4220421102 ++ ldih $16, -1137($31) ++ ldi $16, -31762($16) ++ bis $31, $16, $17 ++ stw $16, 0($30) ++ ldw $16, 0($30) ++ xor $17, $16, $16 ++ ldi $30, 4($30) ++ ++exit: ++ ldi $0, 1 ++ #ldi $16, 0 # Set status code to 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/stw_nc-32.S b/none/tests/sw64-insn/stw_nc-32.S +new file mode 100644 +index 000000000..884f708d8 +--- /dev/null ++++ b/none/tests/sw64-insn/stw_nc-32.S +@@ -0,0 +1,16 @@ ++ ++ .global _start ++_start: ++ ldgp $29,0($27) ++ unop ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ stw_nc $17, 0($sp) ++ ldw_nc $18, 0($sp) ++ ldi $sp, 16($sp) ++ cmpeq $17, $18, $16 ++ subl $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/subl-49.S b/none/tests/sw64-insn/subl-49.S +new file mode 100644 +index 000000000..02ce4b332 +--- /dev/null ++++ b/none/tests/sw64-insn/subl-49.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ subl $17, $18, $16 ++ subl $16, 1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/subli-120.S b/none/tests/sw64-insn/subli-120.S +new file mode 100644 +index 000000000..6b8c38441 +--- /dev/null ++++ b/none/tests/sw64-insn/subli-120.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ subl $17, 1, $16 ++ subl $16, 1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/subw-43.S b/none/tests/sw64-insn/subw-43.S +new file mode 100644 +index 000000000..b6ceaa78a +--- /dev/null ++++ b/none/tests/sw64-insn/subw-43.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ subw $17, $18, $16 ++ subw $16, 1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/subwi-114.S b/none/tests/sw64-insn/subwi-114.S +new file mode 100644 +index 000000000..8d4a0ea7f +--- /dev/null ++++ b/none/tests/sw64-insn/subwi-114.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ subw $17, 1, $16 ++ subw $16, 1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/sys_call-2.S b/none/tests/sw64-insn/sys_call-2.S +new file mode 100644 +index 000000000..f3ef0909d +--- /dev/null ++++ b/none/tests/sw64-insn/sys_call-2.S +@@ -0,0 +1,10 @@ ++ ++ .global _start ++_start: ++ unop ++ ++exit: ++ ldi $0, 1 ++ ldi $16, 0 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/sys_call_b-1.S b/none/tests/sw64-insn/sys_call_b-1.S +new file mode 100644 +index 000000000..2f1d96c7a +--- /dev/null ++++ b/none/tests/sw64-insn/sys_call_b-1.S +@@ -0,0 +1,10 @@ ++ ++ .global _start ++_start: ++ unop ++ ++exit: ++ ldi $0, 1 ++ ldi $16, 0 ++ sys_call/b 0x83 ++ +diff --git a/none/tests/sw64-insn/test-all.sh b/none/tests/sw64-insn/test-all.sh +new file mode 100755 +index 000000000..0acdb1181 +--- /dev/null ++++ b/none/tests/sw64-insn/test-all.sh +@@ -0,0 +1,31 @@ ++#!/bin/bash ++ ++# Colors ++readonly RED='\033[0;31m' ++readonly GREEN='\033[0;32m' ++readonly NC='\033[0m' # No Color ++ ++readonly OK_FILE=ok.log ++readonly FAILED_FILE=failed.log ++readonly TOOL=none ++ ++ ++> ${OK_FILE} ++> ${FAILED_FILE} ++ ++readonly INSN_LIST=$(dirname "${BASH_SOURCE[0]}")/insn-list ++echo "INSN_LIST: ${INSN_LIST}" ++ ++for target in $(cat ${INSN_LIST}); do ++ echo -n "Run ${target}" ++ sh -c "../../../vg-in-place --log-file=${target}.log --tool=${TOOL} ./${target}" ++ if [ x$? == x0 ]; then ++ echo -e " ${GREEN}OK${NC}" ++ echo "OK" >> ${target}.log ++ echo ${target} >> ${OK_FILE} ++ else ++ echo -e " ${RED}FAILED${NC}" ++ echo "FAILED" >> ${target}.log ++ echo ${target} >> ${FAILED_FILE} ++ fi ++done +diff --git a/none/tests/sw64-insn/test-basic.sh b/none/tests/sw64-insn/test-basic.sh +new file mode 100755 +index 000000000..96465cbfc +--- /dev/null ++++ b/none/tests/sw64-insn/test-basic.sh +@@ -0,0 +1,31 @@ ++#!/bin/bash ++ ++# Colors ++readonly RED='\033[0;31m' ++readonly GREEN='\033[0;32m' ++readonly NC='\033[0m' # No Color ++ ++readonly OK_FILE=basicok.log ++readonly FAILED_FILE=basic-failed.log ++readonly TOOL=none ++ ++ ++> ${OK_FILE} ++> ${FAILED_FILE} ++ ++readonly INSN_LIST=$(dirname "${BASH_SOURCE[0]}")/basic-insn-list ++echo "INSN_LIST: ${INSN_LIST}" ++ ++for target in $(cat ${INSN_LIST}); do ++ echo -n "Run ${target}" ++ sh -c "../../../vg-in-place --log-file=${target}.log --tool=${TOOL} ./${target}" ++ if [ x$? == x0 ]; then ++ echo -e " ${GREEN}OK${NC}" ++ echo "OK" >> ${target}.log ++ echo ${target} >> ${OK_FILE} ++ else ++ echo -e " ${RED}FAILED${NC}" ++ echo "FAILED" >> ${target}.log ++ echo ${target} >> ${FAILED_FILE} ++ fi ++done +diff --git a/none/tests/sw64-insn/tmp.S b/none/tests/sw64-insn/tmp.S +new file mode 100644 +index 000000000..d66621dfb +--- /dev/null ++++ b/none/tests/sw64-insn/tmp.S +@@ -0,0 +1,10 @@ ++ ++ .global _start ++_start: ++ nop ++ ++exit: ++ ldi $0, 1 ++ ldi $16, 1 # Set status code to 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/umulh-56.S b/none/tests/sw64-insn/umulh-56.S +new file mode 100644 +index 000000000..b9a3fc3be +--- /dev/null ++++ b/none/tests/sw64-insn/umulh-56.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 3 ++ ldi $18, 2 ++ umulh $17, $18, $16 # higher 64 part is 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/umulhi-127.S b/none/tests/sw64-insn/umulhi-127.S +new file mode 100644 +index 000000000..df9817648 +--- /dev/null ++++ b/none/tests/sw64-insn/umulhi-127.S +@@ -0,0 +1,10 @@ ++ ++ .global _start ++_start: ++ ldi $17, 3 ++ umulh $17, 2, $16 # higher 64 part is 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/vaddd-277.S b/none/tests/sw64-insn/vaddd-277.S +new file mode 100644 +index 000000000..584bf54ac +--- /dev/null ++++ b/none/tests/sw64-insn/vaddd-277.S +@@ -0,0 +1,52 @@ ++ ++ .global _start ++_start: ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 0.0 */ ++ ldi $18, 0x0 ++ ifmovd $18, $f18 ++ ++result: ++ /* 25.132740800000001 = 0x4039 21fb 4d12 d84a */ ++ ldi $19, 0x403921fb ++ sll $19, 16 ++ ldi $19, 0x4d12($19) ++ sll $19, 16 ++ ldi $19, 0xd84a($19) ++ ifmovd $19, $f19 ++ ++run: ++ ldi $sp, -256($sp) ++ fstd $f17, 0($sp) ++ ldde $f1, 0($sp) ++ vaddd $f1, $f1, $f2 /* 3.14 + 3.14 */ ++ vstd $f2, 0($sp) ++ ++sum_wrapper: ++ ldi $17, 0($sp) ++ ldi $23, 4 ++sum: ++ fldd $f2, 0($17) ++ faddd $f18, $f2 ++ subl $23, 1 ++ ldi $17, 8($17) ++ bne $23, sum ++ ++sum_end: ++ ldi $sp, 256($sp) ++ fcmpeq $f18, $f19, $f16 ++ ldi $16, 1 ++ fbeq $f16, exit ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/vaddl-244.S b/none/tests/sw64-insn/vaddl-244.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vaddl-244.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vaddli-268.S b/none/tests/sw64-insn/vaddli-268.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vaddli-268.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vadds-276.S b/none/tests/sw64-insn/vadds-276.S +new file mode 120000 +index 000000000..339c4856d +--- /dev/null ++++ b/none/tests/sw64-insn/vadds-276.S +@@ -0,0 +1 @@ ++ldse-36.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vaddw-230.S b/none/tests/sw64-insn/vaddw-230.S +new file mode 120000 +index 000000000..b03fca413 +--- /dev/null ++++ b/none/tests/sw64-insn/vaddw-230.S +@@ -0,0 +1 @@ ++ldwe-35.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vaddwi-254.S b/none/tests/sw64-insn/vaddwi-254.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vaddwi-254.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcmpeqw-233.S b/none/tests/sw64-insn/vcmpeqw-233.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcmpeqw-233.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcmpeqwi-257.S b/none/tests/sw64-insn/vcmpeqwi-257.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcmpeqwi-257.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcmpgew-232.S b/none/tests/sw64-insn/vcmpgew-232.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcmpgew-232.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcmpgewi-256.S b/none/tests/sw64-insn/vcmpgewi-256.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcmpgewi-256.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcmplew-234.S b/none/tests/sw64-insn/vcmplew-234.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcmplew-234.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcmplewi-258.S b/none/tests/sw64-insn/vcmplewi-258.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcmplewi-258.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcmpltw-235.S b/none/tests/sw64-insn/vcmpltw-235.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcmpltw-235.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcmpltwi-259.S b/none/tests/sw64-insn/vcmpltwi-259.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcmpltwi-259.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcmpulew-236.S b/none/tests/sw64-insn/vcmpulew-236.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcmpulew-236.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcmpulewi-260.S b/none/tests/sw64-insn/vcmpulewi-260.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcmpulewi-260.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcmpultw-237.S b/none/tests/sw64-insn/vcmpultw-237.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcmpultw-237.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcmpultwi-261.S b/none/tests/sw64-insn/vcmpultwi-261.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcmpultwi-261.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcond-317.S b/none/tests/sw64-insn/vcond-317.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcond-317.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcons-316.S b/none/tests/sw64-insn/vcons-316.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcons-316.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vconw-314.S b/none/tests/sw64-insn/vconw-314.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vconw-314.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcpyf-313.S b/none/tests/sw64-insn/vcpyf-313.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcpyf-313.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcpys-290.S b/none/tests/sw64-insn/vcpys-290.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcpys-290.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcpyse-291.S b/none/tests/sw64-insn/vcpyse-291.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcpyse-291.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcpysn-292.S b/none/tests/sw64-insn/vcpysn-292.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcpysn-292.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vcpyw-312.S b/none/tests/sw64-insn/vcpyw-312.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vcpyw-312.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vdivd-283.S b/none/tests/sw64-insn/vdivd-283.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vdivd-283.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vdivs-282.S b/none/tests/sw64-insn/vdivs-282.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vdivs-282.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vextf-311.S b/none/tests/sw64-insn/vextf-311.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vextf-311.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vextw-310.S b/none/tests/sw64-insn/vextw-310.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vextw-310.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vfcmpeq-286.S b/none/tests/sw64-insn/vfcmpeq-286.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vfcmpeq-286.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vfcmple-287.S b/none/tests/sw64-insn/vfcmple-287.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vfcmple-287.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vfcmplt-288.S b/none/tests/sw64-insn/vfcmplt-288.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vfcmplt-288.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vfcmpun-289.S b/none/tests/sw64-insn/vfcmpun-289.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vfcmpun-289.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vfseleq-301.S b/none/tests/sw64-insn/vfseleq-301.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vfseleq-301.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vfselle-303.S b/none/tests/sw64-insn/vfselle-303.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vfselle-303.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vfsellt-302.S b/none/tests/sw64-insn/vfsellt-302.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vfsellt-302.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vinsf-309.S b/none/tests/sw64-insn/vinsf-309.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vinsf-309.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vinsw-308.S b/none/tests/sw64-insn/vinsw-308.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vinsw-308.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vldd-39.S b/none/tests/sw64-insn/vldd-39.S +new file mode 100644 +index 000000000..f6736a240 +--- /dev/null ++++ b/none/tests/sw64-insn/vldd-39.S +@@ -0,0 +1,52 @@ ++ ++ .global _start ++_start: ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 0.0 */ ++ ldi $18, 0x0 ++ ifmovd $18, $f18 ++ ++result: ++ /* 6.2831852000000001 = 0x4019 21fb 4d12 d84a */ ++ ldi $19, 0x401921fb ++ sll $19, 16 ++ ldi $19, 0x4d12($19) ++ sll $19, 16 ++ ldi $19, 0xd84a($19) ++ ifmovd $19, $f19 ++ ++run: ++ ldi $sp, -256($sp) ++ fstd $f17, 0($sp) ++ vldd $f1, 0($sp) ++ vaddd $f1, $f1, $f2 /* 3.14 + 3.14 */ ++ vstd $f2, 0($sp) ++ ++sum_wrapper: ++ ldi $17, 0($sp) ++ ldi $23, 4 ++sum: ++ fldd $f2, 0($17) ++ faddd $f18, $f2 ++ subl $23, 1 ++ ldi $17, 8($17) ++ bne $23, sum ++ ++sum_end: ++ ldi $sp, 256($sp) ++ fcmpeq $f18, $f19, $f16 ++ ldi $16, 1 ++ fbeq $f16, exit ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/vldd_nc-334.S b/none/tests/sw64-insn/vldd_nc-334.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vldd_nc-334.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vldd_u-326.S b/none/tests/sw64-insn/vldd_u-326.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vldd_u-326.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vlds-38.S b/none/tests/sw64-insn/vlds-38.S +new file mode 100644 +index 000000000..7c4654ae9 +--- /dev/null ++++ b/none/tests/sw64-insn/vlds-38.S +@@ -0,0 +1,53 @@ ++ ++ .global _start ++_start: ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 0.0 */ ++ ldi $18, 0x0 ++ ifmovd $18, $f18 ++ ++result: ++ /* 6.2831850051879883 = 0x4019 21fb 4000 0000 */ ++ ldi $19, 0x401921fb ++ sll $19, 16 ++ ldi $19, 0x4000($19) ++ sll $19, 16 ++ ldi $19, 0x0000($19) ++ ifmovd $19, $f19 ++ ++run: ++ ldi $sp, -256($sp) ++ fcvtds $f17, $f20 ++ fsts $f20, 0($sp) ++ vlds $f1, 0($sp) ++ vadds $f1, $f1, $f2 /* 3.14 + 3.14 */ ++ vsts $f2, 0($sp) ++ ++sum_wrapper: ++ ldi $17, 0($sp) ++ ldi $23, 4 ++sum: ++ flds $f2, 0($17) ++ fadds $f18, $f2 ++ subl $23, 1 ++ ldi $17, 8($17) ++ bne $23, sum ++ ++sum_end: ++ ldi $sp, 256($sp) ++ fcmpeq $f18, $f19, $f16 ++ ldi $16, 1 ++ fbeq $f16, exit ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/vlds_u-324.S b/none/tests/sw64-insn/vlds_u-324.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vlds_u-324.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vldw_u-322.S b/none/tests/sw64-insn/vldw_u-322.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vldw_u-322.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vlogzz-179.S b/none/tests/sw64-insn/vlogzz-179.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vlogzz-179.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vmad-294.S b/none/tests/sw64-insn/vmad-294.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vmad-294.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vmas-293.S b/none/tests/sw64-insn/vmas-293.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vmas-293.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vmsd-296.S b/none/tests/sw64-insn/vmsd-296.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vmsd-296.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vmss-295.S b/none/tests/sw64-insn/vmss-295.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vmss-295.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vmuld-281.S b/none/tests/sw64-insn/vmuld-281.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vmuld-281.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vmuls-280.S b/none/tests/sw64-insn/vmuls-280.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vmuls-280.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vnmad-298.S b/none/tests/sw64-insn/vnmad-298.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vnmad-298.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vnmas-297.S b/none/tests/sw64-insn/vnmas-297.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vnmas-297.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vnmsd-300.S b/none/tests/sw64-insn/vnmsd-300.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vnmsd-300.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vnmss-299.S b/none/tests/sw64-insn/vnmss-299.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vnmss-299.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vrolw-241.S b/none/tests/sw64-insn/vrolw-241.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vrolw-241.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vrolwi-265.S b/none/tests/sw64-insn/vrolwi-265.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vrolwi-265.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vseleqw-304.S b/none/tests/sw64-insn/vseleqw-304.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vseleqw-304.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vseleqwi-318.S b/none/tests/sw64-insn/vseleqwi-318.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vseleqwi-318.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsellbcw-305.S b/none/tests/sw64-insn/vsellbcw-305.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsellbcw-305.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsellbcwi-319.S b/none/tests/sw64-insn/vsellbcwi-319.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsellbcwi-319.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsellew-307.S b/none/tests/sw64-insn/vsellew-307.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsellew-307.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsellewi-321.S b/none/tests/sw64-insn/vsellewi-321.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsellewi-321.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vselltw-306.S b/none/tests/sw64-insn/vselltw-306.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vselltw-306.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vselltwi-320.S b/none/tests/sw64-insn/vselltwi-320.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vselltwi-320.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vshfw-315.S b/none/tests/sw64-insn/vshfw-315.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vshfw-315.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsllw-238.S b/none/tests/sw64-insn/vsllw-238.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsllw-238.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsllwi-262.S b/none/tests/sw64-insn/vsllwi-262.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsllwi-262.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsqrtd-285.S b/none/tests/sw64-insn/vsqrtd-285.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsqrtd-285.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsqrts-284.S b/none/tests/sw64-insn/vsqrts-284.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsqrts-284.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsraw-240.S b/none/tests/sw64-insn/vsraw-240.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsraw-240.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsrawi-264.S b/none/tests/sw64-insn/vsrawi-264.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsrawi-264.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsrlw-239.S b/none/tests/sw64-insn/vsrlw-239.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsrlw-239.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsrlwi-263.S b/none/tests/sw64-insn/vsrlwi-263.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsrlwi-263.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vstd-41.S b/none/tests/sw64-insn/vstd-41.S +new file mode 100644 +index 000000000..584bf54ac +--- /dev/null ++++ b/none/tests/sw64-insn/vstd-41.S +@@ -0,0 +1,52 @@ ++ ++ .global _start ++_start: ++x1: ++ /* 3.1415926 = 0x400921fb4d12d84a */ ++ ldi $17, 0x400921fb ++ sll $17, 32 ++ ldi $17, 0x4d12d84a($17) ++ ifmovd $17, $f17 ++ ++x2: ++ /* 0.0 */ ++ ldi $18, 0x0 ++ ifmovd $18, $f18 ++ ++result: ++ /* 25.132740800000001 = 0x4039 21fb 4d12 d84a */ ++ ldi $19, 0x403921fb ++ sll $19, 16 ++ ldi $19, 0x4d12($19) ++ sll $19, 16 ++ ldi $19, 0xd84a($19) ++ ifmovd $19, $f19 ++ ++run: ++ ldi $sp, -256($sp) ++ fstd $f17, 0($sp) ++ ldde $f1, 0($sp) ++ vaddd $f1, $f1, $f2 /* 3.14 + 3.14 */ ++ vstd $f2, 0($sp) ++ ++sum_wrapper: ++ ldi $17, 0($sp) ++ ldi $23, 4 ++sum: ++ fldd $f2, 0($17) ++ faddd $f18, $f2 ++ subl $23, 1 ++ ldi $17, 8($17) ++ bne $23, sum ++ ++sum_end: ++ ldi $sp, 256($sp) ++ fcmpeq $f18, $f19, $f16 ++ ldi $16, 1 ++ fbeq $f16, exit ++ ldi $16, 0 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/vstd_nc-335.S b/none/tests/sw64-insn/vstd_nc-335.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vstd_nc-335.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vstd_u-327.S b/none/tests/sw64-insn/vstd_u-327.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vstd_u-327.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vstd_uh-333.S b/none/tests/sw64-insn/vstd_uh-333.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vstd_uh-333.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vstd_ul-332.S b/none/tests/sw64-insn/vstd_ul-332.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vstd_ul-332.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsts-40.S b/none/tests/sw64-insn/vsts-40.S +new file mode 120000 +index 000000000..339c4856d +--- /dev/null ++++ b/none/tests/sw64-insn/vsts-40.S +@@ -0,0 +1 @@ ++ldse-36.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsts_u-325.S b/none/tests/sw64-insn/vsts_u-325.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsts_u-325.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsts_uh-331.S b/none/tests/sw64-insn/vsts_uh-331.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsts_uh-331.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsts_ul-330.S b/none/tests/sw64-insn/vsts_ul-330.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsts_ul-330.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vstw_u-323.S b/none/tests/sw64-insn/vstw_u-323.S +new file mode 120000 +index 000000000..b03fca413 +--- /dev/null ++++ b/none/tests/sw64-insn/vstw_u-323.S +@@ -0,0 +1 @@ ++ldwe-35.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vstw_uh-329.S b/none/tests/sw64-insn/vstw_uh-329.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vstw_uh-329.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vstw_ul-328.S b/none/tests/sw64-insn/vstw_ul-328.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vstw_ul-328.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsubd-279.S b/none/tests/sw64-insn/vsubd-279.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsubd-279.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsubl-245.S b/none/tests/sw64-insn/vsubl-245.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsubl-245.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsubli-269.S b/none/tests/sw64-insn/vsubli-269.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsubli-269.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsubs-278.S b/none/tests/sw64-insn/vsubs-278.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsubs-278.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vsubw-231.S b/none/tests/sw64-insn/vsubw-231.S +new file mode 100644 +index 000000000..40ecdd2c1 +--- /dev/null ++++ b/none/tests/sw64-insn/vsubw-231.S +@@ -0,0 +1,28 @@ ++ ++ .global _start ++_start: ++ ldi $sp, -256($sp) ++ ldi $17, 2 ++ stl $17, 0($sp) ++ ldwe $f1, 0($sp) ++ vsubw $f1, $f1, $f2 /* 2 - 2 = 0 */ ++ vstw_u $f2, 0($sp) ++ ++sum_wrapper: ++ ldi $16, 0 ++ ldi $17, 0($sp) ++ ldi $23, 8 ++sum: ++ ldw $18, 0($17) ++ addw $16, $18 ++ subl $23, 1 ++ ldi $17, 4($17) ++ bne $23, sum ++ ++result: ++ ldi $sp, 256($sp) ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/vsubwi-255.S b/none/tests/sw64-insn/vsubwi-255.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vsubwi-255.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vucaddb-252.S b/none/tests/sw64-insn/vucaddb-252.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vucaddb-252.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vucaddbi-274.S b/none/tests/sw64-insn/vucaddbi-274.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vucaddbi-274.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vucaddh-250.S b/none/tests/sw64-insn/vucaddh-250.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vucaddh-250.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vucaddhi-272.S b/none/tests/sw64-insn/vucaddhi-272.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vucaddhi-272.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vucaddw-248.S b/none/tests/sw64-insn/vucaddw-248.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vucaddw-248.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vucaddwi-270.S b/none/tests/sw64-insn/vucaddwi-270.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vucaddwi-270.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vucsubb-253.S b/none/tests/sw64-insn/vucsubb-253.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vucsubb-253.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vucsubbi-275.S b/none/tests/sw64-insn/vucsubbi-275.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vucsubbi-275.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vucsubh-251.S b/none/tests/sw64-insn/vucsubh-251.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vucsubh-251.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vucsubhi-273.S b/none/tests/sw64-insn/vucsubhi-273.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vucsubhi-273.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vucsubw-249.S b/none/tests/sw64-insn/vucsubw-249.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vucsubw-249.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/vucsubwi-271.S b/none/tests/sw64-insn/vucsubwi-271.S +new file mode 120000 +index 000000000..9fa5b2a7a +--- /dev/null ++++ b/none/tests/sw64-insn/vucsubwi-271.S +@@ -0,0 +1 @@ ++tmp.S +\ No newline at end of file +diff --git a/none/tests/sw64-insn/wfpcr-211.S b/none/tests/sw64-insn/wfpcr-211.S +new file mode 100644 +index 000000000..8ca9cb274 +--- /dev/null ++++ b/none/tests/sw64-insn/wfpcr-211.S +@@ -0,0 +1,31 @@ ++ .text ++ .global _start ++_start: ++ ++x1: ++ ldi $1, 0x00 ++ ifmovd $1, $f1 ++ ++x2: ++ ldi $2, 0x01 ++ ifmovd $2, $f2 ++ ++x3: ++ ldi $3, 0x02 ++ ifmovd $3, $f3 ++ ++x4: ++ ldi $4, 0x03 ++ ifmovd $4, $f4 ++ ++run: ++ wfpcr $f1 ++ rfpcr $f16 ++ fsubd $f16, $f1, $f17 ++ ldi $16, 0 ++ fbeq $f17, exit ++ ldi $16, 1 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 +diff --git a/none/tests/sw64-insn/wr_f-14.S b/none/tests/sw64-insn/wr_f-14.S +new file mode 100644 +index 000000000..1b1e2d823 +--- /dev/null ++++ b/none/tests/sw64-insn/wr_f-14.S +@@ -0,0 +1,60 @@ ++ .text ++ ++ .globl xchg_u32 ++xchg_u32: ++ ldi $30,-64($30) ++ stl $26,0($30) ++ stl $15,8($30) ++ mov $30,$15 ++ stl $16,48($15) ++ stl $17,56($15) ++ ldl $5,48($15) ++ ldl $1,56($15) ++ ldl $2,48($15) ++ memb ++ ldi $6, 0($2) ++ ++f1: ++ lldw $4, 0($6) ++ ldi $3, 1 ++ wr_f $3 ++ bis $31, $1, $3 ++ memb ++ lstw $3, 0($6) ++ rd_f $3 ++ bne $3, f2 ++ br f1 ++ ++f2: ++ mov $6,$2 ++ stl $4,56($15) ++ stl $3,32($15) ++ stl $2,40($15) ++ ldl $1,56($15) ++ mov $1,$0 ++ mov $15,$30 ++ ldl $26,0($30) ++ ldl $15,8($30) ++ ldi $30,64($30) ++ ret $31,($26),1 ++ ++ .global _start ++_start: ++ br $29, 1f ++1: ldgp $29, 0($29) ++ subl $30, 16, $30 ++ mov 0, $15 ++ ++ ldi $sp, -16($sp) ++ ldi $17, 42 ++ stl $17, 0($sp) ++ ldi $16, 0($sp) ++ ldi $17, 43 ++ call $26, xchg_u32 ++ mov $0, $16 ++ subl $16, 42 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/xor-66.S b/none/tests/sw64-insn/xor-66.S +new file mode 100644 +index 000000000..751c9374b +--- /dev/null ++++ b/none/tests/sw64-insn/xor-66.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ ldi $18, 1 ++ xor $17, $18, $16 ++ subl $16, 3 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/xori-137.S b/none/tests/sw64-insn/xori-137.S +new file mode 100644 +index 000000000..4942a3bdc +--- /dev/null ++++ b/none/tests/sw64-insn/xori-137.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 2 ++ xor $17, 1, $16 ++ subl $16, 3 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/zap-98.S b/none/tests/sw64-insn/zap-98.S +new file mode 100644 +index 000000000..00efadfe5 +--- /dev/null ++++ b/none/tests/sw64-insn/zap-98.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 0b1110 ++ zap $17, $18, $16 ++ subl $16, 0xf1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/zapi-166.S b/none/tests/sw64-insn/zapi-166.S +new file mode 100644 +index 000000000..1faf8cbdf +--- /dev/null ++++ b/none/tests/sw64-insn/zapi-166.S +@@ -0,0 +1,11 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ zap $17, 0b1110, $16 ++ subl $16, 0xf1, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/zapnot-99.S b/none/tests/sw64-insn/zapnot-99.S +new file mode 100644 +index 000000000..ccf55c1d4 +--- /dev/null ++++ b/none/tests/sw64-insn/zapnot-99.S +@@ -0,0 +1,13 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ ldi $18, 0b1110 ++ zapnot $17, $18, $16 ++ srl $16, 8, $16 ++ subl $16, 0xf0, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-insn/zapnoti-167.S b/none/tests/sw64-insn/zapnoti-167.S +new file mode 100644 +index 000000000..c71fb63ca +--- /dev/null ++++ b/none/tests/sw64-insn/zapnoti-167.S +@@ -0,0 +1,12 @@ ++ ++ .global _start ++_start: ++ ldi $17, 0xf0f1 ++ zapnot $17, 0b1110, $16 ++ srl $16, 8, $16 ++ subl $16, 0xf0, $16 ++ ++exit: ++ ldi $0, 1 ++ sys_call 0x83 ++ +diff --git a/none/tests/sw64-linux/Makefile.am b/none/tests/sw64-linux/Makefile.am +new file mode 100644 +index 000000000..c48d2ff23 +--- /dev/null ++++ b/none/tests/sw64-linux/Makefile.am +@@ -0,0 +1,22 @@ ++ ++include $(top_srcdir)/Makefile.tool-tests.am ++ ++dist_noinst_SCRIPTS = filter_stderr ++ ++EXTRA_DIST = \ ++ getcontext.stderr.exp getcontext.stdout.exp getcontext.vgtest \ ++ gethostname.stderr.exp gethostname.vgtest \ ++ prctl.stderr.exp prctl.vgtest \ ++ readahead.stderr.exp readahead.vgtest \ ++ sigsuspend.stderr.exp sigsuspend.vgtest ++ ++check_PROGRAMS = \ ++ getcontext \ ++ gethostname \ ++ prctl \ ++ readahead \ ++ sigsuspend ++ ++AM_CFLAGS += @FLAG_M64@ ++AM_CXXFLAGS += @FLAG_M64@ ++AM_CCASFLAGS += @FLAG_M64@ +diff --git a/none/tests/sw64-linux/filter_stderr b/none/tests/sw64-linux/filter_stderr +new file mode 100755 +index 000000000..616ce05e1 +--- /dev/null ++++ b/none/tests/sw64-linux/filter_stderr +@@ -0,0 +1,4 @@ ++#! /bin/sh ++ ++../filter_stderr ++ +diff --git a/none/tests/sw64-linux/getcontext.c b/none/tests/sw64-linux/getcontext.c +new file mode 100644 +index 000000000..b5a658efc +--- /dev/null ++++ b/none/tests/sw64-linux/getcontext.c +@@ -0,0 +1,14 @@ ++ ++#include ++#include ++ ++int main(void) { ++ ucontext_t uc; ++ if (getcontext(&uc) == 0) { ++ printf("stack: %p\n", uc.uc_stack); ++ printf("getcontext() ok\n"); ++ } else { ++ printf("getcontext() failed\n"); ++ } ++ return 0; ++} +diff --git a/none/tests/sw64-linux/getcontext.stderr.exp b/none/tests/sw64-linux/getcontext.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64-linux/getcontext.stdout.exp b/none/tests/sw64-linux/getcontext.stdout.exp +new file mode 100644 +index 000000000..b3a889a33 +--- /dev/null ++++ b/none/tests/sw64-linux/getcontext.stdout.exp +@@ -0,0 +1,2 @@ ++stack: (nil) ++getcontext() ok +diff --git a/none/tests/sw64-linux/getcontext.vgtest b/none/tests/sw64-linux/getcontext.vgtest +new file mode 100644 +index 000000000..44a7cba09 +--- /dev/null ++++ b/none/tests/sw64-linux/getcontext.vgtest +@@ -0,0 +1,3 @@ ++prog: getcontext ++# Test srlow SIMD instruction is properly handled. ++vgopts: -q +diff --git a/none/tests/sw64-linux/gethostname.c b/none/tests/sw64-linux/gethostname.c +new file mode 100644 +index 000000000..6c7fff782 +--- /dev/null ++++ b/none/tests/sw64-linux/gethostname.c +@@ -0,0 +1,34 @@ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++int main(void) { ++ char hostname[HOST_NAME_MAX + 1]; ++ gethostname(hostname, HOST_NAME_MAX + 1); ++ ++ int fd = open("/etc/hostname", O_RDONLY); ++ if (fd == -1) { ++ return EXIT_FAILURE; ++ } ++ const size_t kBufLen = HOST_NAME_MAX + 1; ++ char buf[kBufLen]; ++ ssize_t n_read = read(fd, buf, kBufLen); ++ if (n_read > 1) { ++ // Ignores new line char. ++ n_read -= 1; ++ buf[n_read] = '\0'; ++ } ++ close(fd); ++ ++ if (strncmp(hostname, buf, n_read) == 0) { ++ fprintf(stderr, "gethostname() is ok\n"); ++ } else { ++ fprintf(stderr, "Failed to get hostname\n"); ++ } ++ ++ return EXIT_SUCCESS; ++} +diff --git a/none/tests/sw64-linux/gethostname.stderr.exp b/none/tests/sw64-linux/gethostname.stderr.exp +new file mode 100644 +index 000000000..2e0ae69fb +--- /dev/null ++++ b/none/tests/sw64-linux/gethostname.stderr.exp +@@ -0,0 +1,3 @@ ++ ++gethostname() is ok ++ +diff --git a/none/tests/sw64-linux/gethostname.vgtest b/none/tests/sw64-linux/gethostname.vgtest +new file mode 100644 +index 000000000..d0bf6c246 +--- /dev/null ++++ b/none/tests/sw64-linux/gethostname.vgtest +@@ -0,0 +1,4 @@ ++prog: gethostname ++# test gethostname() syscall ++vgopts: ++stderr_filter: filter_stderr +diff --git a/none/tests/sw64-linux/prctl.c b/none/tests/sw64-linux/prctl.c +new file mode 100644 +index 000000000..bfba591c0 +--- /dev/null ++++ b/none/tests/sw64-linux/prctl.c +@@ -0,0 +1,16 @@ ++ ++#include ++#include ++#include ++#include ++ ++int main(void) { ++ const char* name = "TEST-NAME-001"; ++ const int ret = prctl(PR_SET_NAME, name, NULL, NULL); ++ if (ret == 0) { ++ fprintf(stderr, "prctl() ok\n"); ++ } else { ++ fprintf(stderr, "prctl() failed, reason: %s\n", strerror(errno)); ++ } ++ return 0; ++} +diff --git a/none/tests/sw64-linux/prctl.stderr.exp b/none/tests/sw64-linux/prctl.stderr.exp +new file mode 100644 +index 000000000..eb14fcd75 +--- /dev/null ++++ b/none/tests/sw64-linux/prctl.stderr.exp +@@ -0,0 +1,3 @@ ++ ++prctl() ok ++ +diff --git a/none/tests/sw64-linux/prctl.vgtest b/none/tests/sw64-linux/prctl.vgtest +new file mode 100644 +index 000000000..3556b4f2a +--- /dev/null ++++ b/none/tests/sw64-linux/prctl.vgtest +@@ -0,0 +1,4 @@ ++prog: prctl ++# test prctl syscall ++vgopts: ++stderr_filter: filter_stderr +diff --git a/none/tests/sw64-linux/readahead.c b/none/tests/sw64-linux/readahead.c +new file mode 100644 +index 000000000..a81e86496 +--- /dev/null ++++ b/none/tests/sw64-linux/readahead.c +@@ -0,0 +1,25 @@ ++// Copyright (c) 2023 Xu Shaohua . All rights reserved. ++// Use of this source is governed by GNU General Public License ++// that can be found in the LICENSE file. ++ ++#define _GNU_SOURCE ++#include ++#include ++#include ++ ++int main() { ++ int fd = open("/etc/passwd", O_RDONLY); ++ if (fd < 0) { ++ fprintf(stderr, "Failed to open passwd file\n"); ++ return 1; ++ } ++ const size_t kCount = 4096; ++ const ssize_t n_read = readahead(fd, 0, kCount); ++ close(fd); ++ if (n_read == 0) { ++ fprintf(stderr, "read cache ok\n"); ++ } else { ++ fprintf(stderr, "Failed to pre-read file\n"); ++ } ++ return 0; ++} +diff --git a/none/tests/sw64-linux/readahead.stderr.exp b/none/tests/sw64-linux/readahead.stderr.exp +new file mode 100644 +index 000000000..7efd4e565 +--- /dev/null ++++ b/none/tests/sw64-linux/readahead.stderr.exp +@@ -0,0 +1,3 @@ ++ ++read cache ok ++ +diff --git a/none/tests/sw64-linux/readahead.vgtest b/none/tests/sw64-linux/readahead.vgtest +new file mode 100644 +index 000000000..3603acb6e +--- /dev/null ++++ b/none/tests/sw64-linux/readahead.vgtest +@@ -0,0 +1,4 @@ ++prog: readahead ++# test SYS_readahead is wrapped ++vgopts: ++stderr_filter: filter_stderr +\ No newline at end of file +diff --git a/none/tests/sw64-linux/sigsuspend.c b/none/tests/sw64-linux/sigsuspend.c +new file mode 100644 +index 000000000..0d720a7d5 +--- /dev/null ++++ b/none/tests/sw64-linux/sigsuspend.c +@@ -0,0 +1,24 @@ ++#define _GNU_SOURCE ++#include ++#include ++#include ++ ++static void sig_handler(int signum) ++{ ++ signal(SIGALRM, SIG_DFL); ++ fprintf(stderr, "signal raised.\n"); ++} ++ ++int main(void) ++{ ++ sigset_t sigmask; ++ ++ signal(SIGALRM, &sig_handler); ++ alarm(2); ++ ++ sigemptyset(&sigmask); ++ sigsuspend(&sigmask); ++ fprintf(stderr, "sigsuspend() returned.\n"); ++ ++ return 0; ++} +diff --git a/none/tests/sw64-linux/sigsuspend.stderr.exp b/none/tests/sw64-linux/sigsuspend.stderr.exp +new file mode 100644 +index 000000000..50ce17c6d +--- /dev/null ++++ b/none/tests/sw64-linux/sigsuspend.stderr.exp +@@ -0,0 +1,2 @@ ++signal raised. ++sigsuspend() returned. +diff --git a/none/tests/sw64-linux/sigsuspend.vgtest b/none/tests/sw64-linux/sigsuspend.vgtest +new file mode 100644 +index 000000000..5d76a2288 +--- /dev/null ++++ b/none/tests/sw64-linux/sigsuspend.vgtest +@@ -0,0 +1,2 @@ ++prog: sigsuspend ++vgopts: -q +diff --git a/none/tests/sw64/8a-conv.c b/none/tests/sw64/8a-conv.c +new file mode 100644 +index 000000000..3f08aaeb7 +--- /dev/null ++++ b/none/tests/sw64/8a-conv.c +@@ -0,0 +1,108 @@ ++#include "common-sw64-standalone.h" ++ ++#if !defined(__sw_64_sw8a__) ++int main(void) { return -1; } ++#else ++ ++#define MK_FUNC(insn) \ ++ __attribute__((noinline)) static double test_##insn(long a) { \ ++ double r; \ ++ __asm__ volatile ( \ ++ " " STRINGIFY(insn) " %1, %0 \n" \ ++ : "=&f"(r) \ ++ : "r"(a) \ ++ ); \ ++ return r; \ ++ } \ ++ static void run_##insn(void) { \ ++ my_printf("=== Running test on " STRINGIFY(insn) " ===\n", 0); \ ++ for (int i = 0; i < num_i64; i++) { \ ++ long a = case_i64[i].l; \ ++ double r = test_##insn(a); \ ++ my_printf(STRINGIFY(insn) " 0x%x = 0x%x\n", (void const *[]){ &a, &r }); \ ++ } \ ++ } ++MK_FUNC(cmovls) ++MK_FUNC(cmovws) ++MK_FUNC(cmovld) ++MK_FUNC(cmovwd) ++MK_FUNC(cmovuls) ++MK_FUNC(cmovuws) ++MK_FUNC(cmovuld) ++MK_FUNC(cmovuwd) ++#undef MK_FUNC ++ ++#define MK_FUNC(insn) \ ++ __attribute__((noinline)) static long test_##insn(double a) { \ ++ long r; \ ++ __asm__ volatile ( \ ++ " " STRINGIFY(insn) " %1, %0 \n" \ ++ : "=&r"(r) \ ++ : "f"(a) \ ++ ); \ ++ return r; \ ++ } \ ++ static void run_##insn(void) { \ ++ my_printf("=== Running test on " STRINGIFY(insn) " ===\n", 0); \ ++ for (int i = 0; i < num_f64; i++) { \ ++ double a = case_f64[i].d; \ ++ long r = test_##insn(a); \ ++ my_printf(STRINGIFY(insn) " 0x%x = 0x%x\n", (void const *[]){ &a, &r }); \ ++ } \ ++ } ++MK_FUNC(cmovdl) ++MK_FUNC(cmovdl_g) ++MK_FUNC(cmovdl_p) ++MK_FUNC(cmovdl_z) ++MK_FUNC(cmovdl_n) ++MK_FUNC(cmovdlu) ++MK_FUNC(cmovdlu_g) ++MK_FUNC(cmovdlu_p) ++MK_FUNC(cmovdlu_z) ++MK_FUNC(cmovdlu_n) ++MK_FUNC(cmovdw) ++MK_FUNC(cmovdw_g) ++MK_FUNC(cmovdw_p) ++MK_FUNC(cmovdw_z) ++MK_FUNC(cmovdw_n) ++MK_FUNC(cmovdwu) ++MK_FUNC(cmovdwu_g) ++MK_FUNC(cmovdwu_p) ++MK_FUNC(cmovdwu_z) ++MK_FUNC(cmovdwu_n) ++#undef MK_FUNC ++ ++int main(void) ++{ ++ run_cmovls(); ++ run_cmovws(); ++ run_cmovld(); ++ run_cmovwd(); ++ run_cmovuls(); ++ run_cmovuws(); ++ run_cmovuld(); ++ run_cmovuwd(); ++ run_cmovdl(); ++ run_cmovdl_g(); ++ run_cmovdl_p(); ++ run_cmovdl_z(); ++ run_cmovdl_n(); ++ run_cmovdlu(); ++ run_cmovdlu_g(); ++ run_cmovdlu_p(); ++ run_cmovdlu_z(); ++ run_cmovdlu_n(); ++ run_cmovdw(); ++ run_cmovdw_g(); ++ run_cmovdw_p(); ++ run_cmovdw_z(); ++ run_cmovdw_n(); ++ run_cmovdwu(); ++ run_cmovdwu_g(); ++ run_cmovdwu_p(); ++ run_cmovdwu_z(); ++ run_cmovdwu_n(); ++ return 0; ++} ++ ++#endif +diff --git a/none/tests/sw64/8a-conv.stderr.exp b/none/tests/sw64/8a-conv.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/8a-conv.stdout.exp b/none/tests/sw64/8a-conv.stdout.exp +new file mode 100644 +index 000000000..0845c3445 +--- /dev/null ++++ b/none/tests/sw64/8a-conv.stdout.exp +@@ -0,0 +1,676 @@ ++=== Running test on cmovls === ++cmovls 0x0000000000000000 = 0x0000000000000000 ++cmovls 0x0000000000000001 = 0x3FF0000000000000 ++cmovls 0x0000000000000002 = 0x4000000000000000 ++cmovls 0x0000000000000003 = 0x4008000000000000 ++cmovls 0x000000000000000F = 0x402E000000000000 ++cmovls 0xFFFFFFFFFFFFFFFF = 0xBFF0000000000000 ++cmovls 0xFFFFFFFFFFFFFFFE = 0xC000000000000000 ++cmovls 0xFFFFFFFFFFFFFFFD = 0xC008000000000000 ++cmovls 0x000000000000007F = 0x405FC00000000000 ++cmovls 0x0000000000000080 = 0x4060000000000000 ++cmovls 0x0000000000007FFF = 0x40DFFFC000000000 ++cmovls 0x0000000000008000 = 0x40E0000000000000 ++cmovls 0x000000007FFFFFFF = 0x41E0000000000000 ++cmovls 0x0000000080000000 = 0x41E0000000000000 ++cmovls 0x8000000000000000 = 0xC3E0000000000000 ++cmovls 0xFFFFFFFF80000000 = 0xC1E0000000000000 ++cmovls 0xFFFFFFFFFFFF8000 = 0xC0E0000000000000 ++cmovls 0xFFFFFFFFFFFFFF80 = 0xC060000000000000 ++cmovls 0x7FFFFFFFFFFFFFFF = 0x43E0000000000000 ++cmovls 0x123456789ABCDEF0 = 0x43B2345680000000 ++cmovls 0xF0DEBC9A78563412 = 0xC3AE4286C0000000 ++=== Running test on cmovws === ++cmovws 0x0000000000000000 = 0x0000000000000000 ++cmovws 0x0000000000000001 = 0x3FF0000000000000 ++cmovws 0x0000000000000002 = 0x4000000000000000 ++cmovws 0x0000000000000003 = 0x4008000000000000 ++cmovws 0x000000000000000F = 0x402E000000000000 ++cmovws 0xFFFFFFFFFFFFFFFF = 0xBFF0000000000000 ++cmovws 0xFFFFFFFFFFFFFFFE = 0xC000000000000000 ++cmovws 0xFFFFFFFFFFFFFFFD = 0xC008000000000000 ++cmovws 0x000000000000007F = 0x405FC00000000000 ++cmovws 0x0000000000000080 = 0x4060000000000000 ++cmovws 0x0000000000007FFF = 0x40DFFFC000000000 ++cmovws 0x0000000000008000 = 0x40E0000000000000 ++cmovws 0x000000007FFFFFFF = 0x41E0000000000000 ++cmovws 0x0000000080000000 = 0xC1E0000000000000 ++cmovws 0x8000000000000000 = 0x0000000000000000 ++cmovws 0xFFFFFFFF80000000 = 0xC1E0000000000000 ++cmovws 0xFFFFFFFFFFFF8000 = 0xC0E0000000000000 ++cmovws 0xFFFFFFFFFFFFFF80 = 0xC060000000000000 ++cmovws 0x7FFFFFFFFFFFFFFF = 0xBFF0000000000000 ++cmovws 0x123456789ABCDEF0 = 0xC1D950C840000000 ++cmovws 0xF0DEBC9A78563412 = 0x41DE158D00000000 ++=== Running test on cmovld === ++cmovld 0x0000000000000000 = 0x0000000000000000 ++cmovld 0x0000000000000001 = 0x3FF0000000000000 ++cmovld 0x0000000000000002 = 0x4000000000000000 ++cmovld 0x0000000000000003 = 0x4008000000000000 ++cmovld 0x000000000000000F = 0x402E000000000000 ++cmovld 0xFFFFFFFFFFFFFFFF = 0xBFF0000000000000 ++cmovld 0xFFFFFFFFFFFFFFFE = 0xC000000000000000 ++cmovld 0xFFFFFFFFFFFFFFFD = 0xC008000000000000 ++cmovld 0x000000000000007F = 0x405FC00000000000 ++cmovld 0x0000000000000080 = 0x4060000000000000 ++cmovld 0x0000000000007FFF = 0x40DFFFC000000000 ++cmovld 0x0000000000008000 = 0x40E0000000000000 ++cmovld 0x000000007FFFFFFF = 0x41DFFFFFFFC00000 ++cmovld 0x0000000080000000 = 0x41E0000000000000 ++cmovld 0x8000000000000000 = 0xC3E0000000000000 ++cmovld 0xFFFFFFFF80000000 = 0xC1E0000000000000 ++cmovld 0xFFFFFFFFFFFF8000 = 0xC0E0000000000000 ++cmovld 0xFFFFFFFFFFFFFF80 = 0xC060000000000000 ++cmovld 0x7FFFFFFFFFFFFFFF = 0x43E0000000000000 ++cmovld 0x123456789ABCDEF0 = 0x43B23456789ABCDF ++cmovld 0xF0DEBC9A78563412 = 0xC3AE4286CB0F5398 ++=== Running test on cmovwd === ++cmovwd 0x0000000000000000 = 0x0000000000000000 ++cmovwd 0x0000000000000001 = 0x3FF0000000000000 ++cmovwd 0x0000000000000002 = 0x4000000000000000 ++cmovwd 0x0000000000000003 = 0x4008000000000000 ++cmovwd 0x000000000000000F = 0x402E000000000000 ++cmovwd 0xFFFFFFFFFFFFFFFF = 0xBFF0000000000000 ++cmovwd 0xFFFFFFFFFFFFFFFE = 0xC000000000000000 ++cmovwd 0xFFFFFFFFFFFFFFFD = 0xC008000000000000 ++cmovwd 0x000000000000007F = 0x405FC00000000000 ++cmovwd 0x0000000000000080 = 0x4060000000000000 ++cmovwd 0x0000000000007FFF = 0x40DFFFC000000000 ++cmovwd 0x0000000000008000 = 0x40E0000000000000 ++cmovwd 0x000000007FFFFFFF = 0x41DFFFFFFFC00000 ++cmovwd 0x0000000080000000 = 0xC1E0000000000000 ++cmovwd 0x8000000000000000 = 0x0000000000000000 ++cmovwd 0xFFFFFFFF80000000 = 0xC1E0000000000000 ++cmovwd 0xFFFFFFFFFFFF8000 = 0xC0E0000000000000 ++cmovwd 0xFFFFFFFFFFFFFF80 = 0xC060000000000000 ++cmovwd 0x7FFFFFFFFFFFFFFF = 0xBFF0000000000000 ++cmovwd 0x123456789ABCDEF0 = 0xC1D950C844000000 ++cmovwd 0xF0DEBC9A78563412 = 0x41DE158D04800000 ++=== Running test on cmovuls === ++cmovuls 0x0000000000000000 = 0x0000000000000000 ++cmovuls 0x0000000000000001 = 0x3FF0000000000000 ++cmovuls 0x0000000000000002 = 0x4000000000000000 ++cmovuls 0x0000000000000003 = 0x4008000000000000 ++cmovuls 0x000000000000000F = 0x402E000000000000 ++cmovuls 0xFFFFFFFFFFFFFFFF = 0x43F0000000000000 ++cmovuls 0xFFFFFFFFFFFFFFFE = 0x43F0000000000000 ++cmovuls 0xFFFFFFFFFFFFFFFD = 0x43F0000000000000 ++cmovuls 0x000000000000007F = 0x405FC00000000000 ++cmovuls 0x0000000000000080 = 0x4060000000000000 ++cmovuls 0x0000000000007FFF = 0x40DFFFC000000000 ++cmovuls 0x0000000000008000 = 0x40E0000000000000 ++cmovuls 0x000000007FFFFFFF = 0x41E0000000000000 ++cmovuls 0x0000000080000000 = 0x41E0000000000000 ++cmovuls 0x8000000000000000 = 0x43E0000000000000 ++cmovuls 0xFFFFFFFF80000000 = 0x43F0000000000000 ++cmovuls 0xFFFFFFFFFFFF8000 = 0x43F0000000000000 ++cmovuls 0xFFFFFFFFFFFFFF80 = 0x43F0000000000000 ++cmovuls 0x7FFFFFFFFFFFFFFF = 0x43E0000000000000 ++cmovuls 0x123456789ABCDEF0 = 0x43B2345680000000 ++cmovuls 0xF0DEBC9A78563412 = 0x43EE1BD7A0000000 ++=== Running test on cmovuws === ++cmovuws 0x0000000000000000 = 0x0000000000000000 ++cmovuws 0x0000000000000001 = 0x3FF0000000000000 ++cmovuws 0x0000000000000002 = 0x4000000000000000 ++cmovuws 0x0000000000000003 = 0x4008000000000000 ++cmovuws 0x000000000000000F = 0x402E000000000000 ++cmovuws 0xFFFFFFFFFFFFFFFF = 0x41F0000000000000 ++cmovuws 0xFFFFFFFFFFFFFFFE = 0x41F0000000000000 ++cmovuws 0xFFFFFFFFFFFFFFFD = 0x41F0000000000000 ++cmovuws 0x000000000000007F = 0x405FC00000000000 ++cmovuws 0x0000000000000080 = 0x4060000000000000 ++cmovuws 0x0000000000007FFF = 0x40DFFFC000000000 ++cmovuws 0x0000000000008000 = 0x40E0000000000000 ++cmovuws 0x000000007FFFFFFF = 0x41E0000000000000 ++cmovuws 0x0000000080000000 = 0x41E0000000000000 ++cmovuws 0x8000000000000000 = 0x0000000000000000 ++cmovuws 0xFFFFFFFF80000000 = 0x41E0000000000000 ++cmovuws 0xFFFFFFFFFFFF8000 = 0x41EFFFF000000000 ++cmovuws 0xFFFFFFFFFFFFFF80 = 0x41F0000000000000 ++cmovuws 0x7FFFFFFFFFFFFFFF = 0x41F0000000000000 ++cmovuws 0x123456789ABCDEF0 = 0x41E3579BE0000000 ++cmovuws 0xF0DEBC9A78563412 = 0x41DE158D00000000 ++=== Running test on cmovuld === ++cmovuld 0x0000000000000000 = 0x0000000000000000 ++cmovuld 0x0000000000000001 = 0x3FF0000000000000 ++cmovuld 0x0000000000000002 = 0x4000000000000000 ++cmovuld 0x0000000000000003 = 0x4008000000000000 ++cmovuld 0x000000000000000F = 0x402E000000000000 ++cmovuld 0xFFFFFFFFFFFFFFFF = 0x43F0000000000000 ++cmovuld 0xFFFFFFFFFFFFFFFE = 0x43F0000000000000 ++cmovuld 0xFFFFFFFFFFFFFFFD = 0x43F0000000000000 ++cmovuld 0x000000000000007F = 0x405FC00000000000 ++cmovuld 0x0000000000000080 = 0x4060000000000000 ++cmovuld 0x0000000000007FFF = 0x40DFFFC000000000 ++cmovuld 0x0000000000008000 = 0x40E0000000000000 ++cmovuld 0x000000007FFFFFFF = 0x41DFFFFFFFC00000 ++cmovuld 0x0000000080000000 = 0x41E0000000000000 ++cmovuld 0x8000000000000000 = 0x43E0000000000000 ++cmovuld 0xFFFFFFFF80000000 = 0x43EFFFFFFFF00000 ++cmovuld 0xFFFFFFFFFFFF8000 = 0x43EFFFFFFFFFFFF0 ++cmovuld 0xFFFFFFFFFFFFFF80 = 0x43F0000000000000 ++cmovuld 0x7FFFFFFFFFFFFFFF = 0x43E0000000000000 ++cmovuld 0x123456789ABCDEF0 = 0x43B23456789ABCDF ++cmovuld 0xF0DEBC9A78563412 = 0x43EE1BD7934F0AC7 ++=== Running test on cmovuwd === ++cmovuwd 0x0000000000000000 = 0x0000000000000000 ++cmovuwd 0x0000000000000001 = 0x3FF0000000000000 ++cmovuwd 0x0000000000000002 = 0x4000000000000000 ++cmovuwd 0x0000000000000003 = 0x4008000000000000 ++cmovuwd 0x000000000000000F = 0x402E000000000000 ++cmovuwd 0xFFFFFFFFFFFFFFFF = 0x41EFFFFFFFE00000 ++cmovuwd 0xFFFFFFFFFFFFFFFE = 0x41EFFFFFFFC00000 ++cmovuwd 0xFFFFFFFFFFFFFFFD = 0x41EFFFFFFFA00000 ++cmovuwd 0x000000000000007F = 0x405FC00000000000 ++cmovuwd 0x0000000000000080 = 0x4060000000000000 ++cmovuwd 0x0000000000007FFF = 0x40DFFFC000000000 ++cmovuwd 0x0000000000008000 = 0x40E0000000000000 ++cmovuwd 0x000000007FFFFFFF = 0x41DFFFFFFFC00000 ++cmovuwd 0x0000000080000000 = 0x41E0000000000000 ++cmovuwd 0x8000000000000000 = 0x0000000000000000 ++cmovuwd 0xFFFFFFFF80000000 = 0x41E0000000000000 ++cmovuwd 0xFFFFFFFFFFFF8000 = 0x41EFFFF000000000 ++cmovuwd 0xFFFFFFFFFFFFFF80 = 0x41EFFFFFF0000000 ++cmovuwd 0x7FFFFFFFFFFFFFFF = 0x41EFFFFFFFE00000 ++cmovuwd 0x123456789ABCDEF0 = 0x41E3579BDE000000 ++cmovuwd 0xF0DEBC9A78563412 = 0x41DE158D04800000 ++=== Running test on cmovdl === ++cmovdl 0x0000000000000000 = 0x0000000000000000 ++cmovdl 0x8000000000000000 = 0x0000000000000000 ++cmovdl 0xF0DEBC9A78563412 = 0x8000000000000000 ++cmovdl 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdl 0x3FF7333333333333 = 0x0000000000000001 ++cmovdl 0x3FF8000000000000 = 0x0000000000000002 ++cmovdl 0x3FF8CCCCCCCCCCCD = 0x0000000000000002 ++cmovdl 0x400399999999999A = 0x0000000000000002 ++cmovdl 0x4004000000000000 = 0x0000000000000002 ++cmovdl 0x4004666666666666 = 0x0000000000000003 ++cmovdl 0xBFF8000000000000 = 0xFFFFFFFFFFFFFFFE ++cmovdl 0xC004000000000000 = 0xFFFFFFFFFFFFFFFE ++cmovdl 0x3FF0000000000000 = 0x0000000000000001 ++cmovdl 0xBFF0000000000000 = 0xFFFFFFFFFFFFFFFF ++cmovdl 0x3FB999999999999A = 0x0000000000000000 ++cmovdl 0xBFB999999999999A = 0x0000000000000000 ++cmovdl 0x3FC999999999999A = 0x0000000000000000 ++cmovdl 0xBFC999999999999A = 0x0000000000000000 ++cmovdl 0x4008000000000000 = 0x0000000000000003 ++cmovdl 0xC008000000000000 = 0xFFFFFFFFFFFFFFFD ++cmovdl 0x4014000000000000 = 0x0000000000000005 ++cmovdl 0xC014000000000000 = 0xFFFFFFFFFFFFFFFB ++cmovdl 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdl 0xC197D78400000000 = 0xFFFFFFFFFA0A1F00 ++=== Running test on cmovdl_g === ++cmovdl_g 0x0000000000000000 = 0x0000000000000000 ++cmovdl_g 0x8000000000000000 = 0x0000000000000000 ++cmovdl_g 0xF0DEBC9A78563412 = 0x8000000000000000 ++cmovdl_g 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdl_g 0x3FF7333333333333 = 0x0000000000000001 ++cmovdl_g 0x3FF8000000000000 = 0x0000000000000002 ++cmovdl_g 0x3FF8CCCCCCCCCCCD = 0x0000000000000002 ++cmovdl_g 0x400399999999999A = 0x0000000000000002 ++cmovdl_g 0x4004000000000000 = 0x0000000000000002 ++cmovdl_g 0x4004666666666666 = 0x0000000000000003 ++cmovdl_g 0xBFF8000000000000 = 0xFFFFFFFFFFFFFFFE ++cmovdl_g 0xC004000000000000 = 0xFFFFFFFFFFFFFFFE ++cmovdl_g 0x3FF0000000000000 = 0x0000000000000001 ++cmovdl_g 0xBFF0000000000000 = 0xFFFFFFFFFFFFFFFF ++cmovdl_g 0x3FB999999999999A = 0x0000000000000000 ++cmovdl_g 0xBFB999999999999A = 0x0000000000000000 ++cmovdl_g 0x3FC999999999999A = 0x0000000000000000 ++cmovdl_g 0xBFC999999999999A = 0x0000000000000000 ++cmovdl_g 0x4008000000000000 = 0x0000000000000003 ++cmovdl_g 0xC008000000000000 = 0xFFFFFFFFFFFFFFFD ++cmovdl_g 0x4014000000000000 = 0x0000000000000005 ++cmovdl_g 0xC014000000000000 = 0xFFFFFFFFFFFFFFFB ++cmovdl_g 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdl_g 0xC197D78400000000 = 0xFFFFFFFFFA0A1F00 ++=== Running test on cmovdl_p === ++cmovdl_p 0x0000000000000000 = 0x0000000000000000 ++cmovdl_p 0x8000000000000000 = 0x0000000000000000 ++cmovdl_p 0xF0DEBC9A78563412 = 0x8000000000000000 ++cmovdl_p 0x123456789ABCDEF0 = 0x0000000000000001 ++cmovdl_p 0x3FF7333333333333 = 0x0000000000000002 ++cmovdl_p 0x3FF8000000000000 = 0x0000000000000002 ++cmovdl_p 0x3FF8CCCCCCCCCCCD = 0x0000000000000002 ++cmovdl_p 0x400399999999999A = 0x0000000000000003 ++cmovdl_p 0x4004000000000000 = 0x0000000000000003 ++cmovdl_p 0x4004666666666666 = 0x0000000000000003 ++cmovdl_p 0xBFF8000000000000 = 0xFFFFFFFFFFFFFFFF ++cmovdl_p 0xC004000000000000 = 0xFFFFFFFFFFFFFFFE ++cmovdl_p 0x3FF0000000000000 = 0x0000000000000001 ++cmovdl_p 0xBFF0000000000000 = 0xFFFFFFFFFFFFFFFF ++cmovdl_p 0x3FB999999999999A = 0x0000000000000001 ++cmovdl_p 0xBFB999999999999A = 0x0000000000000000 ++cmovdl_p 0x3FC999999999999A = 0x0000000000000001 ++cmovdl_p 0xBFC999999999999A = 0x0000000000000000 ++cmovdl_p 0x4008000000000000 = 0x0000000000000003 ++cmovdl_p 0xC008000000000000 = 0xFFFFFFFFFFFFFFFD ++cmovdl_p 0x4014000000000000 = 0x0000000000000005 ++cmovdl_p 0xC014000000000000 = 0xFFFFFFFFFFFFFFFB ++cmovdl_p 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdl_p 0xC197D78400000000 = 0xFFFFFFFFFA0A1F00 ++=== Running test on cmovdl_z === ++cmovdl_z 0x0000000000000000 = 0x0000000000000000 ++cmovdl_z 0x8000000000000000 = 0x0000000000000000 ++cmovdl_z 0xF0DEBC9A78563412 = 0x8000000000000000 ++cmovdl_z 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdl_z 0x3FF7333333333333 = 0x0000000000000001 ++cmovdl_z 0x3FF8000000000000 = 0x0000000000000001 ++cmovdl_z 0x3FF8CCCCCCCCCCCD = 0x0000000000000001 ++cmovdl_z 0x400399999999999A = 0x0000000000000002 ++cmovdl_z 0x4004000000000000 = 0x0000000000000002 ++cmovdl_z 0x4004666666666666 = 0x0000000000000002 ++cmovdl_z 0xBFF8000000000000 = 0xFFFFFFFFFFFFFFFF ++cmovdl_z 0xC004000000000000 = 0xFFFFFFFFFFFFFFFE ++cmovdl_z 0x3FF0000000000000 = 0x0000000000000001 ++cmovdl_z 0xBFF0000000000000 = 0xFFFFFFFFFFFFFFFF ++cmovdl_z 0x3FB999999999999A = 0x0000000000000000 ++cmovdl_z 0xBFB999999999999A = 0x0000000000000000 ++cmovdl_z 0x3FC999999999999A = 0x0000000000000000 ++cmovdl_z 0xBFC999999999999A = 0x0000000000000000 ++cmovdl_z 0x4008000000000000 = 0x0000000000000003 ++cmovdl_z 0xC008000000000000 = 0xFFFFFFFFFFFFFFFD ++cmovdl_z 0x4014000000000000 = 0x0000000000000005 ++cmovdl_z 0xC014000000000000 = 0xFFFFFFFFFFFFFFFB ++cmovdl_z 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdl_z 0xC197D78400000000 = 0xFFFFFFFFFA0A1F00 ++=== Running test on cmovdl_n === ++cmovdl_n 0x0000000000000000 = 0x0000000000000000 ++cmovdl_n 0x8000000000000000 = 0x0000000000000000 ++cmovdl_n 0xF0DEBC9A78563412 = 0x8000000000000000 ++cmovdl_n 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdl_n 0x3FF7333333333333 = 0x0000000000000001 ++cmovdl_n 0x3FF8000000000000 = 0x0000000000000001 ++cmovdl_n 0x3FF8CCCCCCCCCCCD = 0x0000000000000001 ++cmovdl_n 0x400399999999999A = 0x0000000000000002 ++cmovdl_n 0x4004000000000000 = 0x0000000000000002 ++cmovdl_n 0x4004666666666666 = 0x0000000000000002 ++cmovdl_n 0xBFF8000000000000 = 0xFFFFFFFFFFFFFFFE ++cmovdl_n 0xC004000000000000 = 0xFFFFFFFFFFFFFFFD ++cmovdl_n 0x3FF0000000000000 = 0x0000000000000001 ++cmovdl_n 0xBFF0000000000000 = 0xFFFFFFFFFFFFFFFF ++cmovdl_n 0x3FB999999999999A = 0x0000000000000000 ++cmovdl_n 0xBFB999999999999A = 0xFFFFFFFFFFFFFFFF ++cmovdl_n 0x3FC999999999999A = 0x0000000000000000 ++cmovdl_n 0xBFC999999999999A = 0xFFFFFFFFFFFFFFFF ++cmovdl_n 0x4008000000000000 = 0x0000000000000003 ++cmovdl_n 0xC008000000000000 = 0xFFFFFFFFFFFFFFFD ++cmovdl_n 0x4014000000000000 = 0x0000000000000005 ++cmovdl_n 0xC014000000000000 = 0xFFFFFFFFFFFFFFFB ++cmovdl_n 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdl_n 0xC197D78400000000 = 0xFFFFFFFFFA0A1F00 ++=== Running test on cmovdlu === ++cmovdlu 0x0000000000000000 = 0x0000000000000000 ++cmovdlu 0x8000000000000000 = 0x0000000000000000 ++cmovdlu 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmovdlu 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdlu 0x3FF7333333333333 = 0x0000000000000001 ++cmovdlu 0x3FF8000000000000 = 0x0000000000000002 ++cmovdlu 0x3FF8CCCCCCCCCCCD = 0x0000000000000002 ++cmovdlu 0x400399999999999A = 0x0000000000000002 ++cmovdlu 0x4004000000000000 = 0x0000000000000002 ++cmovdlu 0x4004666666666666 = 0x0000000000000003 ++cmovdlu 0xBFF8000000000000 = 0x0000000000000000 ++cmovdlu 0xC004000000000000 = 0x0000000000000000 ++cmovdlu 0x3FF0000000000000 = 0x0000000000000001 ++cmovdlu 0xBFF0000000000000 = 0x0000000000000000 ++cmovdlu 0x3FB999999999999A = 0x0000000000000000 ++cmovdlu 0xBFB999999999999A = 0x0000000000000000 ++cmovdlu 0x3FC999999999999A = 0x0000000000000000 ++cmovdlu 0xBFC999999999999A = 0x0000000000000000 ++cmovdlu 0x4008000000000000 = 0x0000000000000003 ++cmovdlu 0xC008000000000000 = 0x0000000000000000 ++cmovdlu 0x4014000000000000 = 0x0000000000000005 ++cmovdlu 0xC014000000000000 = 0x0000000000000000 ++cmovdlu 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdlu 0xC197D78400000000 = 0x0000000000000000 ++=== Running test on cmovdlu_g === ++cmovdlu_g 0x0000000000000000 = 0x0000000000000000 ++cmovdlu_g 0x8000000000000000 = 0x0000000000000000 ++cmovdlu_g 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmovdlu_g 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdlu_g 0x3FF7333333333333 = 0x0000000000000001 ++cmovdlu_g 0x3FF8000000000000 = 0x0000000000000002 ++cmovdlu_g 0x3FF8CCCCCCCCCCCD = 0x0000000000000002 ++cmovdlu_g 0x400399999999999A = 0x0000000000000002 ++cmovdlu_g 0x4004000000000000 = 0x0000000000000002 ++cmovdlu_g 0x4004666666666666 = 0x0000000000000003 ++cmovdlu_g 0xBFF8000000000000 = 0x0000000000000000 ++cmovdlu_g 0xC004000000000000 = 0x0000000000000000 ++cmovdlu_g 0x3FF0000000000000 = 0x0000000000000001 ++cmovdlu_g 0xBFF0000000000000 = 0x0000000000000000 ++cmovdlu_g 0x3FB999999999999A = 0x0000000000000000 ++cmovdlu_g 0xBFB999999999999A = 0x0000000000000000 ++cmovdlu_g 0x3FC999999999999A = 0x0000000000000000 ++cmovdlu_g 0xBFC999999999999A = 0x0000000000000000 ++cmovdlu_g 0x4008000000000000 = 0x0000000000000003 ++cmovdlu_g 0xC008000000000000 = 0x0000000000000000 ++cmovdlu_g 0x4014000000000000 = 0x0000000000000005 ++cmovdlu_g 0xC014000000000000 = 0x0000000000000000 ++cmovdlu_g 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdlu_g 0xC197D78400000000 = 0x0000000000000000 ++=== Running test on cmovdlu_p === ++cmovdlu_p 0x0000000000000000 = 0x0000000000000000 ++cmovdlu_p 0x8000000000000000 = 0x0000000000000000 ++cmovdlu_p 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmovdlu_p 0x123456789ABCDEF0 = 0x0000000000000001 ++cmovdlu_p 0x3FF7333333333333 = 0x0000000000000002 ++cmovdlu_p 0x3FF8000000000000 = 0x0000000000000002 ++cmovdlu_p 0x3FF8CCCCCCCCCCCD = 0x0000000000000002 ++cmovdlu_p 0x400399999999999A = 0x0000000000000003 ++cmovdlu_p 0x4004000000000000 = 0x0000000000000003 ++cmovdlu_p 0x4004666666666666 = 0x0000000000000003 ++cmovdlu_p 0xBFF8000000000000 = 0x0000000000000000 ++cmovdlu_p 0xC004000000000000 = 0x0000000000000000 ++cmovdlu_p 0x3FF0000000000000 = 0x0000000000000001 ++cmovdlu_p 0xBFF0000000000000 = 0x0000000000000000 ++cmovdlu_p 0x3FB999999999999A = 0x0000000000000001 ++cmovdlu_p 0xBFB999999999999A = 0x0000000000000000 ++cmovdlu_p 0x3FC999999999999A = 0x0000000000000001 ++cmovdlu_p 0xBFC999999999999A = 0x0000000000000000 ++cmovdlu_p 0x4008000000000000 = 0x0000000000000003 ++cmovdlu_p 0xC008000000000000 = 0x0000000000000000 ++cmovdlu_p 0x4014000000000000 = 0x0000000000000005 ++cmovdlu_p 0xC014000000000000 = 0x0000000000000000 ++cmovdlu_p 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdlu_p 0xC197D78400000000 = 0x0000000000000000 ++=== Running test on cmovdlu_z === ++cmovdlu_z 0x0000000000000000 = 0x0000000000000000 ++cmovdlu_z 0x8000000000000000 = 0x0000000000000000 ++cmovdlu_z 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmovdlu_z 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdlu_z 0x3FF7333333333333 = 0x0000000000000001 ++cmovdlu_z 0x3FF8000000000000 = 0x0000000000000001 ++cmovdlu_z 0x3FF8CCCCCCCCCCCD = 0x0000000000000001 ++cmovdlu_z 0x400399999999999A = 0x0000000000000002 ++cmovdlu_z 0x4004000000000000 = 0x0000000000000002 ++cmovdlu_z 0x4004666666666666 = 0x0000000000000002 ++cmovdlu_z 0xBFF8000000000000 = 0x0000000000000000 ++cmovdlu_z 0xC004000000000000 = 0x0000000000000000 ++cmovdlu_z 0x3FF0000000000000 = 0x0000000000000001 ++cmovdlu_z 0xBFF0000000000000 = 0x0000000000000000 ++cmovdlu_z 0x3FB999999999999A = 0x0000000000000000 ++cmovdlu_z 0xBFB999999999999A = 0x0000000000000000 ++cmovdlu_z 0x3FC999999999999A = 0x0000000000000000 ++cmovdlu_z 0xBFC999999999999A = 0x0000000000000000 ++cmovdlu_z 0x4008000000000000 = 0x0000000000000003 ++cmovdlu_z 0xC008000000000000 = 0x0000000000000000 ++cmovdlu_z 0x4014000000000000 = 0x0000000000000005 ++cmovdlu_z 0xC014000000000000 = 0x0000000000000000 ++cmovdlu_z 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdlu_z 0xC197D78400000000 = 0x0000000000000000 ++=== Running test on cmovdlu_n === ++cmovdlu_n 0x0000000000000000 = 0x0000000000000000 ++cmovdlu_n 0x8000000000000000 = 0x0000000000000000 ++cmovdlu_n 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmovdlu_n 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdlu_n 0x3FF7333333333333 = 0x0000000000000001 ++cmovdlu_n 0x3FF8000000000000 = 0x0000000000000001 ++cmovdlu_n 0x3FF8CCCCCCCCCCCD = 0x0000000000000001 ++cmovdlu_n 0x400399999999999A = 0x0000000000000002 ++cmovdlu_n 0x4004000000000000 = 0x0000000000000002 ++cmovdlu_n 0x4004666666666666 = 0x0000000000000002 ++cmovdlu_n 0xBFF8000000000000 = 0x0000000000000000 ++cmovdlu_n 0xC004000000000000 = 0x0000000000000000 ++cmovdlu_n 0x3FF0000000000000 = 0x0000000000000001 ++cmovdlu_n 0xBFF0000000000000 = 0x0000000000000000 ++cmovdlu_n 0x3FB999999999999A = 0x0000000000000000 ++cmovdlu_n 0xBFB999999999999A = 0x0000000000000000 ++cmovdlu_n 0x3FC999999999999A = 0x0000000000000000 ++cmovdlu_n 0xBFC999999999999A = 0x0000000000000000 ++cmovdlu_n 0x4008000000000000 = 0x0000000000000003 ++cmovdlu_n 0xC008000000000000 = 0x0000000000000000 ++cmovdlu_n 0x4014000000000000 = 0x0000000000000005 ++cmovdlu_n 0xC014000000000000 = 0x0000000000000000 ++cmovdlu_n 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdlu_n 0xC197D78400000000 = 0x0000000000000000 ++=== Running test on cmovdw === ++cmovdw 0x0000000000000000 = 0x0000000000000000 ++cmovdw 0x8000000000000000 = 0x0000000000000000 ++cmovdw 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++cmovdw 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdw 0x3FF7333333333333 = 0x0000000000000001 ++cmovdw 0x3FF8000000000000 = 0x0000000000000002 ++cmovdw 0x3FF8CCCCCCCCCCCD = 0x0000000000000002 ++cmovdw 0x400399999999999A = 0x0000000000000002 ++cmovdw 0x4004000000000000 = 0x0000000000000002 ++cmovdw 0x4004666666666666 = 0x0000000000000003 ++cmovdw 0xBFF8000000000000 = 0xFFFFFFFFFFFFFFFE ++cmovdw 0xC004000000000000 = 0xFFFFFFFFFFFFFFFE ++cmovdw 0x3FF0000000000000 = 0x0000000000000001 ++cmovdw 0xBFF0000000000000 = 0xFFFFFFFFFFFFFFFF ++cmovdw 0x3FB999999999999A = 0x0000000000000000 ++cmovdw 0xBFB999999999999A = 0x0000000000000000 ++cmovdw 0x3FC999999999999A = 0x0000000000000000 ++cmovdw 0xBFC999999999999A = 0x0000000000000000 ++cmovdw 0x4008000000000000 = 0x0000000000000003 ++cmovdw 0xC008000000000000 = 0xFFFFFFFFFFFFFFFD ++cmovdw 0x4014000000000000 = 0x0000000000000005 ++cmovdw 0xC014000000000000 = 0xFFFFFFFFFFFFFFFB ++cmovdw 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdw 0xC197D78400000000 = 0xFFFFFFFFFA0A1F00 ++=== Running test on cmovdw_g === ++cmovdw_g 0x0000000000000000 = 0x0000000000000000 ++cmovdw_g 0x8000000000000000 = 0x0000000000000000 ++cmovdw_g 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++cmovdw_g 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdw_g 0x3FF7333333333333 = 0x0000000000000001 ++cmovdw_g 0x3FF8000000000000 = 0x0000000000000002 ++cmovdw_g 0x3FF8CCCCCCCCCCCD = 0x0000000000000002 ++cmovdw_g 0x400399999999999A = 0x0000000000000002 ++cmovdw_g 0x4004000000000000 = 0x0000000000000002 ++cmovdw_g 0x4004666666666666 = 0x0000000000000003 ++cmovdw_g 0xBFF8000000000000 = 0xFFFFFFFFFFFFFFFE ++cmovdw_g 0xC004000000000000 = 0xFFFFFFFFFFFFFFFE ++cmovdw_g 0x3FF0000000000000 = 0x0000000000000001 ++cmovdw_g 0xBFF0000000000000 = 0xFFFFFFFFFFFFFFFF ++cmovdw_g 0x3FB999999999999A = 0x0000000000000000 ++cmovdw_g 0xBFB999999999999A = 0x0000000000000000 ++cmovdw_g 0x3FC999999999999A = 0x0000000000000000 ++cmovdw_g 0xBFC999999999999A = 0x0000000000000000 ++cmovdw_g 0x4008000000000000 = 0x0000000000000003 ++cmovdw_g 0xC008000000000000 = 0xFFFFFFFFFFFFFFFD ++cmovdw_g 0x4014000000000000 = 0x0000000000000005 ++cmovdw_g 0xC014000000000000 = 0xFFFFFFFFFFFFFFFB ++cmovdw_g 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdw_g 0xC197D78400000000 = 0xFFFFFFFFFA0A1F00 ++=== Running test on cmovdw_p === ++cmovdw_p 0x0000000000000000 = 0x0000000000000000 ++cmovdw_p 0x8000000000000000 = 0x0000000000000000 ++cmovdw_p 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++cmovdw_p 0x123456789ABCDEF0 = 0x0000000000000001 ++cmovdw_p 0x3FF7333333333333 = 0x0000000000000002 ++cmovdw_p 0x3FF8000000000000 = 0x0000000000000002 ++cmovdw_p 0x3FF8CCCCCCCCCCCD = 0x0000000000000002 ++cmovdw_p 0x400399999999999A = 0x0000000000000003 ++cmovdw_p 0x4004000000000000 = 0x0000000000000003 ++cmovdw_p 0x4004666666666666 = 0x0000000000000003 ++cmovdw_p 0xBFF8000000000000 = 0xFFFFFFFFFFFFFFFF ++cmovdw_p 0xC004000000000000 = 0xFFFFFFFFFFFFFFFE ++cmovdw_p 0x3FF0000000000000 = 0x0000000000000001 ++cmovdw_p 0xBFF0000000000000 = 0xFFFFFFFFFFFFFFFF ++cmovdw_p 0x3FB999999999999A = 0x0000000000000001 ++cmovdw_p 0xBFB999999999999A = 0x0000000000000000 ++cmovdw_p 0x3FC999999999999A = 0x0000000000000001 ++cmovdw_p 0xBFC999999999999A = 0x0000000000000000 ++cmovdw_p 0x4008000000000000 = 0x0000000000000003 ++cmovdw_p 0xC008000000000000 = 0xFFFFFFFFFFFFFFFD ++cmovdw_p 0x4014000000000000 = 0x0000000000000005 ++cmovdw_p 0xC014000000000000 = 0xFFFFFFFFFFFFFFFB ++cmovdw_p 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdw_p 0xC197D78400000000 = 0xFFFFFFFFFA0A1F00 ++=== Running test on cmovdw_z === ++cmovdw_z 0x0000000000000000 = 0x0000000000000000 ++cmovdw_z 0x8000000000000000 = 0x0000000000000000 ++cmovdw_z 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++cmovdw_z 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdw_z 0x3FF7333333333333 = 0x0000000000000001 ++cmovdw_z 0x3FF8000000000000 = 0x0000000000000001 ++cmovdw_z 0x3FF8CCCCCCCCCCCD = 0x0000000000000001 ++cmovdw_z 0x400399999999999A = 0x0000000000000002 ++cmovdw_z 0x4004000000000000 = 0x0000000000000002 ++cmovdw_z 0x4004666666666666 = 0x0000000000000002 ++cmovdw_z 0xBFF8000000000000 = 0xFFFFFFFFFFFFFFFF ++cmovdw_z 0xC004000000000000 = 0xFFFFFFFFFFFFFFFE ++cmovdw_z 0x3FF0000000000000 = 0x0000000000000001 ++cmovdw_z 0xBFF0000000000000 = 0xFFFFFFFFFFFFFFFF ++cmovdw_z 0x3FB999999999999A = 0x0000000000000000 ++cmovdw_z 0xBFB999999999999A = 0x0000000000000000 ++cmovdw_z 0x3FC999999999999A = 0x0000000000000000 ++cmovdw_z 0xBFC999999999999A = 0x0000000000000000 ++cmovdw_z 0x4008000000000000 = 0x0000000000000003 ++cmovdw_z 0xC008000000000000 = 0xFFFFFFFFFFFFFFFD ++cmovdw_z 0x4014000000000000 = 0x0000000000000005 ++cmovdw_z 0xC014000000000000 = 0xFFFFFFFFFFFFFFFB ++cmovdw_z 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdw_z 0xC197D78400000000 = 0xFFFFFFFFFA0A1F00 ++=== Running test on cmovdw_n === ++cmovdw_n 0x0000000000000000 = 0x0000000000000000 ++cmovdw_n 0x8000000000000000 = 0x0000000000000000 ++cmovdw_n 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++cmovdw_n 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdw_n 0x3FF7333333333333 = 0x0000000000000001 ++cmovdw_n 0x3FF8000000000000 = 0x0000000000000001 ++cmovdw_n 0x3FF8CCCCCCCCCCCD = 0x0000000000000001 ++cmovdw_n 0x400399999999999A = 0x0000000000000002 ++cmovdw_n 0x4004000000000000 = 0x0000000000000002 ++cmovdw_n 0x4004666666666666 = 0x0000000000000002 ++cmovdw_n 0xBFF8000000000000 = 0xFFFFFFFFFFFFFFFE ++cmovdw_n 0xC004000000000000 = 0xFFFFFFFFFFFFFFFD ++cmovdw_n 0x3FF0000000000000 = 0x0000000000000001 ++cmovdw_n 0xBFF0000000000000 = 0xFFFFFFFFFFFFFFFF ++cmovdw_n 0x3FB999999999999A = 0x0000000000000000 ++cmovdw_n 0xBFB999999999999A = 0xFFFFFFFFFFFFFFFF ++cmovdw_n 0x3FC999999999999A = 0x0000000000000000 ++cmovdw_n 0xBFC999999999999A = 0xFFFFFFFFFFFFFFFF ++cmovdw_n 0x4008000000000000 = 0x0000000000000003 ++cmovdw_n 0xC008000000000000 = 0xFFFFFFFFFFFFFFFD ++cmovdw_n 0x4014000000000000 = 0x0000000000000005 ++cmovdw_n 0xC014000000000000 = 0xFFFFFFFFFFFFFFFB ++cmovdw_n 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdw_n 0xC197D78400000000 = 0xFFFFFFFFFA0A1F00 ++=== Running test on cmovdwu === ++cmovdwu 0x0000000000000000 = 0x0000000000000000 ++cmovdwu 0x8000000000000000 = 0x0000000000000000 ++cmovdwu 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmovdwu 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdwu 0x3FF7333333333333 = 0x0000000000000001 ++cmovdwu 0x3FF8000000000000 = 0x0000000000000002 ++cmovdwu 0x3FF8CCCCCCCCCCCD = 0x0000000000000002 ++cmovdwu 0x400399999999999A = 0x0000000000000002 ++cmovdwu 0x4004000000000000 = 0x0000000000000002 ++cmovdwu 0x4004666666666666 = 0x0000000000000003 ++cmovdwu 0xBFF8000000000000 = 0x0000000000000000 ++cmovdwu 0xC004000000000000 = 0x0000000000000000 ++cmovdwu 0x3FF0000000000000 = 0x0000000000000001 ++cmovdwu 0xBFF0000000000000 = 0x0000000000000000 ++cmovdwu 0x3FB999999999999A = 0x0000000000000000 ++cmovdwu 0xBFB999999999999A = 0x0000000000000000 ++cmovdwu 0x3FC999999999999A = 0x0000000000000000 ++cmovdwu 0xBFC999999999999A = 0x0000000000000000 ++cmovdwu 0x4008000000000000 = 0x0000000000000003 ++cmovdwu 0xC008000000000000 = 0x0000000000000000 ++cmovdwu 0x4014000000000000 = 0x0000000000000005 ++cmovdwu 0xC014000000000000 = 0x0000000000000000 ++cmovdwu 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdwu 0xC197D78400000000 = 0x0000000000000000 ++=== Running test on cmovdwu_g === ++cmovdwu_g 0x0000000000000000 = 0x0000000000000000 ++cmovdwu_g 0x8000000000000000 = 0x0000000000000000 ++cmovdwu_g 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmovdwu_g 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdwu_g 0x3FF7333333333333 = 0x0000000000000001 ++cmovdwu_g 0x3FF8000000000000 = 0x0000000000000002 ++cmovdwu_g 0x3FF8CCCCCCCCCCCD = 0x0000000000000002 ++cmovdwu_g 0x400399999999999A = 0x0000000000000002 ++cmovdwu_g 0x4004000000000000 = 0x0000000000000002 ++cmovdwu_g 0x4004666666666666 = 0x0000000000000003 ++cmovdwu_g 0xBFF8000000000000 = 0x0000000000000000 ++cmovdwu_g 0xC004000000000000 = 0x0000000000000000 ++cmovdwu_g 0x3FF0000000000000 = 0x0000000000000001 ++cmovdwu_g 0xBFF0000000000000 = 0x0000000000000000 ++cmovdwu_g 0x3FB999999999999A = 0x0000000000000000 ++cmovdwu_g 0xBFB999999999999A = 0x0000000000000000 ++cmovdwu_g 0x3FC999999999999A = 0x0000000000000000 ++cmovdwu_g 0xBFC999999999999A = 0x0000000000000000 ++cmovdwu_g 0x4008000000000000 = 0x0000000000000003 ++cmovdwu_g 0xC008000000000000 = 0x0000000000000000 ++cmovdwu_g 0x4014000000000000 = 0x0000000000000005 ++cmovdwu_g 0xC014000000000000 = 0x0000000000000000 ++cmovdwu_g 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdwu_g 0xC197D78400000000 = 0x0000000000000000 ++=== Running test on cmovdwu_p === ++cmovdwu_p 0x0000000000000000 = 0x0000000000000000 ++cmovdwu_p 0x8000000000000000 = 0x0000000000000000 ++cmovdwu_p 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmovdwu_p 0x123456789ABCDEF0 = 0x0000000000000001 ++cmovdwu_p 0x3FF7333333333333 = 0x0000000000000002 ++cmovdwu_p 0x3FF8000000000000 = 0x0000000000000002 ++cmovdwu_p 0x3FF8CCCCCCCCCCCD = 0x0000000000000002 ++cmovdwu_p 0x400399999999999A = 0x0000000000000003 ++cmovdwu_p 0x4004000000000000 = 0x0000000000000003 ++cmovdwu_p 0x4004666666666666 = 0x0000000000000003 ++cmovdwu_p 0xBFF8000000000000 = 0x0000000000000000 ++cmovdwu_p 0xC004000000000000 = 0x0000000000000000 ++cmovdwu_p 0x3FF0000000000000 = 0x0000000000000001 ++cmovdwu_p 0xBFF0000000000000 = 0x0000000000000000 ++cmovdwu_p 0x3FB999999999999A = 0x0000000000000001 ++cmovdwu_p 0xBFB999999999999A = 0x0000000000000000 ++cmovdwu_p 0x3FC999999999999A = 0x0000000000000001 ++cmovdwu_p 0xBFC999999999999A = 0x0000000000000000 ++cmovdwu_p 0x4008000000000000 = 0x0000000000000003 ++cmovdwu_p 0xC008000000000000 = 0x0000000000000000 ++cmovdwu_p 0x4014000000000000 = 0x0000000000000005 ++cmovdwu_p 0xC014000000000000 = 0x0000000000000000 ++cmovdwu_p 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdwu_p 0xC197D78400000000 = 0x0000000000000000 ++=== Running test on cmovdwu_z === ++cmovdwu_z 0x0000000000000000 = 0x0000000000000000 ++cmovdwu_z 0x8000000000000000 = 0x0000000000000000 ++cmovdwu_z 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmovdwu_z 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdwu_z 0x3FF7333333333333 = 0x0000000000000001 ++cmovdwu_z 0x3FF8000000000000 = 0x0000000000000001 ++cmovdwu_z 0x3FF8CCCCCCCCCCCD = 0x0000000000000001 ++cmovdwu_z 0x400399999999999A = 0x0000000000000002 ++cmovdwu_z 0x4004000000000000 = 0x0000000000000002 ++cmovdwu_z 0x4004666666666666 = 0x0000000000000002 ++cmovdwu_z 0xBFF8000000000000 = 0x0000000000000000 ++cmovdwu_z 0xC004000000000000 = 0x0000000000000000 ++cmovdwu_z 0x3FF0000000000000 = 0x0000000000000001 ++cmovdwu_z 0xBFF0000000000000 = 0x0000000000000000 ++cmovdwu_z 0x3FB999999999999A = 0x0000000000000000 ++cmovdwu_z 0xBFB999999999999A = 0x0000000000000000 ++cmovdwu_z 0x3FC999999999999A = 0x0000000000000000 ++cmovdwu_z 0xBFC999999999999A = 0x0000000000000000 ++cmovdwu_z 0x4008000000000000 = 0x0000000000000003 ++cmovdwu_z 0xC008000000000000 = 0x0000000000000000 ++cmovdwu_z 0x4014000000000000 = 0x0000000000000005 ++cmovdwu_z 0xC014000000000000 = 0x0000000000000000 ++cmovdwu_z 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdwu_z 0xC197D78400000000 = 0x0000000000000000 ++=== Running test on cmovdwu_n === ++cmovdwu_n 0x0000000000000000 = 0x0000000000000000 ++cmovdwu_n 0x8000000000000000 = 0x0000000000000000 ++cmovdwu_n 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmovdwu_n 0x123456789ABCDEF0 = 0x0000000000000000 ++cmovdwu_n 0x3FF7333333333333 = 0x0000000000000001 ++cmovdwu_n 0x3FF8000000000000 = 0x0000000000000001 ++cmovdwu_n 0x3FF8CCCCCCCCCCCD = 0x0000000000000001 ++cmovdwu_n 0x400399999999999A = 0x0000000000000002 ++cmovdwu_n 0x4004000000000000 = 0x0000000000000002 ++cmovdwu_n 0x4004666666666666 = 0x0000000000000002 ++cmovdwu_n 0xBFF8000000000000 = 0x0000000000000000 ++cmovdwu_n 0xC004000000000000 = 0x0000000000000000 ++cmovdwu_n 0x3FF0000000000000 = 0x0000000000000001 ++cmovdwu_n 0xBFF0000000000000 = 0x0000000000000000 ++cmovdwu_n 0x3FB999999999999A = 0x0000000000000000 ++cmovdwu_n 0xBFB999999999999A = 0x0000000000000000 ++cmovdwu_n 0x3FC999999999999A = 0x0000000000000000 ++cmovdwu_n 0xBFC999999999999A = 0x0000000000000000 ++cmovdwu_n 0x4008000000000000 = 0x0000000000000003 ++cmovdwu_n 0xC008000000000000 = 0x0000000000000000 ++cmovdwu_n 0x4014000000000000 = 0x0000000000000005 ++cmovdwu_n 0xC014000000000000 = 0x0000000000000000 ++cmovdwu_n 0x4197D78400000000 = 0x0000000005F5E100 ++cmovdwu_n 0xC197D78400000000 = 0x0000000000000000 +diff --git a/none/tests/sw64/8a-conv.vgtest b/none/tests/sw64/8a-conv.vgtest +new file mode 100644 +index 000000000..9922ac756 +--- /dev/null ++++ b/none/tests/sw64/8a-conv.vgtest +@@ -0,0 +1,3 @@ ++prereq: grep 'cpu.*family.*8' /proc/cpuinfo > /dev/null ++prog: 8a-conv ++vgopts: -q +diff --git a/none/tests/sw64/8a-fp.c b/none/tests/sw64/8a-fp.c +new file mode 100644 +index 000000000..d32e0e62e +--- /dev/null ++++ b/none/tests/sw64/8a-fp.c +@@ -0,0 +1,46 @@ ++#include "common-sw64-standalone.h" ++ ++#if !defined(__sw_64_sw8a__) ++int main(void) { return -1; } ++#else ++ ++#define MK_FUNC(insn) \ ++ __attribute__((noinline)) static double test_##insn(double a) { \ ++ double r; \ ++ __asm__ volatile ( \ ++ " " STRINGIFY(insn) " %1, %0\n" \ ++ : "=&f"(r) \ ++ : "f"(a) \ ++ ); \ ++ return r; \ ++ } \ ++ static void run_##insn(void) { \ ++ my_printf("=== Running test on " STRINGIFY(insn) " ===\n", 0); \ ++ for (int i = 0; i < num_f64; i++) { \ ++ double a = case_f64[i].d; \ ++ double r = test_##insn(a); \ ++ my_printf(STRINGIFY(insn) " 0x%x = 0x%x\n", (void const *[]){ &a, &r }); \ ++ } \ ++ } ++MK_FUNC(frid) ++MK_FUNC(frid_g) ++MK_FUNC(frid_p) ++MK_FUNC(frid_z) ++MK_FUNC(frid_n) ++MK_FUNC(frecs) ++MK_FUNC(frecd) ++#undef MK_FUNC ++ ++int main(void) ++{ ++ run_frid(); ++ run_frid_g(); ++ run_frid_p(); ++ run_frid_z(); ++ run_frid_n(); ++ run_frecs(); ++ run_frecd(); ++ return 0; ++} ++ ++#endif +diff --git a/none/tests/sw64/8a-fp.stderr.exp b/none/tests/sw64/8a-fp.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/8a-fp.stdout.exp b/none/tests/sw64/8a-fp.stdout.exp +new file mode 100644 +index 000000000..aea65d609 +--- /dev/null ++++ b/none/tests/sw64/8a-fp.stdout.exp +@@ -0,0 +1,175 @@ ++=== Running test on frid === ++frid 0x0000000000000000 = 0x0000000000000000 ++frid 0x8000000000000000 = 0x0000000000000000 ++frid 0xF0DEBC9A78563412 = 0xC3E0000000000000 ++frid 0x123456789ABCDEF0 = 0x0000000000000000 ++frid 0x3FF7333333333333 = 0x3FF0000000000000 ++frid 0x3FF8000000000000 = 0x4000000000000000 ++frid 0x3FF8CCCCCCCCCCCD = 0x4000000000000000 ++frid 0x400399999999999A = 0x4000000000000000 ++frid 0x4004000000000000 = 0x4000000000000000 ++frid 0x4004666666666666 = 0x4008000000000000 ++frid 0xBFF8000000000000 = 0xC000000000000000 ++frid 0xC004000000000000 = 0xC000000000000000 ++frid 0x3FF0000000000000 = 0x3FF0000000000000 ++frid 0xBFF0000000000000 = 0xBFF0000000000000 ++frid 0x3FB999999999999A = 0x0000000000000000 ++frid 0xBFB999999999999A = 0x0000000000000000 ++frid 0x3FC999999999999A = 0x0000000000000000 ++frid 0xBFC999999999999A = 0x0000000000000000 ++frid 0x4008000000000000 = 0x4008000000000000 ++frid 0xC008000000000000 = 0xC008000000000000 ++frid 0x4014000000000000 = 0x4014000000000000 ++frid 0xC014000000000000 = 0xC014000000000000 ++frid 0x4197D78400000000 = 0x4197D78400000000 ++frid 0xC197D78400000000 = 0xC197D78400000000 ++=== Running test on frid_g === ++frid_g 0x0000000000000000 = 0x0000000000000000 ++frid_g 0x8000000000000000 = 0x0000000000000000 ++frid_g 0xF0DEBC9A78563412 = 0xC3E0000000000000 ++frid_g 0x123456789ABCDEF0 = 0x0000000000000000 ++frid_g 0x3FF7333333333333 = 0x3FF0000000000000 ++frid_g 0x3FF8000000000000 = 0x4000000000000000 ++frid_g 0x3FF8CCCCCCCCCCCD = 0x4000000000000000 ++frid_g 0x400399999999999A = 0x4000000000000000 ++frid_g 0x4004000000000000 = 0x4000000000000000 ++frid_g 0x4004666666666666 = 0x4008000000000000 ++frid_g 0xBFF8000000000000 = 0xC000000000000000 ++frid_g 0xC004000000000000 = 0xC000000000000000 ++frid_g 0x3FF0000000000000 = 0x3FF0000000000000 ++frid_g 0xBFF0000000000000 = 0xBFF0000000000000 ++frid_g 0x3FB999999999999A = 0x0000000000000000 ++frid_g 0xBFB999999999999A = 0x0000000000000000 ++frid_g 0x3FC999999999999A = 0x0000000000000000 ++frid_g 0xBFC999999999999A = 0x0000000000000000 ++frid_g 0x4008000000000000 = 0x4008000000000000 ++frid_g 0xC008000000000000 = 0xC008000000000000 ++frid_g 0x4014000000000000 = 0x4014000000000000 ++frid_g 0xC014000000000000 = 0xC014000000000000 ++frid_g 0x4197D78400000000 = 0x4197D78400000000 ++frid_g 0xC197D78400000000 = 0xC197D78400000000 ++=== Running test on frid_p === ++frid_p 0x0000000000000000 = 0x0000000000000000 ++frid_p 0x8000000000000000 = 0x0000000000000000 ++frid_p 0xF0DEBC9A78563412 = 0xC3E0000000000000 ++frid_p 0x123456789ABCDEF0 = 0x3FF0000000000000 ++frid_p 0x3FF7333333333333 = 0x4000000000000000 ++frid_p 0x3FF8000000000000 = 0x4000000000000000 ++frid_p 0x3FF8CCCCCCCCCCCD = 0x4000000000000000 ++frid_p 0x400399999999999A = 0x4008000000000000 ++frid_p 0x4004000000000000 = 0x4008000000000000 ++frid_p 0x4004666666666666 = 0x4008000000000000 ++frid_p 0xBFF8000000000000 = 0xBFF0000000000000 ++frid_p 0xC004000000000000 = 0xC000000000000000 ++frid_p 0x3FF0000000000000 = 0x3FF0000000000000 ++frid_p 0xBFF0000000000000 = 0xBFF0000000000000 ++frid_p 0x3FB999999999999A = 0x3FF0000000000000 ++frid_p 0xBFB999999999999A = 0x0000000000000000 ++frid_p 0x3FC999999999999A = 0x3FF0000000000000 ++frid_p 0xBFC999999999999A = 0x0000000000000000 ++frid_p 0x4008000000000000 = 0x4008000000000000 ++frid_p 0xC008000000000000 = 0xC008000000000000 ++frid_p 0x4014000000000000 = 0x4014000000000000 ++frid_p 0xC014000000000000 = 0xC014000000000000 ++frid_p 0x4197D78400000000 = 0x4197D78400000000 ++frid_p 0xC197D78400000000 = 0xC197D78400000000 ++=== Running test on frid_z === ++frid_z 0x0000000000000000 = 0x0000000000000000 ++frid_z 0x8000000000000000 = 0x0000000000000000 ++frid_z 0xF0DEBC9A78563412 = 0xC3E0000000000000 ++frid_z 0x123456789ABCDEF0 = 0x0000000000000000 ++frid_z 0x3FF7333333333333 = 0x3FF0000000000000 ++frid_z 0x3FF8000000000000 = 0x3FF0000000000000 ++frid_z 0x3FF8CCCCCCCCCCCD = 0x3FF0000000000000 ++frid_z 0x400399999999999A = 0x4000000000000000 ++frid_z 0x4004000000000000 = 0x4000000000000000 ++frid_z 0x4004666666666666 = 0x4000000000000000 ++frid_z 0xBFF8000000000000 = 0xBFF0000000000000 ++frid_z 0xC004000000000000 = 0xC000000000000000 ++frid_z 0x3FF0000000000000 = 0x3FF0000000000000 ++frid_z 0xBFF0000000000000 = 0xBFF0000000000000 ++frid_z 0x3FB999999999999A = 0x0000000000000000 ++frid_z 0xBFB999999999999A = 0x0000000000000000 ++frid_z 0x3FC999999999999A = 0x0000000000000000 ++frid_z 0xBFC999999999999A = 0x0000000000000000 ++frid_z 0x4008000000000000 = 0x4008000000000000 ++frid_z 0xC008000000000000 = 0xC008000000000000 ++frid_z 0x4014000000000000 = 0x4014000000000000 ++frid_z 0xC014000000000000 = 0xC014000000000000 ++frid_z 0x4197D78400000000 = 0x4197D78400000000 ++frid_z 0xC197D78400000000 = 0xC197D78400000000 ++=== Running test on frid_n === ++frid_n 0x0000000000000000 = 0x0000000000000000 ++frid_n 0x8000000000000000 = 0x0000000000000000 ++frid_n 0xF0DEBC9A78563412 = 0xC3E0000000000000 ++frid_n 0x123456789ABCDEF0 = 0x0000000000000000 ++frid_n 0x3FF7333333333333 = 0x3FF0000000000000 ++frid_n 0x3FF8000000000000 = 0x3FF0000000000000 ++frid_n 0x3FF8CCCCCCCCCCCD = 0x3FF0000000000000 ++frid_n 0x400399999999999A = 0x4000000000000000 ++frid_n 0x4004000000000000 = 0x4000000000000000 ++frid_n 0x4004666666666666 = 0x4000000000000000 ++frid_n 0xBFF8000000000000 = 0xC000000000000000 ++frid_n 0xC004000000000000 = 0xC008000000000000 ++frid_n 0x3FF0000000000000 = 0x3FF0000000000000 ++frid_n 0xBFF0000000000000 = 0xBFF0000000000000 ++frid_n 0x3FB999999999999A = 0x0000000000000000 ++frid_n 0xBFB999999999999A = 0xBFF0000000000000 ++frid_n 0x3FC999999999999A = 0x0000000000000000 ++frid_n 0xBFC999999999999A = 0xBFF0000000000000 ++frid_n 0x4008000000000000 = 0x4008000000000000 ++frid_n 0xC008000000000000 = 0xC008000000000000 ++frid_n 0x4014000000000000 = 0x4014000000000000 ++frid_n 0xC014000000000000 = 0xC014000000000000 ++frid_n 0x4197D78400000000 = 0x4197D78400000000 ++frid_n 0xC197D78400000000 = 0xC197D78400000000 ++=== Running test on frecs === ++frecs 0x0000000000000000 = 0x7FF0000000000000 ++frecs 0x8000000000000000 = 0xFFF0000000000000 ++frecs 0xF0DEBC9A78563412 = 0x8000000000000000 ++frecs 0x123456789ABCDEF0 = 0x47EFFE0000000000 ++frecs 0x3FF7333333333333 = 0x3FE6120000000000 ++frecs 0x3FF8000000000000 = 0x3FE5540000000000 ++frecs 0x3FF8CCCCCCCCCCCD = 0x3FE4A40000000000 ++frecs 0x400399999999999A = 0x3FDA200000000000 ++frecs 0x4004000000000000 = 0x3FD9980000000000 ++frecs 0x4004666666666666 = 0x3FD9180000000000 ++frecs 0xBFF8000000000000 = 0xBFE5540000000000 ++frecs 0xC004000000000000 = 0xBFD9980000000000 ++frecs 0x3FF0000000000000 = 0x3FF0000000000000 ++frecs 0xBFF0000000000000 = 0xBFF0000000000000 ++frecs 0x3FB999999999999A = 0x4024000000000000 ++frecs 0xBFB999999999999A = 0xC024000000000000 ++frecs 0x3FC999999999999A = 0x4014000000000000 ++frecs 0xBFC999999999999A = 0xC014000000000000 ++frecs 0x4008000000000000 = 0x3FD5540000000000 ++frecs 0xC008000000000000 = 0xBFD5540000000000 ++frecs 0x4014000000000000 = 0x3FC9980000000000 ++frecs 0xC014000000000000 = 0xBFC9980000000000 ++frecs 0x4197D78400000000 = 0x3E457A0000000000 ++frecs 0xC197D78400000000 = 0xBE457A0000000000 ++=== Running test on frecd === ++frecd 0x0000000000000000 = 0x7FF0000000000000 ++frecd 0x8000000000000000 = 0xFFF0000000000000 ++frecd 0xF0DEBC9A78563412 = 0x8F00A80000000000 ++frecd 0x123456789ABCDEF0 = 0x6DA92C0000000000 ++frecd 0x3FF7333333333333 = 0x3FE6120000000000 ++frecd 0x3FF8000000000000 = 0x3FE5540000000000 ++frecd 0x3FF8CCCCCCCCCCCD = 0x3FE4A40000000000 ++frecd 0x400399999999999A = 0x3FDA200000000000 ++frecd 0x4004000000000000 = 0x3FD9980000000000 ++frecd 0x4004666666666666 = 0x3FD9180000000000 ++frecd 0xBFF8000000000000 = 0xBFE5540000000000 ++frecd 0xC004000000000000 = 0xBFD9980000000000 ++frecd 0x3FF0000000000000 = 0x3FF0000000000000 ++frecd 0xBFF0000000000000 = 0xBFF0000000000000 ++frecd 0x3FB999999999999A = 0x4024000000000000 ++frecd 0xBFB999999999999A = 0xC024000000000000 ++frecd 0x3FC999999999999A = 0x4014000000000000 ++frecd 0xBFC999999999999A = 0xC014000000000000 ++frecd 0x4008000000000000 = 0x3FD5540000000000 ++frecd 0xC008000000000000 = 0xBFD5540000000000 ++frecd 0x4014000000000000 = 0x3FC9980000000000 ++frecd 0xC014000000000000 = 0xBFC9980000000000 ++frecd 0x4197D78400000000 = 0x3E457A0000000000 ++frecd 0xC197D78400000000 = 0xBE457A0000000000 +diff --git a/none/tests/sw64/8a-fp.vgtest b/none/tests/sw64/8a-fp.vgtest +new file mode 100644 +index 000000000..85e1d8483 +--- /dev/null ++++ b/none/tests/sw64/8a-fp.vgtest +@@ -0,0 +1,3 @@ ++prereq: grep 'cpu.*family.*8' /proc/cpuinfo > /dev/null ++prog: 8a-fp ++vgopts: -q +diff --git a/none/tests/sw64/8a-int.c b/none/tests/sw64/8a-int.c +new file mode 100644 +index 000000000..91fbb838f +--- /dev/null ++++ b/none/tests/sw64/8a-int.c +@@ -0,0 +1,192 @@ ++#include "common-sw64-standalone.h" ++ ++#if !defined(__sw_64_sw8a__) ++int main(void) { return -1; } ++#else ++ ++/* div, skip 0-divisor */ ++#define MK_FUNC(insn, bits) \ ++ __attribute__((noinline)) static long test_##insn(long a, long b) { \ ++ long r; \ ++ __asm__ volatile ( \ ++ " " STRINGIFY(insn) " %1, %2, %0\n" \ ++ : "=&r"(r) \ ++ : "r"(a), "r"(b) \ ++ ); \ ++ return r; \ ++ } \ ++ static void run_##insn(void) { \ ++ my_printf("=== Running test on " STRINGIFY(insn) " ===\n", 0); \ ++ for (int i = 0; i < num_i64; i++) { \ ++ for (int j = 0; j < num_i64; j++) { \ ++ long a = case_i64[i].l; \ ++ long b = case_i64[j].l; \ ++ if (b == 0 || (bits == 32 && (unsigned)b == 0)) continue; \ ++ long r = test_##insn(a, b); \ ++ my_printf(STRINGIFY(insn) " 0x%x 0x%x = 0x%x\n", (void const *[]){ &a, &b, &r }); \ ++ } \ ++ } \ ++ } ++MK_FUNC(divw, 32) ++MK_FUNC(udivw, 32) ++MK_FUNC(divl, 64) ++MK_FUNC(udivl, 64) ++MK_FUNC(remw, 32) ++MK_FUNC(uremw, 32) ++MK_FUNC(reml, 64) ++MK_FUNC(ureml, 64) ++#undef MK_FUNC ++ ++/* 2-op */ ++#define MK_FUNC(insn) \ ++ __attribute__((noinline)) static long test_##insn(long a, long b) { \ ++ long r; \ ++ __asm__ volatile ( \ ++ " " STRINGIFY(insn) " %1, %2, %0\n" \ ++ : "=&r"(r) \ ++ : "r"(a), "r"(b) \ ++ ); \ ++ return r; \ ++ } \ ++ static void run_##insn(void) { \ ++ my_printf("=== Running test on " STRINGIFY(insn) " ===\n", 0); \ ++ for (int i = 0; i < num_i64; i++) { \ ++ for (int j = 0; j < num_i64; j++) { \ ++ long a = case_i64[i].l; \ ++ long b = case_i64[j].l; \ ++ long r = test_##insn(a, b); \ ++ my_printf(STRINGIFY(insn) " 0x%x 0x%x = 0x%x\n", (void const *[]){ &a, &b, &r }); \ ++ } \ ++ } \ ++ } ++MK_FUNC(sbt) ++MK_FUNC(cbt) ++MK_FUNC(roll) ++MK_FUNC(sllw) ++MK_FUNC(srlw) ++MK_FUNC(sraw) ++MK_FUNC(rolw) ++MK_FUNC(crc32b) ++MK_FUNC(crc32h) ++MK_FUNC(crc32w) ++MK_FUNC(crc32l) ++MK_FUNC(crc32cb) ++MK_FUNC(crc32ch) ++MK_FUNC(crc32cw) ++MK_FUNC(crc32cl) ++#undef MK_FUNC ++ ++/* 1-op */ ++#define MK_FUNC(insn) \ ++ __attribute__((noinline)) static long test_##insn(long a) { \ ++ long r; \ ++ __asm__ volatile ( \ ++ " " STRINGIFY(insn) " %1, %0\n" \ ++ : "=&r"(r) \ ++ : "r"(a) \ ++ ); \ ++ return r; \ ++ } \ ++ static void run_##insn(void) { \ ++ my_printf("=== Running test on " STRINGIFY(insn) " ===\n", 0); \ ++ for (int i = 0; i < num_i64; i++) { \ ++ long a = case_i64[i].l; \ ++ long r = test_##insn(a); \ ++ my_printf(STRINGIFY(insn) " 0x%x = 0x%x\n", (void const *[]){ &a, &r }); \ ++ } \ ++ } ++MK_FUNC(revbh) ++MK_FUNC(revbw) ++MK_FUNC(revbl) ++#undef MK_FUNC ++ ++#define MK_FUNC(insn) \ ++ SINGLE_FUNC(insn, 0) \ ++ SINGLE_FUNC(insn, 1) \ ++ SINGLE_FUNC(insn, 2) \ ++ SINGLE_FUNC(insn, 3) \ ++ SINGLE_FUNC(insn, 15) \ ++ SINGLE_FUNC(insn, 127) \ ++ SINGLE_FUNC(insn, 128) \ ++ SINGLE_FUNC(insn, 255) \ ++ static void run_imm_##insn(void) { \ ++ SINGLE_RUN(insn, 0); \ ++ SINGLE_RUN(insn, 1); \ ++ SINGLE_RUN(insn, 2); \ ++ SINGLE_RUN(insn, 3); \ ++ SINGLE_RUN(insn, 15); \ ++ SINGLE_RUN(insn, 127); \ ++ SINGLE_RUN(insn, 128); \ ++ SINGLE_RUN(insn, 255); \ ++ } ++/* 1-op instructions */ ++#define SINGLE_FUNC(insn, imm) \ ++ __attribute__((noinline)) static long test_##insn##imm(long a) { \ ++ long r; \ ++ __asm__ volatile ( \ ++ " " STRINGIFY(insn) " %1, " STRINGIFY(imm) ", %0\n" \ ++ : "=&r"(r) \ ++ : "r"(a) \ ++ ); \ ++ return r; \ ++ } ++#define SINGLE_RUN(insn, imm) \ ++ do { \ ++ my_printf("=== Running test on " STRINGIFY(insn) STRINGIFY(imm) " ===\n", 0); \ ++ for (int i = 0; i < num_i64; i++) { \ ++ long a = case_i64[i].l; \ ++ long r = test_##insn##imm(a); \ ++ my_printf(STRINGIFY(insn) STRINGIFY(imm) " 0x%x = 0x%x\n", \ ++ (void const *[]){ &a, &r }); \ ++ } \ ++ } while (0) ++MK_FUNC(sbt) ++MK_FUNC(cbt) ++MK_FUNC(roll) ++MK_FUNC(sllw) ++MK_FUNC(srlw) ++MK_FUNC(sraw) ++MK_FUNC(rolw) ++#undef SINGLE_RUN ++#undef SINGLE_FUNC ++#undef MK_FUNC ++ ++int main(void) ++{ ++ run_sbt(); ++ run_cbt(); ++ run_divw(); ++ run_udivw(); ++ run_divl(); ++ run_udivl(); ++ run_remw(); ++ run_uremw(); ++ run_reml(); ++ run_ureml(); ++ run_roll(); ++ run_sllw(); ++ run_srlw(); ++ run_sraw(); ++ run_rolw(); ++ run_crc32b(); ++ run_crc32h(); ++ run_crc32w(); ++ run_crc32l(); ++ run_crc32cb(); ++ run_crc32ch(); ++ run_crc32cw(); ++ run_crc32cl(); ++ run_revbh(); ++ run_revbw(); ++ run_revbl(); ++ run_imm_sbt(); ++ run_imm_cbt(); ++ run_imm_roll(); ++ run_imm_sllw(); ++ run_imm_srlw(); ++ run_imm_sraw(); ++ run_imm_rolw(); ++ return 0; ++} ++ ++#endif +diff --git a/none/tests/sw64/8a-int.stderr.exp b/none/tests/sw64/8a-int.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/8a-int.stdout.exp b/none/tests/sw64/8a-int.stdout.exp +new file mode 100644 +index 000000000..924195d91 +--- /dev/null ++++ b/none/tests/sw64/8a-int.stdout.exp +@@ -0,0 +1,11212 @@ ++=== Running test on sbt === ++sbt 0x0000000000000000 0x0000000000000000 = 0x0000000000000001 ++sbt 0x0000000000000000 0x0000000000000001 = 0x0000000000000002 ++sbt 0x0000000000000000 0x0000000000000002 = 0x0000000000000004 ++sbt 0x0000000000000000 0x0000000000000003 = 0x0000000000000008 ++sbt 0x0000000000000000 0x000000000000000F = 0x0000000000008000 ++sbt 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++sbt 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x4000000000000000 ++sbt 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x2000000000000000 ++sbt 0x0000000000000000 0x000000000000007F = 0x8000000000000000 ++sbt 0x0000000000000000 0x0000000000000080 = 0x0000000000000001 ++sbt 0x0000000000000000 0x0000000000007FFF = 0x8000000000000000 ++sbt 0x0000000000000000 0x0000000000008000 = 0x0000000000000001 ++sbt 0x0000000000000000 0x000000007FFFFFFF = 0x8000000000000000 ++sbt 0x0000000000000000 0x0000000080000000 = 0x0000000000000001 ++sbt 0x0000000000000000 0x8000000000000000 = 0x0000000000000001 ++sbt 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++sbt 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sbt 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sbt 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++sbt 0x0000000000000000 0x123456789ABCDEF0 = 0x0001000000000000 ++sbt 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000040000 ++sbt 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++sbt 0x0000000000000001 0x0000000000000001 = 0x0000000000000003 ++sbt 0x0000000000000001 0x0000000000000002 = 0x0000000000000005 ++sbt 0x0000000000000001 0x0000000000000003 = 0x0000000000000009 ++sbt 0x0000000000000001 0x000000000000000F = 0x0000000000008001 ++sbt 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x8000000000000001 ++sbt 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x4000000000000001 ++sbt 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x2000000000000001 ++sbt 0x0000000000000001 0x000000000000007F = 0x8000000000000001 ++sbt 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++sbt 0x0000000000000001 0x0000000000007FFF = 0x8000000000000001 ++sbt 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++sbt 0x0000000000000001 0x000000007FFFFFFF = 0x8000000000000001 ++sbt 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++sbt 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++sbt 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++sbt 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sbt 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sbt 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x8000000000000001 ++sbt 0x0000000000000001 0x123456789ABCDEF0 = 0x0001000000000001 ++sbt 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000040001 ++sbt 0x0000000000000002 0x0000000000000000 = 0x0000000000000003 ++sbt 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++sbt 0x0000000000000002 0x0000000000000002 = 0x0000000000000006 ++sbt 0x0000000000000002 0x0000000000000003 = 0x000000000000000A ++sbt 0x0000000000000002 0x000000000000000F = 0x0000000000008002 ++sbt 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x8000000000000002 ++sbt 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x4000000000000002 ++sbt 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x2000000000000002 ++sbt 0x0000000000000002 0x000000000000007F = 0x8000000000000002 ++sbt 0x0000000000000002 0x0000000000000080 = 0x0000000000000003 ++sbt 0x0000000000000002 0x0000000000007FFF = 0x8000000000000002 ++sbt 0x0000000000000002 0x0000000000008000 = 0x0000000000000003 ++sbt 0x0000000000000002 0x000000007FFFFFFF = 0x8000000000000002 ++sbt 0x0000000000000002 0x0000000080000000 = 0x0000000000000003 ++sbt 0x0000000000000002 0x8000000000000000 = 0x0000000000000003 ++sbt 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000003 ++sbt 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sbt 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sbt 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x8000000000000002 ++sbt 0x0000000000000002 0x123456789ABCDEF0 = 0x0001000000000002 ++sbt 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000040002 ++sbt 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++sbt 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++sbt 0x0000000000000003 0x0000000000000002 = 0x0000000000000007 ++sbt 0x0000000000000003 0x0000000000000003 = 0x000000000000000B ++sbt 0x0000000000000003 0x000000000000000F = 0x0000000000008003 ++sbt 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x8000000000000003 ++sbt 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x4000000000000003 ++sbt 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x2000000000000003 ++sbt 0x0000000000000003 0x000000000000007F = 0x8000000000000003 ++sbt 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++sbt 0x0000000000000003 0x0000000000007FFF = 0x8000000000000003 ++sbt 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++sbt 0x0000000000000003 0x000000007FFFFFFF = 0x8000000000000003 ++sbt 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++sbt 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++sbt 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++sbt 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sbt 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sbt 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x8000000000000003 ++sbt 0x0000000000000003 0x123456789ABCDEF0 = 0x0001000000000003 ++sbt 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000040003 ++sbt 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++sbt 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++sbt 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++sbt 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++sbt 0x000000000000000F 0x000000000000000F = 0x000000000000800F ++sbt 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x800000000000000F ++sbt 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x400000000000000F ++sbt 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x200000000000000F ++sbt 0x000000000000000F 0x000000000000007F = 0x800000000000000F ++sbt 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++sbt 0x000000000000000F 0x0000000000007FFF = 0x800000000000000F ++sbt 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++sbt 0x000000000000000F 0x000000007FFFFFFF = 0x800000000000000F ++sbt 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++sbt 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++sbt 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++sbt 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sbt 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sbt 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x800000000000000F ++sbt 0x000000000000000F 0x123456789ABCDEF0 = 0x000100000000000F ++sbt 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000004000F ++sbt 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++sbt 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++sbt 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++sbt 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFFE ++sbt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++sbt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sbt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++sbt 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFFFE ++sbt 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++sbt 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++sbt 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++sbt 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++sbt 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFE ++sbt 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++sbt 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++sbt 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFD ++sbt 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++sbt 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++sbt 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++sbt 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++sbt 0x000000000000007F 0x000000000000000F = 0x000000000000807F ++sbt 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x800000000000007F ++sbt 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x400000000000007F ++sbt 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x200000000000007F ++sbt 0x000000000000007F 0x000000000000007F = 0x800000000000007F ++sbt 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++sbt 0x000000000000007F 0x0000000000007FFF = 0x800000000000007F ++sbt 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++sbt 0x000000000000007F 0x000000007FFFFFFF = 0x800000000000007F ++sbt 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++sbt 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++sbt 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++sbt 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sbt 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sbt 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x800000000000007F ++sbt 0x000000000000007F 0x123456789ABCDEF0 = 0x000100000000007F ++sbt 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000004007F ++sbt 0x0000000000000080 0x0000000000000000 = 0x0000000000000081 ++sbt 0x0000000000000080 0x0000000000000001 = 0x0000000000000082 ++sbt 0x0000000000000080 0x0000000000000002 = 0x0000000000000084 ++sbt 0x0000000000000080 0x0000000000000003 = 0x0000000000000088 ++sbt 0x0000000000000080 0x000000000000000F = 0x0000000000008080 ++sbt 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x8000000000000080 ++sbt 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x4000000000000080 ++sbt 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x2000000000000080 ++sbt 0x0000000000000080 0x000000000000007F = 0x8000000000000080 ++sbt 0x0000000000000080 0x0000000000000080 = 0x0000000000000081 ++sbt 0x0000000000000080 0x0000000000007FFF = 0x8000000000000080 ++sbt 0x0000000000000080 0x0000000000008000 = 0x0000000000000081 ++sbt 0x0000000000000080 0x000000007FFFFFFF = 0x8000000000000080 ++sbt 0x0000000000000080 0x0000000080000000 = 0x0000000000000081 ++sbt 0x0000000000000080 0x8000000000000000 = 0x0000000000000081 ++sbt 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000081 ++sbt 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000081 ++sbt 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000081 ++sbt 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x8000000000000080 ++sbt 0x0000000000000080 0x123456789ABCDEF0 = 0x0001000000000080 ++sbt 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000040080 ++sbt 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++sbt 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++sbt 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFF ++sbt 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFF ++sbt 0x0000000000007FFF 0x000000000000000F = 0x000000000000FFFF ++sbt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x8000000000007FFF ++sbt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x4000000000007FFF ++sbt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x2000000000007FFF ++sbt 0x0000000000007FFF 0x000000000000007F = 0x8000000000007FFF ++sbt 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++sbt 0x0000000000007FFF 0x0000000000007FFF = 0x8000000000007FFF ++sbt 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++sbt 0x0000000000007FFF 0x000000007FFFFFFF = 0x8000000000007FFF ++sbt 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++sbt 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++sbt 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++sbt 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++sbt 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++sbt 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x8000000000007FFF ++sbt 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0001000000007FFF ++sbt 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000047FFF ++sbt 0x0000000000008000 0x0000000000000000 = 0x0000000000008001 ++sbt 0x0000000000008000 0x0000000000000001 = 0x0000000000008002 ++sbt 0x0000000000008000 0x0000000000000002 = 0x0000000000008004 ++sbt 0x0000000000008000 0x0000000000000003 = 0x0000000000008008 ++sbt 0x0000000000008000 0x000000000000000F = 0x0000000000008000 ++sbt 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x8000000000008000 ++sbt 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x4000000000008000 ++sbt 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x2000000000008000 ++sbt 0x0000000000008000 0x000000000000007F = 0x8000000000008000 ++sbt 0x0000000000008000 0x0000000000000080 = 0x0000000000008001 ++sbt 0x0000000000008000 0x0000000000007FFF = 0x8000000000008000 ++sbt 0x0000000000008000 0x0000000000008000 = 0x0000000000008001 ++sbt 0x0000000000008000 0x000000007FFFFFFF = 0x8000000000008000 ++sbt 0x0000000000008000 0x0000000080000000 = 0x0000000000008001 ++sbt 0x0000000000008000 0x8000000000000000 = 0x0000000000008001 ++sbt 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008001 ++sbt 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008001 ++sbt 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008001 ++sbt 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x8000000000008000 ++sbt 0x0000000000008000 0x123456789ABCDEF0 = 0x0001000000008000 ++sbt 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000048000 ++sbt 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++sbt 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++sbt 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFFFFFF ++sbt 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFFF ++sbt 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFFF ++sbt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x800000007FFFFFFF ++sbt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x400000007FFFFFFF ++sbt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x200000007FFFFFFF ++sbt 0x000000007FFFFFFF 0x000000000000007F = 0x800000007FFFFFFF ++sbt 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++sbt 0x000000007FFFFFFF 0x0000000000007FFF = 0x800000007FFFFFFF ++sbt 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++sbt 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x800000007FFFFFFF ++sbt 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++sbt 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++sbt 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++sbt 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++sbt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++sbt 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x800000007FFFFFFF ++sbt 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000100007FFFFFFF ++sbt 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007FFFFFFF ++sbt 0x0000000080000000 0x0000000000000000 = 0x0000000080000001 ++sbt 0x0000000080000000 0x0000000000000001 = 0x0000000080000002 ++sbt 0x0000000080000000 0x0000000000000002 = 0x0000000080000004 ++sbt 0x0000000080000000 0x0000000000000003 = 0x0000000080000008 ++sbt 0x0000000080000000 0x000000000000000F = 0x0000000080008000 ++sbt 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x8000000080000000 ++sbt 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x4000000080000000 ++sbt 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x2000000080000000 ++sbt 0x0000000080000000 0x000000000000007F = 0x8000000080000000 ++sbt 0x0000000080000000 0x0000000000000080 = 0x0000000080000001 ++sbt 0x0000000080000000 0x0000000000007FFF = 0x8000000080000000 ++sbt 0x0000000080000000 0x0000000000008000 = 0x0000000080000001 ++sbt 0x0000000080000000 0x000000007FFFFFFF = 0x8000000080000000 ++sbt 0x0000000080000000 0x0000000080000000 = 0x0000000080000001 ++sbt 0x0000000080000000 0x8000000000000000 = 0x0000000080000001 ++sbt 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000001 ++sbt 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000001 ++sbt 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000001 ++sbt 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x8000000080000000 ++sbt 0x0000000080000000 0x123456789ABCDEF0 = 0x0001000080000000 ++sbt 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080040000 ++sbt 0x8000000000000000 0x0000000000000000 = 0x8000000000000001 ++sbt 0x8000000000000000 0x0000000000000001 = 0x8000000000000002 ++sbt 0x8000000000000000 0x0000000000000002 = 0x8000000000000004 ++sbt 0x8000000000000000 0x0000000000000003 = 0x8000000000000008 ++sbt 0x8000000000000000 0x000000000000000F = 0x8000000000008000 ++sbt 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++sbt 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xC000000000000000 ++sbt 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xA000000000000000 ++sbt 0x8000000000000000 0x000000000000007F = 0x8000000000000000 ++sbt 0x8000000000000000 0x0000000000000080 = 0x8000000000000001 ++sbt 0x8000000000000000 0x0000000000007FFF = 0x8000000000000000 ++sbt 0x8000000000000000 0x0000000000008000 = 0x8000000000000001 ++sbt 0x8000000000000000 0x000000007FFFFFFF = 0x8000000000000000 ++sbt 0x8000000000000000 0x0000000080000000 = 0x8000000000000001 ++sbt 0x8000000000000000 0x8000000000000000 = 0x8000000000000001 ++sbt 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000001 ++sbt 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000001 ++sbt 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000001 ++sbt 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++sbt 0x8000000000000000 0x123456789ABCDEF0 = 0x8001000000000000 ++sbt 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000040000 ++sbt 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000001 ++sbt 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000002 ++sbt 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000004 ++sbt 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000008 ++sbt 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF80008000 ++sbt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sbt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++sbt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++sbt 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF80000000 ++sbt 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000001 ++sbt 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80000000 ++sbt 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000001 ++sbt 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++sbt 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000001 ++sbt 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000001 ++sbt 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000001 ++sbt 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000001 ++sbt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000001 ++sbt 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sbt 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++sbt 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF80040000 ++sbt 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8001 ++sbt 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8002 ++sbt 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF8004 ++sbt 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF8008 ++sbt 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF8000 ++sbt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++sbt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8000 ++sbt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8000 ++sbt 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFF8000 ++sbt 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8001 ++sbt 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++sbt 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8001 ++sbt 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFFFF8000 ++sbt 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8001 ++sbt 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8001 ++sbt 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8001 ++sbt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8001 ++sbt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8001 ++sbt 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++sbt 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++sbt 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF8000 ++sbt 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF81 ++sbt 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF82 ++sbt 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF84 ++sbt 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF88 ++sbt 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFF80 ++sbt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++sbt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF80 ++sbt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF80 ++sbt 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++sbt 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF81 ++sbt 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFFFF80 ++sbt 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF81 ++sbt 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF80 ++sbt 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF81 ++sbt 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF81 ++sbt 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF81 ++sbt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF81 ++sbt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF81 ++sbt 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++sbt 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF80 ++sbt 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFF80 ++sbt 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFFFFFF ++sbt 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFFFFFFFFFFFF ++sbt 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF1 ++sbt 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF2 ++sbt 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABCDEF4 ++sbt 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABCDEF8 ++sbt 0x123456789ABCDEF0 0x000000000000000F = 0x123456789ABCDEF0 ++sbt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x923456789ABCDEF0 ++sbt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x523456789ABCDEF0 ++sbt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x323456789ABCDEF0 ++sbt 0x123456789ABCDEF0 0x000000000000007F = 0x923456789ABCDEF0 ++sbt 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF1 ++sbt 0x123456789ABCDEF0 0x0000000000007FFF = 0x923456789ABCDEF0 ++sbt 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF1 ++sbt 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x923456789ABCDEF0 ++sbt 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF1 ++sbt 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF1 ++sbt 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF1 ++sbt 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF1 ++sbt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF1 ++sbt 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x923456789ABCDEF0 ++sbt 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123556789ABCDEF0 ++sbt 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123456789ABCDEF0 ++sbt 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563413 ++sbt 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563412 ++sbt 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78563416 ++sbt 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A7856341A ++sbt 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A7856B412 ++sbt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++sbt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563412 ++sbt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A78563412 ++sbt 0xF0DEBC9A78563412 0x000000000000007F = 0xF0DEBC9A78563412 ++sbt 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563413 ++sbt 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF0DEBC9A78563412 ++sbt 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563413 ++sbt 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF0DEBC9A78563412 ++sbt 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563413 ++sbt 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563413 ++sbt 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563413 ++sbt 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563413 ++sbt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563413 ++sbt 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++sbt 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DFBC9A78563412 ++sbt 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on cbt === ++cbt 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++cbt 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++cbt 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++cbt 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++cbt 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++cbt 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cbt 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cbt 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cbt 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++cbt 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++cbt 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++cbt 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++cbt 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++cbt 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++cbt 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++cbt 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cbt 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cbt 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cbt 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cbt 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++cbt 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cbt 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++cbt 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++cbt 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++cbt 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++cbt 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++cbt 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cbt 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cbt 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cbt 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++cbt 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++cbt 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++cbt 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++cbt 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++cbt 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++cbt 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++cbt 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++cbt 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cbt 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cbt 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cbt 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++cbt 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++cbt 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++cbt 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++cbt 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++cbt 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++cbt 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++cbt 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++cbt 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++cbt 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++cbt 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++cbt 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++cbt 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++cbt 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++cbt 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++cbt 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++cbt 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++cbt 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++cbt 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++cbt 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++cbt 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++cbt 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++cbt 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++cbt 0x0000000000000003 0x0000000000000000 = 0x0000000000000002 ++cbt 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++cbt 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++cbt 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++cbt 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++cbt 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++cbt 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++cbt 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++cbt 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++cbt 0x0000000000000003 0x0000000000000080 = 0x0000000000000002 ++cbt 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++cbt 0x0000000000000003 0x0000000000008000 = 0x0000000000000002 ++cbt 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++cbt 0x0000000000000003 0x0000000080000000 = 0x0000000000000002 ++cbt 0x0000000000000003 0x8000000000000000 = 0x0000000000000002 ++cbt 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000002 ++cbt 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++cbt 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++cbt 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++cbt 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++cbt 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++cbt 0x000000000000000F 0x0000000000000000 = 0x000000000000000E ++cbt 0x000000000000000F 0x0000000000000001 = 0x000000000000000D ++cbt 0x000000000000000F 0x0000000000000002 = 0x000000000000000B ++cbt 0x000000000000000F 0x0000000000000003 = 0x0000000000000007 ++cbt 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++cbt 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++cbt 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++cbt 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++cbt 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++cbt 0x000000000000000F 0x0000000000000080 = 0x000000000000000E ++cbt 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++cbt 0x000000000000000F 0x0000000000008000 = 0x000000000000000E ++cbt 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++cbt 0x000000000000000F 0x0000000080000000 = 0x000000000000000E ++cbt 0x000000000000000F 0x8000000000000000 = 0x000000000000000E ++cbt 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000E ++cbt 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000E ++cbt 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000E ++cbt 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++cbt 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++cbt 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++cbt 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++cbt 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFB ++cbt 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF7 ++cbt 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFF7FFF ++cbt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++cbt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xBFFFFFFFFFFFFFFF ++cbt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xDFFFFFFFFFFFFFFF ++cbt 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x7FFFFFFFFFFFFFFF ++cbt 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFFFFFFFF ++cbt 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFFFF ++cbt 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++cbt 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFEFFFFFFFFFFFF ++cbt 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFBFFFF ++cbt 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFC ++cbt 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++cbt 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFF6 ++cbt 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFF7FFE ++cbt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xBFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xDFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x7FFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x7FFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFEFFFFFFFFFFFE ++cbt 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFBFFFE ++cbt 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFC ++cbt 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++cbt 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFF9 ++cbt 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFF5 ++cbt 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFF7FFD ++cbt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++cbt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xBFFFFFFFFFFFFFFD ++cbt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xDFFFFFFFFFFFFFFD ++cbt 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x7FFFFFFFFFFFFFFD ++cbt 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFC ++cbt 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x7FFFFFFFFFFFFFFD ++cbt 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFC ++cbt 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFFFD ++cbt 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFC ++cbt 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFC ++cbt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFC ++cbt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFC ++cbt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFC ++cbt 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++cbt 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFEFFFFFFFFFFFD ++cbt 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFBFFFD ++cbt 0x000000000000007F 0x0000000000000000 = 0x000000000000007E ++cbt 0x000000000000007F 0x0000000000000001 = 0x000000000000007D ++cbt 0x000000000000007F 0x0000000000000002 = 0x000000000000007B ++cbt 0x000000000000007F 0x0000000000000003 = 0x0000000000000077 ++cbt 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++cbt 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++cbt 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++cbt 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++cbt 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++cbt 0x000000000000007F 0x0000000000000080 = 0x000000000000007E ++cbt 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++cbt 0x000000000000007F 0x0000000000008000 = 0x000000000000007E ++cbt 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++cbt 0x000000000000007F 0x0000000080000000 = 0x000000000000007E ++cbt 0x000000000000007F 0x8000000000000000 = 0x000000000000007E ++cbt 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007E ++cbt 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007E ++cbt 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007E ++cbt 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++cbt 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++cbt 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++cbt 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++cbt 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++cbt 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++cbt 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++cbt 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++cbt 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++cbt 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++cbt 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++cbt 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++cbt 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++cbt 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++cbt 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++cbt 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++cbt 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++cbt 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++cbt 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++cbt 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++cbt 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++cbt 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++cbt 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++cbt 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++cbt 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFE ++cbt 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFD ++cbt 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFB ++cbt 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FF7 ++cbt 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FFF ++cbt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++cbt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++cbt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++cbt 0x0000000000007FFF 0x000000000000007F = 0x0000000000007FFF ++cbt 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFE ++cbt 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++cbt 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFE ++cbt 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++cbt 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFE ++cbt 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFE ++cbt 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFE ++cbt 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFE ++cbt 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFE ++cbt 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++cbt 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++cbt 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++cbt 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++cbt 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++cbt 0x0000000000008000 0x0000000000000002 = 0x0000000000008000 ++cbt 0x0000000000008000 0x0000000000000003 = 0x0000000000008000 ++cbt 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++cbt 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++cbt 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++cbt 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++cbt 0x0000000000008000 0x000000000000007F = 0x0000000000008000 ++cbt 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++cbt 0x0000000000008000 0x0000000000007FFF = 0x0000000000008000 ++cbt 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++cbt 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++cbt 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++cbt 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++cbt 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++cbt 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++cbt 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++cbt 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++cbt 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++cbt 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++cbt 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFE ++cbt 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFD ++cbt 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFFFFFB ++cbt 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFF7 ++cbt 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFF7FFF ++cbt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++cbt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++cbt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++cbt 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFFFF ++cbt 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFE ++cbt 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFFFFFF ++cbt 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFE ++cbt 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++cbt 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFE ++cbt 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFE ++cbt 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFE ++cbt 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFE ++cbt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFE ++cbt 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++cbt 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++cbt 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007FFBFFFF ++cbt 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++cbt 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++cbt 0x0000000080000000 0x0000000000000002 = 0x0000000080000000 ++cbt 0x0000000080000000 0x0000000000000003 = 0x0000000080000000 ++cbt 0x0000000080000000 0x000000000000000F = 0x0000000080000000 ++cbt 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++cbt 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++cbt 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++cbt 0x0000000080000000 0x000000000000007F = 0x0000000080000000 ++cbt 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++cbt 0x0000000080000000 0x0000000000007FFF = 0x0000000080000000 ++cbt 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++cbt 0x0000000080000000 0x000000007FFFFFFF = 0x0000000080000000 ++cbt 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++cbt 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++cbt 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++cbt 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++cbt 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++cbt 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++cbt 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++cbt 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080000000 ++cbt 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++cbt 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++cbt 0x8000000000000000 0x0000000000000002 = 0x8000000000000000 ++cbt 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++cbt 0x8000000000000000 0x000000000000000F = 0x8000000000000000 ++cbt 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cbt 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++cbt 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++cbt 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++cbt 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++cbt 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++cbt 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++cbt 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++cbt 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++cbt 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++cbt 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++cbt 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++cbt 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++cbt 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cbt 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++cbt 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++cbt 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xBFFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xDFFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0x000000000000007F = 0x7FFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0x0000000000007FFF = 0x7FFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x7FFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFF80000000 ++cbt 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFEFFFF80000000 ++cbt 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++cbt 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF0000 ++cbt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xBFFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xDFFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x7FFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x7FFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x7FFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFEFFFFFFFF8000 ++cbt 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFB8000 ++cbt 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFF7F80 ++cbt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xBFFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xDFFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x7FFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x7FFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFEFFFFFFFFFF80 ++cbt 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFBFF80 ++cbt 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFE ++cbt 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFD ++cbt 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFFFFFB ++cbt 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFFFFF7 ++cbt 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFFFFFF7FFF ++cbt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++cbt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x3FFFFFFFFFFFFFFF ++cbt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x5FFFFFFFFFFFFFFF ++cbt 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7FFFFFFFFFFFFFFF ++cbt 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFE ++cbt 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFFFFFFFF ++cbt 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFE ++cbt 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFFFF ++cbt 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFE ++cbt 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFE ++cbt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFE ++cbt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFE ++cbt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFE ++cbt 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++cbt 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFEFFFFFFFFFFFF ++cbt 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFFFFFFFBFFFF ++cbt 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0x000000000000000F = 0x123456789ABC5EF0 ++cbt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0x000000000000007F = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0x0000000000007FFF = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++cbt 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123456789AB8DEF0 ++cbt 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563410 ++cbt 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x70DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xB0DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xD0DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0x000000000000007F = 0x70DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0x0000000000007FFF = 0x70DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x70DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x70DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78563412 ++cbt 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78523412 ++=== Running test on divw === ++divw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++divw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++divw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++divw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++divw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++divw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++divw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++divw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++divw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++divw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++divw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++divw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++divw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++divw 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++divw 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++divw 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++divw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++divw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++divw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++divw 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++divw 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++divw 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++divw 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++divw 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++divw 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++divw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++divw 0x0000000000000002 0x0000000000000002 = 0x0000000000000001 ++divw 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++divw 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++divw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++divw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++divw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++divw 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++divw 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++divw 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++divw 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++divw 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++divw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++divw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++divw 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++divw 0x0000000000000003 0x0000000000000003 = 0x0000000000000001 ++divw 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++divw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++divw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++divw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++divw 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++divw 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++divw 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++divw 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++divw 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++divw 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++divw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++divw 0x000000000000000F 0x0000000000000002 = 0x0000000000000007 ++divw 0x000000000000000F 0x0000000000000003 = 0x0000000000000005 ++divw 0x000000000000000F 0x000000000000000F = 0x0000000000000001 ++divw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF1 ++divw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF9 ++divw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++divw 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++divw 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++divw 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++divw 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++divw 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++divw 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF1 ++divw 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++divw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++divw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++divw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++divw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++divw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++divw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++divw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++divw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++divw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++divw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++divw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++divw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++divw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++divw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++divw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++divw 0x000000000000007F 0x0000000000000002 = 0x000000000000003F ++divw 0x000000000000007F 0x0000000000000003 = 0x000000000000002A ++divw 0x000000000000007F 0x000000000000000F = 0x0000000000000008 ++divw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF81 ++divw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFC1 ++divw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFD6 ++divw 0x000000000000007F 0x000000000000007F = 0x0000000000000001 ++divw 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++divw 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++divw 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++divw 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++divw 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF81 ++divw 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++divw 0x0000000000000080 0x0000000000000002 = 0x0000000000000040 ++divw 0x0000000000000080 0x0000000000000003 = 0x000000000000002A ++divw 0x0000000000000080 0x000000000000000F = 0x0000000000000008 ++divw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++divw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFC0 ++divw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFD6 ++divw 0x0000000000000080 0x000000000000007F = 0x0000000000000001 ++divw 0x0000000000000080 0x0000000000000080 = 0x0000000000000001 ++divw 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++divw 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++divw 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++divw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++divw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++divw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++divw 0x0000000000007FFF 0x0000000000000002 = 0x0000000000003FFF ++divw 0x0000000000007FFF 0x0000000000000003 = 0x0000000000002AAA ++divw 0x0000000000007FFF 0x000000000000000F = 0x0000000000000888 ++divw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8001 ++divw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFC001 ++divw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFD556 ++divw 0x0000000000007FFF 0x000000000000007F = 0x0000000000000102 ++divw 0x0000000000007FFF 0x0000000000000080 = 0x00000000000000FF ++divw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000001 ++divw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++divw 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++divw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF01 ++divw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8001 ++divw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++divw 0x0000000000008000 0x0000000000000002 = 0x0000000000004000 ++divw 0x0000000000008000 0x0000000000000003 = 0x0000000000002AAA ++divw 0x0000000000008000 0x000000000000000F = 0x0000000000000888 ++divw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++divw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFC000 ++divw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFD556 ++divw 0x0000000000008000 0x000000000000007F = 0x0000000000000102 ++divw 0x0000000000008000 0x0000000000000080 = 0x0000000000000100 ++divw 0x0000000000008000 0x0000000000007FFF = 0x0000000000000001 ++divw 0x0000000000008000 0x0000000000008000 = 0x0000000000000001 ++divw 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++divw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++divw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++divw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++divw 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++divw 0x000000007FFFFFFF 0x0000000000000002 = 0x000000003FFFFFFF ++divw 0x000000007FFFFFFF 0x0000000000000003 = 0x000000002AAAAAAA ++divw 0x000000007FFFFFFF 0x000000000000000F = 0x0000000008888888 ++divw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000001 ++divw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC0000001 ++divw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFD5555556 ++divw 0x000000007FFFFFFF 0x000000000000007F = 0x0000000001020408 ++divw 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000FFFFFF ++divw 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000010002 ++divw 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000FFFF ++divw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++divw 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++divw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0001 ++divw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFF000001 ++divw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000001 ++divw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++divw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++divw 0x0000000080000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++divw 0x0000000080000000 0x0000000000000002 = 0xFFFFFFFFC0000000 ++divw 0x0000000080000000 0x0000000000000003 = 0xFFFFFFFFD5555556 ++divw 0x0000000080000000 0x000000000000000F = 0xFFFFFFFFF7777778 ++divw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++divw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000040000000 ++divw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000002AAAAAAA ++divw 0x0000000080000000 0x000000000000007F = 0xFFFFFFFFFEFDFBF8 ++divw 0x0000000080000000 0x0000000000000080 = 0xFFFFFFFFFF000000 ++divw 0x0000000080000000 0x0000000000007FFF = 0xFFFFFFFFFFFEFFFE ++divw 0x0000000080000000 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++divw 0x0000000080000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++divw 0x0000000080000000 0x0000000080000000 = 0x0000000000000001 ++divw 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++divw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000010000 ++divw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000001000000 ++divw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000001 ++divw 0x0000000080000000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++divw 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++divw 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++divw 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++divw 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++divw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++divw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++divw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++divw 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++divw 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++divw 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++divw 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++divw 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++divw 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++divw 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFFC0000000 ++divw 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFFD5555556 ++divw 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFFF7777778 ++divw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++divw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000040000000 ++divw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000002AAAAAAA ++divw 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFFFEFDFBF8 ++divw 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFFFF000000 ++divw 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFFFFFEFFFE ++divw 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++divw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++divw 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000001 ++divw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++divw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000010000 ++divw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000001000000 ++divw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000001 ++divw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++divw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++divw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFFC000 ++divw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFFD556 ++divw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFFF778 ++divw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++divw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000004000 ++divw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000002AAA ++divw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFFFEFE ++divw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFFFF00 ++divw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++divw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++divw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++divw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000100 ++divw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++divw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF80 ++divw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFFC0 ++divw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFFD6 ++divw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFFF8 ++divw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++divw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000040 ++divw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000000000002A ++divw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++divw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++divw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++divw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++divw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++divw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++divw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++divw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++divw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0x123456789ABCDEF0 0x0000000000000001 = 0xFFFFFFFF9ABCDEF0 ++divw 0x123456789ABCDEF0 0x0000000000000002 = 0xFFFFFFFFCD5E6F78 ++divw 0x123456789ABCDEF0 0x0000000000000003 = 0xFFFFFFFFDE3EF4FB ++divw 0x123456789ABCDEF0 0x000000000000000F = 0xFFFFFFFFF93FCA99 ++divw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000065432110 ++divw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000032A19088 ++divw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000021C10B05 ++divw 0x123456789ABCDEF0 0x000000000000007F = 0xFFFFFFFFFF33E181 ++divw 0x123456789ABCDEF0 0x0000000000000080 = 0xFFFFFFFFFF3579BE ++divw 0x123456789ABCDEF0 0x0000000000007FFF = 0xFFFFFFFFFFFF3579 ++divw 0x123456789ABCDEF0 0x0000000000008000 = 0xFFFFFFFFFFFF357A ++divw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++divw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000000000CA86 ++divw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000CA8642 ++divw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000065432110 ++divw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000001 ++divw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++divw 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000078563412 ++divw 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000003C2B1A09 ++divw 0xF0DEBC9A78563412 0x0000000000000003 = 0x00000000281CBC06 ++divw 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000805BF34 ++divw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF87A9CBEE ++divw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC3D4E5F7 ++divw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFD7E343FA ++divw 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000F2918B ++divw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000F0AC68 ++divw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000000000F0AE ++divw 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000000000F0AC ++divw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++divw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++divw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++divw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0F54 ++divw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFF0F5398 ++divw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF87A9CBEE ++divw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++divw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on udivw === ++udivw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++udivw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++udivw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++udivw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++udivw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++udivw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++udivw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++udivw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++udivw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++udivw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++udivw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivw 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++udivw 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++udivw 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++udivw 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++udivw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++udivw 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++udivw 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++udivw 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++udivw 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++udivw 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++udivw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivw 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++udivw 0x0000000000000002 0x0000000000000002 = 0x0000000000000001 ++udivw 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++udivw 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++udivw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++udivw 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++udivw 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++udivw 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++udivw 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++udivw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++udivw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivw 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++udivw 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++udivw 0x0000000000000003 0x0000000000000003 = 0x0000000000000001 ++udivw 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++udivw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++udivw 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++udivw 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++udivw 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++udivw 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++udivw 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++udivw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivw 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++udivw 0x000000000000000F 0x0000000000000002 = 0x0000000000000007 ++udivw 0x000000000000000F 0x0000000000000003 = 0x0000000000000005 ++udivw 0x000000000000000F 0x000000000000000F = 0x0000000000000001 ++udivw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++udivw 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++udivw 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++udivw 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++udivw 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++udivw 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++udivw 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++udivw 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000FFFFFFFF ++udivw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000007FFFFFFF ++udivw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000055555555 ++udivw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000011111111 ++udivw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000002040810 ++udivw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000001FFFFFF ++udivw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000020004 ++udivw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000001FFFF ++udivw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000002 ++udivw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++udivw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000FFFFFFFE ++udivw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000007FFFFFFF ++udivw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000055555554 ++udivw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000011111110 ++udivw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000002040810 ++udivw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000001FFFFFF ++udivw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000020004 ++udivw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000000001FFFF ++udivw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000002 ++udivw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000002 ++udivw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000FFFFFFFD ++udivw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000007FFFFFFE ++udivw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000055555554 ++udivw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000011111110 ++udivw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000002040810 ++udivw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000001FFFFFF ++udivw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000020004 ++udivw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x000000000001FFFF ++udivw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000002 ++udivw 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++udivw 0x000000000000007F 0x0000000000000002 = 0x000000000000003F ++udivw 0x000000000000007F 0x0000000000000003 = 0x000000000000002A ++udivw 0x000000000000007F 0x000000000000000F = 0x0000000000000008 ++udivw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0x000000000000007F 0x000000000000007F = 0x0000000000000001 ++udivw 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++udivw 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++udivw 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++udivw 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++udivw 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++udivw 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++udivw 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivw 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++udivw 0x0000000000000080 0x0000000000000002 = 0x0000000000000040 ++udivw 0x0000000000000080 0x0000000000000003 = 0x000000000000002A ++udivw 0x0000000000000080 0x000000000000000F = 0x0000000000000008 ++udivw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0x0000000000000080 0x000000000000007F = 0x0000000000000001 ++udivw 0x0000000000000080 0x0000000000000080 = 0x0000000000000001 ++udivw 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++udivw 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++udivw 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++udivw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++udivw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivw 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++udivw 0x0000000000007FFF 0x0000000000000002 = 0x0000000000003FFF ++udivw 0x0000000000007FFF 0x0000000000000003 = 0x0000000000002AAA ++udivw 0x0000000000007FFF 0x000000000000000F = 0x0000000000000888 ++udivw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0x0000000000007FFF 0x000000000000007F = 0x0000000000000102 ++udivw 0x0000000000007FFF 0x0000000000000080 = 0x00000000000000FF ++udivw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000001 ++udivw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++udivw 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++udivw 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++udivw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++udivw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivw 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++udivw 0x0000000000008000 0x0000000000000002 = 0x0000000000004000 ++udivw 0x0000000000008000 0x0000000000000003 = 0x0000000000002AAA ++udivw 0x0000000000008000 0x000000000000000F = 0x0000000000000888 ++udivw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0x0000000000008000 0x000000000000007F = 0x0000000000000102 ++udivw 0x0000000000008000 0x0000000000000080 = 0x0000000000000100 ++udivw 0x0000000000008000 0x0000000000007FFF = 0x0000000000000001 ++udivw 0x0000000000008000 0x0000000000008000 = 0x0000000000000001 ++udivw 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++udivw 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++udivw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++udivw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivw 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++udivw 0x000000007FFFFFFF 0x0000000000000002 = 0x000000003FFFFFFF ++udivw 0x000000007FFFFFFF 0x0000000000000003 = 0x000000002AAAAAAA ++udivw 0x000000007FFFFFFF 0x000000000000000F = 0x0000000008888888 ++udivw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0x000000007FFFFFFF 0x000000000000007F = 0x0000000001020408 ++udivw 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000FFFFFF ++udivw 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000010002 ++udivw 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000FFFF ++udivw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++udivw 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++udivw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++udivw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++udivw 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++udivw 0x0000000080000000 0x0000000000000002 = 0x0000000040000000 ++udivw 0x0000000080000000 0x0000000000000003 = 0x000000002AAAAAAA ++udivw 0x0000000080000000 0x000000000000000F = 0x0000000008888888 ++udivw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0x0000000080000000 0x000000000000007F = 0x0000000001020408 ++udivw 0x0000000080000000 0x0000000000000080 = 0x0000000001000000 ++udivw 0x0000000080000000 0x0000000000007FFF = 0x0000000000010002 ++udivw 0x0000000080000000 0x0000000000008000 = 0x0000000000010000 ++udivw 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000001 ++udivw 0x0000000080000000 0x0000000080000000 = 0x0000000000000001 ++udivw 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++udivw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++udivw 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++udivw 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++udivw 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++udivw 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++udivw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++udivw 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++udivw 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++udivw 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++udivw 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++udivw 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++udivw 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++udivw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivw 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000080000000 ++udivw 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000040000000 ++udivw 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000002AAAAAAA ++udivw 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000008888888 ++udivw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000001020408 ++udivw 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000001000000 ++udivw 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000010002 ++udivw 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000010000 ++udivw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000001 ++udivw 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000001 ++udivw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++udivw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x00000000FFFF8000 ++udivw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x000000007FFFC000 ++udivw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000055552AAA ++udivw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000011110888 ++udivw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000204070E ++udivw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000001FFFF00 ++udivw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000020003 ++udivw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x000000000001FFFF ++udivw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000002 ++udivw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x00000000FFFFFF80 ++udivw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000007FFFFFC0 ++udivw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000005555552A ++udivw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000011111108 ++udivw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000204080F ++udivw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000001FFFFFF ++udivw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000020003 ++udivw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000000001FFFF ++udivw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000001 ++udivw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000002 ++udivw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000FFFFFFFF ++udivw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000007FFFFFFF ++udivw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000055555555 ++udivw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000011111111 ++udivw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++udivw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++udivw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++udivw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000002040810 ++udivw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000001FFFFFF ++udivw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000020004 ++udivw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000001FFFF ++udivw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000002 ++udivw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000001 ++udivw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++udivw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++udivw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++udivw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++udivw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++udivw 0x123456789ABCDEF0 0x0000000000000001 = 0x000000009ABCDEF0 ++udivw 0x123456789ABCDEF0 0x0000000000000002 = 0x000000004D5E6F78 ++udivw 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000033944A50 ++udivw 0x123456789ABCDEF0 0x000000000000000F = 0x000000000A50DBA9 ++udivw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0x123456789ABCDEF0 0x000000000000007F = 0x000000000137E991 ++udivw 0x123456789ABCDEF0 0x0000000000000080 = 0x00000000013579BD ++udivw 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000000001357C ++udivw 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000013579 ++udivw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000001 ++udivw 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000001 ++udivw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000001 ++udivw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000001 ++udivw 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000078563412 ++udivw 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000003C2B1A09 ++udivw 0xF0DEBC9A78563412 0x0000000000000003 = 0x00000000281CBC06 ++udivw 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000805BF34 ++udivw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivw 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000F2918B ++udivw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000F0AC68 ++udivw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000000000F0AE ++udivw 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000000000F0AC ++udivw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++udivw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++udivw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000000 ++udivw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on divl === ++divl 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++divl 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++divl 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++divl 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++divl 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++divl 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++divl 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++divl 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++divl 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++divl 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++divl 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++divl 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++divl 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++divl 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divl 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divl 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++divl 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++divl 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++divl 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++divl 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++divl 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++divl 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++divl 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++divl 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++divl 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++divl 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++divl 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++divl 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++divl 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++divl 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divl 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divl 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++divl 0x0000000000000002 0x0000000000000002 = 0x0000000000000001 ++divl 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++divl 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++divl 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++divl 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++divl 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++divl 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++divl 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++divl 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++divl 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++divl 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++divl 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++divl 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++divl 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divl 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divl 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++divl 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++divl 0x0000000000000003 0x0000000000000003 = 0x0000000000000001 ++divl 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++divl 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++divl 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++divl 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++divl 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++divl 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++divl 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++divl 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++divl 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++divl 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++divl 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++divl 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divl 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divl 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++divl 0x000000000000000F 0x0000000000000002 = 0x0000000000000007 ++divl 0x000000000000000F 0x0000000000000003 = 0x0000000000000005 ++divl 0x000000000000000F 0x000000000000000F = 0x0000000000000001 ++divl 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF1 ++divl 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF9 ++divl 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++divl 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++divl 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++divl 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++divl 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++divl 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++divl 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++divl 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++divl 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divl 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divl 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++divl 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++divl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++divl 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++divl 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++divl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++divl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++divl 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++divl 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++divl 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++divl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++divl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++divl 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++divl 0x000000000000007F 0x0000000000000002 = 0x000000000000003F ++divl 0x000000000000007F 0x0000000000000003 = 0x000000000000002A ++divl 0x000000000000007F 0x000000000000000F = 0x0000000000000008 ++divl 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF81 ++divl 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFC1 ++divl 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFD6 ++divl 0x000000000000007F 0x000000000000007F = 0x0000000000000001 ++divl 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++divl 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++divl 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++divl 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++divl 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++divl 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++divl 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divl 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++divl 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++divl 0x0000000000000080 0x0000000000000002 = 0x0000000000000040 ++divl 0x0000000000000080 0x0000000000000003 = 0x000000000000002A ++divl 0x0000000000000080 0x000000000000000F = 0x0000000000000008 ++divl 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++divl 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFC0 ++divl 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFD6 ++divl 0x0000000000000080 0x000000000000007F = 0x0000000000000001 ++divl 0x0000000000000080 0x0000000000000080 = 0x0000000000000001 ++divl 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++divl 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++divl 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++divl 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++divl 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++divl 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divl 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++divl 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++divl 0x0000000000007FFF 0x0000000000000002 = 0x0000000000003FFF ++divl 0x0000000000007FFF 0x0000000000000003 = 0x0000000000002AAA ++divl 0x0000000000007FFF 0x000000000000000F = 0x0000000000000888 ++divl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8001 ++divl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFC001 ++divl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFD556 ++divl 0x0000000000007FFF 0x000000000000007F = 0x0000000000000102 ++divl 0x0000000000007FFF 0x0000000000000080 = 0x00000000000000FF ++divl 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000001 ++divl 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++divl 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++divl 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++divl 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++divl 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divl 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF01 ++divl 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++divl 0x0000000000008000 0x0000000000000002 = 0x0000000000004000 ++divl 0x0000000000008000 0x0000000000000003 = 0x0000000000002AAA ++divl 0x0000000000008000 0x000000000000000F = 0x0000000000000888 ++divl 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++divl 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFC000 ++divl 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFD556 ++divl 0x0000000000008000 0x000000000000007F = 0x0000000000000102 ++divl 0x0000000000008000 0x0000000000000080 = 0x0000000000000100 ++divl 0x0000000000008000 0x0000000000007FFF = 0x0000000000000001 ++divl 0x0000000000008000 0x0000000000008000 = 0x0000000000000001 ++divl 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++divl 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++divl 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++divl 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++divl 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++divl 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++divl 0x000000007FFFFFFF 0x0000000000000002 = 0x000000003FFFFFFF ++divl 0x000000007FFFFFFF 0x0000000000000003 = 0x000000002AAAAAAA ++divl 0x000000007FFFFFFF 0x000000000000000F = 0x0000000008888888 ++divl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000001 ++divl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC0000001 ++divl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFD5555556 ++divl 0x000000007FFFFFFF 0x000000000000007F = 0x0000000001020408 ++divl 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000FFFFFF ++divl 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000010002 ++divl 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000FFFF ++divl 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++divl 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++divl 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++divl 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0001 ++divl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFF000001 ++divl 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++divl 0x0000000080000000 0x0000000000000002 = 0x0000000040000000 ++divl 0x0000000080000000 0x0000000000000003 = 0x000000002AAAAAAA ++divl 0x0000000080000000 0x000000000000000F = 0x0000000008888888 ++divl 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++divl 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC0000000 ++divl 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFD5555556 ++divl 0x0000000080000000 0x000000000000007F = 0x0000000001020408 ++divl 0x0000000080000000 0x0000000000000080 = 0x0000000001000000 ++divl 0x0000000080000000 0x0000000000007FFF = 0x0000000000010002 ++divl 0x0000000080000000 0x0000000000008000 = 0x0000000000010000 ++divl 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000001 ++divl 0x0000000080000000 0x0000000080000000 = 0x0000000000000001 ++divl 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++divl 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++divl 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++divl 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFF000000 ++divl 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++divl 0x8000000000000000 0x0000000000000002 = 0xC000000000000000 ++divl 0x8000000000000000 0x0000000000000003 = 0xD555555555555556 ++divl 0x8000000000000000 0x000000000000000F = 0xF777777777777778 ++divl 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x4000000000000000 ++divl 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x2AAAAAAAAAAAAAAA ++divl 0x8000000000000000 0x000000000000007F = 0xFEFDFBF7EFDFBF7F ++divl 0x8000000000000000 0x0000000000000080 = 0xFF00000000000000 ++divl 0x8000000000000000 0x0000000000007FFF = 0xFFFEFFFDFFFBFFF8 ++divl 0x8000000000000000 0x0000000000008000 = 0xFFFF000000000000 ++divl 0x8000000000000000 0x000000007FFFFFFF = 0xFFFFFFFEFFFFFFFE ++divl 0x8000000000000000 0x0000000080000000 = 0xFFFFFFFF00000000 ++divl 0x8000000000000000 0x8000000000000000 = 0x0000000000000001 ++divl 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000100000000 ++divl 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0001000000000000 ++divl 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0100000000000000 ++divl 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++divl 0x8000000000000000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFF9 ++divl 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000008 ++divl 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++divl 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFFC0000000 ++divl 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFFD5555556 ++divl 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFFF7777778 ++divl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++divl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000040000000 ++divl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000002AAAAAAA ++divl 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFFFEFDFBF8 ++divl 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFFFF000000 ++divl 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFFFFFEFFFE ++divl 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++divl 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++divl 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++divl 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++divl 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++divl 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000010000 ++divl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000001000000 ++divl 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++divl 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFFC000 ++divl 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFFD556 ++divl 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFFF778 ++divl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++divl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000004000 ++divl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000002AAA ++divl 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFFFEFE ++divl 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFFFF00 ++divl 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++divl 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++divl 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++divl 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++divl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000100 ++divl 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF80 ++divl 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFFC0 ++divl 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFFD6 ++divl 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFFF8 ++divl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++divl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000040 ++divl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000000000002A ++divl 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++divl 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++divl 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++divl 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++divl 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++divl 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x3FFFFFFFFFFFFFFF ++divl 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x2AAAAAAAAAAAAAAA ++divl 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0888888888888888 ++divl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x8000000000000001 ++divl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xC000000000000001 ++divl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xD555555555555556 ++divl 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0102040810204081 ++divl 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00FFFFFFFFFFFFFF ++divl 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0001000200040008 ++divl 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000FFFFFFFFFFFF ++divl 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000100000002 ++divl 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000FFFFFFFF ++divl 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++divl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF00000001 ++divl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFF000000000001 ++divl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFF00000000000001 ++divl 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++divl 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000007 ++divl 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFF8 ++divl 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF0 ++divl 0x123456789ABCDEF0 0x0000000000000002 = 0x091A2B3C4D5E6F78 ++divl 0x123456789ABCDEF0 0x0000000000000003 = 0x0611722833944A50 ++divl 0x123456789ABCDEF0 0x000000000000000F = 0x0136B06E70B74210 ++divl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xEDCBA98765432110 ++divl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xF6E5D4C3B2A19088 ++divl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xF9EE8DD7CC6BB5B0 ++divl 0x123456789ABCDEF0 0x000000000000007F = 0x0024B211135C3222 ++divl 0x123456789ABCDEF0 0x0000000000000080 = 0x002468ACF13579BD ++divl 0x123456789ABCDEF0 0x0000000000007FFF = 0x00002468F5C320FF ++divl 0x123456789ABCDEF0 0x0000000000008000 = 0x00002468ACF13579 ++divl 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000002468ACF1 ++divl 0x123456789ABCDEF0 0x0000000080000000 = 0x000000002468ACF1 ++divl 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++divl 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFFDB97530F ++divl 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFDB97530ECA87 ++divl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFDB97530ECA8643 ++divl 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000001 ++divl 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++divl 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563412 ++divl 0xF0DEBC9A78563412 0x0000000000000002 = 0xF86F5E4D3C2B1A09 ++divl 0xF0DEBC9A78563412 0x0000000000000003 = 0xFAF4E988D2C766B1 ++divl 0xF0DEBC9A78563412 0x000000000000000F = 0xFEFDC84E908E47BD ++divl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0F21436587A9CBEE ++divl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0790A1B2C3D4E5F7 ++divl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x050B16772D38994F ++divl 0xF0DEBC9A78563412 0x000000000000007F = 0xFFE1807A294332CE ++divl 0xF0DEBC9A78563412 0x0000000000000080 = 0xFFE1BD7934F0AC69 ++divl 0xF0DEBC9A78563412 0x0000000000007FFF = 0xFFFFE1BD3CAF6A0C ++divl 0xF0DEBC9A78563412 0x0000000000008000 = 0xFFFFE1BD7934F0AD ++divl 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xFFFFFFFFE1BD7935 ++divl 0xF0DEBC9A78563412 0x0000000080000000 = 0xFFFFFFFFE1BD7935 ++divl 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++divl 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000001E4286CB ++divl 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x00001E4286CB0F53 ++divl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x001E4286CB0F5397 ++divl 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++divl 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000000 ++divl 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on udivl === ++udivl 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++udivl 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++udivl 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++udivl 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++udivl 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++udivl 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++udivl 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++udivl 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++udivl 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++udivl 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++udivl 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++udivl 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivl 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++udivl 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++udivl 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++udivl 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++udivl 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++udivl 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++udivl 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++udivl 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++udivl 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++udivl 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++udivl 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++udivl 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivl 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++udivl 0x0000000000000002 0x0000000000000002 = 0x0000000000000001 ++udivl 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++udivl 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++udivl 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++udivl 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++udivl 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++udivl 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++udivl 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++udivl 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++udivl 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++udivl 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivl 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++udivl 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++udivl 0x0000000000000003 0x0000000000000003 = 0x0000000000000001 ++udivl 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++udivl 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++udivl 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++udivl 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++udivl 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++udivl 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++udivl 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++udivl 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++udivl 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivl 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++udivl 0x000000000000000F 0x0000000000000002 = 0x0000000000000007 ++udivl 0x000000000000000F 0x0000000000000003 = 0x0000000000000005 ++udivl 0x000000000000000F 0x000000000000000F = 0x0000000000000001 ++udivl 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++udivl 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++udivl 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++udivl 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++udivl 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++udivl 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++udivl 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++udivl 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++udivl 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivl 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++udivl 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFFFFFF ++udivl 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x5555555555555555 ++udivl 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x1111111111111111 ++udivl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0204081020408102 ++udivl 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x01FFFFFFFFFFFFFF ++udivl 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0002000400080010 ++udivl 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0001FFFFFFFFFFFF ++udivl 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000200000004 ++udivl 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000001FFFFFFFF ++udivl 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++udivl 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000000E ++udivl 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++udivl 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x7FFFFFFFFFFFFFFF ++udivl 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x5555555555555554 ++udivl 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x1111111111111110 ++udivl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0204081020408102 ++udivl 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x01FFFFFFFFFFFFFF ++udivl 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0002000400080010 ++udivl 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0001FFFFFFFFFFFF ++udivl 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000200000004 ++udivl 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000001FFFFFFFF ++udivl 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++udivl 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000000000000E ++udivl 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++udivl 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x7FFFFFFFFFFFFFFE ++udivl 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x5555555555555554 ++udivl 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x1111111111111110 ++udivl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0204081020408101 ++udivl 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x01FFFFFFFFFFFFFF ++udivl 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0002000400080010 ++udivl 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0001FFFFFFFFFFFF ++udivl 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000200000004 ++udivl 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000001FFFFFFFF ++udivl 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000000000000E ++udivl 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000001 ++udivl 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++udivl 0x000000000000007F 0x0000000000000002 = 0x000000000000003F ++udivl 0x000000000000007F 0x0000000000000003 = 0x000000000000002A ++udivl 0x000000000000007F 0x000000000000000F = 0x0000000000000008 ++udivl 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0x000000000000007F 0x000000000000007F = 0x0000000000000001 ++udivl 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++udivl 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++udivl 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++udivl 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++udivl 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++udivl 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++udivl 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++udivl 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivl 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++udivl 0x0000000000000080 0x0000000000000002 = 0x0000000000000040 ++udivl 0x0000000000000080 0x0000000000000003 = 0x000000000000002A ++udivl 0x0000000000000080 0x000000000000000F = 0x0000000000000008 ++udivl 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0x0000000000000080 0x000000000000007F = 0x0000000000000001 ++udivl 0x0000000000000080 0x0000000000000080 = 0x0000000000000001 ++udivl 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++udivl 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++udivl 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++udivl 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++udivl 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++udivl 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivl 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++udivl 0x0000000000007FFF 0x0000000000000002 = 0x0000000000003FFF ++udivl 0x0000000000007FFF 0x0000000000000003 = 0x0000000000002AAA ++udivl 0x0000000000007FFF 0x000000000000000F = 0x0000000000000888 ++udivl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0x0000000000007FFF 0x000000000000007F = 0x0000000000000102 ++udivl 0x0000000000007FFF 0x0000000000000080 = 0x00000000000000FF ++udivl 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000001 ++udivl 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++udivl 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++udivl 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++udivl 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++udivl 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++udivl 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivl 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++udivl 0x0000000000008000 0x0000000000000002 = 0x0000000000004000 ++udivl 0x0000000000008000 0x0000000000000003 = 0x0000000000002AAA ++udivl 0x0000000000008000 0x000000000000000F = 0x0000000000000888 ++udivl 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0x0000000000008000 0x000000000000007F = 0x0000000000000102 ++udivl 0x0000000000008000 0x0000000000000080 = 0x0000000000000100 ++udivl 0x0000000000008000 0x0000000000007FFF = 0x0000000000000001 ++udivl 0x0000000000008000 0x0000000000008000 = 0x0000000000000001 ++udivl 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++udivl 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++udivl 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++udivl 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++udivl 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivl 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++udivl 0x000000007FFFFFFF 0x0000000000000002 = 0x000000003FFFFFFF ++udivl 0x000000007FFFFFFF 0x0000000000000003 = 0x000000002AAAAAAA ++udivl 0x000000007FFFFFFF 0x000000000000000F = 0x0000000008888888 ++udivl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0x000000007FFFFFFF 0x000000000000007F = 0x0000000001020408 ++udivl 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000FFFFFF ++udivl 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000010002 ++udivl 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000FFFF ++udivl 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++udivl 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++udivl 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++udivl 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++udivl 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivl 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++udivl 0x0000000080000000 0x0000000000000002 = 0x0000000040000000 ++udivl 0x0000000080000000 0x0000000000000003 = 0x000000002AAAAAAA ++udivl 0x0000000080000000 0x000000000000000F = 0x0000000008888888 ++udivl 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0x0000000080000000 0x000000000000007F = 0x0000000001020408 ++udivl 0x0000000080000000 0x0000000000000080 = 0x0000000001000000 ++udivl 0x0000000080000000 0x0000000000007FFF = 0x0000000000010002 ++udivl 0x0000000080000000 0x0000000000008000 = 0x0000000000010000 ++udivl 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000001 ++udivl 0x0000000080000000 0x0000000080000000 = 0x0000000000000001 ++udivl 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++udivl 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++udivl 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivl 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++udivl 0x8000000000000000 0x0000000000000002 = 0x4000000000000000 ++udivl 0x8000000000000000 0x0000000000000003 = 0x2AAAAAAAAAAAAAAA ++udivl 0x8000000000000000 0x000000000000000F = 0x0888888888888888 ++udivl 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0x8000000000000000 0x000000000000007F = 0x0102040810204081 ++udivl 0x8000000000000000 0x0000000000000080 = 0x0100000000000000 ++udivl 0x8000000000000000 0x0000000000007FFF = 0x0001000200040008 ++udivl 0x8000000000000000 0x0000000000008000 = 0x0001000000000000 ++udivl 0x8000000000000000 0x000000007FFFFFFF = 0x0000000100000002 ++udivl 0x8000000000000000 0x0000000080000000 = 0x0000000100000000 ++udivl 0x8000000000000000 0x8000000000000000 = 0x0000000000000001 ++udivl 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++udivl 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000007 ++udivl 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivl 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++udivl 0xFFFFFFFF80000000 0x0000000000000002 = 0x7FFFFFFFC0000000 ++udivl 0xFFFFFFFF80000000 0x0000000000000003 = 0x555555552AAAAAAA ++udivl 0xFFFFFFFF80000000 0x000000000000000F = 0x1111111108888888 ++udivl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0xFFFFFFFF80000000 0x000000000000007F = 0x020408101F3E7CF9 ++udivl 0xFFFFFFFF80000000 0x0000000000000080 = 0x01FFFFFFFF000000 ++udivl 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000200040007000E ++udivl 0xFFFFFFFF80000000 0x0000000000008000 = 0x0001FFFFFFFF0000 ++udivl 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000200000003 ++udivl 0xFFFFFFFF80000000 0x0000000080000000 = 0x00000001FFFFFFFF ++udivl 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000001 ++udivl 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivl 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++udivl 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x000000000000000E ++udivl 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++udivl 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x7FFFFFFFFFFFC000 ++udivl 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x5555555555552AAA ++udivl 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x1111111111110888 ++udivl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0204081020408000 ++udivl 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x01FFFFFFFFFFFF00 ++udivl 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x000200040008000F ++udivl 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0001FFFFFFFFFFFF ++udivl 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000200000003 ++udivl 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x00000001FFFFFFFF ++udivl 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x000000000000000E ++udivl 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF80 ++udivl 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x7FFFFFFFFFFFFFC0 ++udivl 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x555555555555552A ++udivl 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x1111111111111108 ++udivl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0204081020408101 ++udivl 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x01FFFFFFFFFFFFFF ++udivl 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x000200040008000F ++udivl 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0001FFFFFFFFFFFF ++udivl 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000200000003 ++udivl 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x00000001FFFFFFFF ++udivl 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++udivl 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000000000000E ++udivl 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000001 ++udivl 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++udivl 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x3FFFFFFFFFFFFFFF ++udivl 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x2AAAAAAAAAAAAAAA ++udivl 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0888888888888888 ++udivl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0102040810204081 ++udivl 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00FFFFFFFFFFFFFF ++udivl 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0001000200040008 ++udivl 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000FFFFFFFFFFFF ++udivl 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000100000002 ++udivl 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000FFFFFFFF ++udivl 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++udivl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++udivl 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000007 ++udivl 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivl 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF0 ++udivl 0x123456789ABCDEF0 0x0000000000000002 = 0x091A2B3C4D5E6F78 ++udivl 0x123456789ABCDEF0 0x0000000000000003 = 0x0611722833944A50 ++udivl 0x123456789ABCDEF0 0x000000000000000F = 0x0136B06E70B74210 ++udivl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0x123456789ABCDEF0 0x000000000000007F = 0x0024B211135C3222 ++udivl 0x123456789ABCDEF0 0x0000000000000080 = 0x002468ACF13579BD ++udivl 0x123456789ABCDEF0 0x0000000000007FFF = 0x00002468F5C320FF ++udivl 0x123456789ABCDEF0 0x0000000000008000 = 0x00002468ACF13579 ++udivl 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000002468ACF1 ++udivl 0x123456789ABCDEF0 0x0000000080000000 = 0x000000002468ACF1 ++udivl 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++udivl 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000001 ++udivl 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++udivl 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563412 ++udivl 0xF0DEBC9A78563412 0x0000000000000002 = 0x786F5E4D3C2B1A09 ++udivl 0xF0DEBC9A78563412 0x0000000000000003 = 0x504A3EDE281CBC06 ++udivl 0xF0DEBC9A78563412 0x000000000000000F = 0x100ED95FA19F58CE ++udivl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++udivl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++udivl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++udivl 0xF0DEBC9A78563412 0x000000000000007F = 0x01E5888A4983B3CF ++udivl 0xF0DEBC9A78563412 0x0000000000000080 = 0x01E1BD7934F0AC68 ++udivl 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0001E1C13CB76A1B ++udivl 0xF0DEBC9A78563412 0x0000000000008000 = 0x0001E1BD7934F0AC ++udivl 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000001E1BD7938 ++udivl 0xF0DEBC9A78563412 0x0000000080000000 = 0x00000001E1BD7934 ++udivl 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000001 ++udivl 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++udivl 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++udivl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++udivl 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++udivl 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000000000000D ++udivl 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on remw === ++remw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++remw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++remw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++remw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++remw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++remw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++remw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++remw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++remw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++remw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++remw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++remw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++remw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++remw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++remw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++remw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++remw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++remw 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++remw 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++remw 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++remw 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++remw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++remw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++remw 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++remw 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++remw 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++remw 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++remw 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++remw 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++remw 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++remw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++remw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++remw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++remw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++remw 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++remw 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++remw 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++remw 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++remw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++remw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++remw 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++remw 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++remw 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++remw 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++remw 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++remw 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++remw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++remw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++remw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++remw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++remw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++remw 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++remw 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++remw 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++remw 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++remw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++remw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++remw 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++remw 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++remw 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++remw 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++remw 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++remw 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++remw 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++remw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++remw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++remw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++remw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++remw 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++remw 0x000000000000000F 0x0000000000000002 = 0x0000000000000001 ++remw 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++remw 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++remw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++remw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++remw 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++remw 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++remw 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++remw 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++remw 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++remw 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++remw 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++remw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++remw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++remw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++remw 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++remw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFFD ++remw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFFFD ++remw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++remw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFD ++remw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++remw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFD ++remw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++remw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++remw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++remw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++remw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++remw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFD ++remw 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++remw 0x000000000000007F 0x0000000000000002 = 0x0000000000000001 ++remw 0x000000000000007F 0x0000000000000003 = 0x0000000000000001 ++remw 0x000000000000007F 0x000000000000000F = 0x0000000000000007 ++remw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++remw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++remw 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++remw 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++remw 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++remw 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++remw 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++remw 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++remw 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++remw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++remw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++remw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++remw 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++remw 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++remw 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++remw 0x0000000000000080 0x0000000000000003 = 0x0000000000000002 ++remw 0x0000000000000080 0x000000000000000F = 0x0000000000000008 ++remw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++remw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++remw 0x0000000000000080 0x000000000000007F = 0x0000000000000001 ++remw 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++remw 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++remw 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++remw 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++remw 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++remw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++remw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++remw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++remw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++remw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++remw 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++remw 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000001 ++remw 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000001 ++remw 0x0000000000007FFF 0x000000000000000F = 0x0000000000000007 ++remw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++remw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++remw 0x0000000000007FFF 0x000000000000007F = 0x0000000000000001 ++remw 0x0000000000007FFF 0x0000000000000080 = 0x000000000000007F ++remw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++remw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++remw 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++remw 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++remw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++remw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++remw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++remw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++remw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++remw 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++remw 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++remw 0x0000000000008000 0x0000000000000003 = 0x0000000000000002 ++remw 0x0000000000008000 0x000000000000000F = 0x0000000000000008 ++remw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++remw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++remw 0x0000000000008000 0x000000000000007F = 0x0000000000000002 ++remw 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++remw 0x0000000000008000 0x0000000000007FFF = 0x0000000000000001 ++remw 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++remw 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++remw 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++remw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++remw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++remw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++remw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++remw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++remw 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++remw 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000001 ++remw 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000001 ++remw 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000007 ++remw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++remw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++remw 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000007 ++remw 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000007F ++remw 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++remw 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000007FFF ++remw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++remw 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++remw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++remw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++remw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++remw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000001ABCDEEF ++remw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000007A9CBED ++remw 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++remw 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++remw 0x0000000080000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++remw 0x0000000080000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF8 ++remw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++remw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++remw 0x0000000080000000 0x000000000000007F = 0xFFFFFFFFFFFFFFF8 ++remw 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++remw 0x0000000080000000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++remw 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++remw 0x0000000080000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++remw 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++remw 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++remw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++remw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++remw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x0000000080000000 0x123456789ABCDEF0 = 0xFFFFFFFFE5432110 ++remw 0x0000000080000000 0xF0DEBC9A78563412 = 0xFFFFFFFFF8563412 ++remw 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++remw 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++remw 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++remw 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++remw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++remw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++remw 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++remw 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++remw 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++remw 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++remw 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++remw 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++remw 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++remw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++remw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++remw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++remw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++remw 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++remw 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++remw 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF8 ++remw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++remw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFFFFFFFFF8 ++remw 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++remw 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++remw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++remw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++remw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++remw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++remw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFFE5432110 ++remw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFFF8563412 ++remw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFFFFF8 ++remw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++remw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFFFF8000 ++remw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++remw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++remw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++remw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF8000 ++remw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFFF8 ++remw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++remw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++remw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFFFF80 ++remw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++remw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF80 ++remw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++remw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++remw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++remw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF80 ++remw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFF80 ++remw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++remw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++remw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++remw 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++remw 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++remw 0x123456789ABCDEF0 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++remw 0x123456789ABCDEF0 0x000000000000000F = 0xFFFFFFFFFFFFFFF9 ++remw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++remw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++remw 0x123456789ABCDEF0 0x000000000000007F = 0xFFFFFFFFFFFFFFF1 ++remw 0x123456789ABCDEF0 0x0000000000000080 = 0xFFFFFFFFFFFFFFF0 ++remw 0x123456789ABCDEF0 0x0000000000007FFF = 0xFFFFFFFFFFFF9469 ++remw 0x123456789ABCDEF0 0x0000000000008000 = 0xFFFFFFFFFFFFDEF0 ++remw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0xFFFFFFFF9ABCDEF0 ++remw 0x123456789ABCDEF0 0x0000000080000000 = 0xFFFFFFFF9ABCDEF0 ++remw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF9ABCDEF0 ++remw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFDEF0 ++remw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFF0 ++remw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++remw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xFFFFFFFF9ABCDEF0 ++remw 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++remw 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++remw 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++remw 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000006 ++remw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++remw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++remw 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000001D ++remw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000012 ++remw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00000000000024C0 ++remw 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000003412 ++remw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000078563412 ++remw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000078563412 ++remw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000078563412 ++remw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000003412 ++remw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000012 ++remw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++remw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000013131302 ++remw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on uremw === ++uremw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++uremw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++uremw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++uremw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++uremw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++uremw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++uremw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++uremw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++uremw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++uremw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++uremw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++uremw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++uremw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++uremw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++uremw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++uremw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++uremw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++uremw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++uremw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++uremw 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++uremw 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++uremw 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++uremw 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++uremw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++uremw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++uremw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++uremw 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++uremw 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++uremw 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++uremw 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++uremw 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++uremw 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++uremw 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++uremw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++uremw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++uremw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++uremw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++uremw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++uremw 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++uremw 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++uremw 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++uremw 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++uremw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++uremw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++uremw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++uremw 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++uremw 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++uremw 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++uremw 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++uremw 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++uremw 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++uremw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++uremw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++uremw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++uremw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++uremw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++uremw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++uremw 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++uremw 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++uremw 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++uremw 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++uremw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++uremw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++uremw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++uremw 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++uremw 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++uremw 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++uremw 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++uremw 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++uremw 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++uremw 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++uremw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++uremw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++uremw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++uremw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++uremw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++uremw 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++uremw 0x000000000000000F 0x0000000000000002 = 0x0000000000000001 ++uremw 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++uremw 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++uremw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++uremw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++uremw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++uremw 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++uremw 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++uremw 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++uremw 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++uremw 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++uremw 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++uremw 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++uremw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++uremw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++uremw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++uremw 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++uremw 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++uremw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++uremw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++uremw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++uremw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000000F ++uremw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++uremw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000003 ++uremw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FFF ++uremw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++uremw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++uremw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++uremw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++uremw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++uremw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000006543210F ++uremw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000F5397DB ++uremw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000002 ++uremw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000E ++uremw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFFFE ++uremw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++uremw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000000E ++uremw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000007E ++uremw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000002 ++uremw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000007FFE ++uremw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000007FFFFFFE ++uremw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000007FFFFFFE ++uremw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000007FFE ++uremw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000007E ++uremw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFFFE ++uremw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000006543210E ++uremw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000000F5397DA ++uremw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000001 ++uremw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000001 ++uremw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000D ++uremw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFFFD ++uremw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFFFD ++uremw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000000D ++uremw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000007D ++uremw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000001 ++uremw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000007FFD ++uremw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFE ++uremw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000007FFFFFFD ++uremw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000007FFFFFFD ++uremw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000007FFD ++uremw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000007D ++uremw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFFFD ++uremw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000006543210D ++uremw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000000F5397D9 ++uremw 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++uremw 0x000000000000007F 0x0000000000000002 = 0x0000000000000001 ++uremw 0x000000000000007F 0x0000000000000003 = 0x0000000000000001 ++uremw 0x000000000000007F 0x000000000000000F = 0x0000000000000007 ++uremw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++uremw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++uremw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++uremw 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++uremw 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++uremw 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++uremw 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++uremw 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++uremw 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++uremw 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++uremw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++uremw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++uremw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++uremw 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++uremw 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++uremw 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++uremw 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++uremw 0x0000000000000080 0x0000000000000003 = 0x0000000000000002 ++uremw 0x0000000000000080 0x000000000000000F = 0x0000000000000008 ++uremw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++uremw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++uremw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++uremw 0x0000000000000080 0x000000000000007F = 0x0000000000000001 ++uremw 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++uremw 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++uremw 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++uremw 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++uremw 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++uremw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++uremw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++uremw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++uremw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++uremw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++uremw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++uremw 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++uremw 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000001 ++uremw 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000001 ++uremw 0x0000000000007FFF 0x000000000000000F = 0x0000000000000007 ++uremw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++uremw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++uremw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++uremw 0x0000000000007FFF 0x000000000000007F = 0x0000000000000001 ++uremw 0x0000000000007FFF 0x0000000000000080 = 0x000000000000007F ++uremw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++uremw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++uremw 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++uremw 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++uremw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++uremw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++uremw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++uremw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++uremw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++uremw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++uremw 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++uremw 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++uremw 0x0000000000008000 0x0000000000000003 = 0x0000000000000002 ++uremw 0x0000000000008000 0x000000000000000F = 0x0000000000000008 ++uremw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++uremw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++uremw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++uremw 0x0000000000008000 0x000000000000007F = 0x0000000000000002 ++uremw 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++uremw 0x0000000000008000 0x0000000000007FFF = 0x0000000000000001 ++uremw 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++uremw 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++uremw 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++uremw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++uremw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++uremw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++uremw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++uremw 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++uremw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++uremw 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++uremw 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000001 ++uremw 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000001 ++uremw 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000007 ++uremw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++uremw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++uremw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++uremw 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000007 ++uremw 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000007F ++uremw 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++uremw 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000007FFF ++uremw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++uremw 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++uremw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++uremw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++uremw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++uremw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++uremw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++uremw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000007A9CBED ++uremw 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++uremw 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++uremw 0x0000000080000000 0x0000000000000003 = 0x0000000000000002 ++uremw 0x0000000080000000 0x000000000000000F = 0x0000000000000008 ++uremw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++uremw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++uremw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++uremw 0x0000000080000000 0x000000000000007F = 0x0000000000000008 ++uremw 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++uremw 0x0000000080000000 0x0000000000007FFF = 0x0000000000000002 ++uremw 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++uremw 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000001 ++uremw 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++uremw 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++uremw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++uremw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++uremw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++uremw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++uremw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000007A9CBEE ++uremw 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++uremw 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++uremw 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++uremw 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++uremw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++uremw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++uremw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++uremw 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++uremw 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++uremw 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++uremw 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++uremw 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++uremw 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++uremw 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++uremw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++uremw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++uremw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++uremw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++uremw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++uremw 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++uremw 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++uremw 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000002 ++uremw 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000008 ++uremw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++uremw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++uremw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++uremw 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000008 ++uremw 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++uremw 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000002 ++uremw 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++uremw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000001 ++uremw 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++uremw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++uremw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++uremw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++uremw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++uremw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000080000000 ++uremw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000007A9CBEE ++uremw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000002 ++uremw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000008 ++uremw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00000000FFFF8000 ++uremw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x00000000FFFF8000 ++uremw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x00000000FFFF8000 ++uremw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000000E ++uremw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000003 ++uremw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFF8001 ++uremw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000007FFF8000 ++uremw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000007FFF8000 ++uremw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00000000FFFF8000 ++uremw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00000000FFFF8000 ++uremw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x000000006542A110 ++uremw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000000F5317DC ++uremw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000002 ++uremw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000008 ++uremw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFF80 ++uremw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFF80 ++uremw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x00000000FFFFFF80 ++uremw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000000F ++uremw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007F83 ++uremw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000007F80 ++uremw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFF81 ++uremw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000007FFFFF80 ++uremw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000007FFFFF80 ++uremw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000007F80 ++uremw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++uremw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFF80 ++uremw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000065432090 ++uremw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000000F53975C ++uremw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++uremw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++uremw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++uremw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++uremw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++uremw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++uremw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++uremw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000000F ++uremw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++uremw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000003 ++uremw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FFF ++uremw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++uremw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++uremw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++uremw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++uremw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++uremw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++uremw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000006543210F ++uremw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000F5397DB ++uremw 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++uremw 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++uremw 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++uremw 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000009 ++uremw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000009ABCDEF0 ++uremw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000000009ABCDEF0 ++uremw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000009ABCDEF0 ++uremw 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000001 ++uremw 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000070 ++uremw 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000000000146C ++uremw 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000005EF0 ++uremw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000001ABCDEF1 ++uremw 0x123456789ABCDEF0 0x0000000080000000 = 0x000000001ABCDEF0 ++uremw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000001ABCDEF0 ++uremw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000009ABCDEF0 ++uremw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000009ABCDEF0 ++uremw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000009ABCDEF0 ++uremw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++uremw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000002266AADE ++uremw 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++uremw 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++uremw 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++uremw 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000006 ++uremw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000078563412 ++uremw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000078563412 ++uremw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000078563412 ++uremw 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000001D ++uremw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000012 ++uremw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00000000000024C0 ++uremw 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000003412 ++uremw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000078563412 ++uremw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000078563412 ++uremw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000078563412 ++uremw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000078563412 ++uremw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000078563412 ++uremw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000078563412 ++uremw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000078563412 ++uremw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on reml === ++reml 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++reml 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++reml 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++reml 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++reml 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++reml 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++reml 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++reml 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++reml 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++reml 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++reml 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++reml 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++reml 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++reml 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++reml 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++reml 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++reml 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++reml 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++reml 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++reml 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++reml 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++reml 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++reml 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++reml 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++reml 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++reml 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++reml 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++reml 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++reml 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++reml 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++reml 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++reml 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++reml 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++reml 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++reml 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++reml 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++reml 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++reml 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++reml 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++reml 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++reml 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++reml 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++reml 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++reml 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++reml 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++reml 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++reml 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++reml 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++reml 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++reml 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++reml 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++reml 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++reml 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++reml 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++reml 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++reml 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++reml 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++reml 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++reml 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++reml 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++reml 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++reml 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++reml 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++reml 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++reml 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++reml 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++reml 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++reml 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++reml 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++reml 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++reml 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++reml 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++reml 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++reml 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++reml 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++reml 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++reml 0x000000000000000F 0x0000000000000002 = 0x0000000000000001 ++reml 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++reml 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++reml 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++reml 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++reml 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++reml 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++reml 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++reml 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++reml 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++reml 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++reml 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++reml 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++reml 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++reml 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++reml 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++reml 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++reml 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++reml 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFFD ++reml 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFFFD ++reml 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++reml 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFD ++reml 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++reml 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFD ++reml 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++reml 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++reml 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++reml 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++reml 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++reml 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++reml 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++reml 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFD ++reml 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++reml 0x000000000000007F 0x0000000000000002 = 0x0000000000000001 ++reml 0x000000000000007F 0x0000000000000003 = 0x0000000000000001 ++reml 0x000000000000007F 0x000000000000000F = 0x0000000000000007 ++reml 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++reml 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++reml 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++reml 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++reml 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++reml 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++reml 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++reml 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++reml 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++reml 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++reml 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++reml 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++reml 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++reml 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++reml 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++reml 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++reml 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++reml 0x0000000000000080 0x0000000000000003 = 0x0000000000000002 ++reml 0x0000000000000080 0x000000000000000F = 0x0000000000000008 ++reml 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++reml 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++reml 0x0000000000000080 0x000000000000007F = 0x0000000000000001 ++reml 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++reml 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++reml 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++reml 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++reml 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++reml 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++reml 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++reml 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++reml 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++reml 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++reml 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++reml 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++reml 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++reml 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000001 ++reml 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000001 ++reml 0x0000000000007FFF 0x000000000000000F = 0x0000000000000007 ++reml 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++reml 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++reml 0x0000000000007FFF 0x000000000000007F = 0x0000000000000001 ++reml 0x0000000000007FFF 0x0000000000000080 = 0x000000000000007F ++reml 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++reml 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++reml 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++reml 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++reml 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++reml 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++reml 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++reml 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++reml 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++reml 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++reml 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++reml 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++reml 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++reml 0x0000000000008000 0x0000000000000003 = 0x0000000000000002 ++reml 0x0000000000008000 0x000000000000000F = 0x0000000000000008 ++reml 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++reml 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++reml 0x0000000000008000 0x000000000000007F = 0x0000000000000002 ++reml 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++reml 0x0000000000008000 0x0000000000007FFF = 0x0000000000000001 ++reml 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++reml 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++reml 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++reml 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++reml 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++reml 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++reml 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++reml 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++reml 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++reml 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++reml 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++reml 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000001 ++reml 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000001 ++reml 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000007 ++reml 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++reml 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++reml 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000007 ++reml 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000007F ++reml 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++reml 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000007FFF ++reml 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++reml 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++reml 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++reml 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++reml 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++reml 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++reml 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++reml 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++reml 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007FFFFFFF ++reml 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++reml 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++reml 0x0000000080000000 0x0000000000000003 = 0x0000000000000002 ++reml 0x0000000080000000 0x000000000000000F = 0x0000000000000008 ++reml 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++reml 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++reml 0x0000000080000000 0x000000000000007F = 0x0000000000000008 ++reml 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++reml 0x0000000080000000 0x0000000000007FFF = 0x0000000000000002 ++reml 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++reml 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000001 ++reml 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++reml 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++reml 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++reml 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++reml 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++reml 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++reml 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++reml 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080000000 ++reml 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++reml 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++reml 0x8000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++reml 0x8000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF8 ++reml 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++reml 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++reml 0x8000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++reml 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++reml 0x8000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFF8 ++reml 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++reml 0x8000000000000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++reml 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++reml 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++reml 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++reml 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++reml 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++reml 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++reml 0x8000000000000000 0x123456789ABCDEF0 = 0xFF6E5D4C3B2A1890 ++reml 0x8000000000000000 0xF0DEBC9A78563412 = 0xF90A1B2C3D4E5F70 ++reml 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++reml 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++reml 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF8 ++reml 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++reml 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFFFFFFFFF8 ++reml 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++reml 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++reml 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++reml 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++reml 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++reml 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++reml 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++reml 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++reml 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++reml 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++reml 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFFFFF8 ++reml 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++reml 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFFFF8000 ++reml 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++reml 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++reml 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++reml 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++reml 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++reml 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF8000 ++reml 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFFF8 ++reml 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++reml 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++reml 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFFFF80 ++reml 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++reml 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF80 ++reml 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++reml 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++reml 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++reml 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++reml 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++reml 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++reml 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF80 ++reml 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFF80 ++reml 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++reml 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++reml 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000001 ++reml 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000007 ++reml 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++reml 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++reml 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++reml 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++reml 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000007 ++reml 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FFF ++reml 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++reml 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++reml 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++reml 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++reml 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++reml 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++reml 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0091A2B3C4D5E76F ++reml 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x06F5E4D3C2B1A08F ++reml 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++reml 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++reml 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++reml 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000000 ++reml 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++reml 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++reml 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000012 ++reml 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000070 ++reml 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FEF ++reml 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000005EF0 ++reml 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000003F258BE1 ++reml 0x123456789ABCDEF0 0x0000000080000000 = 0x000000001ABCDEF0 ++reml 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++reml 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000001ABCDEF0 ++reml 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000005EF0 ++reml 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000070 ++reml 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++reml 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++reml 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0313131313131302 ++reml 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++reml 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++reml 0xF0DEBC9A78563412 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++reml 0xF0DEBC9A78563412 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++reml 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++reml 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++reml 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++reml 0xF0DEBC9A78563412 0x000000000000007F = 0xFFFFFFFFFFFFFFE0 ++reml 0xF0DEBC9A78563412 0x0000000000000080 = 0xFFFFFFFFFFFFFF92 ++reml 0xF0DEBC9A78563412 0x0000000000007FFF = 0xFFFFFFFFFFFF9E1E ++reml 0xF0DEBC9A78563412 0x0000000000008000 = 0xFFFFFFFFFFFFB412 ++reml 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xFFFFFFFFDA13AD47 ++reml 0xF0DEBC9A78563412 0x0000000080000000 = 0xFFFFFFFFF8563412 ++reml 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++reml 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFFF8563412 ++reml 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFB412 ++reml 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF92 ++reml 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++reml 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78563412 ++reml 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on ureml === ++ureml 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++ureml 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++ureml 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++ureml 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++ureml 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++ureml 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++ureml 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++ureml 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++ureml 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++ureml 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++ureml 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++ureml 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++ureml 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++ureml 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++ureml 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++ureml 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++ureml 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++ureml 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++ureml 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++ureml 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++ureml 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++ureml 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++ureml 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++ureml 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++ureml 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++ureml 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++ureml 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++ureml 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++ureml 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++ureml 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++ureml 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++ureml 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++ureml 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++ureml 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++ureml 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++ureml 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++ureml 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++ureml 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++ureml 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++ureml 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++ureml 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++ureml 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++ureml 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++ureml 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++ureml 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++ureml 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++ureml 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++ureml 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++ureml 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++ureml 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++ureml 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++ureml 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++ureml 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++ureml 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++ureml 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++ureml 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++ureml 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++ureml 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++ureml 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++ureml 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++ureml 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++ureml 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++ureml 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++ureml 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++ureml 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++ureml 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++ureml 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++ureml 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++ureml 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++ureml 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++ureml 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++ureml 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++ureml 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++ureml 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++ureml 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++ureml 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++ureml 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++ureml 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++ureml 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++ureml 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++ureml 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++ureml 0x000000000000000F 0x0000000000000002 = 0x0000000000000001 ++ureml 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++ureml 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++ureml 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++ureml 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++ureml 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++ureml 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++ureml 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++ureml 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++ureml 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++ureml 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++ureml 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++ureml 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++ureml 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++ureml 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++ureml 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++ureml 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++ureml 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++ureml 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++ureml 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++ureml 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++ureml 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++ureml 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000001 ++ureml 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++ureml 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000000F ++ureml 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FFF ++ureml 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000003 ++ureml 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++ureml 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ureml 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++ureml 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++ureml 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++ureml 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++ureml 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0123456789ABCEDF ++ureml 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0F21436587A9CBED ++ureml 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000002 ++ureml 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000E ++ureml 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++ureml 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++ureml 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000007E ++ureml 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x000000000000000E ++ureml 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000007FFE ++ureml 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000002 ++ureml 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000007FFFFFFE ++ureml 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x7FFFFFFFFFFFFFFE ++ureml 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000007FFFFFFE ++ureml 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000007FFE ++ureml 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000007E ++ureml 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0123456789ABCEDE ++ureml 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0F21436587A9CBEC ++ureml 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000001 ++ureml 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000001 ++ureml 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000D ++ureml 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++ureml 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++ureml 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007E ++ureml 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000007D ++ureml 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x000000000000000D ++ureml 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000007FFD ++ureml 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000001 ++ureml 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000007FFFFFFD ++ureml 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x7FFFFFFFFFFFFFFD ++ureml 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000007FFFFFFD ++ureml 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000007FFD ++ureml 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000007D ++ureml 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++ureml 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0123456789ABCEDD ++ureml 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0F21436587A9CBEB ++ureml 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++ureml 0x000000000000007F 0x0000000000000002 = 0x0000000000000001 ++ureml 0x000000000000007F 0x0000000000000003 = 0x0000000000000001 ++ureml 0x000000000000007F 0x000000000000000F = 0x0000000000000007 ++ureml 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++ureml 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++ureml 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++ureml 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++ureml 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++ureml 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++ureml 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++ureml 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++ureml 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++ureml 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++ureml 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++ureml 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++ureml 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++ureml 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++ureml 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++ureml 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++ureml 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++ureml 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++ureml 0x0000000000000080 0x0000000000000003 = 0x0000000000000002 ++ureml 0x0000000000000080 0x000000000000000F = 0x0000000000000008 ++ureml 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++ureml 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++ureml 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++ureml 0x0000000000000080 0x000000000000007F = 0x0000000000000001 ++ureml 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++ureml 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++ureml 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++ureml 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++ureml 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++ureml 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++ureml 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++ureml 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++ureml 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++ureml 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++ureml 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++ureml 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++ureml 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++ureml 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000001 ++ureml 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000001 ++ureml 0x0000000000007FFF 0x000000000000000F = 0x0000000000000007 ++ureml 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++ureml 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++ureml 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++ureml 0x0000000000007FFF 0x000000000000007F = 0x0000000000000001 ++ureml 0x0000000000007FFF 0x0000000000000080 = 0x000000000000007F ++ureml 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++ureml 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++ureml 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++ureml 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++ureml 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++ureml 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++ureml 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++ureml 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++ureml 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++ureml 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++ureml 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++ureml 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++ureml 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++ureml 0x0000000000008000 0x0000000000000003 = 0x0000000000000002 ++ureml 0x0000000000008000 0x000000000000000F = 0x0000000000000008 ++ureml 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++ureml 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++ureml 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++ureml 0x0000000000008000 0x000000000000007F = 0x0000000000000002 ++ureml 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++ureml 0x0000000000008000 0x0000000000007FFF = 0x0000000000000001 ++ureml 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++ureml 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++ureml 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++ureml 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++ureml 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++ureml 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++ureml 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++ureml 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++ureml 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++ureml 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++ureml 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++ureml 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000001 ++ureml 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000001 ++ureml 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000007 ++ureml 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++ureml 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++ureml 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++ureml 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000007 ++ureml 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000007F ++ureml 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++ureml 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000007FFF ++ureml 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++ureml 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++ureml 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++ureml 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++ureml 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++ureml 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++ureml 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++ureml 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++ureml 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007FFFFFFF ++ureml 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++ureml 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++ureml 0x0000000080000000 0x0000000000000003 = 0x0000000000000002 ++ureml 0x0000000080000000 0x000000000000000F = 0x0000000000000008 ++ureml 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++ureml 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++ureml 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++ureml 0x0000000080000000 0x000000000000007F = 0x0000000000000008 ++ureml 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++ureml 0x0000000080000000 0x0000000000007FFF = 0x0000000000000002 ++ureml 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++ureml 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000001 ++ureml 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++ureml 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++ureml 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++ureml 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++ureml 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++ureml 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++ureml 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++ureml 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080000000 ++ureml 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++ureml 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++ureml 0x8000000000000000 0x0000000000000003 = 0x0000000000000002 ++ureml 0x8000000000000000 0x000000000000000F = 0x0000000000000008 ++ureml 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++ureml 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++ureml 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++ureml 0x8000000000000000 0x000000000000007F = 0x0000000000000001 ++ureml 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++ureml 0x8000000000000000 0x0000000000007FFF = 0x0000000000000008 ++ureml 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++ureml 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000002 ++ureml 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++ureml 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++ureml 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++ureml 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++ureml 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++ureml 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++ureml 0x8000000000000000 0x123456789ABCDEF0 = 0x0091A2B3C4D5E770 ++ureml 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++ureml 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++ureml 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++ureml 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000002 ++ureml 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000008 ++ureml 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++ureml 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++ureml 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++ureml 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000079 ++ureml 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++ureml 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000000000000E ++ureml 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++ureml 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000003 ++ureml 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++ureml 0xFFFFFFFF80000000 0x8000000000000000 = 0x7FFFFFFF80000000 ++ureml 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++ureml 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++ureml 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++ureml 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFF80000001 ++ureml 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0123456709ABCEE0 ++ureml 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0F21436507A9CBEE ++ureml 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000002 ++ureml 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000008 ++ureml 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++ureml 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8000 ++ureml 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8000 ++ureml 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x000000000000000F ++ureml 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFF8003 ++ureml 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000007FFF8000 ++ureml 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x7FFFFFFFFFFF8000 ++ureml 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000007FFF8000 ++ureml 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++ureml 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF8001 ++ureml 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0123456789AB4EE0 ++ureml 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0F21436587A94BEE ++ureml 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000002 ++ureml 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000008 ++ureml 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++ureml 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF80 ++ureml 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF80 ++ureml 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000001 ++ureml 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007F8F ++ureml 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000007F80 ++ureml 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFF83 ++ureml 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000007FFFFF80 ++ureml 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x7FFFFFFFFFFFFF80 ++ureml 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000007FFFFF80 ++ureml 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000007F80 ++ureml 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++ureml 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF81 ++ureml 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0123456789ABCE60 ++ureml 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0F21436587A9CB6E ++ureml 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++ureml 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++ureml 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000001 ++ureml 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000007 ++ureml 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++ureml 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFF ++ureml 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFF ++ureml 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++ureml 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++ureml 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000007 ++ureml 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FFF ++ureml 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++ureml 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++ureml 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ureml 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++ureml 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++ureml 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++ureml 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++ureml 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0091A2B3C4D5E76F ++ureml 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFFFFFFFFFFFF ++ureml 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++ureml 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++ureml 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++ureml 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000000 ++ureml 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++ureml 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDEF0 ++ureml 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDEF0 ++ureml 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000012 ++ureml 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000070 ++ureml 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FEF ++ureml 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000005EF0 ++ureml 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000003F258BE1 ++ureml 0x123456789ABCDEF0 0x0000000080000000 = 0x000000001ABCDEF0 ++ureml 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++ureml 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++ureml 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++ureml 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++ureml 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++ureml 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++ureml 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123456789ABCDEF0 ++ureml 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++ureml 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++ureml 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++ureml 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000000 ++ureml 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++ureml 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563412 ++ureml 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A78563412 ++ureml 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000061 ++ureml 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000012 ++ureml 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000001E2D ++ureml 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000003412 ++ureml 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000005A13AD4A ++ureml 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000078563412 ++ureml 0xF0DEBC9A78563412 0x8000000000000000 = 0x70DEBC9A78563412 ++ureml 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++ureml 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++ureml 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++ureml 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x70DEBC9A78563413 ++ureml 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0436587A9CBEE1E2 ++ureml 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on roll === ++roll 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++roll 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++roll 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++roll 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++roll 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++roll 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++roll 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++roll 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++roll 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++roll 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++roll 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++roll 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++roll 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++roll 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++roll 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++roll 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++roll 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++roll 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++roll 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++roll 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++roll 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++roll 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++roll 0x0000000000000001 0x0000000000000001 = 0x0000000000000002 ++roll 0x0000000000000001 0x0000000000000002 = 0x0000000000000004 ++roll 0x0000000000000001 0x0000000000000003 = 0x0000000000000008 ++roll 0x0000000000000001 0x000000000000000F = 0x0000000000008000 ++roll 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++roll 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x4000000000000000 ++roll 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x2000000000000000 ++roll 0x0000000000000001 0x000000000000007F = 0x8000000000000000 ++roll 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++roll 0x0000000000000001 0x0000000000007FFF = 0x8000000000000000 ++roll 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++roll 0x0000000000000001 0x000000007FFFFFFF = 0x8000000000000000 ++roll 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++roll 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++roll 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++roll 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++roll 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++roll 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++roll 0x0000000000000001 0x123456789ABCDEF0 = 0x0001000000000000 ++roll 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000040000 ++roll 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++roll 0x0000000000000002 0x0000000000000001 = 0x0000000000000004 ++roll 0x0000000000000002 0x0000000000000002 = 0x0000000000000008 ++roll 0x0000000000000002 0x0000000000000003 = 0x0000000000000010 ++roll 0x0000000000000002 0x000000000000000F = 0x0000000000010000 ++roll 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++roll 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++roll 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x4000000000000000 ++roll 0x0000000000000002 0x000000000000007F = 0x0000000000000001 ++roll 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++roll 0x0000000000000002 0x0000000000007FFF = 0x0000000000000001 ++roll 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++roll 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000001 ++roll 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++roll 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++roll 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++roll 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++roll 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++roll 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++roll 0x0000000000000002 0x123456789ABCDEF0 = 0x0002000000000000 ++roll 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000080000 ++roll 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++roll 0x0000000000000003 0x0000000000000001 = 0x0000000000000006 ++roll 0x0000000000000003 0x0000000000000002 = 0x000000000000000C ++roll 0x0000000000000003 0x0000000000000003 = 0x0000000000000018 ++roll 0x0000000000000003 0x000000000000000F = 0x0000000000018000 ++roll 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x8000000000000001 ++roll 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xC000000000000000 ++roll 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x6000000000000000 ++roll 0x0000000000000003 0x000000000000007F = 0x8000000000000001 ++roll 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++roll 0x0000000000000003 0x0000000000007FFF = 0x8000000000000001 ++roll 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++roll 0x0000000000000003 0x000000007FFFFFFF = 0x8000000000000001 ++roll 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++roll 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++roll 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++roll 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++roll 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++roll 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x8000000000000001 ++roll 0x0000000000000003 0x123456789ABCDEF0 = 0x0003000000000000 ++roll 0x0000000000000003 0xF0DEBC9A78563412 = 0x00000000000C0000 ++roll 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++roll 0x000000000000000F 0x0000000000000001 = 0x000000000000001E ++roll 0x000000000000000F 0x0000000000000002 = 0x000000000000003C ++roll 0x000000000000000F 0x0000000000000003 = 0x0000000000000078 ++roll 0x000000000000000F 0x000000000000000F = 0x0000000000078000 ++roll 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x8000000000000007 ++roll 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xC000000000000003 ++roll 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xE000000000000001 ++roll 0x000000000000000F 0x000000000000007F = 0x8000000000000007 ++roll 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++roll 0x000000000000000F 0x0000000000007FFF = 0x8000000000000007 ++roll 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++roll 0x000000000000000F 0x000000007FFFFFFF = 0x8000000000000007 ++roll 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++roll 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++roll 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++roll 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++roll 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++roll 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x8000000000000007 ++roll 0x000000000000000F 0x123456789ABCDEF0 = 0x000F000000000000 ++roll 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000003C0000 ++roll 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++roll 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++roll 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFB ++roll 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFF7 ++roll 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFF7FFF ++roll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xBFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xDFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x7FFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++roll 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x7FFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++roll 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++roll 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++roll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++roll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++roll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++roll 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFEFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFBFFFF ++roll 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++roll 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFB ++roll 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFF7 ++roll 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFEF ++roll 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFEFFFF ++roll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++roll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xBFFFFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFFFE ++roll 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++roll 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++roll 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++roll 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++roll 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++roll 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++roll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++roll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++roll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++roll 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++roll 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFDFFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFF7FFFF ++roll 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++roll 0x000000000000007F 0x0000000000000001 = 0x00000000000000FE ++roll 0x000000000000007F 0x0000000000000002 = 0x00000000000001FC ++roll 0x000000000000007F 0x0000000000000003 = 0x00000000000003F8 ++roll 0x000000000000007F 0x000000000000000F = 0x00000000003F8000 ++roll 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x800000000000003F ++roll 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xC00000000000001F ++roll 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xE00000000000000F ++roll 0x000000000000007F 0x000000000000007F = 0x800000000000003F ++roll 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++roll 0x000000000000007F 0x0000000000007FFF = 0x800000000000003F ++roll 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++roll 0x000000000000007F 0x000000007FFFFFFF = 0x800000000000003F ++roll 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++roll 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++roll 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++roll 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++roll 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++roll 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x800000000000003F ++roll 0x000000000000007F 0x123456789ABCDEF0 = 0x007F000000000000 ++roll 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000001FC0000 ++roll 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++roll 0x0000000000000080 0x0000000000000001 = 0x0000000000000100 ++roll 0x0000000000000080 0x0000000000000002 = 0x0000000000000200 ++roll 0x0000000000000080 0x0000000000000003 = 0x0000000000000400 ++roll 0x0000000000000080 0x000000000000000F = 0x0000000000400000 ++roll 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000040 ++roll 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000020 ++roll 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000010 ++roll 0x0000000000000080 0x000000000000007F = 0x0000000000000040 ++roll 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++roll 0x0000000000000080 0x0000000000007FFF = 0x0000000000000040 ++roll 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++roll 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000040 ++roll 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++roll 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++roll 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++roll 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++roll 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++roll 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000040 ++roll 0x0000000000000080 0x123456789ABCDEF0 = 0x0080000000000000 ++roll 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000002000000 ++roll 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++roll 0x0000000000007FFF 0x0000000000000001 = 0x000000000000FFFE ++roll 0x0000000000007FFF 0x0000000000000002 = 0x000000000001FFFC ++roll 0x0000000000007FFF 0x0000000000000003 = 0x000000000003FFF8 ++roll 0x0000000000007FFF 0x000000000000000F = 0x000000003FFF8000 ++roll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x8000000000003FFF ++roll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xC000000000001FFF ++roll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xE000000000000FFF ++roll 0x0000000000007FFF 0x000000000000007F = 0x8000000000003FFF ++roll 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++roll 0x0000000000007FFF 0x0000000000007FFF = 0x8000000000003FFF ++roll 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++roll 0x0000000000007FFF 0x000000007FFFFFFF = 0x8000000000003FFF ++roll 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++roll 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++roll 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++roll 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++roll 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++roll 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x8000000000003FFF ++roll 0x0000000000007FFF 0x123456789ABCDEF0 = 0x7FFF000000000000 ++roll 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x00000001FFFC0000 ++roll 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++roll 0x0000000000008000 0x0000000000000001 = 0x0000000000010000 ++roll 0x0000000000008000 0x0000000000000002 = 0x0000000000020000 ++roll 0x0000000000008000 0x0000000000000003 = 0x0000000000040000 ++roll 0x0000000000008000 0x000000000000000F = 0x0000000040000000 ++roll 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000004000 ++roll 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000002000 ++roll 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000001000 ++roll 0x0000000000008000 0x000000000000007F = 0x0000000000004000 ++roll 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++roll 0x0000000000008000 0x0000000000007FFF = 0x0000000000004000 ++roll 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++roll 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000004000 ++roll 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++roll 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++roll 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++roll 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++roll 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++roll 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000004000 ++roll 0x0000000000008000 0x123456789ABCDEF0 = 0x8000000000000000 ++roll 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000200000000 ++roll 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++roll 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000FFFFFFFE ++roll 0x000000007FFFFFFF 0x0000000000000002 = 0x00000001FFFFFFFC ++roll 0x000000007FFFFFFF 0x0000000000000003 = 0x00000003FFFFFFF8 ++roll 0x000000007FFFFFFF 0x000000000000000F = 0x00003FFFFFFF8000 ++roll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x800000003FFFFFFF ++roll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xC00000001FFFFFFF ++roll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xE00000000FFFFFFF ++roll 0x000000007FFFFFFF 0x000000000000007F = 0x800000003FFFFFFF ++roll 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++roll 0x000000007FFFFFFF 0x0000000000007FFF = 0x800000003FFFFFFF ++roll 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++roll 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x800000003FFFFFFF ++roll 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++roll 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++roll 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++roll 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++roll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++roll 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x800000003FFFFFFF ++roll 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0xFFFF000000007FFF ++roll 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0001FFFFFFFC0000 ++roll 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++roll 0x0000000080000000 0x0000000000000001 = 0x0000000100000000 ++roll 0x0000000080000000 0x0000000000000002 = 0x0000000200000000 ++roll 0x0000000080000000 0x0000000000000003 = 0x0000000400000000 ++roll 0x0000000080000000 0x000000000000000F = 0x0000400000000000 ++roll 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000040000000 ++roll 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000020000000 ++roll 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000010000000 ++roll 0x0000000080000000 0x000000000000007F = 0x0000000040000000 ++roll 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++roll 0x0000000080000000 0x0000000000007FFF = 0x0000000040000000 ++roll 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++roll 0x0000000080000000 0x000000007FFFFFFF = 0x0000000040000000 ++roll 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++roll 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++roll 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++roll 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++roll 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++roll 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000040000000 ++roll 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000008000 ++roll 0x0000000080000000 0xF0DEBC9A78563412 = 0x0002000000000000 ++roll 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++roll 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++roll 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++roll 0x8000000000000000 0x0000000000000003 = 0x0000000000000004 ++roll 0x8000000000000000 0x000000000000000F = 0x0000000000004000 ++roll 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x4000000000000000 ++roll 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x2000000000000000 ++roll 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x1000000000000000 ++roll 0x8000000000000000 0x000000000000007F = 0x4000000000000000 ++roll 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++roll 0x8000000000000000 0x0000000000007FFF = 0x4000000000000000 ++roll 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++roll 0x8000000000000000 0x000000007FFFFFFF = 0x4000000000000000 ++roll 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++roll 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++roll 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++roll 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++roll 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++roll 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x4000000000000000 ++roll 0x8000000000000000 0x123456789ABCDEF0 = 0x0000800000000000 ++roll 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000020000 ++roll 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++roll 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF00000001 ++roll 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFE00000003 ++roll 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFC00000007 ++roll 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFC00000007FFF ++roll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFC0000000 ++roll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x3FFFFFFFE0000000 ++roll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x1FFFFFFFF0000000 ++roll 0xFFFFFFFF80000000 0x000000000000007F = 0x7FFFFFFFC0000000 ++roll 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++roll 0xFFFFFFFF80000000 0x0000000000007FFF = 0x7FFFFFFFC0000000 ++roll 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++roll 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x7FFFFFFFC0000000 ++roll 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++roll 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++roll 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++roll 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++roll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++roll 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFC0000000 ++roll 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000FFFFFFFF8000 ++roll 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFE00000003FFFF ++roll 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++roll 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF0001 ++roll 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFE0003 ++roll 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFC0007 ++roll 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFC0007FFF ++roll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFC000 ++roll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x3FFFFFFFFFFFE000 ++roll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x1FFFFFFFFFFFF000 ++roll 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x7FFFFFFFFFFFC000 ++roll 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++roll 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x7FFFFFFFFFFFC000 ++roll 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++roll 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x7FFFFFFFFFFFC000 ++roll 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++roll 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++roll 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++roll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++roll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++roll 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFC000 ++roll 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x8000FFFFFFFFFFFF ++roll 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFE0003FFFF ++roll 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++roll 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF01 ++roll 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFE03 ++roll 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFC07 ++roll 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFC07FFF ++roll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFC0 ++roll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x3FFFFFFFFFFFFFE0 ++roll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x1FFFFFFFFFFFFFF0 ++roll 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x7FFFFFFFFFFFFFC0 ++roll 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++roll 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x7FFFFFFFFFFFFFC0 ++roll 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++roll 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFFC0 ++roll 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++roll 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++roll 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++roll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++roll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++roll 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFC0 ++roll 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFF80FFFFFFFFFFFF ++roll 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFE03FFFF ++roll 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++roll 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++roll 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFB ++roll 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFBFFF ++roll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xBFFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xDFFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xEFFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xBFFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xBFFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xBFFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xBFFFFFFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFF7FFFFFFFFFFF ++roll 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFDFFFF ++roll 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++roll 0x123456789ABCDEF0 0x0000000000000001 = 0x2468ACF13579BDE0 ++roll 0x123456789ABCDEF0 0x0000000000000002 = 0x48D159E26AF37BC0 ++roll 0x123456789ABCDEF0 0x0000000000000003 = 0x91A2B3C4D5E6F780 ++roll 0x123456789ABCDEF0 0x000000000000000F = 0x2B3C4D5E6F78091A ++roll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x091A2B3C4D5E6F78 ++roll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x048D159E26AF37BC ++roll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x02468ACF13579BDE ++roll 0x123456789ABCDEF0 0x000000000000007F = 0x091A2B3C4D5E6F78 ++roll 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++roll 0x123456789ABCDEF0 0x0000000000007FFF = 0x091A2B3C4D5E6F78 ++roll 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++roll 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x091A2B3C4D5E6F78 ++roll 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++roll 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++roll 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++roll 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++roll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++roll 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x091A2B3C4D5E6F78 ++roll 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0xDEF0123456789ABC ++roll 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x59E26AF37BC048D1 ++roll 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++roll 0xF0DEBC9A78563412 0x0000000000000001 = 0xE1BD7934F0AC6825 ++roll 0xF0DEBC9A78563412 0x0000000000000002 = 0xC37AF269E158D04B ++roll 0xF0DEBC9A78563412 0x0000000000000003 = 0x86F5E4D3C2B1A097 ++roll 0xF0DEBC9A78563412 0x000000000000000F = 0x5E4D3C2B1A09786F ++roll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x786F5E4D3C2B1A09 ++roll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xBC37AF269E158D04 ++roll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x5E1BD7934F0AC682 ++roll 0xF0DEBC9A78563412 0x000000000000007F = 0x786F5E4D3C2B1A09 ++roll 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++roll 0xF0DEBC9A78563412 0x0000000000007FFF = 0x786F5E4D3C2B1A09 ++roll 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++roll 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x786F5E4D3C2B1A09 ++roll 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++roll 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++roll 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++roll 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++roll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++roll 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x786F5E4D3C2B1A09 ++roll 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x3412F0DEBC9A7856 ++roll 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF269E158D04BC37A ++=== Running test on sllw === ++sllw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sllw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++sllw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++sllw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++sllw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++sllw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sllw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sllw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++sllw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++sllw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++sllw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++sllw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++sllw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++sllw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++sllw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sllw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sllw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sllw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sllw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sllw 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++sllw 0x0000000000000001 0x0000000000000001 = 0x0000000000000002 ++sllw 0x0000000000000001 0x0000000000000002 = 0x0000000000000004 ++sllw 0x0000000000000001 0x0000000000000003 = 0x0000000000000008 ++sllw 0x0000000000000001 0x000000000000000F = 0x0000000000008000 ++sllw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000040000000 ++sllw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000020000000 ++sllw 0x0000000000000001 0x000000000000007F = 0xFFFFFFFF80000000 ++sllw 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++sllw 0x0000000000000001 0x0000000000007FFF = 0xFFFFFFFF80000000 ++sllw 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++sllw 0x0000000000000001 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++sllw 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++sllw 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++sllw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sllw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sllw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000010000 ++sllw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000040000 ++sllw 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++sllw 0x0000000000000002 0x0000000000000001 = 0x0000000000000004 ++sllw 0x0000000000000002 0x0000000000000002 = 0x0000000000000008 ++sllw 0x0000000000000002 0x0000000000000003 = 0x0000000000000010 ++sllw 0x0000000000000002 0x000000000000000F = 0x0000000000010000 ++sllw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++sllw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000040000000 ++sllw 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++sllw 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++sllw 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++sllw 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++sllw 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++sllw 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++sllw 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++sllw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++sllw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sllw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sllw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000020000 ++sllw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000080000 ++sllw 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++sllw 0x0000000000000003 0x0000000000000001 = 0x0000000000000006 ++sllw 0x0000000000000003 0x0000000000000002 = 0x000000000000000C ++sllw 0x0000000000000003 0x0000000000000003 = 0x0000000000000018 ++sllw 0x0000000000000003 0x000000000000000F = 0x0000000000018000 ++sllw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC0000000 ++sllw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000060000000 ++sllw 0x0000000000000003 0x000000000000007F = 0xFFFFFFFF80000000 ++sllw 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++sllw 0x0000000000000003 0x0000000000007FFF = 0xFFFFFFFF80000000 ++sllw 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++sllw 0x0000000000000003 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++sllw 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++sllw 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++sllw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sllw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sllw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000030000 ++sllw 0x0000000000000003 0xF0DEBC9A78563412 = 0x00000000000C0000 ++sllw 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++sllw 0x000000000000000F 0x0000000000000001 = 0x000000000000001E ++sllw 0x000000000000000F 0x0000000000000002 = 0x000000000000003C ++sllw 0x000000000000000F 0x0000000000000003 = 0x0000000000000078 ++sllw 0x000000000000000F 0x000000000000000F = 0x0000000000078000 ++sllw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC0000000 ++sllw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFE0000000 ++sllw 0x000000000000000F 0x000000000000007F = 0xFFFFFFFF80000000 ++sllw 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++sllw 0x000000000000000F 0x0000000000007FFF = 0xFFFFFFFF80000000 ++sllw 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++sllw 0x000000000000000F 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++sllw 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++sllw 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++sllw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sllw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sllw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x000000000000000F 0x123456789ABCDEF0 = 0x00000000000F0000 ++sllw 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000003C0000 ++sllw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++sllw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++sllw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFC ++sllw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF8 ++sllw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFF8000 ++sllw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC0000000 ++sllw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFE0000000 ++sllw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++sllw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++sllw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++sllw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++sllw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++sllw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sllw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sllw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF0000 ++sllw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFC0000 ++sllw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++sllw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFC ++sllw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFF8 ++sllw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFF0 ++sllw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFF0000 ++sllw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFC0000000 ++sllw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++sllw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++sllw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++sllw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++sllw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++sllw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++sllw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++sllw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFE0000 ++sllw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFF80000 ++sllw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++sllw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFA ++sllw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFF4 ++sllw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFE8 ++sllw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFE8000 ++sllw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000040000000 ++sllw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFA0000000 ++sllw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++sllw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++sllw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++sllw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++sllw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++sllw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++sllw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++sllw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFD0000 ++sllw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFF40000 ++sllw 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++sllw 0x000000000000007F 0x0000000000000001 = 0x00000000000000FE ++sllw 0x000000000000007F 0x0000000000000002 = 0x00000000000001FC ++sllw 0x000000000000007F 0x0000000000000003 = 0x00000000000003F8 ++sllw 0x000000000000007F 0x000000000000000F = 0x00000000003F8000 ++sllw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC0000000 ++sllw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFE0000000 ++sllw 0x000000000000007F 0x000000000000007F = 0xFFFFFFFF80000000 ++sllw 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++sllw 0x000000000000007F 0x0000000000007FFF = 0xFFFFFFFF80000000 ++sllw 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++sllw 0x000000000000007F 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++sllw 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++sllw 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++sllw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sllw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sllw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x000000000000007F 0x123456789ABCDEF0 = 0x00000000007F0000 ++sllw 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000001FC0000 ++sllw 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++sllw 0x0000000000000080 0x0000000000000001 = 0x0000000000000100 ++sllw 0x0000000000000080 0x0000000000000002 = 0x0000000000000200 ++sllw 0x0000000000000080 0x0000000000000003 = 0x0000000000000400 ++sllw 0x0000000000000080 0x000000000000000F = 0x0000000000400000 ++sllw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sllw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sllw 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++sllw 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sllw 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++sllw 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++sllw 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++sllw 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++sllw 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++sllw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++sllw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sllw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sllw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000800000 ++sllw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000002000000 ++sllw 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++sllw 0x0000000000007FFF 0x0000000000000001 = 0x000000000000FFFE ++sllw 0x0000000000007FFF 0x0000000000000002 = 0x000000000001FFFC ++sllw 0x0000000000007FFF 0x0000000000000003 = 0x000000000003FFF8 ++sllw 0x0000000000007FFF 0x000000000000000F = 0x000000003FFF8000 ++sllw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC0000000 ++sllw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFE0000000 ++sllw 0x0000000000007FFF 0x000000000000007F = 0xFFFFFFFF80000000 ++sllw 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++sllw 0x0000000000007FFF 0x0000000000007FFF = 0xFFFFFFFF80000000 ++sllw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++sllw 0x0000000000007FFF 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++sllw 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++sllw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++sllw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++sllw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++sllw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000007FFF0000 ++sllw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFC0000 ++sllw 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++sllw 0x0000000000008000 0x0000000000000001 = 0x0000000000010000 ++sllw 0x0000000000008000 0x0000000000000002 = 0x0000000000020000 ++sllw 0x0000000000008000 0x0000000000000003 = 0x0000000000040000 ++sllw 0x0000000000008000 0x000000000000000F = 0x0000000040000000 ++sllw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sllw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sllw 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++sllw 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++sllw 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++sllw 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sllw 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++sllw 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++sllw 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++sllw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++sllw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++sllw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++sllw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0x0000000000008000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++sllw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sllw 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++sllw 0x000000007FFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++sllw 0x000000007FFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFC ++sllw 0x000000007FFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF8 ++sllw 0x000000007FFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFF8000 ++sllw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC0000000 ++sllw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFE0000000 ++sllw 0x000000007FFFFFFF 0x000000000000007F = 0xFFFFFFFF80000000 ++sllw 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++sllw 0x000000007FFFFFFF 0x0000000000007FFF = 0xFFFFFFFF80000000 ++sllw 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++sllw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++sllw 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++sllw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++sllw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++sllw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++sllw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF0000 ++sllw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFC0000 ++sllw 0x0000000080000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++sllw 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++sllw 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++sllw 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++sllw 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++sllw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sllw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sllw 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++sllw 0x0000000080000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++sllw 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++sllw 0x0000000080000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++sllw 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++sllw 0x0000000080000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++sllw 0x0000000080000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++sllw 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sllw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++sllw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++sllw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sllw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sllw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++sllw 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++sllw 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++sllw 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++sllw 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++sllw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sllw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sllw 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++sllw 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++sllw 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++sllw 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++sllw 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++sllw 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++sllw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++sllw 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sllw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sllw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sllw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sllw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sllw 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++sllw 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++sllw 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++sllw 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++sllw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sllw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sllw 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++sllw 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++sllw 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++sllw 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sllw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++sllw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF0000 ++sllw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFE0000 ++sllw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFC0000 ++sllw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFC0000000 ++sllw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++sllw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++sllw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++sllw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++sllw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++sllw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sllw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++sllw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++sllw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++sllw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF00 ++sllw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFE00 ++sllw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFC00 ++sllw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFC00000 ++sllw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++sllw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++sllw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++sllw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++sllw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++sllw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++sllw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sllw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFF800000 ++sllw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFE000000 ++sllw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++sllw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++sllw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFC ++sllw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF8 ++sllw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFF8000 ++sllw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC0000000 ++sllw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFE0000000 ++sllw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFF80000000 ++sllw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++sllw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFF80000000 ++sllw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++sllw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++sllw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++sllw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++sllw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sllw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sllw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF0000 ++sllw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFC0000 ++sllw 0x123456789ABCDEF0 0x0000000000000000 = 0xFFFFFFFF9ABCDEF0 ++sllw 0x123456789ABCDEF0 0x0000000000000001 = 0x000000003579BDE0 ++sllw 0x123456789ABCDEF0 0x0000000000000002 = 0x000000006AF37BC0 ++sllw 0x123456789ABCDEF0 0x0000000000000003 = 0xFFFFFFFFD5E6F780 ++sllw 0x123456789ABCDEF0 0x000000000000000F = 0x000000006F780000 ++sllw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sllw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sllw 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++sllw 0x123456789ABCDEF0 0x0000000000000080 = 0xFFFFFFFF9ABCDEF0 ++sllw 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++sllw 0x123456789ABCDEF0 0x0000000000008000 = 0xFFFFFFFF9ABCDEF0 ++sllw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++sllw 0x123456789ABCDEF0 0x0000000080000000 = 0xFFFFFFFF9ABCDEF0 ++sllw 0x123456789ABCDEF0 0x8000000000000000 = 0xFFFFFFFF9ABCDEF0 ++sllw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF9ABCDEF0 ++sllw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF9ABCDEF0 ++sllw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF9ABCDEF0 ++sllw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0xFFFFFFFFDEF00000 ++sllw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000007BC00000 ++sllw 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000078563412 ++sllw 0xF0DEBC9A78563412 0x0000000000000001 = 0xFFFFFFFFF0AC6824 ++sllw 0xF0DEBC9A78563412 0x0000000000000002 = 0xFFFFFFFFE158D048 ++sllw 0xF0DEBC9A78563412 0x0000000000000003 = 0xFFFFFFFFC2B1A090 ++sllw 0xF0DEBC9A78563412 0x000000000000000F = 0x000000001A090000 ++sllw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++sllw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000040000000 ++sllw 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000000 ++sllw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000078563412 ++sllw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000000 ++sllw 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000078563412 ++sllw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++sllw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000078563412 ++sllw 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000078563412 ++sllw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000078563412 ++sllw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000078563412 ++sllw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000078563412 ++sllw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sllw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000034120000 ++sllw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xFFFFFFFFD0480000 ++=== Running test on srlw === ++srlw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++srlw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++srlw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++srlw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++srlw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++srlw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srlw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srlw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++srlw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++srlw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++srlw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++srlw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++srlw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++srlw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++srlw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++srlw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++srlw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++srlw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++srlw 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++srlw 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++srlw 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++srlw 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++srlw 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++srlw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srlw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srlw 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++srlw 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++srlw 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++srlw 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++srlw 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++srlw 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++srlw 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++srlw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++srlw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++srlw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++srlw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++srlw 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++srlw 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++srlw 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++srlw 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++srlw 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++srlw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srlw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srlw 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++srlw 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++srlw 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++srlw 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++srlw 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++srlw 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++srlw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++srlw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++srlw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++srlw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++srlw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++srlw 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++srlw 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++srlw 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++srlw 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++srlw 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++srlw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srlw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srlw 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++srlw 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++srlw 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++srlw 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++srlw 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++srlw 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++srlw 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++srlw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++srlw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++srlw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++srlw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++srlw 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++srlw 0x000000000000000F 0x0000000000000001 = 0x0000000000000007 ++srlw 0x000000000000000F 0x0000000000000002 = 0x0000000000000003 ++srlw 0x000000000000000F 0x0000000000000003 = 0x0000000000000001 ++srlw 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++srlw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srlw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srlw 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++srlw 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++srlw 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++srlw 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++srlw 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++srlw 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++srlw 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++srlw 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++srlw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++srlw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++srlw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++srlw 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++srlw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++srlw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++srlw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000003FFFFFFF ++srlw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000001FFFFFFF ++srlw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000001FFFF ++srlw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++srlw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++srlw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++srlw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++srlw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++srlw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++srlw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++srlw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++srlw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++srlw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000FFFF ++srlw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000003FFF ++srlw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++srlw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000007FFFFFFF ++srlw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000003FFFFFFF ++srlw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000001FFFFFFF ++srlw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000001FFFF ++srlw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++srlw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++srlw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++srlw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++srlw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++srlw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++srlw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++srlw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++srlw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++srlw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000000000FFFF ++srlw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000003FFF ++srlw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++srlw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x000000007FFFFFFE ++srlw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000003FFFFFFF ++srlw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000001FFFFFFF ++srlw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000001FFFF ++srlw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++srlw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++srlw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++srlw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++srlw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++srlw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++srlw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++srlw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++srlw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++srlw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000000000FFFF ++srlw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000003FFF ++srlw 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++srlw 0x000000000000007F 0x0000000000000001 = 0x000000000000003F ++srlw 0x000000000000007F 0x0000000000000002 = 0x000000000000001F ++srlw 0x000000000000007F 0x0000000000000003 = 0x000000000000000F ++srlw 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++srlw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srlw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srlw 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++srlw 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++srlw 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++srlw 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++srlw 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++srlw 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++srlw 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++srlw 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++srlw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++srlw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++srlw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++srlw 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++srlw 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++srlw 0x0000000000000080 0x0000000000000001 = 0x0000000000000040 ++srlw 0x0000000000000080 0x0000000000000002 = 0x0000000000000020 ++srlw 0x0000000000000080 0x0000000000000003 = 0x0000000000000010 ++srlw 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++srlw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srlw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srlw 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++srlw 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++srlw 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++srlw 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++srlw 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++srlw 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++srlw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++srlw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++srlw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++srlw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++srlw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++srlw 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++srlw 0x0000000000007FFF 0x0000000000000001 = 0x0000000000003FFF ++srlw 0x0000000000007FFF 0x0000000000000002 = 0x0000000000001FFF ++srlw 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000FFF ++srlw 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++srlw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srlw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srlw 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++srlw 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++srlw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++srlw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++srlw 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++srlw 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++srlw 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++srlw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++srlw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++srlw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++srlw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++srlw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++srlw 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++srlw 0x0000000000008000 0x0000000000000001 = 0x0000000000004000 ++srlw 0x0000000000008000 0x0000000000000002 = 0x0000000000002000 ++srlw 0x0000000000008000 0x0000000000000003 = 0x0000000000001000 ++srlw 0x0000000000008000 0x000000000000000F = 0x0000000000000001 ++srlw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srlw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srlw 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++srlw 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++srlw 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++srlw 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++srlw 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++srlw 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++srlw 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++srlw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++srlw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++srlw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++srlw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++srlw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++srlw 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++srlw 0x000000007FFFFFFF 0x0000000000000001 = 0x000000003FFFFFFF ++srlw 0x000000007FFFFFFF 0x0000000000000002 = 0x000000001FFFFFFF ++srlw 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000FFFFFFF ++srlw 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000FFFF ++srlw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++srlw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++srlw 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++srlw 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++srlw 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++srlw 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++srlw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++srlw 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++srlw 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++srlw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++srlw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++srlw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++srlw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++srlw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000001FFF ++srlw 0x0000000080000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++srlw 0x0000000080000000 0x0000000000000001 = 0x0000000040000000 ++srlw 0x0000000080000000 0x0000000000000002 = 0x0000000020000000 ++srlw 0x0000000080000000 0x0000000000000003 = 0x0000000010000000 ++srlw 0x0000000080000000 0x000000000000000F = 0x0000000000010000 ++srlw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++srlw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000004 ++srlw 0x0000000080000000 0x000000000000007F = 0x0000000000000001 ++srlw 0x0000000080000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++srlw 0x0000000080000000 0x0000000000007FFF = 0x0000000000000001 ++srlw 0x0000000080000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++srlw 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000001 ++srlw 0x0000000080000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++srlw 0x0000000080000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++srlw 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++srlw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++srlw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++srlw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000008000 ++srlw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000002000 ++srlw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++srlw 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++srlw 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++srlw 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++srlw 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++srlw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srlw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srlw 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++srlw 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++srlw 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++srlw 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++srlw 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++srlw 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++srlw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++srlw 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++srlw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++srlw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++srlw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++srlw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++srlw 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++srlw 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000040000000 ++srlw 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000020000000 ++srlw 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000010000000 ++srlw 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000010000 ++srlw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++srlw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000004 ++srlw 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000001 ++srlw 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++srlw 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000001 ++srlw 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++srlw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++srlw 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++srlw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++srlw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++srlw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++srlw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000008000 ++srlw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000002000 ++srlw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++srlw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x000000007FFFC000 ++srlw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x000000003FFFE000 ++srlw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x000000001FFFF000 ++srlw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000001FFFF ++srlw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++srlw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++srlw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++srlw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++srlw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++srlw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++srlw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++srlw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++srlw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++srlw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x000000000000FFFF ++srlw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000003FFF ++srlw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++srlw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000007FFFFFC0 ++srlw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000003FFFFFE0 ++srlw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000001FFFFFF0 ++srlw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000001FFFF ++srlw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++srlw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++srlw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++srlw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++srlw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++srlw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++srlw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++srlw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++srlw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++srlw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000000000FFFF ++srlw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000003FFF ++srlw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++srlw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++srlw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000003FFFFFFF ++srlw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000001FFFFFFF ++srlw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000001FFFF ++srlw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++srlw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++srlw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000001 ++srlw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++srlw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++srlw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++srlw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++srlw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++srlw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++srlw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++srlw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++srlw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++srlw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000FFFF ++srlw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000003FFF ++srlw 0x123456789ABCDEF0 0x0000000000000000 = 0xFFFFFFFF9ABCDEF0 ++srlw 0x123456789ABCDEF0 0x0000000000000001 = 0x000000004D5E6F78 ++srlw 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000026AF37BC ++srlw 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000013579BDE ++srlw 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000013579 ++srlw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++srlw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000004 ++srlw 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000001 ++srlw 0x123456789ABCDEF0 0x0000000000000080 = 0xFFFFFFFF9ABCDEF0 ++srlw 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000001 ++srlw 0x123456789ABCDEF0 0x0000000000008000 = 0xFFFFFFFF9ABCDEF0 ++srlw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000001 ++srlw 0x123456789ABCDEF0 0x0000000080000000 = 0xFFFFFFFF9ABCDEF0 ++srlw 0x123456789ABCDEF0 0x8000000000000000 = 0xFFFFFFFF9ABCDEF0 ++srlw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF9ABCDEF0 ++srlw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF9ABCDEF0 ++srlw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF9ABCDEF0 ++srlw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000009ABC ++srlw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x00000000000026AF ++srlw 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000078563412 ++srlw 0xF0DEBC9A78563412 0x0000000000000001 = 0x000000003C2B1A09 ++srlw 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000001E158D04 ++srlw 0xF0DEBC9A78563412 0x0000000000000003 = 0x000000000F0AC682 ++srlw 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000F0AC ++srlw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++srlw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++srlw 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000000 ++srlw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000078563412 ++srlw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000000 ++srlw 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000078563412 ++srlw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++srlw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000078563412 ++srlw 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000078563412 ++srlw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000078563412 ++srlw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000078563412 ++srlw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000078563412 ++srlw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srlw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000007856 ++srlw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000001E15 ++=== Running test on sraw === ++sraw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sraw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++sraw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++sraw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++sraw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++sraw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sraw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sraw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++sraw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++sraw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++sraw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++sraw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++sraw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++sraw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sraw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sraw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sraw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sraw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sraw 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++sraw 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++sraw 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++sraw 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++sraw 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++sraw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sraw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sraw 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++sraw 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++sraw 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++sraw 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++sraw 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++sraw 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++sraw 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++sraw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sraw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sraw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++sraw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++sraw 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++sraw 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sraw 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++sraw 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++sraw 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++sraw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sraw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sraw 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++sraw 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++sraw 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++sraw 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++sraw 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++sraw 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++sraw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++sraw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sraw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sraw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++sraw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++sraw 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++sraw 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sraw 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++sraw 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++sraw 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++sraw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sraw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sraw 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++sraw 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++sraw 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++sraw 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++sraw 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++sraw 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++sraw 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++sraw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sraw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sraw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++sraw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++sraw 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++sraw 0x000000000000000F 0x0000000000000001 = 0x0000000000000007 ++sraw 0x000000000000000F 0x0000000000000002 = 0x0000000000000003 ++sraw 0x000000000000000F 0x0000000000000003 = 0x0000000000000001 ++sraw 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++sraw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sraw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sraw 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++sraw 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++sraw 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++sraw 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++sraw 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++sraw 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++sraw 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++sraw 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++sraw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sraw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sraw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++sraw 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++sraw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++sraw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++sraw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++sraw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++sraw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++sraw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++sraw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++sraw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++sraw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++sraw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++sraw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++sraw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++sraw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++sraw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++sraw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++sraw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++sraw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++sraw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++sraw 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++sraw 0x000000000000007F 0x0000000000000001 = 0x000000000000003F ++sraw 0x000000000000007F 0x0000000000000002 = 0x000000000000001F ++sraw 0x000000000000007F 0x0000000000000003 = 0x000000000000000F ++sraw 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++sraw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sraw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sraw 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++sraw 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++sraw 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++sraw 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++sraw 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++sraw 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++sraw 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++sraw 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++sraw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sraw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sraw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++sraw 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++sraw 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++sraw 0x0000000000000080 0x0000000000000001 = 0x0000000000000040 ++sraw 0x0000000000000080 0x0000000000000002 = 0x0000000000000020 ++sraw 0x0000000000000080 0x0000000000000003 = 0x0000000000000010 ++sraw 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++sraw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sraw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sraw 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++sraw 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sraw 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++sraw 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++sraw 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++sraw 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++sraw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++sraw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sraw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sraw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++sraw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++sraw 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++sraw 0x0000000000007FFF 0x0000000000000001 = 0x0000000000003FFF ++sraw 0x0000000000007FFF 0x0000000000000002 = 0x0000000000001FFF ++sraw 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000FFF ++sraw 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++sraw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sraw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sraw 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++sraw 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++sraw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++sraw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++sraw 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++sraw 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++sraw 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++sraw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++sraw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++sraw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++sraw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++sraw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++sraw 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++sraw 0x0000000000008000 0x0000000000000001 = 0x0000000000004000 ++sraw 0x0000000000008000 0x0000000000000002 = 0x0000000000002000 ++sraw 0x0000000000008000 0x0000000000000003 = 0x0000000000001000 ++sraw 0x0000000000008000 0x000000000000000F = 0x0000000000000001 ++sraw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sraw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sraw 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++sraw 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++sraw 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++sraw 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sraw 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++sraw 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++sraw 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++sraw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++sraw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++sraw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++sraw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++sraw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sraw 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++sraw 0x000000007FFFFFFF 0x0000000000000001 = 0x000000003FFFFFFF ++sraw 0x000000007FFFFFFF 0x0000000000000002 = 0x000000001FFFFFFF ++sraw 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000FFFFFFF ++sraw 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000FFFF ++sraw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sraw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sraw 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++sraw 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++sraw 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++sraw 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++sraw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++sraw 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++sraw 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++sraw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++sraw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++sraw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++sraw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++sraw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000001FFF ++sraw 0x0000000080000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++sraw 0x0000000080000000 0x0000000000000001 = 0xFFFFFFFFC0000000 ++sraw 0x0000000080000000 0x0000000000000002 = 0xFFFFFFFFE0000000 ++sraw 0x0000000080000000 0x0000000000000003 = 0xFFFFFFFFF0000000 ++sraw 0x0000000080000000 0x000000000000000F = 0xFFFFFFFFFFFF0000 ++sraw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sraw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++sraw 0x0000000080000000 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sraw 0x0000000080000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++sraw 0x0000000080000000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sraw 0x0000000080000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++sraw 0x0000000080000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0x0000000080000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++sraw 0x0000000080000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++sraw 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sraw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++sraw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++sraw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0x0000000080000000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++sraw 0x0000000080000000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFE000 ++sraw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++sraw 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++sraw 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++sraw 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++sraw 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++sraw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sraw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sraw 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++sraw 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++sraw 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++sraw 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++sraw 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++sraw 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++sraw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++sraw 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sraw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sraw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sraw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sraw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sraw 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++sraw 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFFC0000000 ++sraw 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFFE0000000 ++sraw 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFFF0000000 ++sraw 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFFFFFF0000 ++sraw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sraw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++sraw 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++sraw 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++sraw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++sraw 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++sraw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sraw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++sraw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++sraw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++sraw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFE000 ++sraw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++sraw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFFC000 ++sraw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFFE000 ++sraw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFFF000 ++sraw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++sraw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++sraw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++sraw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++sraw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++sraw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sraw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++sraw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++sraw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFFC0 ++sraw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFFE0 ++sraw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFFF0 ++sraw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++sraw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++sraw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++sraw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++sraw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++sraw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++sraw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sraw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sraw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sraw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++sraw 0x123456789ABCDEF0 0x0000000000000000 = 0xFFFFFFFF9ABCDEF0 ++sraw 0x123456789ABCDEF0 0x0000000000000001 = 0xFFFFFFFFCD5E6F78 ++sraw 0x123456789ABCDEF0 0x0000000000000002 = 0xFFFFFFFFE6AF37BC ++sraw 0x123456789ABCDEF0 0x0000000000000003 = 0xFFFFFFFFF3579BDE ++sraw 0x123456789ABCDEF0 0x000000000000000F = 0xFFFFFFFFFFFF3579 ++sraw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sraw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++sraw 0x123456789ABCDEF0 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sraw 0x123456789ABCDEF0 0x0000000000000080 = 0xFFFFFFFF9ABCDEF0 ++sraw 0x123456789ABCDEF0 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sraw 0x123456789ABCDEF0 0x0000000000008000 = 0xFFFFFFFF9ABCDEF0 ++sraw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0x123456789ABCDEF0 0x0000000080000000 = 0xFFFFFFFF9ABCDEF0 ++sraw 0x123456789ABCDEF0 0x8000000000000000 = 0xFFFFFFFF9ABCDEF0 ++sraw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF9ABCDEF0 ++sraw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF9ABCDEF0 ++sraw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF9ABCDEF0 ++sraw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF9ABC ++sraw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFE6AF ++sraw 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000078563412 ++sraw 0xF0DEBC9A78563412 0x0000000000000001 = 0x000000003C2B1A09 ++sraw 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000001E158D04 ++sraw 0xF0DEBC9A78563412 0x0000000000000003 = 0x000000000F0AC682 ++sraw 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000F0AC ++sraw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sraw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sraw 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000000 ++sraw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000078563412 ++sraw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000000 ++sraw 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000078563412 ++sraw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++sraw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000078563412 ++sraw 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000078563412 ++sraw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000078563412 ++sraw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000078563412 ++sraw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000078563412 ++sraw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sraw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000007856 ++sraw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000001E15 ++=== Running test on rolw === ++rolw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++rolw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++rolw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++rolw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++rolw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++rolw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++rolw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++rolw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++rolw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++rolw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++rolw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++rolw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++rolw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++rolw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++rolw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++rolw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++rolw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++rolw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++rolw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++rolw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++rolw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++rolw 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++rolw 0x0000000000000001 0x0000000000000001 = 0x0000000000000002 ++rolw 0x0000000000000001 0x0000000000000002 = 0x0000000000000004 ++rolw 0x0000000000000001 0x0000000000000003 = 0x0000000000000008 ++rolw 0x0000000000000001 0x000000000000000F = 0x0000000000008000 ++rolw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++rolw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000040000000 ++rolw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000020000000 ++rolw 0x0000000000000001 0x000000000000007F = 0xFFFFFFFF80000000 ++rolw 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++rolw 0x0000000000000001 0x0000000000007FFF = 0xFFFFFFFF80000000 ++rolw 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++rolw 0x0000000000000001 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++rolw 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++rolw 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++rolw 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++rolw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++rolw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++rolw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++rolw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000010000 ++rolw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000040000 ++rolw 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++rolw 0x0000000000000002 0x0000000000000001 = 0x0000000000000004 ++rolw 0x0000000000000002 0x0000000000000002 = 0x0000000000000008 ++rolw 0x0000000000000002 0x0000000000000003 = 0x0000000000000010 ++rolw 0x0000000000000002 0x000000000000000F = 0x0000000000010000 ++rolw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++rolw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++rolw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000040000000 ++rolw 0x0000000000000002 0x000000000000007F = 0x0000000000000001 ++rolw 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++rolw 0x0000000000000002 0x0000000000007FFF = 0x0000000000000001 ++rolw 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++rolw 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000001 ++rolw 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++rolw 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++rolw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++rolw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++rolw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++rolw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++rolw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000020000 ++rolw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000080000 ++rolw 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++rolw 0x0000000000000003 0x0000000000000001 = 0x0000000000000006 ++rolw 0x0000000000000003 0x0000000000000002 = 0x000000000000000C ++rolw 0x0000000000000003 0x0000000000000003 = 0x0000000000000018 ++rolw 0x0000000000000003 0x000000000000000F = 0x0000000000018000 ++rolw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000001 ++rolw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC0000000 ++rolw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000060000000 ++rolw 0x0000000000000003 0x000000000000007F = 0xFFFFFFFF80000001 ++rolw 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++rolw 0x0000000000000003 0x0000000000007FFF = 0xFFFFFFFF80000001 ++rolw 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++rolw 0x0000000000000003 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++rolw 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++rolw 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++rolw 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++rolw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++rolw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++rolw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000001 ++rolw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000030000 ++rolw 0x0000000000000003 0xF0DEBC9A78563412 = 0x00000000000C0000 ++rolw 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++rolw 0x000000000000000F 0x0000000000000001 = 0x000000000000001E ++rolw 0x000000000000000F 0x0000000000000002 = 0x000000000000003C ++rolw 0x000000000000000F 0x0000000000000003 = 0x0000000000000078 ++rolw 0x000000000000000F 0x000000000000000F = 0x0000000000078000 ++rolw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000007 ++rolw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC0000003 ++rolw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFE0000001 ++rolw 0x000000000000000F 0x000000000000007F = 0xFFFFFFFF80000007 ++rolw 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++rolw 0x000000000000000F 0x0000000000007FFF = 0xFFFFFFFF80000007 ++rolw 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++rolw 0x000000000000000F 0x000000007FFFFFFF = 0xFFFFFFFF80000007 ++rolw 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++rolw 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++rolw 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++rolw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++rolw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++rolw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000007 ++rolw 0x000000000000000F 0x123456789ABCDEF0 = 0x00000000000F0000 ++rolw 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000003C0000 ++rolw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++rolw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++rolw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFB ++rolw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFF7 ++rolw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFF7FFF ++rolw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++rolw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFBFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFDFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000007FFFFFFF ++rolw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++rolw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x000000007FFFFFFF ++rolw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++rolw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++rolw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++rolw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++rolw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++rolw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++rolw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++rolw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++rolw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFEFFFF ++rolw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFBFFFF ++rolw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++rolw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFB ++rolw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFF7 ++rolw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFEF ++rolw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFEFFFF ++rolw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++rolw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++rolw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFBFFFFFFF ++rolw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFFFE ++rolw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++rolw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++rolw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++rolw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++rolw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++rolw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++rolw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++rolw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++rolw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++rolw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++rolw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFDFFFF ++rolw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFF7FFFF ++rolw 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++rolw 0x000000000000007F 0x0000000000000001 = 0x00000000000000FE ++rolw 0x000000000000007F 0x0000000000000002 = 0x00000000000001FC ++rolw 0x000000000000007F 0x0000000000000003 = 0x00000000000003F8 ++rolw 0x000000000000007F 0x000000000000000F = 0x00000000003F8000 ++rolw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF8000003F ++rolw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC000001F ++rolw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFE000000F ++rolw 0x000000000000007F 0x000000000000007F = 0xFFFFFFFF8000003F ++rolw 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++rolw 0x000000000000007F 0x0000000000007FFF = 0xFFFFFFFF8000003F ++rolw 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++rolw 0x000000000000007F 0x000000007FFFFFFF = 0xFFFFFFFF8000003F ++rolw 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++rolw 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++rolw 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++rolw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++rolw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++rolw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF8000003F ++rolw 0x000000000000007F 0x123456789ABCDEF0 = 0x00000000007F0000 ++rolw 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000001FC0000 ++rolw 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++rolw 0x0000000000000080 0x0000000000000001 = 0x0000000000000100 ++rolw 0x0000000000000080 0x0000000000000002 = 0x0000000000000200 ++rolw 0x0000000000000080 0x0000000000000003 = 0x0000000000000400 ++rolw 0x0000000000000080 0x000000000000000F = 0x0000000000400000 ++rolw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000040 ++rolw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000020 ++rolw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000010 ++rolw 0x0000000000000080 0x000000000000007F = 0x0000000000000040 ++rolw 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++rolw 0x0000000000000080 0x0000000000007FFF = 0x0000000000000040 ++rolw 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++rolw 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000040 ++rolw 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++rolw 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++rolw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++rolw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++rolw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++rolw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000040 ++rolw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000800000 ++rolw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000002000000 ++rolw 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++rolw 0x0000000000007FFF 0x0000000000000001 = 0x000000000000FFFE ++rolw 0x0000000000007FFF 0x0000000000000002 = 0x000000000001FFFC ++rolw 0x0000000000007FFF 0x0000000000000003 = 0x000000000003FFF8 ++rolw 0x0000000000007FFF 0x000000000000000F = 0x000000003FFF8000 ++rolw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80003FFF ++rolw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC0001FFF ++rolw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFE0000FFF ++rolw 0x0000000000007FFF 0x000000000000007F = 0xFFFFFFFF80003FFF ++rolw 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++rolw 0x0000000000007FFF 0x0000000000007FFF = 0xFFFFFFFF80003FFF ++rolw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++rolw 0x0000000000007FFF 0x000000007FFFFFFF = 0xFFFFFFFF80003FFF ++rolw 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++rolw 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++rolw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++rolw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++rolw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++rolw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80003FFF ++rolw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000007FFF0000 ++rolw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFC0001 ++rolw 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++rolw 0x0000000000008000 0x0000000000000001 = 0x0000000000010000 ++rolw 0x0000000000008000 0x0000000000000002 = 0x0000000000020000 ++rolw 0x0000000000008000 0x0000000000000003 = 0x0000000000040000 ++rolw 0x0000000000008000 0x000000000000000F = 0x0000000040000000 ++rolw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000004000 ++rolw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000002000 ++rolw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000001000 ++rolw 0x0000000000008000 0x000000000000007F = 0x0000000000004000 ++rolw 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++rolw 0x0000000000008000 0x0000000000007FFF = 0x0000000000004000 ++rolw 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++rolw 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000004000 ++rolw 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++rolw 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++rolw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++rolw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++rolw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++rolw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000004000 ++rolw 0x0000000000008000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++rolw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000002 ++rolw 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++rolw 0x000000007FFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++rolw 0x000000007FFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++rolw 0x000000007FFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFB ++rolw 0x000000007FFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFBFFF ++rolw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFBFFFFFFF ++rolw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFDFFFFFFF ++rolw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFEFFFFFFF ++rolw 0x000000007FFFFFFF 0x000000000000007F = 0xFFFFFFFFBFFFFFFF ++rolw 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++rolw 0x000000007FFFFFFF 0x0000000000007FFF = 0xFFFFFFFFBFFFFFFF ++rolw 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++rolw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFBFFFFFFF ++rolw 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++rolw 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++rolw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++rolw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++rolw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++rolw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFBFFFFFFF ++rolw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF7FFF ++rolw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFDFFFF ++rolw 0x0000000080000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++rolw 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++rolw 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++rolw 0x0000000080000000 0x0000000000000003 = 0x0000000000000004 ++rolw 0x0000000080000000 0x000000000000000F = 0x0000000000004000 ++rolw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000040000000 ++rolw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000020000000 ++rolw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000010000000 ++rolw 0x0000000080000000 0x000000000000007F = 0x0000000040000000 ++rolw 0x0000000080000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++rolw 0x0000000080000000 0x0000000000007FFF = 0x0000000040000000 ++rolw 0x0000000080000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++rolw 0x0000000080000000 0x000000007FFFFFFF = 0x0000000040000000 ++rolw 0x0000000080000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++rolw 0x0000000080000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++rolw 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++rolw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++rolw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++rolw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000040000000 ++rolw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000008000 ++rolw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000020000 ++rolw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++rolw 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++rolw 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++rolw 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++rolw 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++rolw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++rolw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++rolw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++rolw 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++rolw 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++rolw 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++rolw 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++rolw 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++rolw 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++rolw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++rolw 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++rolw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++rolw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++rolw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++rolw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++rolw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++rolw 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++rolw 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++rolw 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++rolw 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000004 ++rolw 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000004000 ++rolw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000040000000 ++rolw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000020000000 ++rolw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000010000000 ++rolw 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000040000000 ++rolw 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++rolw 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000040000000 ++rolw 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++rolw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000040000000 ++rolw 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++rolw 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++rolw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++rolw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++rolw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++rolw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000040000000 ++rolw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000008000 ++rolw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000020000 ++rolw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++rolw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF0001 ++rolw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFE0003 ++rolw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFC0007 ++rolw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFC0007FFF ++rolw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x000000007FFFC000 ++rolw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000003FFFE000 ++rolw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000001FFFF000 ++rolw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000007FFFC000 ++rolw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++rolw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x000000007FFFC000 ++rolw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++rolw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFC000 ++rolw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++rolw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++rolw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++rolw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++rolw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++rolw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x000000007FFFC000 ++rolw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFF8000FFFF ++rolw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000000003FFFE ++rolw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++rolw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF01 ++rolw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFE03 ++rolw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFC07 ++rolw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFC07FFF ++rolw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFC0 ++rolw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000003FFFFFE0 ++rolw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000001FFFFFF0 ++rolw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000007FFFFFC0 ++rolw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++rolw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x000000007FFFFFC0 ++rolw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++rolw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFC0 ++rolw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++rolw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++rolw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++rolw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++rolw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++rolw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFC0 ++rolw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFF80FFFF ++rolw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFE03FFFF ++rolw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++rolw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++rolw 0x123456789ABCDEF0 0x0000000000000000 = 0xFFFFFFFF9ABCDEF0 ++rolw 0x123456789ABCDEF0 0x0000000000000001 = 0x000000003579BDE1 ++rolw 0x123456789ABCDEF0 0x0000000000000002 = 0x000000006AF37BC2 ++rolw 0x123456789ABCDEF0 0x0000000000000003 = 0xFFFFFFFFD5E6F784 ++rolw 0x123456789ABCDEF0 0x000000000000000F = 0x000000006F784D5E ++rolw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000004D5E6F78 ++rolw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000026AF37BC ++rolw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000013579BDE ++rolw 0x123456789ABCDEF0 0x000000000000007F = 0x000000004D5E6F78 ++rolw 0x123456789ABCDEF0 0x0000000000000080 = 0xFFFFFFFF9ABCDEF0 ++rolw 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000004D5E6F78 ++rolw 0x123456789ABCDEF0 0x0000000000008000 = 0xFFFFFFFF9ABCDEF0 ++rolw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000004D5E6F78 ++rolw 0x123456789ABCDEF0 0x0000000080000000 = 0xFFFFFFFF9ABCDEF0 ++rolw 0x123456789ABCDEF0 0x8000000000000000 = 0xFFFFFFFF9ABCDEF0 ++rolw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF9ABCDEF0 ++rolw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF9ABCDEF0 ++rolw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF9ABCDEF0 ++rolw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000004D5E6F78 ++rolw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0xFFFFFFFFDEF09ABC ++rolw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000007BC26AF3 ++rolw 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000078563412 ++rolw 0xF0DEBC9A78563412 0x0000000000000001 = 0xFFFFFFFFF0AC6824 ++rolw 0xF0DEBC9A78563412 0x0000000000000002 = 0xFFFFFFFFE158D049 ++rolw 0xF0DEBC9A78563412 0x0000000000000003 = 0xFFFFFFFFC2B1A093 ++rolw 0xF0DEBC9A78563412 0x000000000000000F = 0x000000001A093C2B ++rolw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x000000003C2B1A09 ++rolw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF9E158D04 ++rolw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x000000004F0AC682 ++rolw 0xF0DEBC9A78563412 0x000000000000007F = 0x000000003C2B1A09 ++rolw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000078563412 ++rolw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000003C2B1A09 ++rolw 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000078563412 ++rolw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000003C2B1A09 ++rolw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000078563412 ++rolw 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000078563412 ++rolw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000078563412 ++rolw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000078563412 ++rolw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000078563412 ++rolw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x000000003C2B1A09 ++rolw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000034127856 ++rolw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xFFFFFFFFD049E158 ++=== Running test on crc32b === ++crc32b 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32b 0x0000000000000000 0x0000000000000001 = 0x0000000077073096 ++crc32b 0x0000000000000000 0x0000000000000002 = 0x00000000EE0E612C ++crc32b 0x0000000000000000 0x0000000000000003 = 0x00000000990951BA ++crc32b 0x0000000000000000 0x000000000000000F = 0x0000000090BF1D91 ++crc32b 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000002D02EF8D ++crc32b 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000005A05DF1B ++crc32b 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x00000000C30C8EA1 ++crc32b 0x0000000000000000 0x000000000000007F = 0x00000000C0BA6CAD ++crc32b 0x0000000000000000 0x0000000000000080 = 0x00000000EDB88320 ++crc32b 0x0000000000000000 0x0000000000007FFF = 0x000000002D02EF8D ++crc32b 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++crc32b 0x0000000000000000 0x000000007FFFFFFF = 0x000000002D02EF8D ++crc32b 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++crc32b 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++crc32b 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++crc32b 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++crc32b 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000EDB88320 ++crc32b 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000002D02EF8D ++crc32b 0x0000000000000000 0x123456789ABCDEF0 = 0x00000000BDBDF21C ++crc32b 0x0000000000000000 0xF0DEBC9A78563412 = 0x00000000F3B97148 ++crc32b 0x0000000000000001 0x0000000000000000 = 0x0000000077073096 ++crc32b 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++crc32b 0x0000000000000001 0x0000000000000002 = 0x00000000990951BA ++crc32b 0x0000000000000001 0x0000000000000003 = 0x00000000EE0E612C ++crc32b 0x0000000000000001 0x000000000000000F = 0x00000000E7B82D07 ++crc32b 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x000000005A05DF1B ++crc32b 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x000000002D02EF8D ++crc32b 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x00000000B40BBE37 ++crc32b 0x0000000000000001 0x000000000000007F = 0x00000000B7BD5C3B ++crc32b 0x0000000000000001 0x0000000000000080 = 0x000000009ABFB3B6 ++crc32b 0x0000000000000001 0x0000000000007FFF = 0x000000005A05DF1B ++crc32b 0x0000000000000001 0x0000000000008000 = 0x0000000077073096 ++crc32b 0x0000000000000001 0x000000007FFFFFFF = 0x000000005A05DF1B ++crc32b 0x0000000000000001 0x0000000080000000 = 0x0000000077073096 ++crc32b 0x0000000000000001 0x8000000000000000 = 0x0000000077073096 ++crc32b 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000077073096 ++crc32b 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000077073096 ++crc32b 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x000000009ABFB3B6 ++crc32b 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x000000005A05DF1B ++crc32b 0x0000000000000001 0x123456789ABCDEF0 = 0x00000000CABAC28A ++crc32b 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000084BE41DE ++crc32b 0x0000000000000002 0x0000000000000000 = 0x00000000EE0E612C ++crc32b 0x0000000000000002 0x0000000000000001 = 0x00000000990951BA ++crc32b 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++crc32b 0x0000000000000002 0x0000000000000003 = 0x0000000077073096 ++crc32b 0x0000000000000002 0x000000000000000F = 0x000000007EB17CBD ++crc32b 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x00000000C30C8EA1 ++crc32b 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x00000000B40BBE37 ++crc32b 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x000000002D02EF8D ++crc32b 0x0000000000000002 0x000000000000007F = 0x000000002EB40D81 ++crc32b 0x0000000000000002 0x0000000000000080 = 0x0000000003B6E20C ++crc32b 0x0000000000000002 0x0000000000007FFF = 0x00000000C30C8EA1 ++crc32b 0x0000000000000002 0x0000000000008000 = 0x00000000EE0E612C ++crc32b 0x0000000000000002 0x000000007FFFFFFF = 0x00000000C30C8EA1 ++crc32b 0x0000000000000002 0x0000000080000000 = 0x00000000EE0E612C ++crc32b 0x0000000000000002 0x8000000000000000 = 0x00000000EE0E612C ++crc32b 0x0000000000000002 0xFFFFFFFF80000000 = 0x00000000EE0E612C ++crc32b 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x00000000EE0E612C ++crc32b 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000003B6E20C ++crc32b 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x00000000C30C8EA1 ++crc32b 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000053B39330 ++crc32b 0x0000000000000002 0xF0DEBC9A78563412 = 0x000000001DB71064 ++crc32b 0x0000000000000003 0x0000000000000000 = 0x00000000990951BA ++crc32b 0x0000000000000003 0x0000000000000001 = 0x00000000EE0E612C ++crc32b 0x0000000000000003 0x0000000000000002 = 0x0000000077073096 ++crc32b 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++crc32b 0x0000000000000003 0x000000000000000F = 0x0000000009B64C2B ++crc32b 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x00000000B40BBE37 ++crc32b 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x00000000C30C8EA1 ++crc32b 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000005A05DF1B ++crc32b 0x0000000000000003 0x000000000000007F = 0x0000000059B33D17 ++crc32b 0x0000000000000003 0x0000000000000080 = 0x0000000074B1D29A ++crc32b 0x0000000000000003 0x0000000000007FFF = 0x00000000B40BBE37 ++crc32b 0x0000000000000003 0x0000000000008000 = 0x00000000990951BA ++crc32b 0x0000000000000003 0x000000007FFFFFFF = 0x00000000B40BBE37 ++crc32b 0x0000000000000003 0x0000000080000000 = 0x00000000990951BA ++crc32b 0x0000000000000003 0x8000000000000000 = 0x00000000990951BA ++crc32b 0x0000000000000003 0xFFFFFFFF80000000 = 0x00000000990951BA ++crc32b 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x00000000990951BA ++crc32b 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000074B1D29A ++crc32b 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x00000000B40BBE37 ++crc32b 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000024B4A3A6 ++crc32b 0x0000000000000003 0xF0DEBC9A78563412 = 0x000000006AB020F2 ++crc32b 0x000000000000000F 0x0000000000000000 = 0x0000000090BF1D91 ++crc32b 0x000000000000000F 0x0000000000000001 = 0x00000000E7B82D07 ++crc32b 0x000000000000000F 0x0000000000000002 = 0x000000007EB17CBD ++crc32b 0x000000000000000F 0x0000000000000003 = 0x0000000009B64C2B ++crc32b 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++crc32b 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x00000000BDBDF21C ++crc32b 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x00000000CABAC28A ++crc32b 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000053B39330 ++crc32b 0x000000000000000F 0x000000000000007F = 0x000000005005713C ++crc32b 0x000000000000000F 0x0000000000000080 = 0x000000007D079EB1 ++crc32b 0x000000000000000F 0x0000000000007FFF = 0x00000000BDBDF21C ++crc32b 0x000000000000000F 0x0000000000008000 = 0x0000000090BF1D91 ++crc32b 0x000000000000000F 0x000000007FFFFFFF = 0x00000000BDBDF21C ++crc32b 0x000000000000000F 0x0000000080000000 = 0x0000000090BF1D91 ++crc32b 0x000000000000000F 0x8000000000000000 = 0x0000000090BF1D91 ++crc32b 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000090BF1D91 ++crc32b 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000090BF1D91 ++crc32b 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000007D079EB1 ++crc32b 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x00000000BDBDF21C ++crc32b 0x000000000000000F 0x123456789ABCDEF0 = 0x000000002D02EF8D ++crc32b 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000063066CD9 ++crc32b 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000002DFD1072 ++crc32b 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000005AFA20E4 ++crc32b 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000C3F3715E ++crc32b 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000B4F441C8 ++crc32b 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000BD420DE3 ++crc32b 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++crc32b 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000077F8CF69 ++crc32b 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000EEF19ED3 ++crc32b 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000ED477CDF ++crc32b 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000C0459352 ++crc32b 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000FFFFFF ++crc32b 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000002DFD1072 ++crc32b 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000FFFFFF ++crc32b 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000002DFD1072 ++crc32b 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000002DFD1072 ++crc32b 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000002DFD1072 ++crc32b 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000002DFD1072 ++crc32b 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000C0459352 ++crc32b 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++crc32b 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000009040E26E ++crc32b 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000DE44613A ++crc32b 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000005AFA20E4 ++crc32b 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000002DFD1072 ++crc32b 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x00000000B4F441C8 ++crc32b 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x00000000C3F3715E ++crc32b 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00000000CA453D75 ++crc32b 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000077F8CF69 ++crc32b 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000FFFFFF ++crc32b 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000099F6AE45 ++crc32b 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000009A404C49 ++crc32b 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000B742A3C4 ++crc32b 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000077F8CF69 ++crc32b 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000005AFA20E4 ++crc32b 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000077F8CF69 ++crc32b 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000005AFA20E4 ++crc32b 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000005AFA20E4 ++crc32b 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000005AFA20E4 ++crc32b 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000005AFA20E4 ++crc32b 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000B742A3C4 ++crc32b 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000077F8CF69 ++crc32b 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000E747D2F8 ++crc32b 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x00000000A94351AC ++crc32b 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x00000000C3F3715E ++crc32b 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000B4F441C8 ++crc32b 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000002DFD1072 ++crc32b 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000005AFA20E4 ++crc32b 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000534C6CCF ++crc32b 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000EEF19ED3 ++crc32b 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000099F6AE45 ++crc32b 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++crc32b 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000003491DF3 ++crc32b 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000002E4BF27E ++crc32b 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000EEF19ED3 ++crc32b 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x00000000C3F3715E ++crc32b 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000EEF19ED3 ++crc32b 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000000C3F3715E ++crc32b 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x00000000C3F3715E ++crc32b 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x00000000C3F3715E ++crc32b 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000C3F3715E ++crc32b 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000002E4BF27E ++crc32b 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000EEF19ED3 ++crc32b 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000007E4E8342 ++crc32b 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x00000000304A0016 ++crc32b 0x000000000000007F 0x0000000000000000 = 0x00000000C0BA6CAD ++crc32b 0x000000000000007F 0x0000000000000001 = 0x00000000B7BD5C3B ++crc32b 0x000000000000007F 0x0000000000000002 = 0x000000002EB40D81 ++crc32b 0x000000000000007F 0x0000000000000003 = 0x0000000059B33D17 ++crc32b 0x000000000000007F 0x000000000000000F = 0x000000005005713C ++crc32b 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000EDB88320 ++crc32b 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000009ABFB3B6 ++crc32b 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000003B6E20C ++crc32b 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++crc32b 0x000000000000007F 0x0000000000000080 = 0x000000002D02EF8D ++crc32b 0x000000000000007F 0x0000000000007FFF = 0x00000000EDB88320 ++crc32b 0x000000000000007F 0x0000000000008000 = 0x00000000C0BA6CAD ++crc32b 0x000000000000007F 0x000000007FFFFFFF = 0x00000000EDB88320 ++crc32b 0x000000000000007F 0x0000000080000000 = 0x00000000C0BA6CAD ++crc32b 0x000000000000007F 0x8000000000000000 = 0x00000000C0BA6CAD ++crc32b 0x000000000000007F 0xFFFFFFFF80000000 = 0x00000000C0BA6CAD ++crc32b 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x00000000C0BA6CAD ++crc32b 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000002D02EF8D ++crc32b 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x00000000EDB88320 ++crc32b 0x000000000000007F 0x123456789ABCDEF0 = 0x000000007D079EB1 ++crc32b 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000033031DE5 ++crc32b 0x0000000000000080 0x0000000000000000 = 0x00000000EDB88320 ++crc32b 0x0000000000000080 0x0000000000000001 = 0x000000009ABFB3B6 ++crc32b 0x0000000000000080 0x0000000000000002 = 0x0000000003B6E20C ++crc32b 0x0000000000000080 0x0000000000000003 = 0x0000000074B1D29A ++crc32b 0x0000000000000080 0x000000000000000F = 0x000000007D079EB1 ++crc32b 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x00000000C0BA6CAD ++crc32b 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x00000000B7BD5C3B ++crc32b 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x000000002EB40D81 ++crc32b 0x0000000000000080 0x000000000000007F = 0x000000002D02EF8D ++crc32b 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++crc32b 0x0000000000000080 0x0000000000007FFF = 0x00000000C0BA6CAD ++crc32b 0x0000000000000080 0x0000000000008000 = 0x00000000EDB88320 ++crc32b 0x0000000000000080 0x000000007FFFFFFF = 0x00000000C0BA6CAD ++crc32b 0x0000000000000080 0x0000000080000000 = 0x00000000EDB88320 ++crc32b 0x0000000000000080 0x8000000000000000 = 0x00000000EDB88320 ++crc32b 0x0000000000000080 0xFFFFFFFF80000000 = 0x00000000EDB88320 ++crc32b 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x00000000EDB88320 ++crc32b 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++crc32b 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x00000000C0BA6CAD ++crc32b 0x0000000000000080 0x123456789ABCDEF0 = 0x000000005005713C ++crc32b 0x0000000000000080 0xF0DEBC9A78563412 = 0x000000001E01F268 ++crc32b 0x0000000000007FFF 0x0000000000000000 = 0x000000002D02EFF2 ++crc32b 0x0000000000007FFF 0x0000000000000001 = 0x000000005A05DF64 ++crc32b 0x0000000000007FFF 0x0000000000000002 = 0x00000000C30C8EDE ++crc32b 0x0000000000007FFF 0x0000000000000003 = 0x00000000B40BBE48 ++crc32b 0x0000000000007FFF 0x000000000000000F = 0x00000000BDBDF263 ++crc32b 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++crc32b 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x00000000770730E9 ++crc32b 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x00000000EE0E6153 ++crc32b 0x0000000000007FFF 0x000000000000007F = 0x00000000EDB8835F ++crc32b 0x0000000000007FFF 0x0000000000000080 = 0x00000000C0BA6CD2 ++crc32b 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000007F ++crc32b 0x0000000000007FFF 0x0000000000008000 = 0x000000002D02EFF2 ++crc32b 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000000000007F ++crc32b 0x0000000000007FFF 0x0000000080000000 = 0x000000002D02EFF2 ++crc32b 0x0000000000007FFF 0x8000000000000000 = 0x000000002D02EFF2 ++crc32b 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000002D02EFF2 ++crc32b 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x000000002D02EFF2 ++crc32b 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x00000000C0BA6CD2 ++crc32b 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++crc32b 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000090BF1DEE ++crc32b 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x00000000DEBB9EBA ++crc32b 0x0000000000008000 0x0000000000000000 = 0x0000000000000080 ++crc32b 0x0000000000008000 0x0000000000000001 = 0x0000000077073016 ++crc32b 0x0000000000008000 0x0000000000000002 = 0x00000000EE0E61AC ++crc32b 0x0000000000008000 0x0000000000000003 = 0x000000009909513A ++crc32b 0x0000000000008000 0x000000000000000F = 0x0000000090BF1D11 ++crc32b 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000002D02EF0D ++crc32b 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000005A05DF9B ++crc32b 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x00000000C30C8E21 ++crc32b 0x0000000000008000 0x000000000000007F = 0x00000000C0BA6C2D ++crc32b 0x0000000000008000 0x0000000000000080 = 0x00000000EDB883A0 ++crc32b 0x0000000000008000 0x0000000000007FFF = 0x000000002D02EF0D ++crc32b 0x0000000000008000 0x0000000000008000 = 0x0000000000000080 ++crc32b 0x0000000000008000 0x000000007FFFFFFF = 0x000000002D02EF0D ++crc32b 0x0000000000008000 0x0000000080000000 = 0x0000000000000080 ++crc32b 0x0000000000008000 0x8000000000000000 = 0x0000000000000080 ++crc32b 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000080 ++crc32b 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++crc32b 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x00000000EDB883A0 ++crc32b 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x000000002D02EF0D ++crc32b 0x0000000000008000 0x123456789ABCDEF0 = 0x00000000BDBDF29C ++crc32b 0x0000000000008000 0xF0DEBC9A78563412 = 0x00000000F3B971C8 ++crc32b 0x000000007FFFFFFF 0x0000000000000000 = 0x000000002D7D1072 ++crc32b 0x000000007FFFFFFF 0x0000000000000001 = 0x000000005A7A20E4 ++crc32b 0x000000007FFFFFFF 0x0000000000000002 = 0x00000000C373715E ++crc32b 0x000000007FFFFFFF 0x0000000000000003 = 0x00000000B47441C8 ++crc32b 0x000000007FFFFFFF 0x000000000000000F = 0x00000000BDC20DE3 ++crc32b 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000007FFFFF ++crc32b 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007778CF69 ++crc32b 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000EE719ED3 ++crc32b 0x000000007FFFFFFF 0x000000000000007F = 0x00000000EDC77CDF ++crc32b 0x000000007FFFFFFF 0x0000000000000080 = 0x00000000C0C59352 ++crc32b 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000000007FFFFF ++crc32b 0x000000007FFFFFFF 0x0000000000008000 = 0x000000002D7D1072 ++crc32b 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x00000000007FFFFF ++crc32b 0x000000007FFFFFFF 0x0000000080000000 = 0x000000002D7D1072 ++crc32b 0x000000007FFFFFFF 0x8000000000000000 = 0x000000002D7D1072 ++crc32b 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000002D7D1072 ++crc32b 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000002D7D1072 ++crc32b 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000C0C59352 ++crc32b 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000007FFFFF ++crc32b 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000090C0E26E ++crc32b 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00000000DEC4613A ++crc32b 0x0000000080000000 0x0000000000000000 = 0x0000000000800000 ++crc32b 0x0000000080000000 0x0000000000000001 = 0x0000000077873096 ++crc32b 0x0000000080000000 0x0000000000000002 = 0x00000000EE8E612C ++crc32b 0x0000000080000000 0x0000000000000003 = 0x00000000998951BA ++crc32b 0x0000000080000000 0x000000000000000F = 0x00000000903F1D91 ++crc32b 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x000000002D82EF8D ++crc32b 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000005A85DF1B ++crc32b 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x00000000C38C8EA1 ++crc32b 0x0000000080000000 0x000000000000007F = 0x00000000C03A6CAD ++crc32b 0x0000000080000000 0x0000000000000080 = 0x00000000ED388320 ++crc32b 0x0000000080000000 0x0000000000007FFF = 0x000000002D82EF8D ++crc32b 0x0000000080000000 0x0000000000008000 = 0x0000000000800000 ++crc32b 0x0000000080000000 0x000000007FFFFFFF = 0x000000002D82EF8D ++crc32b 0x0000000080000000 0x0000000080000000 = 0x0000000000800000 ++crc32b 0x0000000080000000 0x8000000000000000 = 0x0000000000800000 ++crc32b 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000800000 ++crc32b 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000800000 ++crc32b 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x00000000ED388320 ++crc32b 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x000000002D82EF8D ++crc32b 0x0000000080000000 0x123456789ABCDEF0 = 0x00000000BD3DF21C ++crc32b 0x0000000080000000 0xF0DEBC9A78563412 = 0x00000000F3397148 ++crc32b 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32b 0x8000000000000000 0x0000000000000001 = 0x0000000077073096 ++crc32b 0x8000000000000000 0x0000000000000002 = 0x00000000EE0E612C ++crc32b 0x8000000000000000 0x0000000000000003 = 0x00000000990951BA ++crc32b 0x8000000000000000 0x000000000000000F = 0x0000000090BF1D91 ++crc32b 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000002D02EF8D ++crc32b 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000005A05DF1B ++crc32b 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x00000000C30C8EA1 ++crc32b 0x8000000000000000 0x000000000000007F = 0x00000000C0BA6CAD ++crc32b 0x8000000000000000 0x0000000000000080 = 0x00000000EDB88320 ++crc32b 0x8000000000000000 0x0000000000007FFF = 0x000000002D02EF8D ++crc32b 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++crc32b 0x8000000000000000 0x000000007FFFFFFF = 0x000000002D02EF8D ++crc32b 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++crc32b 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++crc32b 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++crc32b 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++crc32b 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000EDB88320 ++crc32b 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000002D02EF8D ++crc32b 0x8000000000000000 0x123456789ABCDEF0 = 0x00000000BDBDF21C ++crc32b 0x8000000000000000 0xF0DEBC9A78563412 = 0x00000000F3B97148 ++crc32b 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000800000 ++crc32b 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000077873096 ++crc32b 0xFFFFFFFF80000000 0x0000000000000002 = 0x00000000EE8E612C ++crc32b 0xFFFFFFFF80000000 0x0000000000000003 = 0x00000000998951BA ++crc32b 0xFFFFFFFF80000000 0x000000000000000F = 0x00000000903F1D91 ++crc32b 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x000000002D82EF8D ++crc32b 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000005A85DF1B ++crc32b 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x00000000C38C8EA1 ++crc32b 0xFFFFFFFF80000000 0x000000000000007F = 0x00000000C03A6CAD ++crc32b 0xFFFFFFFF80000000 0x0000000000000080 = 0x00000000ED388320 ++crc32b 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000002D82EF8D ++crc32b 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000800000 ++crc32b 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000002D82EF8D ++crc32b 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000800000 ++crc32b 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000800000 ++crc32b 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000800000 ++crc32b 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000800000 ++crc32b 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x00000000ED388320 ++crc32b 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x000000002D82EF8D ++crc32b 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x00000000BD3DF21C ++crc32b 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x00000000F3397148 ++crc32b 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000FFFF80 ++crc32b 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000077F8CF16 ++crc32b 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x00000000EEF19EAC ++crc32b 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000099F6AE3A ++crc32b 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000009040E211 ++crc32b 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x000000002DFD100D ++crc32b 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000005AFA209B ++crc32b 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x00000000C3F37121 ++crc32b 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000C045932D ++crc32b 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00000000ED477CA0 ++crc32b 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x000000002DFD100D ++crc32b 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000FFFF80 ++crc32b 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000002DFD100D ++crc32b 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000FFFF80 ++crc32b 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000FFFF80 ++crc32b 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000FFFF80 ++crc32b 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000FFFF80 ++crc32b 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00000000ED477CA0 ++crc32b 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x000000002DFD100D ++crc32b 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000BD420D9C ++crc32b 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x00000000F3468EC8 ++crc32b 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x00000000ED477CDF ++crc32b 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000009A404C49 ++crc32b 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000003491DF3 ++crc32b 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x00000000744E2D65 ++crc32b 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000007DF8614E ++crc32b 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000C0459352 ++crc32b 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x00000000B742A3C4 ++crc32b 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000002E4BF27E ++crc32b 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000002DFD1072 ++crc32b 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000FFFFFF ++crc32b 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000C0459352 ++crc32b 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x00000000ED477CDF ++crc32b 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000C0459352 ++crc32b 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x00000000ED477CDF ++crc32b 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x00000000ED477CDF ++crc32b 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x00000000ED477CDF ++crc32b 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x00000000ED477CDF ++crc32b 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000FFFFFF ++crc32b 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000C0459352 ++crc32b 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000050FA8EC3 ++crc32b 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000001EFE0D97 ++crc32b 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000002DFD1072 ++crc32b 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000005AFA20E4 ++crc32b 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000C3F3715E ++crc32b 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000B4F441C8 ++crc32b 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000BD420DE3 ++crc32b 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++crc32b 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000077F8CF69 ++crc32b 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000EEF19ED3 ++crc32b 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000ED477CDF ++crc32b 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000C0459352 ++crc32b 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000FFFFFF ++crc32b 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000002DFD1072 ++crc32b 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000FFFFFF ++crc32b 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000002DFD1072 ++crc32b 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000002DFD1072 ++crc32b 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000002DFD1072 ++crc32b 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000002DFD1072 ++crc32b 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000C0459352 ++crc32b 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++crc32b 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000009040E26E ++crc32b 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000DE44613A ++crc32b 0x123456789ABCDEF0 0x0000000000000000 = 0x00000000BD274EC2 ++crc32b 0x123456789ABCDEF0 0x0000000000000001 = 0x00000000CA207E54 ++crc32b 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000053292FEE ++crc32b 0x123456789ABCDEF0 0x0000000000000003 = 0x00000000242E1F78 ++crc32b 0x123456789ABCDEF0 0x000000000000000F = 0x000000002D985353 ++crc32b 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000009025A14F ++crc32b 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x00000000E72291D9 ++crc32b 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000007E2BC063 ++crc32b 0x123456789ABCDEF0 0x000000000000007F = 0x000000007D9D226F ++crc32b 0x123456789ABCDEF0 0x0000000000000080 = 0x00000000509FCDE2 ++crc32b 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000009025A14F ++crc32b 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000BD274EC2 ++crc32b 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000009025A14F ++crc32b 0x123456789ABCDEF0 0x0000000080000000 = 0x00000000BD274EC2 ++crc32b 0x123456789ABCDEF0 0x8000000000000000 = 0x00000000BD274EC2 ++crc32b 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x00000000BD274EC2 ++crc32b 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x00000000BD274EC2 ++crc32b 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x00000000509FCDE2 ++crc32b 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000009025A14F ++crc32b 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x00000000009ABCDE ++crc32b 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000004E9E3F8A ++crc32b 0xF0DEBC9A78563412 0x0000000000000000 = 0x00000000F3C1277C ++crc32b 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000084C617EA ++crc32b 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000001DCF4650 ++crc32b 0xF0DEBC9A78563412 0x0000000000000003 = 0x000000006AC876C6 ++crc32b 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000637E3AED ++crc32b 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00000000DEC3C8F1 ++crc32b 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x00000000A9C4F867 ++crc32b 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000030CDA9DD ++crc32b 0xF0DEBC9A78563412 0x000000000000007F = 0x00000000337B4BD1 ++crc32b 0xF0DEBC9A78563412 0x0000000000000080 = 0x000000001E79A45C ++crc32b 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00000000DEC3C8F1 ++crc32b 0xF0DEBC9A78563412 0x0000000000008000 = 0x00000000F3C1277C ++crc32b 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000DEC3C8F1 ++crc32b 0xF0DEBC9A78563412 0x0000000080000000 = 0x00000000F3C1277C ++crc32b 0xF0DEBC9A78563412 0x8000000000000000 = 0x00000000F3C1277C ++crc32b 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x00000000F3C1277C ++crc32b 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x00000000F3C1277C ++crc32b 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x000000001E79A45C ++crc32b 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000DEC3C8F1 ++crc32b 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000004E7CD560 ++crc32b 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000785634 ++=== Running test on crc32h === ++crc32h 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32h 0x0000000000000000 0x0000000000000001 = 0x00000000191B3141 ++crc32h 0x0000000000000000 0x0000000000000002 = 0x0000000032366282 ++crc32h 0x0000000000000000 0x0000000000000003 = 0x000000002B2D53C3 ++crc32h 0x0000000000000000 0x000000000000000F = 0x0000000087981CCF ++crc32h 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000BE2612FF ++crc32h 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x00000000A73D23BE ++crc32h 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000008C10707D ++crc32h 0x0000000000000000 0x000000000000007F = 0x00000000A8A76539 ++crc32h 0x0000000000000000 0x0000000000000080 = 0x000000003B83984B ++crc32h 0x0000000000000000 0x0000000000007FFF = 0x00000000539E91DF ++crc32h 0x0000000000000000 0x0000000000008000 = 0x00000000EDB88320 ++crc32h 0x0000000000000000 0x000000007FFFFFFF = 0x00000000BE2612FF ++crc32h 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++crc32h 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++crc32h 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++crc32h 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x00000000EDB88320 ++crc32h 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000168177C6 ++crc32h 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000BE2612FF ++crc32h 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000075D71E6E ++crc32h 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000059408466 ++crc32h 0x0000000000000001 0x0000000000000000 = 0x00000000191B3141 ++crc32h 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++crc32h 0x0000000000000001 0x0000000000000002 = 0x000000002B2D53C3 ++crc32h 0x0000000000000001 0x0000000000000003 = 0x0000000032366282 ++crc32h 0x0000000000000001 0x000000000000000F = 0x000000009E832D8E ++crc32h 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x00000000A73D23BE ++crc32h 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x00000000BE2612FF ++crc32h 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x00000000950B413C ++crc32h 0x0000000000000001 0x000000000000007F = 0x00000000B1BC5478 ++crc32h 0x0000000000000001 0x0000000000000080 = 0x000000002298A90A ++crc32h 0x0000000000000001 0x0000000000007FFF = 0x000000004A85A09E ++crc32h 0x0000000000000001 0x0000000000008000 = 0x00000000F4A3B261 ++crc32h 0x0000000000000001 0x000000007FFFFFFF = 0x00000000A73D23BE ++crc32h 0x0000000000000001 0x0000000080000000 = 0x00000000191B3141 ++crc32h 0x0000000000000001 0x8000000000000000 = 0x00000000191B3141 ++crc32h 0x0000000000000001 0xFFFFFFFF80000000 = 0x00000000191B3141 ++crc32h 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x00000000F4A3B261 ++crc32h 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x000000000F9A4687 ++crc32h 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x00000000A73D23BE ++crc32h 0x0000000000000001 0x123456789ABCDEF0 = 0x000000006CCC2F2F ++crc32h 0x0000000000000001 0xF0DEBC9A78563412 = 0x00000000405BB527 ++crc32h 0x0000000000000002 0x0000000000000000 = 0x0000000032366282 ++crc32h 0x0000000000000002 0x0000000000000001 = 0x000000002B2D53C3 ++crc32h 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++crc32h 0x0000000000000002 0x0000000000000003 = 0x00000000191B3141 ++crc32h 0x0000000000000002 0x000000000000000F = 0x00000000B5AE7E4D ++crc32h 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x000000008C10707D ++crc32h 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x00000000950B413C ++crc32h 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x00000000BE2612FF ++crc32h 0x0000000000000002 0x000000000000007F = 0x000000009A9107BB ++crc32h 0x0000000000000002 0x0000000000000080 = 0x0000000009B5FAC9 ++crc32h 0x0000000000000002 0x0000000000007FFF = 0x0000000061A8F35D ++crc32h 0x0000000000000002 0x0000000000008000 = 0x00000000DF8EE1A2 ++crc32h 0x0000000000000002 0x000000007FFFFFFF = 0x000000008C10707D ++crc32h 0x0000000000000002 0x0000000080000000 = 0x0000000032366282 ++crc32h 0x0000000000000002 0x8000000000000000 = 0x0000000032366282 ++crc32h 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000032366282 ++crc32h 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x00000000DF8EE1A2 ++crc32h 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000024B71544 ++crc32h 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x000000008C10707D ++crc32h 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000047E17CEC ++crc32h 0x0000000000000002 0xF0DEBC9A78563412 = 0x000000006B76E6E4 ++crc32h 0x0000000000000003 0x0000000000000000 = 0x000000002B2D53C3 ++crc32h 0x0000000000000003 0x0000000000000001 = 0x0000000032366282 ++crc32h 0x0000000000000003 0x0000000000000002 = 0x00000000191B3141 ++crc32h 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++crc32h 0x0000000000000003 0x000000000000000F = 0x00000000ACB54F0C ++crc32h 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x00000000950B413C ++crc32h 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000008C10707D ++crc32h 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x00000000A73D23BE ++crc32h 0x0000000000000003 0x000000000000007F = 0x00000000838A36FA ++crc32h 0x0000000000000003 0x0000000000000080 = 0x0000000010AECB88 ++crc32h 0x0000000000000003 0x0000000000007FFF = 0x0000000078B3C21C ++crc32h 0x0000000000000003 0x0000000000008000 = 0x00000000C695D0E3 ++crc32h 0x0000000000000003 0x000000007FFFFFFF = 0x00000000950B413C ++crc32h 0x0000000000000003 0x0000000080000000 = 0x000000002B2D53C3 ++crc32h 0x0000000000000003 0x8000000000000000 = 0x000000002B2D53C3 ++crc32h 0x0000000000000003 0xFFFFFFFF80000000 = 0x000000002B2D53C3 ++crc32h 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x00000000C695D0E3 ++crc32h 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x000000003DAC2405 ++crc32h 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x00000000950B413C ++crc32h 0x0000000000000003 0x123456789ABCDEF0 = 0x000000005EFA4DAD ++crc32h 0x0000000000000003 0xF0DEBC9A78563412 = 0x00000000726DD7A5 ++crc32h 0x000000000000000F 0x0000000000000000 = 0x0000000087981CCF ++crc32h 0x000000000000000F 0x0000000000000001 = 0x000000009E832D8E ++crc32h 0x000000000000000F 0x0000000000000002 = 0x00000000B5AE7E4D ++crc32h 0x000000000000000F 0x0000000000000003 = 0x00000000ACB54F0C ++crc32h 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++crc32h 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000039BE0E30 ++crc32h 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000020A53F71 ++crc32h 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000B886CB2 ++crc32h 0x000000000000000F 0x000000000000007F = 0x000000002F3F79F6 ++crc32h 0x000000000000000F 0x0000000000000080 = 0x00000000BC1B8484 ++crc32h 0x000000000000000F 0x0000000000007FFF = 0x00000000D4068D10 ++crc32h 0x000000000000000F 0x0000000000008000 = 0x000000006A209FEF ++crc32h 0x000000000000000F 0x000000007FFFFFFF = 0x0000000039BE0E30 ++crc32h 0x000000000000000F 0x0000000080000000 = 0x0000000087981CCF ++crc32h 0x000000000000000F 0x8000000000000000 = 0x0000000087981CCF ++crc32h 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000087981CCF ++crc32h 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000006A209FEF ++crc32h 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000091196B09 ++crc32h 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000039BE0E30 ++crc32h 0x000000000000000F 0x123456789ABCDEF0 = 0x00000000F24F02A1 ++crc32h 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000DED898A9 ++crc32h 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000BE26ED00 ++crc32h 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000A73DDC41 ++crc32h 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000008C108F82 ++crc32h 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000950BBEC3 ++crc32h 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000039BEF1CF ++crc32h 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++crc32h 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000191BCEBE ++crc32h 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000032369D7D ++crc32h 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000016818839 ++crc32h 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000085A5754B ++crc32h 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000EDB87CDF ++crc32h 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000539E6E20 ++crc32h 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000FFFF ++crc32h 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000BE26ED00 ++crc32h 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000BE26ED00 ++crc32h 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000BE26ED00 ++crc32h 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000539E6E20 ++crc32h 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000A8A79AC6 ++crc32h 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++crc32h 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000CBF1F36E ++crc32h 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000E7666966 ++crc32h 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x00000000A73DDC41 ++crc32h 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000BE26ED00 ++crc32h 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x00000000950BBEC3 ++crc32h 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000008C108F82 ++crc32h 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000020A5C08E ++crc32h 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000191BCEBE ++crc32h 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++crc32h 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000002B2DAC3C ++crc32h 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000F9AB978 ++crc32h 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000009CBE440A ++crc32h 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000F4A34D9E ++crc32h 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000004A855F61 ++crc32h 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00000000191BCEBE ++crc32h 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000000A73DDC41 ++crc32h 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x00000000A73DDC41 ++crc32h 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000A73DDC41 ++crc32h 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000004A855F61 ++crc32h 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000B1BCAB87 ++crc32h 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000191BCEBE ++crc32h 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000D2EAC22F ++crc32h 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x00000000FE7D5827 ++crc32h 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x000000008C108F82 ++crc32h 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000950BBEC3 ++crc32h 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x00000000BE26ED00 ++crc32h 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x00000000A73DDC41 ++crc32h 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000B88934D ++crc32h 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000032369D7D ++crc32h 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000002B2DAC3C ++crc32h 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFF ++crc32h 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000024B7EABB ++crc32h 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000B79317C9 ++crc32h 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000DF8E1E5D ++crc32h 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000061A80CA2 ++crc32h 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000032369D7D ++crc32h 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000008C108F82 ++crc32h 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x000000008C108F82 ++crc32h 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000008C108F82 ++crc32h 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000061A80CA2 ++crc32h 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000009A91F844 ++crc32h 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000032369D7D ++crc32h 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000F9C791EC ++crc32h 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x00000000D5500BE4 ++crc32h 0x000000000000007F 0x0000000000000000 = 0x00000000A8A76539 ++crc32h 0x000000000000007F 0x0000000000000001 = 0x00000000B1BC5478 ++crc32h 0x000000000000007F 0x0000000000000002 = 0x000000009A9107BB ++crc32h 0x000000000000007F 0x0000000000000003 = 0x00000000838A36FA ++crc32h 0x000000000000007F 0x000000000000000F = 0x000000002F3F79F6 ++crc32h 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000168177C6 ++crc32h 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000F9A4687 ++crc32h 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000024B71544 ++crc32h 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++crc32h 0x000000000000007F 0x0000000000000080 = 0x000000009324FD72 ++crc32h 0x000000000000007F 0x0000000000007FFF = 0x00000000FB39F4E6 ++crc32h 0x000000000000007F 0x0000000000008000 = 0x00000000451FE619 ++crc32h 0x000000000000007F 0x000000007FFFFFFF = 0x00000000168177C6 ++crc32h 0x000000000000007F 0x0000000080000000 = 0x00000000A8A76539 ++crc32h 0x000000000000007F 0x8000000000000000 = 0x00000000A8A76539 ++crc32h 0x000000000000007F 0xFFFFFFFF80000000 = 0x00000000A8A76539 ++crc32h 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x00000000451FE619 ++crc32h 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x00000000BE2612FF ++crc32h 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x00000000168177C6 ++crc32h 0x000000000000007F 0x123456789ABCDEF0 = 0x00000000DD707B57 ++crc32h 0x000000000000007F 0xF0DEBC9A78563412 = 0x00000000F1E7E15F ++crc32h 0x0000000000000080 0x0000000000000000 = 0x000000003B83984B ++crc32h 0x0000000000000080 0x0000000000000001 = 0x000000002298A90A ++crc32h 0x0000000000000080 0x0000000000000002 = 0x0000000009B5FAC9 ++crc32h 0x0000000000000080 0x0000000000000003 = 0x0000000010AECB88 ++crc32h 0x0000000000000080 0x000000000000000F = 0x00000000BC1B8484 ++crc32h 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000085A58AB4 ++crc32h 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x000000009CBEBBF5 ++crc32h 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x00000000B793E836 ++crc32h 0x0000000000000080 0x000000000000007F = 0x000000009324FD72 ++crc32h 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++crc32h 0x0000000000000080 0x0000000000007FFF = 0x00000000681D0994 ++crc32h 0x0000000000000080 0x0000000000008000 = 0x00000000D63B1B6B ++crc32h 0x0000000000000080 0x000000007FFFFFFF = 0x0000000085A58AB4 ++crc32h 0x0000000000000080 0x0000000080000000 = 0x000000003B83984B ++crc32h 0x0000000000000080 0x8000000000000000 = 0x000000003B83984B ++crc32h 0x0000000000000080 0xFFFFFFFF80000000 = 0x000000003B83984B ++crc32h 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x00000000D63B1B6B ++crc32h 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x000000002D02EF8D ++crc32h 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000085A58AB4 ++crc32h 0x0000000000000080 0x123456789ABCDEF0 = 0x000000004E548625 ++crc32h 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000062C31C2D ++crc32h 0x0000000000007FFF 0x0000000000000000 = 0x00000000539E91DF ++crc32h 0x0000000000007FFF 0x0000000000000001 = 0x000000004A85A09E ++crc32h 0x0000000000007FFF 0x0000000000000002 = 0x0000000061A8F35D ++crc32h 0x0000000000007FFF 0x0000000000000003 = 0x0000000078B3C21C ++crc32h 0x0000000000007FFF 0x000000000000000F = 0x00000000D4068D10 ++crc32h 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x00000000EDB88320 ++crc32h 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x00000000F4A3B261 ++crc32h 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x00000000DF8EE1A2 ++crc32h 0x0000000000007FFF 0x000000000000007F = 0x00000000FB39F4E6 ++crc32h 0x0000000000007FFF 0x0000000000000080 = 0x00000000681D0994 ++crc32h 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++crc32h 0x0000000000007FFF 0x0000000000008000 = 0x00000000BE2612FF ++crc32h 0x0000000000007FFF 0x000000007FFFFFFF = 0x00000000EDB88320 ++crc32h 0x0000000000007FFF 0x0000000080000000 = 0x00000000539E91DF ++crc32h 0x0000000000007FFF 0x8000000000000000 = 0x00000000539E91DF ++crc32h 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x00000000539E91DF ++crc32h 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x00000000BE2612FF ++crc32h 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x00000000451FE619 ++crc32h 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x00000000EDB88320 ++crc32h 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000026498FB1 ++crc32h 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000000ADE15B9 ++crc32h 0x0000000000008000 0x0000000000000000 = 0x00000000EDB88320 ++crc32h 0x0000000000008000 0x0000000000000001 = 0x00000000F4A3B261 ++crc32h 0x0000000000008000 0x0000000000000002 = 0x00000000DF8EE1A2 ++crc32h 0x0000000000008000 0x0000000000000003 = 0x00000000C695D0E3 ++crc32h 0x0000000000008000 0x000000000000000F = 0x000000006A209FEF ++crc32h 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x00000000539E91DF ++crc32h 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000004A85A09E ++crc32h 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000061A8F35D ++crc32h 0x0000000000008000 0x000000000000007F = 0x00000000451FE619 ++crc32h 0x0000000000008000 0x0000000000000080 = 0x00000000D63B1B6B ++crc32h 0x0000000000008000 0x0000000000007FFF = 0x00000000BE2612FF ++crc32h 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++crc32h 0x0000000000008000 0x000000007FFFFFFF = 0x00000000539E91DF ++crc32h 0x0000000000008000 0x0000000080000000 = 0x00000000EDB88320 ++crc32h 0x0000000000008000 0x8000000000000000 = 0x00000000EDB88320 ++crc32h 0x0000000000008000 0xFFFFFFFF80000000 = 0x00000000EDB88320 ++crc32h 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++crc32h 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x00000000FB39F4E6 ++crc32h 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x00000000539E91DF ++crc32h 0x0000000000008000 0x123456789ABCDEF0 = 0x00000000986F9D4E ++crc32h 0x0000000000008000 0xF0DEBC9A78563412 = 0x00000000B4F80746 ++crc32h 0x000000007FFFFFFF 0x0000000000000000 = 0x00000000BE266D00 ++crc32h 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000A73D5C41 ++crc32h 0x000000007FFFFFFF 0x0000000000000002 = 0x000000008C100F82 ++crc32h 0x000000007FFFFFFF 0x0000000000000003 = 0x00000000950B3EC3 ++crc32h 0x000000007FFFFFFF 0x000000000000000F = 0x0000000039BE71CF ++crc32h 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++crc32h 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000191B4EBE ++crc32h 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000032361D7D ++crc32h 0x000000007FFFFFFF 0x000000000000007F = 0x0000000016810839 ++crc32h 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000085A5F54B ++crc32h 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000000EDB8FCDF ++crc32h 0x000000007FFFFFFF 0x0000000000008000 = 0x00000000539EEE20 ++crc32h 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000007FFF ++crc32h 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000BE266D00 ++crc32h 0x000000007FFFFFFF 0x8000000000000000 = 0x00000000BE266D00 ++crc32h 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x00000000BE266D00 ++crc32h 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000539EEE20 ++crc32h 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000A8A71AC6 ++crc32h 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++crc32h 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x00000000CBF1736E ++crc32h 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00000000E766E966 ++crc32h 0x0000000080000000 0x0000000000000000 = 0x0000000000008000 ++crc32h 0x0000000080000000 0x0000000000000001 = 0x00000000191BB141 ++crc32h 0x0000000080000000 0x0000000000000002 = 0x000000003236E282 ++crc32h 0x0000000080000000 0x0000000000000003 = 0x000000002B2DD3C3 ++crc32h 0x0000000080000000 0x000000000000000F = 0x0000000087989CCF ++crc32h 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x00000000BE2692FF ++crc32h 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x00000000A73DA3BE ++crc32h 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000008C10F07D ++crc32h 0x0000000080000000 0x000000000000007F = 0x00000000A8A7E539 ++crc32h 0x0000000080000000 0x0000000000000080 = 0x000000003B83184B ++crc32h 0x0000000080000000 0x0000000000007FFF = 0x00000000539E11DF ++crc32h 0x0000000080000000 0x0000000000008000 = 0x00000000EDB80320 ++crc32h 0x0000000080000000 0x000000007FFFFFFF = 0x00000000BE2692FF ++crc32h 0x0000000080000000 0x0000000080000000 = 0x0000000000008000 ++crc32h 0x0000000080000000 0x8000000000000000 = 0x0000000000008000 ++crc32h 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000008000 ++crc32h 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x00000000EDB80320 ++crc32h 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000001681F7C6 ++crc32h 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x00000000BE2692FF ++crc32h 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000075D79E6E ++crc32h 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000059400466 ++crc32h 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32h 0x8000000000000000 0x0000000000000001 = 0x00000000191B3141 ++crc32h 0x8000000000000000 0x0000000000000002 = 0x0000000032366282 ++crc32h 0x8000000000000000 0x0000000000000003 = 0x000000002B2D53C3 ++crc32h 0x8000000000000000 0x000000000000000F = 0x0000000087981CCF ++crc32h 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000BE2612FF ++crc32h 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x00000000A73D23BE ++crc32h 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000008C10707D ++crc32h 0x8000000000000000 0x000000000000007F = 0x00000000A8A76539 ++crc32h 0x8000000000000000 0x0000000000000080 = 0x000000003B83984B ++crc32h 0x8000000000000000 0x0000000000007FFF = 0x00000000539E91DF ++crc32h 0x8000000000000000 0x0000000000008000 = 0x00000000EDB88320 ++crc32h 0x8000000000000000 0x000000007FFFFFFF = 0x00000000BE2612FF ++crc32h 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++crc32h 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++crc32h 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++crc32h 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x00000000EDB88320 ++crc32h 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000168177C6 ++crc32h 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000BE2612FF ++crc32h 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000075D71E6E ++crc32h 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000059408466 ++crc32h 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000008000 ++crc32h 0xFFFFFFFF80000000 0x0000000000000001 = 0x00000000191BB141 ++crc32h 0xFFFFFFFF80000000 0x0000000000000002 = 0x000000003236E282 ++crc32h 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000002B2DD3C3 ++crc32h 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000087989CCF ++crc32h 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00000000BE2692FF ++crc32h 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x00000000A73DA3BE ++crc32h 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000008C10F07D ++crc32h 0xFFFFFFFF80000000 0x000000000000007F = 0x00000000A8A7E539 ++crc32h 0xFFFFFFFF80000000 0x0000000000000080 = 0x000000003B83184B ++crc32h 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00000000539E11DF ++crc32h 0xFFFFFFFF80000000 0x0000000000008000 = 0x00000000EDB80320 ++crc32h 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00000000BE2692FF ++crc32h 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000008000 ++crc32h 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000008000 ++crc32h 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000008000 ++crc32h 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x00000000EDB80320 ++crc32h 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x000000001681F7C6 ++crc32h 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00000000BE2692FF ++crc32h 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000075D79E6E ++crc32h 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000059400466 ++crc32h 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x00000000EDB87CDF ++crc32h 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x00000000F4A34D9E ++crc32h 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x00000000DF8E1E5D ++crc32h 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x00000000C6952F1C ++crc32h 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000006A206010 ++crc32h 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00000000539E6E20 ++crc32h 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000004A855F61 ++crc32h 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000061A80CA2 ++crc32h 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000451F19E6 ++crc32h 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00000000D63BE494 ++crc32h 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00000000BE26ED00 ++crc32h 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x000000000000FFFF ++crc32h 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00000000539E6E20 ++crc32h 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x00000000EDB87CDF ++crc32h 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x00000000EDB87CDF ++crc32h 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x00000000EDB87CDF ++crc32h 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++crc32h 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00000000FB390B19 ++crc32h 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00000000539E6E20 ++crc32h 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000986F62B1 ++crc32h 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x00000000B4F8F8B9 ++crc32h 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000016818839 ++crc32h 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000000F9AB978 ++crc32h 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000024B7EABB ++crc32h 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000003DACDBFA ++crc32h 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000911994F6 ++crc32h 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000A8A79AC6 ++crc32h 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x00000000B1BCAB87 ++crc32h 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000009A91F844 ++crc32h 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000BE26ED00 ++crc32h 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000002D021072 ++crc32h 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000451F19E6 ++crc32h 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x00000000FB390B19 ++crc32h 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000A8A79AC6 ++crc32h 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000016818839 ++crc32h 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000016818839 ++crc32h 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000016818839 ++crc32h 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x00000000FB390B19 ++crc32h 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++crc32h 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000A8A79AC6 ++crc32h 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000063569657 ++crc32h 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000004FC10C5F ++crc32h 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000BE26ED00 ++crc32h 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000A73DDC41 ++crc32h 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000008C108F82 ++crc32h 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000950BBEC3 ++crc32h 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000039BEF1CF ++crc32h 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++crc32h 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000191BCEBE ++crc32h 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000032369D7D ++crc32h 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000016818839 ++crc32h 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000085A5754B ++crc32h 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000EDB87CDF ++crc32h 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000539E6E20 ++crc32h 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000FFFF ++crc32h 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000BE26ED00 ++crc32h 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000BE26ED00 ++crc32h 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000BE26ED00 ++crc32h 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000539E6E20 ++crc32h 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000A8A79AC6 ++crc32h 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++crc32h 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000CBF1F36E ++crc32h 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000E7666966 ++crc32h 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000075D784D2 ++crc32h 0x123456789ABCDEF0 0x0000000000000001 = 0x000000006CCCB593 ++crc32h 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000047E1E650 ++crc32h 0x123456789ABCDEF0 0x0000000000000003 = 0x000000005EFAD711 ++crc32h 0x123456789ABCDEF0 0x000000000000000F = 0x00000000F24F981D ++crc32h 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x00000000CBF1962D ++crc32h 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x00000000D2EAA76C ++crc32h 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x00000000F9C7F4AF ++crc32h 0x123456789ABCDEF0 0x000000000000007F = 0x00000000DD70E1EB ++crc32h 0x123456789ABCDEF0 0x0000000000000080 = 0x000000004E541C99 ++crc32h 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000002649150D ++crc32h 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000986F07F2 ++crc32h 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x00000000CBF1962D ++crc32h 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000075D784D2 ++crc32h 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000075D784D2 ++crc32h 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000075D784D2 ++crc32h 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x00000000986F07F2 ++crc32h 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000006356F314 ++crc32h 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x00000000CBF1962D ++crc32h 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000009ABC ++crc32h 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000002C9700B4 ++crc32h 0xF0DEBC9A78563412 0x0000000000000000 = 0x000000005940FC30 ++crc32h 0xF0DEBC9A78563412 0x0000000000000001 = 0x00000000405BCD71 ++crc32h 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000006B769EB2 ++crc32h 0xF0DEBC9A78563412 0x0000000000000003 = 0x00000000726DAFF3 ++crc32h 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000DED8E0FF ++crc32h 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00000000E766EECF ++crc32h 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x00000000FE7DDF8E ++crc32h 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x00000000D5508C4D ++crc32h 0xF0DEBC9A78563412 0x000000000000007F = 0x00000000F1E79909 ++crc32h 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000062C3647B ++crc32h 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000000ADE6DEF ++crc32h 0xF0DEBC9A78563412 0x0000000000008000 = 0x00000000B4F87F10 ++crc32h 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000E766EECF ++crc32h 0xF0DEBC9A78563412 0x0000000080000000 = 0x000000005940FC30 ++crc32h 0xF0DEBC9A78563412 0x8000000000000000 = 0x000000005940FC30 ++crc32h 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000005940FC30 ++crc32h 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x00000000B4F87F10 ++crc32h 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x000000004FC18BF6 ++crc32h 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000E766EECF ++crc32h 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000002C97E25E ++crc32h 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000007856 ++=== Running test on crc32w === ++crc32w 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32w 0x0000000000000000 0x0000000000000001 = 0x00000000B8BC6765 ++crc32w 0x0000000000000000 0x0000000000000002 = 0x00000000AA09C88B ++crc32w 0x0000000000000000 0x0000000000000003 = 0x0000000012B5AFEE ++crc32w 0x0000000000000000 0x000000000000000F = 0x0000000058631056 ++crc32w 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000DEBB20E3 ++crc32w 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000066074786 ++crc32w 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000074B2E868 ++crc32w 0x0000000000000000 0x000000000000007F = 0x00000000335CB0CA ++crc32w 0x0000000000000000 0x0000000000000080 = 0x00000000ED59B63B ++crc32w 0x0000000000000000 0x0000000000007FFF = 0x0000000081A8299C ++crc32w 0x0000000000000000 0x0000000000008000 = 0x00000000E1351B80 ++crc32w 0x0000000000000000 0x000000007FFFFFFF = 0x000000003303A3C3 ++crc32w 0x0000000000000000 0x0000000080000000 = 0x00000000EDB88320 ++crc32w 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++crc32w 0x0000000000000000 0xFFFFFFFF80000000 = 0x00000000EDB88320 ++crc32w 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x000000005F13097F ++crc32w 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000EDE79029 ++crc32w 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000DEBB20E3 ++crc32w 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000059DB9573 ++crc32w 0x0000000000000000 0xF0DEBC9A78563412 = 0x000000006B4DD184 ++crc32w 0x0000000000000001 0x0000000000000000 = 0x00000000B8BC6765 ++crc32w 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++crc32w 0x0000000000000001 0x0000000000000002 = 0x0000000012B5AFEE ++crc32w 0x0000000000000001 0x0000000000000003 = 0x00000000AA09C88B ++crc32w 0x0000000000000001 0x000000000000000F = 0x00000000E0DF7733 ++crc32w 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000066074786 ++crc32w 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x00000000DEBB20E3 ++crc32w 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x00000000CC0E8F0D ++crc32w 0x0000000000000001 0x000000000000007F = 0x000000008BE0D7AF ++crc32w 0x0000000000000001 0x0000000000000080 = 0x0000000055E5D15E ++crc32w 0x0000000000000001 0x0000000000007FFF = 0x0000000039144EF9 ++crc32w 0x0000000000000001 0x0000000000008000 = 0x0000000059897CE5 ++crc32w 0x0000000000000001 0x000000007FFFFFFF = 0x000000008BBFC4A6 ++crc32w 0x0000000000000001 0x0000000080000000 = 0x000000005504E445 ++crc32w 0x0000000000000001 0x8000000000000000 = 0x00000000B8BC6765 ++crc32w 0x0000000000000001 0xFFFFFFFF80000000 = 0x000000005504E445 ++crc32w 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x00000000E7AF6E1A ++crc32w 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x00000000555BF74C ++crc32w 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000066074786 ++crc32w 0x0000000000000001 0x123456789ABCDEF0 = 0x00000000E167F216 ++crc32w 0x0000000000000001 0xF0DEBC9A78563412 = 0x00000000D3F1B6E1 ++crc32w 0x0000000000000002 0x0000000000000000 = 0x00000000AA09C88B ++crc32w 0x0000000000000002 0x0000000000000001 = 0x0000000012B5AFEE ++crc32w 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++crc32w 0x0000000000000002 0x0000000000000003 = 0x00000000B8BC6765 ++crc32w 0x0000000000000002 0x000000000000000F = 0x00000000F26AD8DD ++crc32w 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000074B2E868 ++crc32w 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x00000000CC0E8F0D ++crc32w 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x00000000DEBB20E3 ++crc32w 0x0000000000000002 0x000000000000007F = 0x0000000099557841 ++crc32w 0x0000000000000002 0x0000000000000080 = 0x0000000047507EB0 ++crc32w 0x0000000000000002 0x0000000000007FFF = 0x000000002BA1E117 ++crc32w 0x0000000000000002 0x0000000000008000 = 0x000000004B3CD30B ++crc32w 0x0000000000000002 0x000000007FFFFFFF = 0x00000000990A6B48 ++crc32w 0x0000000000000002 0x0000000080000000 = 0x0000000047B14BAB ++crc32w 0x0000000000000002 0x8000000000000000 = 0x00000000AA09C88B ++crc32w 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000047B14BAB ++crc32w 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x00000000F51AC1F4 ++crc32w 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000047EE58A2 ++crc32w 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000074B2E868 ++crc32w 0x0000000000000002 0x123456789ABCDEF0 = 0x00000000F3D25DF8 ++crc32w 0x0000000000000002 0xF0DEBC9A78563412 = 0x00000000C144190F ++crc32w 0x0000000000000003 0x0000000000000000 = 0x0000000012B5AFEE ++crc32w 0x0000000000000003 0x0000000000000001 = 0x00000000AA09C88B ++crc32w 0x0000000000000003 0x0000000000000002 = 0x00000000B8BC6765 ++crc32w 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++crc32w 0x0000000000000003 0x000000000000000F = 0x000000004AD6BFB8 ++crc32w 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x00000000CC0E8F0D ++crc32w 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000074B2E868 ++crc32w 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000066074786 ++crc32w 0x0000000000000003 0x000000000000007F = 0x0000000021E91F24 ++crc32w 0x0000000000000003 0x0000000000000080 = 0x00000000FFEC19D5 ++crc32w 0x0000000000000003 0x0000000000007FFF = 0x00000000931D8672 ++crc32w 0x0000000000000003 0x0000000000008000 = 0x00000000F380B46E ++crc32w 0x0000000000000003 0x000000007FFFFFFF = 0x0000000021B60C2D ++crc32w 0x0000000000000003 0x0000000080000000 = 0x00000000FF0D2CCE ++crc32w 0x0000000000000003 0x8000000000000000 = 0x0000000012B5AFEE ++crc32w 0x0000000000000003 0xFFFFFFFF80000000 = 0x00000000FF0D2CCE ++crc32w 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x000000004DA6A691 ++crc32w 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x00000000FF523FC7 ++crc32w 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x00000000CC0E8F0D ++crc32w 0x0000000000000003 0x123456789ABCDEF0 = 0x000000004B6E3A9D ++crc32w 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000079F87E6A ++crc32w 0x000000000000000F 0x0000000000000000 = 0x0000000058631056 ++crc32w 0x000000000000000F 0x0000000000000001 = 0x00000000E0DF7733 ++crc32w 0x000000000000000F 0x0000000000000002 = 0x00000000F26AD8DD ++crc32w 0x000000000000000F 0x0000000000000003 = 0x000000004AD6BFB8 ++crc32w 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++crc32w 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000086D830B5 ++crc32w 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000003E6457D0 ++crc32w 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000002CD1F83E ++crc32w 0x000000000000000F 0x000000000000007F = 0x000000006B3FA09C ++crc32w 0x000000000000000F 0x0000000000000080 = 0x00000000B53AA66D ++crc32w 0x000000000000000F 0x0000000000007FFF = 0x00000000D9CB39CA ++crc32w 0x000000000000000F 0x0000000000008000 = 0x00000000B9560BD6 ++crc32w 0x000000000000000F 0x000000007FFFFFFF = 0x000000006B60B395 ++crc32w 0x000000000000000F 0x0000000080000000 = 0x00000000B5DB9376 ++crc32w 0x000000000000000F 0x8000000000000000 = 0x0000000058631056 ++crc32w 0x000000000000000F 0xFFFFFFFF80000000 = 0x00000000B5DB9376 ++crc32w 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000007701929 ++crc32w 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x00000000B584807F ++crc32w 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000086D830B5 ++crc32w 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000001B88525 ++crc32w 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000332EC1D2 ++crc32w 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000DEBB20E3 ++crc32w 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000066074786 ++crc32w 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000074B2E868 ++crc32w 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000CC0E8F0D ++crc32w 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000086D830B5 ++crc32w 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++crc32w 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000B8BC6765 ++crc32w 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000AA09C88B ++crc32w 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000EDE79029 ++crc32w 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000033E296D8 ++crc32w 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000005F13097F ++crc32w 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000003F8E3B63 ++crc32w 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000EDB88320 ++crc32w 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000003303A3C3 ++crc32w 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000DEBB20E3 ++crc32w 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000003303A3C3 ++crc32w 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000081A8299C ++crc32w 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000335CB0CA ++crc32w 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++crc32w 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000008760B590 ++crc32w 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000B5F6F167 ++crc32w 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000066074786 ++crc32w 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000DEBB20E3 ++crc32w 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x00000000CC0E8F0D ++crc32w 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000074B2E868 ++crc32w 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000003E6457D0 ++crc32w 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000B8BC6765 ++crc32w 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++crc32w 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000012B5AFEE ++crc32w 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00000000555BF74C ++crc32w 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000008B5EF1BD ++crc32w 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000E7AF6E1A ++crc32w 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000087325C06 ++crc32w 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000005504E445 ++crc32w 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000008BBFC4A6 ++crc32w 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000066074786 ++crc32w 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000008BBFC4A6 ++crc32w 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000039144EF9 ++crc32w 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000008BE0D7AF ++crc32w 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000B8BC6765 ++crc32w 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000003FDCD2F5 ++crc32w 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000000D4A9602 ++crc32w 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000074B2E868 ++crc32w 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000CC0E8F0D ++crc32w 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x00000000DEBB20E3 ++crc32w 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000066074786 ++crc32w 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000002CD1F83E ++crc32w 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000AA09C88B ++crc32w 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000012B5AFEE ++crc32w 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++crc32w 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000047EE58A2 ++crc32w 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000099EB5E53 ++crc32w 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000F51AC1F4 ++crc32w 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x000000009587F3E8 ++crc32w 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000047B14BAB ++crc32w 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000000990A6B48 ++crc32w 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000074B2E868 ++crc32w 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x00000000990A6B48 ++crc32w 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x000000002BA1E117 ++crc32w 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000099557841 ++crc32w 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000AA09C88B ++crc32w 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000002D697D1B ++crc32w 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000001FFF39EC ++crc32w 0x000000000000007F 0x0000000000000000 = 0x00000000335CB0CA ++crc32w 0x000000000000007F 0x0000000000000001 = 0x000000008BE0D7AF ++crc32w 0x000000000000007F 0x0000000000000002 = 0x0000000099557841 ++crc32w 0x000000000000007F 0x0000000000000003 = 0x0000000021E91F24 ++crc32w 0x000000000000007F 0x000000000000000F = 0x000000006B3FA09C ++crc32w 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000EDE79029 ++crc32w 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000555BF74C ++crc32w 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000047EE58A2 ++crc32w 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++crc32w 0x000000000000007F 0x0000000000000080 = 0x00000000DE0506F1 ++crc32w 0x000000000000007F 0x0000000000007FFF = 0x00000000B2F49956 ++crc32w 0x000000000000007F 0x0000000000008000 = 0x00000000D269AB4A ++crc32w 0x000000000000007F 0x000000007FFFFFFF = 0x00000000005F1309 ++crc32w 0x000000000000007F 0x0000000080000000 = 0x00000000DEE433EA ++crc32w 0x000000000000007F 0x8000000000000000 = 0x00000000335CB0CA ++crc32w 0x000000000000007F 0xFFFFFFFF80000000 = 0x00000000DEE433EA ++crc32w 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000006C4FB9B5 ++crc32w 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x00000000DEBB20E3 ++crc32w 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x00000000EDE79029 ++crc32w 0x000000000000007F 0x123456789ABCDEF0 = 0x000000006A8725B9 ++crc32w 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000005811614E ++crc32w 0x0000000000000080 0x0000000000000000 = 0x00000000ED59B63B ++crc32w 0x0000000000000080 0x0000000000000001 = 0x0000000055E5D15E ++crc32w 0x0000000000000080 0x0000000000000002 = 0x0000000047507EB0 ++crc32w 0x0000000000000080 0x0000000000000003 = 0x00000000FFEC19D5 ++crc32w 0x0000000000000080 0x000000000000000F = 0x00000000B53AA66D ++crc32w 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000033E296D8 ++crc32w 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x000000008B5EF1BD ++crc32w 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000099EB5E53 ++crc32w 0x0000000000000080 0x000000000000007F = 0x00000000DE0506F1 ++crc32w 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++crc32w 0x0000000000000080 0x0000000000007FFF = 0x000000006CF19FA7 ++crc32w 0x0000000000000080 0x0000000000008000 = 0x000000000C6CADBB ++crc32w 0x0000000000000080 0x000000007FFFFFFF = 0x00000000DE5A15F8 ++crc32w 0x0000000000000080 0x0000000080000000 = 0x0000000000E1351B ++crc32w 0x0000000000000080 0x8000000000000000 = 0x00000000ED59B63B ++crc32w 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000E1351B ++crc32w 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x00000000B24ABF44 ++crc32w 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000BE2612 ++crc32w 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000033E296D8 ++crc32w 0x0000000000000080 0x123456789ABCDEF0 = 0x00000000B4822348 ++crc32w 0x0000000000000080 0xF0DEBC9A78563412 = 0x00000000861467BF ++crc32w 0x0000000000007FFF 0x0000000000000000 = 0x0000000081A8299C ++crc32w 0x0000000000007FFF 0x0000000000000001 = 0x0000000039144EF9 ++crc32w 0x0000000000007FFF 0x0000000000000002 = 0x000000002BA1E117 ++crc32w 0x0000000000007FFF 0x0000000000000003 = 0x00000000931D8672 ++crc32w 0x0000000000007FFF 0x000000000000000F = 0x00000000D9CB39CA ++crc32w 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000005F13097F ++crc32w 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x00000000E7AF6E1A ++crc32w 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x00000000F51AC1F4 ++crc32w 0x0000000000007FFF 0x000000000000007F = 0x00000000B2F49956 ++crc32w 0x0000000000007FFF 0x0000000000000080 = 0x000000006CF19FA7 ++crc32w 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++crc32w 0x0000000000007FFF 0x0000000000008000 = 0x00000000609D321C ++crc32w 0x0000000000007FFF 0x000000007FFFFFFF = 0x00000000B2AB8A5F ++crc32w 0x0000000000007FFF 0x0000000080000000 = 0x000000006C10AABC ++crc32w 0x0000000000007FFF 0x8000000000000000 = 0x0000000081A8299C ++crc32w 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000006C10AABC ++crc32w 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x00000000DEBB20E3 ++crc32w 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000006C4FB9B5 ++crc32w 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000005F13097F ++crc32w 0x0000000000007FFF 0x123456789ABCDEF0 = 0x00000000D873BCEF ++crc32w 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x00000000EAE5F818 ++crc32w 0x0000000000008000 0x0000000000000000 = 0x00000000E1351B80 ++crc32w 0x0000000000008000 0x0000000000000001 = 0x0000000059897CE5 ++crc32w 0x0000000000008000 0x0000000000000002 = 0x000000004B3CD30B ++crc32w 0x0000000000008000 0x0000000000000003 = 0x00000000F380B46E ++crc32w 0x0000000000008000 0x000000000000000F = 0x00000000B9560BD6 ++crc32w 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000003F8E3B63 ++crc32w 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000087325C06 ++crc32w 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000009587F3E8 ++crc32w 0x0000000000008000 0x000000000000007F = 0x00000000D269AB4A ++crc32w 0x0000000000008000 0x0000000000000080 = 0x000000000C6CADBB ++crc32w 0x0000000000008000 0x0000000000007FFF = 0x00000000609D321C ++crc32w 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++crc32w 0x0000000000008000 0x000000007FFFFFFF = 0x00000000D236B843 ++crc32w 0x0000000000008000 0x0000000080000000 = 0x000000000C8D98A0 ++crc32w 0x0000000000008000 0x8000000000000000 = 0x00000000E1351B80 ++crc32w 0x0000000000008000 0xFFFFFFFF80000000 = 0x000000000C8D98A0 ++crc32w 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x00000000BE2612FF ++crc32w 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000CD28BA9 ++crc32w 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x000000003F8E3B63 ++crc32w 0x0000000000008000 0x123456789ABCDEF0 = 0x00000000B8EE8EF3 ++crc32w 0x0000000000008000 0xF0DEBC9A78563412 = 0x000000008A78CA04 ++crc32w 0x000000007FFFFFFF 0x0000000000000000 = 0x000000003303A3C3 ++crc32w 0x000000007FFFFFFF 0x0000000000000001 = 0x000000008BBFC4A6 ++crc32w 0x000000007FFFFFFF 0x0000000000000002 = 0x00000000990A6B48 ++crc32w 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000021B60C2D ++crc32w 0x000000007FFFFFFF 0x000000000000000F = 0x000000006B60B395 ++crc32w 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000EDB88320 ++crc32w 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000005504E445 ++crc32w 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000047B14BAB ++crc32w 0x000000007FFFFFFF 0x000000000000007F = 0x00000000005F1309 ++crc32w 0x000000007FFFFFFF 0x0000000000000080 = 0x00000000DE5A15F8 ++crc32w 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000000B2AB8A5F ++crc32w 0x000000007FFFFFFF 0x0000000000008000 = 0x00000000D236B843 ++crc32w 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++crc32w 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000DEBB20E3 ++crc32w 0x000000007FFFFFFF 0x8000000000000000 = 0x000000003303A3C3 ++crc32w 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x00000000DEBB20E3 ++crc32w 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000006C10AABC ++crc32w 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000DEE433EA ++crc32w 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000EDB88320 ++crc32w 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000006AD836B0 ++crc32w 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00000000584E7247 ++crc32w 0x0000000080000000 0x0000000000000000 = 0x00000000EDB88320 ++crc32w 0x0000000080000000 0x0000000000000001 = 0x000000005504E445 ++crc32w 0x0000000080000000 0x0000000000000002 = 0x0000000047B14BAB ++crc32w 0x0000000080000000 0x0000000000000003 = 0x00000000FF0D2CCE ++crc32w 0x0000000080000000 0x000000000000000F = 0x00000000B5DB9376 ++crc32w 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x000000003303A3C3 ++crc32w 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000008BBFC4A6 ++crc32w 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x00000000990A6B48 ++crc32w 0x0000000080000000 0x000000000000007F = 0x00000000DEE433EA ++crc32w 0x0000000080000000 0x0000000000000080 = 0x0000000000E1351B ++crc32w 0x0000000080000000 0x0000000000007FFF = 0x000000006C10AABC ++crc32w 0x0000000080000000 0x0000000000008000 = 0x000000000C8D98A0 ++crc32w 0x0000000080000000 0x000000007FFFFFFF = 0x00000000DEBB20E3 ++crc32w 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++crc32w 0x0000000080000000 0x8000000000000000 = 0x00000000EDB88320 ++crc32w 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++crc32w 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x00000000B2AB8A5F ++crc32w 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x00000000005F1309 ++crc32w 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x000000003303A3C3 ++crc32w 0x0000000080000000 0x123456789ABCDEF0 = 0x00000000B4631653 ++crc32w 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000086F552A4 ++crc32w 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32w 0x8000000000000000 0x0000000000000001 = 0x00000000B8BC6765 ++crc32w 0x8000000000000000 0x0000000000000002 = 0x00000000AA09C88B ++crc32w 0x8000000000000000 0x0000000000000003 = 0x0000000012B5AFEE ++crc32w 0x8000000000000000 0x000000000000000F = 0x0000000058631056 ++crc32w 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000DEBB20E3 ++crc32w 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000066074786 ++crc32w 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000074B2E868 ++crc32w 0x8000000000000000 0x000000000000007F = 0x00000000335CB0CA ++crc32w 0x8000000000000000 0x0000000000000080 = 0x00000000ED59B63B ++crc32w 0x8000000000000000 0x0000000000007FFF = 0x0000000081A8299C ++crc32w 0x8000000000000000 0x0000000000008000 = 0x00000000E1351B80 ++crc32w 0x8000000000000000 0x000000007FFFFFFF = 0x000000003303A3C3 ++crc32w 0x8000000000000000 0x0000000080000000 = 0x00000000EDB88320 ++crc32w 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++crc32w 0x8000000000000000 0xFFFFFFFF80000000 = 0x00000000EDB88320 ++crc32w 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x000000005F13097F ++crc32w 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000EDE79029 ++crc32w 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000DEBB20E3 ++crc32w 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000059DB9573 ++crc32w 0x8000000000000000 0xF0DEBC9A78563412 = 0x000000006B4DD184 ++crc32w 0xFFFFFFFF80000000 0x0000000000000000 = 0x00000000EDB88320 ++crc32w 0xFFFFFFFF80000000 0x0000000000000001 = 0x000000005504E445 ++crc32w 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000047B14BAB ++crc32w 0xFFFFFFFF80000000 0x0000000000000003 = 0x00000000FF0D2CCE ++crc32w 0xFFFFFFFF80000000 0x000000000000000F = 0x00000000B5DB9376 ++crc32w 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x000000003303A3C3 ++crc32w 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000008BBFC4A6 ++crc32w 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x00000000990A6B48 ++crc32w 0xFFFFFFFF80000000 0x000000000000007F = 0x00000000DEE433EA ++crc32w 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000E1351B ++crc32w 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000006C10AABC ++crc32w 0xFFFFFFFF80000000 0x0000000000008000 = 0x000000000C8D98A0 ++crc32w 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00000000DEBB20E3 ++crc32w 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++crc32w 0xFFFFFFFF80000000 0x8000000000000000 = 0x00000000EDB88320 ++crc32w 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++crc32w 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x00000000B2AB8A5F ++crc32w 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x00000000005F1309 ++crc32w 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x000000003303A3C3 ++crc32w 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x00000000B4631653 ++crc32w 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000086F552A4 ++crc32w 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x000000005F13097F ++crc32w 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x00000000E7AF6E1A ++crc32w 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x00000000F51AC1F4 ++crc32w 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x000000004DA6A691 ++crc32w 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000007701929 ++crc32w 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000081A8299C ++crc32w 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000039144EF9 ++crc32w 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000002BA1E117 ++crc32w 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000006C4FB9B5 ++crc32w 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00000000B24ABF44 ++crc32w 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00000000DEBB20E3 ++crc32w 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x00000000BE2612FF ++crc32w 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000006C10AABC ++crc32w 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x00000000B2AB8A5F ++crc32w 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x000000005F13097F ++crc32w 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x00000000B2AB8A5F ++crc32w 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++crc32w 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00000000B2F49956 ++crc32w 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000081A8299C ++crc32w 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000006C89C0C ++crc32w 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x00000000345ED8FB ++crc32w 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x00000000EDE79029 ++crc32w 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x00000000555BF74C ++crc32w 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000047EE58A2 ++crc32w 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x00000000FF523FC7 ++crc32w 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000B584807F ++crc32w 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000335CB0CA ++crc32w 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000008BE0D7AF ++crc32w 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000099557841 ++crc32w 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000DEBB20E3 ++crc32w 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000BE2612 ++crc32w 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x000000006C4FB9B5 ++crc32w 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000000CD28BA9 ++crc32w 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000DEE433EA ++crc32w 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x00000000005F1309 ++crc32w 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x00000000EDE79029 ++crc32w 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x00000000005F1309 ++crc32w 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x00000000B2F49956 ++crc32w 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++crc32w 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000335CB0CA ++crc32w 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x00000000B43C055A ++crc32w 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000086AA41AD ++crc32w 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000DEBB20E3 ++crc32w 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000066074786 ++crc32w 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000074B2E868 ++crc32w 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000CC0E8F0D ++crc32w 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000086D830B5 ++crc32w 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++crc32w 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000B8BC6765 ++crc32w 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000AA09C88B ++crc32w 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000EDE79029 ++crc32w 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000033E296D8 ++crc32w 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000005F13097F ++crc32w 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000003F8E3B63 ++crc32w 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000EDB88320 ++crc32w 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000003303A3C3 ++crc32w 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000DEBB20E3 ++crc32w 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000003303A3C3 ++crc32w 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000081A8299C ++crc32w 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000335CB0CA ++crc32w 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++crc32w 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000008760B590 ++crc32w 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000B5F6F167 ++crc32w 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000059DB9573 ++crc32w 0x123456789ABCDEF0 0x0000000000000001 = 0x00000000E167F216 ++crc32w 0x123456789ABCDEF0 0x0000000000000002 = 0x00000000F3D25DF8 ++crc32w 0x123456789ABCDEF0 0x0000000000000003 = 0x000000004B6E3A9D ++crc32w 0x123456789ABCDEF0 0x000000000000000F = 0x0000000001B88525 ++crc32w 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000008760B590 ++crc32w 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000000003FDCD2F5 ++crc32w 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000002D697D1B ++crc32w 0x123456789ABCDEF0 0x000000000000007F = 0x000000006A8725B9 ++crc32w 0x123456789ABCDEF0 0x0000000000000080 = 0x00000000B4822348 ++crc32w 0x123456789ABCDEF0 0x0000000000007FFF = 0x00000000D873BCEF ++crc32w 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000B8EE8EF3 ++crc32w 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000006AD836B0 ++crc32w 0x123456789ABCDEF0 0x0000000080000000 = 0x00000000B4631653 ++crc32w 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000059DB9573 ++crc32w 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x00000000B4631653 ++crc32w 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000006C89C0C ++crc32w 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x00000000B43C055A ++crc32w 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000008760B590 ++crc32w 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++crc32w 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x00000000329644F7 ++crc32w 0xF0DEBC9A78563412 0x0000000000000000 = 0x000000006B4DD184 ++crc32w 0xF0DEBC9A78563412 0x0000000000000001 = 0x00000000D3F1B6E1 ++crc32w 0xF0DEBC9A78563412 0x0000000000000002 = 0x00000000C144190F ++crc32w 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000079F87E6A ++crc32w 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000332EC1D2 ++crc32w 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00000000B5F6F167 ++crc32w 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x000000000D4A9602 ++crc32w 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x000000001FFF39EC ++crc32w 0xF0DEBC9A78563412 0x000000000000007F = 0x000000005811614E ++crc32w 0xF0DEBC9A78563412 0x0000000000000080 = 0x00000000861467BF ++crc32w 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00000000EAE5F818 ++crc32w 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000008A78CA04 ++crc32w 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000584E7247 ++crc32w 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000086F552A4 ++crc32w 0xF0DEBC9A78563412 0x8000000000000000 = 0x000000006B4DD184 ++crc32w 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000086F552A4 ++crc32w 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x00000000345ED8FB ++crc32w 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000086AA41AD ++crc32w 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000B5F6F167 ++crc32w 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x00000000329644F7 ++crc32w 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on crc32l === ++crc32l 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32l 0x0000000000000000 0x0000000000000001 = 0x00000000CCAA009E ++crc32l 0x0000000000000000 0x0000000000000002 = 0x000000004225077D ++crc32l 0x0000000000000000 0x0000000000000003 = 0x000000008E8F07E3 ++crc32l 0x0000000000000000 0x000000000000000F = 0x00000000D92012AC ++crc32l 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000044660075 ++crc32l 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000088CC00EB ++crc32l 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000006430708 ++crc32l 0x0000000000000000 0x000000000000007F = 0x000000007570833C ++crc32l 0x0000000000000000 0x0000000000000080 = 0x00000000533B85DA ++crc32l 0x0000000000000000 0x0000000000007FFF = 0x000000003C6BA624 ++crc32l 0x0000000000000000 0x0000000000008000 = 0x000000008816EAF2 ++crc32l 0x0000000000000000 0x000000007FFFFFFF = 0x000000002B3B9004 ++crc32l 0x0000000000000000 0x0000000080000000 = 0x00000000B1E6B092 ++crc32l 0x0000000000000000 0x8000000000000000 = 0x00000000EDB88320 ++crc32l 0x0000000000000000 0xFFFFFFFF80000000 = 0x000000006F5D9071 ++crc32l 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x00000000780DA651 ++crc32l 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000031168349 ++crc32l 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000A9DE8355 ++crc32l 0x0000000000000000 0x123456789ABCDEF0 = 0x000000007C00D823 ++crc32l 0x0000000000000000 0xF0DEBC9A78563412 = 0x00000000CD78EBCA ++crc32l 0x0000000000000001 0x0000000000000000 = 0x00000000CCAA009E ++crc32l 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++crc32l 0x0000000000000001 0x0000000000000002 = 0x000000008E8F07E3 ++crc32l 0x0000000000000001 0x0000000000000003 = 0x000000004225077D ++crc32l 0x0000000000000001 0x000000000000000F = 0x00000000158A1232 ++crc32l 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000088CC00EB ++crc32l 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000044660075 ++crc32l 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x00000000CAE90796 ++crc32l 0x0000000000000001 0x000000000000007F = 0x00000000B9DA83A2 ++crc32l 0x0000000000000001 0x0000000000000080 = 0x000000009F918544 ++crc32l 0x0000000000000001 0x0000000000007FFF = 0x00000000F0C1A6BA ++crc32l 0x0000000000000001 0x0000000000008000 = 0x0000000044BCEA6C ++crc32l 0x0000000000000001 0x000000007FFFFFFF = 0x00000000E791909A ++crc32l 0x0000000000000001 0x0000000080000000 = 0x000000007D4CB00C ++crc32l 0x0000000000000001 0x8000000000000000 = 0x00000000211283BE ++crc32l 0x0000000000000001 0xFFFFFFFF80000000 = 0x00000000A3F790EF ++crc32l 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x00000000B4A7A6CF ++crc32l 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x00000000FDBC83D7 ++crc32l 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x00000000657483CB ++crc32l 0x0000000000000001 0x123456789ABCDEF0 = 0x00000000B0AAD8BD ++crc32l 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000001D2EB54 ++crc32l 0x0000000000000002 0x0000000000000000 = 0x000000004225077D ++crc32l 0x0000000000000002 0x0000000000000001 = 0x000000008E8F07E3 ++crc32l 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++crc32l 0x0000000000000002 0x0000000000000003 = 0x00000000CCAA009E ++crc32l 0x0000000000000002 0x000000000000000F = 0x000000009B0515D1 ++crc32l 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000006430708 ++crc32l 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x00000000CAE90796 ++crc32l 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000044660075 ++crc32l 0x0000000000000002 0x000000000000007F = 0x0000000037558441 ++crc32l 0x0000000000000002 0x0000000000000080 = 0x00000000111E82A7 ++crc32l 0x0000000000000002 0x0000000000007FFF = 0x000000007E4EA159 ++crc32l 0x0000000000000002 0x0000000000008000 = 0x00000000CA33ED8F ++crc32l 0x0000000000000002 0x000000007FFFFFFF = 0x00000000691E9779 ++crc32l 0x0000000000000002 0x0000000080000000 = 0x00000000F3C3B7EF ++crc32l 0x0000000000000002 0x8000000000000000 = 0x00000000AF9D845D ++crc32l 0x0000000000000002 0xFFFFFFFF80000000 = 0x000000002D78970C ++crc32l 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x000000003A28A12C ++crc32l 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000073338434 ++crc32l 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x00000000EBFB8428 ++crc32l 0x0000000000000002 0x123456789ABCDEF0 = 0x000000003E25DF5E ++crc32l 0x0000000000000002 0xF0DEBC9A78563412 = 0x000000008F5DECB7 ++crc32l 0x0000000000000003 0x0000000000000000 = 0x000000008E8F07E3 ++crc32l 0x0000000000000003 0x0000000000000001 = 0x000000004225077D ++crc32l 0x0000000000000003 0x0000000000000002 = 0x00000000CCAA009E ++crc32l 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++crc32l 0x0000000000000003 0x000000000000000F = 0x0000000057AF154F ++crc32l 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x00000000CAE90796 ++crc32l 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000006430708 ++crc32l 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000088CC00EB ++crc32l 0x0000000000000003 0x000000000000007F = 0x00000000FBFF84DF ++crc32l 0x0000000000000003 0x0000000000000080 = 0x00000000DDB48239 ++crc32l 0x0000000000000003 0x0000000000007FFF = 0x00000000B2E4A1C7 ++crc32l 0x0000000000000003 0x0000000000008000 = 0x000000000699ED11 ++crc32l 0x0000000000000003 0x000000007FFFFFFF = 0x00000000A5B497E7 ++crc32l 0x0000000000000003 0x0000000080000000 = 0x000000003F69B771 ++crc32l 0x0000000000000003 0x8000000000000000 = 0x00000000633784C3 ++crc32l 0x0000000000000003 0xFFFFFFFF80000000 = 0x00000000E1D29792 ++crc32l 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x00000000F682A1B2 ++crc32l 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x00000000BF9984AA ++crc32l 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x00000000275184B6 ++crc32l 0x0000000000000003 0x123456789ABCDEF0 = 0x00000000F28FDFC0 ++crc32l 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000043F7EC29 ++crc32l 0x000000000000000F 0x0000000000000000 = 0x00000000D92012AC ++crc32l 0x000000000000000F 0x0000000000000001 = 0x00000000158A1232 ++crc32l 0x000000000000000F 0x0000000000000002 = 0x000000009B0515D1 ++crc32l 0x000000000000000F 0x0000000000000003 = 0x0000000057AF154F ++crc32l 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++crc32l 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000009D4612D9 ++crc32l 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000051EC1247 ++crc32l 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x00000000DF6315A4 ++crc32l 0x000000000000000F 0x000000000000007F = 0x00000000AC509190 ++crc32l 0x000000000000000F 0x0000000000000080 = 0x000000008A1B9776 ++crc32l 0x000000000000000F 0x0000000000007FFF = 0x00000000E54BB488 ++crc32l 0x000000000000000F 0x0000000000008000 = 0x000000005136F85E ++crc32l 0x000000000000000F 0x000000007FFFFFFF = 0x00000000F21B82A8 ++crc32l 0x000000000000000F 0x0000000080000000 = 0x0000000068C6A23E ++crc32l 0x000000000000000F 0x8000000000000000 = 0x000000003498918C ++crc32l 0x000000000000000F 0xFFFFFFFF80000000 = 0x00000000B67D82DD ++crc32l 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x00000000A12DB4FD ++crc32l 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x00000000E83691E5 ++crc32l 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000070FE91F9 ++crc32l 0x000000000000000F 0x123456789ABCDEF0 = 0x00000000A520CA8F ++crc32l 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000001458F966 ++crc32l 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000009ADD2096 ++crc32l 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000056772008 ++crc32l 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000D8F827EB ++crc32l 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000014522775 ++crc32l 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000043FD323A ++crc32l 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000DEBB20E3 ++crc32l 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000001211207D ++crc32l 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000009C9E279E ++crc32l 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000EFADA3AA ++crc32l 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000C9E6A54C ++crc32l 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000A6B686B2 ++crc32l 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000012CBCA64 ++crc32l 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000B1E6B092 ++crc32l 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000002B3B9004 ++crc32l 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000007765A3B6 ++crc32l 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000F580B0E7 ++crc32l 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000E2D086C7 ++crc32l 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000ABCBA3DF ++crc32l 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000003303A3C3 ++crc32l 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000E6DDF8B5 ++crc32l 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000057A5CB5C ++crc32l 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000056772008 ++crc32l 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000009ADD2096 ++crc32l 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000014522775 ++crc32l 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x00000000D8F827EB ++crc32l 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000008F5732A4 ++crc32l 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x000000001211207D ++crc32l 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x00000000DEBB20E3 ++crc32l 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000050342700 ++crc32l 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000002307A334 ++crc32l 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000054CA5D2 ++crc32l 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x000000006A1C862C ++crc32l 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x00000000DE61CAFA ++crc32l 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007D4CB00C ++crc32l 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000000E791909A ++crc32l 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x00000000BBCFA328 ++crc32l 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000392AB079 ++crc32l 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000002E7A8659 ++crc32l 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000006761A341 ++crc32l 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000FFA9A35D ++crc32l 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000002A77F82B ++crc32l 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000009B0FCBC2 ++crc32l 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x00000000D8F827EB ++crc32l 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000014522775 ++crc32l 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000009ADD2096 ++crc32l 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000056772008 ++crc32l 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000001D83547 ++crc32l 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x000000009C9E279E ++crc32l 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000050342700 ++crc32l 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x00000000DEBB20E3 ++crc32l 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00000000AD88A4D7 ++crc32l 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000008BC3A231 ++crc32l 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000E49381CF ++crc32l 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000050EECD19 ++crc32l 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000F3C3B7EF ++crc32l 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000000691E9779 ++crc32l 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x000000003540A4CB ++crc32l 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x00000000B7A5B79A ++crc32l 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000A0F581BA ++crc32l 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00000000E9EEA4A2 ++crc32l 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x000000007126A4BE ++crc32l 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000A4F8FFC8 ++crc32l 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000001580CC21 ++crc32l 0x000000000000007F 0x0000000000000000 = 0x000000007570833C ++crc32l 0x000000000000007F 0x0000000000000001 = 0x00000000B9DA83A2 ++crc32l 0x000000000000007F 0x0000000000000002 = 0x0000000037558441 ++crc32l 0x000000000000007F 0x0000000000000003 = 0x00000000FBFF84DF ++crc32l 0x000000000000007F 0x000000000000000F = 0x00000000AC509190 ++crc32l 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000031168349 ++crc32l 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000FDBC83D7 ++crc32l 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000073338434 ++crc32l 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++crc32l 0x000000000000007F 0x0000000000000080 = 0x00000000264B06E6 ++crc32l 0x000000000000007F 0x0000000000007FFF = 0x00000000491B2518 ++crc32l 0x000000000000007F 0x0000000000008000 = 0x00000000FD6669CE ++crc32l 0x000000000000007F 0x000000007FFFFFFF = 0x000000005E4B1338 ++crc32l 0x000000000000007F 0x0000000080000000 = 0x00000000C49633AE ++crc32l 0x000000000000007F 0x8000000000000000 = 0x0000000098C8001C ++crc32l 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000001A2D134D ++crc32l 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000D7D256D ++crc32l 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000044660075 ++crc32l 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x00000000DCAE0069 ++crc32l 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000009705B1F ++crc32l 0x000000000000007F 0xF0DEBC9A78563412 = 0x00000000B80868F6 ++crc32l 0x0000000000000080 0x0000000000000000 = 0x00000000533B85DA ++crc32l 0x0000000000000080 0x0000000000000001 = 0x000000009F918544 ++crc32l 0x0000000000000080 0x0000000000000002 = 0x00000000111E82A7 ++crc32l 0x0000000000000080 0x0000000000000003 = 0x00000000DDB48239 ++crc32l 0x0000000000000080 0x000000000000000F = 0x000000008A1B9776 ++crc32l 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x00000000175D85AF ++crc32l 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x00000000DBF78531 ++crc32l 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x00000000557882D2 ++crc32l 0x0000000000000080 0x000000000000007F = 0x00000000264B06E6 ++crc32l 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++crc32l 0x0000000000000080 0x0000000000007FFF = 0x000000006F5023FE ++crc32l 0x0000000000000080 0x0000000000008000 = 0x00000000DB2D6F28 ++crc32l 0x0000000000000080 0x000000007FFFFFFF = 0x00000000780015DE ++crc32l 0x0000000000000080 0x0000000080000000 = 0x00000000E2DD3548 ++crc32l 0x0000000000000080 0x8000000000000000 = 0x00000000BE8306FA ++crc32l 0x0000000000000080 0xFFFFFFFF80000000 = 0x000000003C6615AB ++crc32l 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x000000002B36238B ++crc32l 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x00000000622D0693 ++crc32l 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x00000000FAE5068F ++crc32l 0x0000000000000080 0x123456789ABCDEF0 = 0x000000002F3B5DF9 ++crc32l 0x0000000000000080 0xF0DEBC9A78563412 = 0x000000009E436E10 ++crc32l 0x0000000000007FFF 0x0000000000000000 = 0x000000003C6BA624 ++crc32l 0x0000000000007FFF 0x0000000000000001 = 0x00000000F0C1A6BA ++crc32l 0x0000000000007FFF 0x0000000000000002 = 0x000000007E4EA159 ++crc32l 0x0000000000007FFF 0x0000000000000003 = 0x00000000B2E4A1C7 ++crc32l 0x0000000000007FFF 0x000000000000000F = 0x00000000E54BB488 ++crc32l 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x00000000780DA651 ++crc32l 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x00000000B4A7A6CF ++crc32l 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000003A28A12C ++crc32l 0x0000000000007FFF 0x000000000000007F = 0x00000000491B2518 ++crc32l 0x0000000000007FFF 0x0000000000000080 = 0x000000006F5023FE ++crc32l 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++crc32l 0x0000000000007FFF 0x0000000000008000 = 0x00000000B47D4CD6 ++crc32l 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000017503620 ++crc32l 0x0000000000007FFF 0x0000000080000000 = 0x000000008D8D16B6 ++crc32l 0x0000000000007FFF 0x8000000000000000 = 0x00000000D1D32504 ++crc32l 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000053363655 ++crc32l 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000044660075 ++crc32l 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000D7D256D ++crc32l 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000095B52571 ++crc32l 0x0000000000007FFF 0x123456789ABCDEF0 = 0x00000000406B7E07 ++crc32l 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x00000000F1134DEE ++crc32l 0x0000000000008000 0x0000000000000000 = 0x000000008816EAF2 ++crc32l 0x0000000000008000 0x0000000000000001 = 0x0000000044BCEA6C ++crc32l 0x0000000000008000 0x0000000000000002 = 0x00000000CA33ED8F ++crc32l 0x0000000000008000 0x0000000000000003 = 0x000000000699ED11 ++crc32l 0x0000000000008000 0x000000000000000F = 0x000000005136F85E ++crc32l 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x00000000CC70EA87 ++crc32l 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000DAEA19 ++crc32l 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000008E55EDFA ++crc32l 0x0000000000008000 0x000000000000007F = 0x00000000FD6669CE ++crc32l 0x0000000000008000 0x0000000000000080 = 0x00000000DB2D6F28 ++crc32l 0x0000000000008000 0x0000000000007FFF = 0x00000000B47D4CD6 ++crc32l 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++crc32l 0x0000000000008000 0x000000007FFFFFFF = 0x00000000A32D7AF6 ++crc32l 0x0000000000008000 0x0000000080000000 = 0x0000000039F05A60 ++crc32l 0x0000000000008000 0x8000000000000000 = 0x0000000065AE69D2 ++crc32l 0x0000000000008000 0xFFFFFFFF80000000 = 0x00000000E74B7A83 ++crc32l 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x00000000F01B4CA3 ++crc32l 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x00000000B90069BB ++crc32l 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000021C869A7 ++crc32l 0x0000000000008000 0x123456789ABCDEF0 = 0x00000000F41632D1 ++crc32l 0x0000000000008000 0xF0DEBC9A78563412 = 0x00000000456E0138 ++crc32l 0x000000007FFFFFFF 0x0000000000000000 = 0x000000002B3B9004 ++crc32l 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000E791909A ++crc32l 0x000000007FFFFFFF 0x0000000000000002 = 0x00000000691E9779 ++crc32l 0x000000007FFFFFFF 0x0000000000000003 = 0x00000000A5B497E7 ++crc32l 0x000000007FFFFFFF 0x000000000000000F = 0x00000000F21B82A8 ++crc32l 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000006F5D9071 ++crc32l 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000A3F790EF ++crc32l 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000002D78970C ++crc32l 0x000000007FFFFFFF 0x000000000000007F = 0x000000005E4B1338 ++crc32l 0x000000007FFFFFFF 0x0000000000000080 = 0x00000000780015DE ++crc32l 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000017503620 ++crc32l 0x000000007FFFFFFF 0x0000000000008000 = 0x00000000A32D7AF6 ++crc32l 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++crc32l 0x000000007FFFFFFF 0x0000000080000000 = 0x000000009ADD2096 ++crc32l 0x000000007FFFFFFF 0x8000000000000000 = 0x00000000C6831324 ++crc32l 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000044660075 ++crc32l 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000053363655 ++crc32l 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000001A2D134D ++crc32l 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000082E51351 ++crc32l 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x00000000573B4827 ++crc32l 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00000000E6437BCE ++crc32l 0x0000000080000000 0x0000000000000000 = 0x00000000B1E6B092 ++crc32l 0x0000000080000000 0x0000000000000001 = 0x000000007D4CB00C ++crc32l 0x0000000080000000 0x0000000000000002 = 0x00000000F3C3B7EF ++crc32l 0x0000000080000000 0x0000000000000003 = 0x000000003F69B771 ++crc32l 0x0000000080000000 0x000000000000000F = 0x0000000068C6A23E ++crc32l 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x00000000F580B0E7 ++crc32l 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x00000000392AB079 ++crc32l 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x00000000B7A5B79A ++crc32l 0x0000000080000000 0x000000000000007F = 0x00000000C49633AE ++crc32l 0x0000000080000000 0x0000000000000080 = 0x00000000E2DD3548 ++crc32l 0x0000000080000000 0x0000000000007FFF = 0x000000008D8D16B6 ++crc32l 0x0000000080000000 0x0000000000008000 = 0x0000000039F05A60 ++crc32l 0x0000000080000000 0x000000007FFFFFFF = 0x000000009ADD2096 ++crc32l 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++crc32l 0x0000000080000000 0x8000000000000000 = 0x000000005C5E33B2 ++crc32l 0x0000000080000000 0xFFFFFFFF80000000 = 0x00000000DEBB20E3 ++crc32l 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x00000000C9EB16C3 ++crc32l 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080F033DB ++crc32l 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x00000000183833C7 ++crc32l 0x0000000080000000 0x123456789ABCDEF0 = 0x00000000CDE668B1 ++crc32l 0x0000000080000000 0xF0DEBC9A78563412 = 0x000000007C9E5B58 ++crc32l 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32l 0x8000000000000000 0x0000000000000001 = 0x00000000CCAA009E ++crc32l 0x8000000000000000 0x0000000000000002 = 0x000000004225077D ++crc32l 0x8000000000000000 0x0000000000000003 = 0x000000008E8F07E3 ++crc32l 0x8000000000000000 0x000000000000000F = 0x00000000D92012AC ++crc32l 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000044660075 ++crc32l 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000088CC00EB ++crc32l 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000006430708 ++crc32l 0x8000000000000000 0x000000000000007F = 0x000000007570833C ++crc32l 0x8000000000000000 0x0000000000000080 = 0x00000000533B85DA ++crc32l 0x8000000000000000 0x0000000000007FFF = 0x000000003C6BA624 ++crc32l 0x8000000000000000 0x0000000000008000 = 0x000000008816EAF2 ++crc32l 0x8000000000000000 0x000000007FFFFFFF = 0x000000002B3B9004 ++crc32l 0x8000000000000000 0x0000000080000000 = 0x00000000B1E6B092 ++crc32l 0x8000000000000000 0x8000000000000000 = 0x00000000EDB88320 ++crc32l 0x8000000000000000 0xFFFFFFFF80000000 = 0x000000006F5D9071 ++crc32l 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x00000000780DA651 ++crc32l 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000031168349 ++crc32l 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000A9DE8355 ++crc32l 0x8000000000000000 0x123456789ABCDEF0 = 0x000000007C00D823 ++crc32l 0x8000000000000000 0xF0DEBC9A78563412 = 0x00000000CD78EBCA ++crc32l 0xFFFFFFFF80000000 0x0000000000000000 = 0x00000000B1E6B092 ++crc32l 0xFFFFFFFF80000000 0x0000000000000001 = 0x000000007D4CB00C ++crc32l 0xFFFFFFFF80000000 0x0000000000000002 = 0x00000000F3C3B7EF ++crc32l 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000003F69B771 ++crc32l 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000068C6A23E ++crc32l 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00000000F580B0E7 ++crc32l 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x00000000392AB079 ++crc32l 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x00000000B7A5B79A ++crc32l 0xFFFFFFFF80000000 0x000000000000007F = 0x00000000C49633AE ++crc32l 0xFFFFFFFF80000000 0x0000000000000080 = 0x00000000E2DD3548 ++crc32l 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000008D8D16B6 ++crc32l 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000039F05A60 ++crc32l 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000009ADD2096 ++crc32l 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++crc32l 0xFFFFFFFF80000000 0x8000000000000000 = 0x000000005C5E33B2 ++crc32l 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x00000000DEBB20E3 ++crc32l 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x00000000C9EB16C3 ++crc32l 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000080F033DB ++crc32l 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00000000183833C7 ++crc32l 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x00000000CDE668B1 ++crc32l 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x000000007C9E5B58 ++crc32l 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x00000000A6B686B2 ++crc32l 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x000000006A1C862C ++crc32l 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x00000000E49381CF ++crc32l 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000028398151 ++crc32l 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000007F96941E ++crc32l 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00000000E2D086C7 ++crc32l 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000002E7A8659 ++crc32l 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x00000000A0F581BA ++crc32l 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000D3C6058E ++crc32l 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00000000F58D0368 ++crc32l 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x000000009ADD2096 ++crc32l 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x000000002EA06C40 ++crc32l 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000008D8D16B6 ++crc32l 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000017503620 ++crc32l 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x000000004B0E0592 ++crc32l 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x00000000C9EB16C3 ++crc32l 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x00000000DEBB20E3 ++crc32l 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000097A005FB ++crc32l 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x000000000F6805E7 ++crc32l 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000DAB65E91 ++crc32l 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000006BCE6D78 ++crc32l 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x00000000EFADA3AA ++crc32l 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000002307A334 ++crc32l 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x00000000AD88A4D7 ++crc32l 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000006122A449 ++crc32l 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000368DB106 ++crc32l 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000ABCBA3DF ++crc32l 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000006761A341 ++crc32l 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x00000000E9EEA4A2 ++crc32l 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000009ADD2096 ++crc32l 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x00000000BC962670 ++crc32l 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000D3C6058E ++crc32l 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000067BB4958 ++crc32l 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000C49633AE ++crc32l 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000005E4B1338 ++crc32l 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x000000000215208A ++crc32l 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000080F033DB ++crc32l 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000097A005FB ++crc32l 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x00000000DEBB20E3 ++crc32l 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000467320FF ++crc32l 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000093AD7B89 ++crc32l 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000022D54860 ++crc32l 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000009ADD2096 ++crc32l 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000056772008 ++crc32l 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000D8F827EB ++crc32l 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000014522775 ++crc32l 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000043FD323A ++crc32l 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000DEBB20E3 ++crc32l 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000001211207D ++crc32l 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000009C9E279E ++crc32l 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000EFADA3AA ++crc32l 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000C9E6A54C ++crc32l 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000A6B686B2 ++crc32l 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000012CBCA64 ++crc32l 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000B1E6B092 ++crc32l 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000002B3B9004 ++crc32l 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000007765A3B6 ++crc32l 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000F580B0E7 ++crc32l 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000E2D086C7 ++crc32l 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000ABCBA3DF ++crc32l 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000003303A3C3 ++crc32l 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000E6DDF8B5 ++crc32l 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000057A5CB5C ++crc32l 0x123456789ABCDEF0 0x0000000000000000 = 0x00000000F22980ED ++crc32l 0x123456789ABCDEF0 0x0000000000000001 = 0x000000003E838073 ++crc32l 0x123456789ABCDEF0 0x0000000000000002 = 0x00000000B00C8790 ++crc32l 0x123456789ABCDEF0 0x0000000000000003 = 0x000000007CA6870E ++crc32l 0x123456789ABCDEF0 0x000000000000000F = 0x000000002B099241 ++crc32l 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x00000000B64F8098 ++crc32l 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000000007AE58006 ++crc32l 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x00000000F46A87E5 ++crc32l 0x123456789ABCDEF0 0x000000000000007F = 0x00000000875903D1 ++crc32l 0x123456789ABCDEF0 0x0000000000000080 = 0x00000000A1120537 ++crc32l 0x123456789ABCDEF0 0x0000000000007FFF = 0x00000000CE4226C9 ++crc32l 0x123456789ABCDEF0 0x0000000000008000 = 0x000000007A3F6A1F ++crc32l 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x00000000D91210E9 ++crc32l 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000043CF307F ++crc32l 0x123456789ABCDEF0 0x8000000000000000 = 0x000000001F9103CD ++crc32l 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000009D74109C ++crc32l 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000008A2426BC ++crc32l 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x00000000C33F03A4 ++crc32l 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000005BF703B8 ++crc32l 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000008E2958CE ++crc32l 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000003F516B27 ++crc32l 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000071C7F7F3 ++crc32l 0xF0DEBC9A78563412 0x0000000000000001 = 0x00000000BD6DF76D ++crc32l 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000033E2F08E ++crc32l 0xF0DEBC9A78563412 0x0000000000000003 = 0x00000000FF48F010 ++crc32l 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000A8E7E55F ++crc32l 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000035A1F786 ++crc32l 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x00000000F90BF718 ++crc32l 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x000000007784F0FB ++crc32l 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000004B774CF ++crc32l 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000022FC7229 ++crc32l 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000004DAC51D7 ++crc32l 0xF0DEBC9A78563412 0x0000000000008000 = 0x00000000F9D11D01 ++crc32l 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000005AFC67F7 ++crc32l 0xF0DEBC9A78563412 0x0000000080000000 = 0x00000000C0214761 ++crc32l 0xF0DEBC9A78563412 0x8000000000000000 = 0x000000009C7F74D3 ++crc32l 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000001E9A6782 ++crc32l 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000009CA51A2 ++crc32l 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000040D174BA ++crc32l 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000D81974A6 ++crc32l 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000000DC72FD0 ++crc32l 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x00000000BCBF1C39 ++=== Running test on crc32cb === ++crc32cb 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32cb 0x0000000000000000 0x0000000000000001 = 0x00000000F26B8303 ++crc32cb 0x0000000000000000 0x0000000000000002 = 0x00000000E13B70F7 ++crc32cb 0x0000000000000000 0x0000000000000003 = 0x000000001350F3F4 ++crc32cb 0x0000000000000000 0x000000000000000F = 0x000000005E133C24 ++crc32cb 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000AD7D5351 ++crc32cb 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000005F16D052 ++crc32cb 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000004C4623A6 ++crc32cb 0x0000000000000000 0x000000000000007F = 0x000000002F8B6829 ++crc32cb 0x0000000000000000 0x0000000000000080 = 0x0000000082F63B78 ++crc32cb 0x0000000000000000 0x0000000000007FFF = 0x00000000AD7D5351 ++crc32cb 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++crc32cb 0x0000000000000000 0x000000007FFFFFFF = 0x00000000AD7D5351 ++crc32cb 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++crc32cb 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++crc32cb 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++crc32cb 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++crc32cb 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000082F63B78 ++crc32cb 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000AD7D5351 ++crc32cb 0x0000000000000000 0x123456789ABCDEF0 = 0x00000000F36E6F75 ++crc32cb 0x0000000000000000 0xF0DEBC9A78563412 = 0x00000000F165B798 ++crc32cb 0x0000000000000001 0x0000000000000000 = 0x00000000F26B8303 ++crc32cb 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++crc32cb 0x0000000000000001 0x0000000000000002 = 0x000000001350F3F4 ++crc32cb 0x0000000000000001 0x0000000000000003 = 0x00000000E13B70F7 ++crc32cb 0x0000000000000001 0x000000000000000F = 0x00000000AC78BF27 ++crc32cb 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x000000005F16D052 ++crc32cb 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x00000000AD7D5351 ++crc32cb 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x00000000BE2DA0A5 ++crc32cb 0x0000000000000001 0x000000000000007F = 0x00000000DDE0EB2A ++crc32cb 0x0000000000000001 0x0000000000000080 = 0x00000000709DB87B ++crc32cb 0x0000000000000001 0x0000000000007FFF = 0x000000005F16D052 ++crc32cb 0x0000000000000001 0x0000000000008000 = 0x00000000F26B8303 ++crc32cb 0x0000000000000001 0x000000007FFFFFFF = 0x000000005F16D052 ++crc32cb 0x0000000000000001 0x0000000080000000 = 0x00000000F26B8303 ++crc32cb 0x0000000000000001 0x8000000000000000 = 0x00000000F26B8303 ++crc32cb 0x0000000000000001 0xFFFFFFFF80000000 = 0x00000000F26B8303 ++crc32cb 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x00000000F26B8303 ++crc32cb 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x00000000709DB87B ++crc32cb 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x000000005F16D052 ++crc32cb 0x0000000000000001 0x123456789ABCDEF0 = 0x000000000105EC76 ++crc32cb 0x0000000000000001 0xF0DEBC9A78563412 = 0x00000000030E349B ++crc32cb 0x0000000000000002 0x0000000000000000 = 0x00000000E13B70F7 ++crc32cb 0x0000000000000002 0x0000000000000001 = 0x000000001350F3F4 ++crc32cb 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++crc32cb 0x0000000000000002 0x0000000000000003 = 0x00000000F26B8303 ++crc32cb 0x0000000000000002 0x000000000000000F = 0x00000000BF284CD3 ++crc32cb 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x000000004C4623A6 ++crc32cb 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x00000000BE2DA0A5 ++crc32cb 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x00000000AD7D5351 ++crc32cb 0x0000000000000002 0x000000000000007F = 0x00000000CEB018DE ++crc32cb 0x0000000000000002 0x0000000000000080 = 0x0000000063CD4B8F ++crc32cb 0x0000000000000002 0x0000000000007FFF = 0x000000004C4623A6 ++crc32cb 0x0000000000000002 0x0000000000008000 = 0x00000000E13B70F7 ++crc32cb 0x0000000000000002 0x000000007FFFFFFF = 0x000000004C4623A6 ++crc32cb 0x0000000000000002 0x0000000080000000 = 0x00000000E13B70F7 ++crc32cb 0x0000000000000002 0x8000000000000000 = 0x00000000E13B70F7 ++crc32cb 0x0000000000000002 0xFFFFFFFF80000000 = 0x00000000E13B70F7 ++crc32cb 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x00000000E13B70F7 ++crc32cb 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000063CD4B8F ++crc32cb 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x000000004C4623A6 ++crc32cb 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000012551F82 ++crc32cb 0x0000000000000002 0xF0DEBC9A78563412 = 0x00000000105EC76F ++crc32cb 0x0000000000000003 0x0000000000000000 = 0x000000001350F3F4 ++crc32cb 0x0000000000000003 0x0000000000000001 = 0x00000000E13B70F7 ++crc32cb 0x0000000000000003 0x0000000000000002 = 0x00000000F26B8303 ++crc32cb 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++crc32cb 0x0000000000000003 0x000000000000000F = 0x000000004D43CFD0 ++crc32cb 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x00000000BE2DA0A5 ++crc32cb 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000004C4623A6 ++crc32cb 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000005F16D052 ++crc32cb 0x0000000000000003 0x000000000000007F = 0x000000003CDB9BDD ++crc32cb 0x0000000000000003 0x0000000000000080 = 0x0000000091A6C88C ++crc32cb 0x0000000000000003 0x0000000000007FFF = 0x00000000BE2DA0A5 ++crc32cb 0x0000000000000003 0x0000000000008000 = 0x000000001350F3F4 ++crc32cb 0x0000000000000003 0x000000007FFFFFFF = 0x00000000BE2DA0A5 ++crc32cb 0x0000000000000003 0x0000000080000000 = 0x000000001350F3F4 ++crc32cb 0x0000000000000003 0x8000000000000000 = 0x000000001350F3F4 ++crc32cb 0x0000000000000003 0xFFFFFFFF80000000 = 0x000000001350F3F4 ++crc32cb 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x000000001350F3F4 ++crc32cb 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000091A6C88C ++crc32cb 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x00000000BE2DA0A5 ++crc32cb 0x0000000000000003 0x123456789ABCDEF0 = 0x00000000E03E9C81 ++crc32cb 0x0000000000000003 0xF0DEBC9A78563412 = 0x00000000E235446C ++crc32cb 0x000000000000000F 0x0000000000000000 = 0x000000005E133C24 ++crc32cb 0x000000000000000F 0x0000000000000001 = 0x00000000AC78BF27 ++crc32cb 0x000000000000000F 0x0000000000000002 = 0x00000000BF284CD3 ++crc32cb 0x000000000000000F 0x0000000000000003 = 0x000000004D43CFD0 ++crc32cb 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++crc32cb 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x00000000F36E6F75 ++crc32cb 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000105EC76 ++crc32cb 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000012551F82 ++crc32cb 0x000000000000000F 0x000000000000007F = 0x000000007198540D ++crc32cb 0x000000000000000F 0x0000000000000080 = 0x00000000DCE5075C ++crc32cb 0x000000000000000F 0x0000000000007FFF = 0x00000000F36E6F75 ++crc32cb 0x000000000000000F 0x0000000000008000 = 0x000000005E133C24 ++crc32cb 0x000000000000000F 0x000000007FFFFFFF = 0x00000000F36E6F75 ++crc32cb 0x000000000000000F 0x0000000080000000 = 0x000000005E133C24 ++crc32cb 0x000000000000000F 0x8000000000000000 = 0x000000005E133C24 ++crc32cb 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000005E133C24 ++crc32cb 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000005E133C24 ++crc32cb 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x00000000DCE5075C ++crc32cb 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x00000000F36E6F75 ++crc32cb 0x000000000000000F 0x123456789ABCDEF0 = 0x00000000AD7D5351 ++crc32cb 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000AF768BBC ++crc32cb 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000AD82ACAE ++crc32cb 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000005FE92FAD ++crc32cb 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000004CB9DC59 ++crc32cb 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000BED25F5A ++crc32cb 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000F391908A ++crc32cb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++crc32cb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000F2947CFC ++crc32cb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000E1C48F08 ++crc32cb 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000008209C487 ++crc32cb 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000002F7497D6 ++crc32cb 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000FFFFFF ++crc32cb 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000AD82ACAE ++crc32cb 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000FFFFFF ++crc32cb 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000AD82ACAE ++crc32cb 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000AD82ACAE ++crc32cb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000AD82ACAE ++crc32cb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000AD82ACAE ++crc32cb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000002F7497D6 ++crc32cb 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++crc32cb 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000005EECC3DB ++crc32cb 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000005CE71B36 ++crc32cb 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000005FE92FAD ++crc32cb 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000AD82ACAE ++crc32cb 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x00000000BED25F5A ++crc32cb 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000004CB9DC59 ++crc32cb 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000001FA1389 ++crc32cb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000F2947CFC ++crc32cb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000FFFFFF ++crc32cb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000013AF0C0B ++crc32cb 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000070624784 ++crc32cb 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000DD1F14D5 ++crc32cb 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000F2947CFC ++crc32cb 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000005FE92FAD ++crc32cb 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00000000F2947CFC ++crc32cb 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000005FE92FAD ++crc32cb 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000005FE92FAD ++crc32cb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000005FE92FAD ++crc32cb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000005FE92FAD ++crc32cb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000DD1F14D5 ++crc32cb 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000F2947CFC ++crc32cb 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000AC8740D8 ++crc32cb 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x00000000AE8C9835 ++crc32cb 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x000000004CB9DC59 ++crc32cb 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000BED25F5A ++crc32cb 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x00000000AD82ACAE ++crc32cb 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000005FE92FAD ++crc32cb 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000012AAE07D ++crc32cb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000E1C48F08 ++crc32cb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000013AF0C0B ++crc32cb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++crc32cb 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000006332B470 ++crc32cb 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000CE4FE721 ++crc32cb 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000E1C48F08 ++crc32cb 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x000000004CB9DC59 ++crc32cb 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000E1C48F08 ++crc32cb 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000004CB9DC59 ++crc32cb 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x000000004CB9DC59 ++crc32cb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000004CB9DC59 ++crc32cb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x000000004CB9DC59 ++crc32cb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00000000CE4FE721 ++crc32cb 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000E1C48F08 ++crc32cb 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000BFD7B32C ++crc32cb 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x00000000BDDC6BC1 ++crc32cb 0x000000000000007F 0x0000000000000000 = 0x000000002F8B6829 ++crc32cb 0x000000000000007F 0x0000000000000001 = 0x00000000DDE0EB2A ++crc32cb 0x000000000000007F 0x0000000000000002 = 0x00000000CEB018DE ++crc32cb 0x000000000000007F 0x0000000000000003 = 0x000000003CDB9BDD ++crc32cb 0x000000000000007F 0x000000000000000F = 0x000000007198540D ++crc32cb 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000082F63B78 ++crc32cb 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000709DB87B ++crc32cb 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000063CD4B8F ++crc32cb 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++crc32cb 0x000000000000007F 0x0000000000000080 = 0x00000000AD7D5351 ++crc32cb 0x000000000000007F 0x0000000000007FFF = 0x0000000082F63B78 ++crc32cb 0x000000000000007F 0x0000000000008000 = 0x000000002F8B6829 ++crc32cb 0x000000000000007F 0x000000007FFFFFFF = 0x0000000082F63B78 ++crc32cb 0x000000000000007F 0x0000000080000000 = 0x000000002F8B6829 ++crc32cb 0x000000000000007F 0x8000000000000000 = 0x000000002F8B6829 ++crc32cb 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000002F8B6829 ++crc32cb 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000002F8B6829 ++crc32cb 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x00000000AD7D5351 ++crc32cb 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000082F63B78 ++crc32cb 0x000000000000007F 0x123456789ABCDEF0 = 0x00000000DCE5075C ++crc32cb 0x000000000000007F 0xF0DEBC9A78563412 = 0x00000000DEEEDFB1 ++crc32cb 0x0000000000000080 0x0000000000000000 = 0x0000000082F63B78 ++crc32cb 0x0000000000000080 0x0000000000000001 = 0x00000000709DB87B ++crc32cb 0x0000000000000080 0x0000000000000002 = 0x0000000063CD4B8F ++crc32cb 0x0000000000000080 0x0000000000000003 = 0x0000000091A6C88C ++crc32cb 0x0000000000000080 0x000000000000000F = 0x00000000DCE5075C ++crc32cb 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x000000002F8B6829 ++crc32cb 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x00000000DDE0EB2A ++crc32cb 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x00000000CEB018DE ++crc32cb 0x0000000000000080 0x000000000000007F = 0x00000000AD7D5351 ++crc32cb 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++crc32cb 0x0000000000000080 0x0000000000007FFF = 0x000000002F8B6829 ++crc32cb 0x0000000000000080 0x0000000000008000 = 0x0000000082F63B78 ++crc32cb 0x0000000000000080 0x000000007FFFFFFF = 0x000000002F8B6829 ++crc32cb 0x0000000000000080 0x0000000080000000 = 0x0000000082F63B78 ++crc32cb 0x0000000000000080 0x8000000000000000 = 0x0000000082F63B78 ++crc32cb 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000082F63B78 ++crc32cb 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000082F63B78 ++crc32cb 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++crc32cb 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x000000002F8B6829 ++crc32cb 0x0000000000000080 0x123456789ABCDEF0 = 0x000000007198540D ++crc32cb 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000073938CE0 ++crc32cb 0x0000000000007FFF 0x0000000000000000 = 0x00000000AD7D532E ++crc32cb 0x0000000000007FFF 0x0000000000000001 = 0x000000005F16D02D ++crc32cb 0x0000000000007FFF 0x0000000000000002 = 0x000000004C4623D9 ++crc32cb 0x0000000000007FFF 0x0000000000000003 = 0x00000000BE2DA0DA ++crc32cb 0x0000000000007FFF 0x000000000000000F = 0x00000000F36E6F0A ++crc32cb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++crc32cb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x00000000F26B837C ++crc32cb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x00000000E13B7088 ++crc32cb 0x0000000000007FFF 0x000000000000007F = 0x0000000082F63B07 ++crc32cb 0x0000000000007FFF 0x0000000000000080 = 0x000000002F8B6856 ++crc32cb 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000007F ++crc32cb 0x0000000000007FFF 0x0000000000008000 = 0x00000000AD7D532E ++crc32cb 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000000000007F ++crc32cb 0x0000000000007FFF 0x0000000080000000 = 0x00000000AD7D532E ++crc32cb 0x0000000000007FFF 0x8000000000000000 = 0x00000000AD7D532E ++crc32cb 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x00000000AD7D532E ++crc32cb 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x00000000AD7D532E ++crc32cb 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000002F8B6856 ++crc32cb 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++crc32cb 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000005E133C5B ++crc32cb 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000005C18E4B6 ++crc32cb 0x0000000000008000 0x0000000000000000 = 0x0000000000000080 ++crc32cb 0x0000000000008000 0x0000000000000001 = 0x00000000F26B8383 ++crc32cb 0x0000000000008000 0x0000000000000002 = 0x00000000E13B7077 ++crc32cb 0x0000000000008000 0x0000000000000003 = 0x000000001350F374 ++crc32cb 0x0000000000008000 0x000000000000000F = 0x000000005E133CA4 ++crc32cb 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x00000000AD7D53D1 ++crc32cb 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000005F16D0D2 ++crc32cb 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000004C462326 ++crc32cb 0x0000000000008000 0x000000000000007F = 0x000000002F8B68A9 ++crc32cb 0x0000000000008000 0x0000000000000080 = 0x0000000082F63BF8 ++crc32cb 0x0000000000008000 0x0000000000007FFF = 0x00000000AD7D53D1 ++crc32cb 0x0000000000008000 0x0000000000008000 = 0x0000000000000080 ++crc32cb 0x0000000000008000 0x000000007FFFFFFF = 0x00000000AD7D53D1 ++crc32cb 0x0000000000008000 0x0000000080000000 = 0x0000000000000080 ++crc32cb 0x0000000000008000 0x8000000000000000 = 0x0000000000000080 ++crc32cb 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000080 ++crc32cb 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++crc32cb 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000082F63BF8 ++crc32cb 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x00000000AD7D53D1 ++crc32cb 0x0000000000008000 0x123456789ABCDEF0 = 0x00000000F36E6FF5 ++crc32cb 0x0000000000008000 0xF0DEBC9A78563412 = 0x00000000F165B718 ++crc32cb 0x000000007FFFFFFF 0x0000000000000000 = 0x00000000AD02ACAE ++crc32cb 0x000000007FFFFFFF 0x0000000000000001 = 0x000000005F692FAD ++crc32cb 0x000000007FFFFFFF 0x0000000000000002 = 0x000000004C39DC59 ++crc32cb 0x000000007FFFFFFF 0x0000000000000003 = 0x00000000BE525F5A ++crc32cb 0x000000007FFFFFFF 0x000000000000000F = 0x00000000F311908A ++crc32cb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000007FFFFF ++crc32cb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000F2147CFC ++crc32cb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000E1448F08 ++crc32cb 0x000000007FFFFFFF 0x000000000000007F = 0x000000008289C487 ++crc32cb 0x000000007FFFFFFF 0x0000000000000080 = 0x000000002FF497D6 ++crc32cb 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000000007FFFFF ++crc32cb 0x000000007FFFFFFF 0x0000000000008000 = 0x00000000AD02ACAE ++crc32cb 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x00000000007FFFFF ++crc32cb 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000AD02ACAE ++crc32cb 0x000000007FFFFFFF 0x8000000000000000 = 0x00000000AD02ACAE ++crc32cb 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x00000000AD02ACAE ++crc32cb 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000AD02ACAE ++crc32cb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000002FF497D6 ++crc32cb 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000007FFFFF ++crc32cb 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000005E6CC3DB ++crc32cb 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000005C671B36 ++crc32cb 0x0000000080000000 0x0000000000000000 = 0x0000000000800000 ++crc32cb 0x0000000080000000 0x0000000000000001 = 0x00000000F2EB8303 ++crc32cb 0x0000000080000000 0x0000000000000002 = 0x00000000E1BB70F7 ++crc32cb 0x0000000080000000 0x0000000000000003 = 0x0000000013D0F3F4 ++crc32cb 0x0000000080000000 0x000000000000000F = 0x000000005E933C24 ++crc32cb 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x00000000ADFD5351 ++crc32cb 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000005F96D052 ++crc32cb 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000004CC623A6 ++crc32cb 0x0000000080000000 0x000000000000007F = 0x000000002F0B6829 ++crc32cb 0x0000000080000000 0x0000000000000080 = 0x0000000082763B78 ++crc32cb 0x0000000080000000 0x0000000000007FFF = 0x00000000ADFD5351 ++crc32cb 0x0000000080000000 0x0000000000008000 = 0x0000000000800000 ++crc32cb 0x0000000080000000 0x000000007FFFFFFF = 0x00000000ADFD5351 ++crc32cb 0x0000000080000000 0x0000000080000000 = 0x0000000000800000 ++crc32cb 0x0000000080000000 0x8000000000000000 = 0x0000000000800000 ++crc32cb 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000800000 ++crc32cb 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000800000 ++crc32cb 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000082763B78 ++crc32cb 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x00000000ADFD5351 ++crc32cb 0x0000000080000000 0x123456789ABCDEF0 = 0x00000000F3EE6F75 ++crc32cb 0x0000000080000000 0xF0DEBC9A78563412 = 0x00000000F1E5B798 ++crc32cb 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32cb 0x8000000000000000 0x0000000000000001 = 0x00000000F26B8303 ++crc32cb 0x8000000000000000 0x0000000000000002 = 0x00000000E13B70F7 ++crc32cb 0x8000000000000000 0x0000000000000003 = 0x000000001350F3F4 ++crc32cb 0x8000000000000000 0x000000000000000F = 0x000000005E133C24 ++crc32cb 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000AD7D5351 ++crc32cb 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000005F16D052 ++crc32cb 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000004C4623A6 ++crc32cb 0x8000000000000000 0x000000000000007F = 0x000000002F8B6829 ++crc32cb 0x8000000000000000 0x0000000000000080 = 0x0000000082F63B78 ++crc32cb 0x8000000000000000 0x0000000000007FFF = 0x00000000AD7D5351 ++crc32cb 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++crc32cb 0x8000000000000000 0x000000007FFFFFFF = 0x00000000AD7D5351 ++crc32cb 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++crc32cb 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++crc32cb 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++crc32cb 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++crc32cb 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000082F63B78 ++crc32cb 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000AD7D5351 ++crc32cb 0x8000000000000000 0x123456789ABCDEF0 = 0x00000000F36E6F75 ++crc32cb 0x8000000000000000 0xF0DEBC9A78563412 = 0x00000000F165B798 ++crc32cb 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000800000 ++crc32cb 0xFFFFFFFF80000000 0x0000000000000001 = 0x00000000F2EB8303 ++crc32cb 0xFFFFFFFF80000000 0x0000000000000002 = 0x00000000E1BB70F7 ++crc32cb 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000013D0F3F4 ++crc32cb 0xFFFFFFFF80000000 0x000000000000000F = 0x000000005E933C24 ++crc32cb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00000000ADFD5351 ++crc32cb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000005F96D052 ++crc32cb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000004CC623A6 ++crc32cb 0xFFFFFFFF80000000 0x000000000000007F = 0x000000002F0B6829 ++crc32cb 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000082763B78 ++crc32cb 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00000000ADFD5351 ++crc32cb 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000800000 ++crc32cb 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00000000ADFD5351 ++crc32cb 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000800000 ++crc32cb 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000800000 ++crc32cb 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000800000 ++crc32cb 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000800000 ++crc32cb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000082763B78 ++crc32cb 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00000000ADFD5351 ++crc32cb 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x00000000F3EE6F75 ++crc32cb 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x00000000F1E5B798 ++crc32cb 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000FFFF80 ++crc32cb 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x00000000F2947C83 ++crc32cb 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x00000000E1C48F77 ++crc32cb 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000013AF0C74 ++crc32cb 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000005EECC3A4 ++crc32cb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00000000AD82ACD1 ++crc32cb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000005FE92FD2 ++crc32cb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000004CB9DC26 ++crc32cb 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000002F7497A9 ++crc32cb 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x000000008209C4F8 ++crc32cb 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00000000AD82ACD1 ++crc32cb 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000FFFF80 ++crc32cb 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00000000AD82ACD1 ++crc32cb 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000FFFF80 ++crc32cb 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000FFFF80 ++crc32cb 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000FFFF80 ++crc32cb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000FFFF80 ++crc32cb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x000000008209C4F8 ++crc32cb 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00000000AD82ACD1 ++crc32cb 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000F39190F5 ++crc32cb 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x00000000F19A4818 ++crc32cb 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x000000008209C487 ++crc32cb 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000070624784 ++crc32cb 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000006332B470 ++crc32cb 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000091593773 ++crc32cb 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000DC1AF8A3 ++crc32cb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x000000002F7497D6 ++crc32cb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x00000000DD1F14D5 ++crc32cb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x00000000CE4FE721 ++crc32cb 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000AD82ACAE ++crc32cb 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000FFFFFF ++crc32cb 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x000000002F7497D6 ++crc32cb 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000008209C487 ++crc32cb 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000002F7497D6 ++crc32cb 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000008209C487 ++crc32cb 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x000000008209C487 ++crc32cb 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000008209C487 ++crc32cb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x000000008209C487 ++crc32cb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000FFFFFF ++crc32cb 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x000000002F7497D6 ++crc32cb 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000007167ABF2 ++crc32cb 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x00000000736C731F ++crc32cb 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000AD82ACAE ++crc32cb 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000005FE92FAD ++crc32cb 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000004CB9DC59 ++crc32cb 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000BED25F5A ++crc32cb 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000F391908A ++crc32cb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++crc32cb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000F2947CFC ++crc32cb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000E1C48F08 ++crc32cb 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000008209C487 ++crc32cb 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000002F7497D6 ++crc32cb 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000FFFFFF ++crc32cb 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000AD82ACAE ++crc32cb 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000FFFFFF ++crc32cb 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000AD82ACAE ++crc32cb 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000AD82ACAE ++crc32cb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000AD82ACAE ++crc32cb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000AD82ACAE ++crc32cb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000002F7497D6 ++crc32cb 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++crc32cb 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000005EECC3DB ++crc32cb 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000005CE71B36 ++crc32cb 0x123456789ABCDEF0 0x0000000000000000 = 0x00000000F3F4D3AB ++crc32cb 0x123456789ABCDEF0 0x0000000000000001 = 0x00000000019F50A8 ++crc32cb 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000012CFA35C ++crc32cb 0x123456789ABCDEF0 0x0000000000000003 = 0x00000000E0A4205F ++crc32cb 0x123456789ABCDEF0 0x000000000000000F = 0x00000000ADE7EF8F ++crc32cb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000005E8980FA ++crc32cb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x00000000ACE203F9 ++crc32cb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x00000000BFB2F00D ++crc32cb 0x123456789ABCDEF0 0x000000000000007F = 0x00000000DC7FBB82 ++crc32cb 0x123456789ABCDEF0 0x0000000000000080 = 0x000000007102E8D3 ++crc32cb 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000005E8980FA ++crc32cb 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000F3F4D3AB ++crc32cb 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000005E8980FA ++crc32cb 0x123456789ABCDEF0 0x0000000080000000 = 0x00000000F3F4D3AB ++crc32cb 0x123456789ABCDEF0 0x8000000000000000 = 0x00000000F3F4D3AB ++crc32cb 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x00000000F3F4D3AB ++crc32cb 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x00000000F3F4D3AB ++crc32cb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000007102E8D3 ++crc32cb 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000005E8980FA ++crc32cb 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x00000000009ABCDE ++crc32cb 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000002916433 ++crc32cb 0xF0DEBC9A78563412 0x0000000000000000 = 0x00000000F11DE1AC ++crc32cb 0xF0DEBC9A78563412 0x0000000000000001 = 0x00000000037662AF ++crc32cb 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000001026915B ++crc32cb 0xF0DEBC9A78563412 0x0000000000000003 = 0x00000000E24D1258 ++crc32cb 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000AF0EDD88 ++crc32cb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x000000005C60B2FD ++crc32cb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x00000000AE0B31FE ++crc32cb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x00000000BD5BC20A ++crc32cb 0xF0DEBC9A78563412 0x000000000000007F = 0x00000000DE968985 ++crc32cb 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000073EBDAD4 ++crc32cb 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000005C60B2FD ++crc32cb 0xF0DEBC9A78563412 0x0000000000008000 = 0x00000000F11DE1AC ++crc32cb 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000005C60B2FD ++crc32cb 0xF0DEBC9A78563412 0x0000000080000000 = 0x00000000F11DE1AC ++crc32cb 0xF0DEBC9A78563412 0x8000000000000000 = 0x00000000F11DE1AC ++crc32cb 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x00000000F11DE1AC ++crc32cb 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x00000000F11DE1AC ++crc32cb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000073EBDAD4 ++crc32cb 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x000000005C60B2FD ++crc32cb 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000002738ED9 ++crc32cb 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000785634 ++=== Running test on crc32ch === ++crc32ch 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32ch 0x0000000000000000 0x0000000000000001 = 0x0000000013A29877 ++crc32ch 0x0000000000000000 0x0000000000000002 = 0x00000000274530EE ++crc32ch 0x0000000000000000 0x0000000000000003 = 0x0000000034E7A899 ++crc32ch 0x0000000000000000 0x000000000000000F = 0x00000000E7790AFD ++crc32ch 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000E9E77D2 ++crc32ch 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000001D3CEFA5 ++crc32ch 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000029DB473C ++crc32ch 0x0000000000000000 0x000000000000007F = 0x000000005820DE7A ++crc32ch 0x0000000000000000 0x0000000000000080 = 0x00000000FBC3FAF9 ++crc32ch 0x0000000000000000 0x0000000000007FFF = 0x000000008C684CAA ++crc32ch 0x0000000000000000 0x0000000000008000 = 0x0000000082F63B78 ++crc32ch 0x0000000000000000 0x000000007FFFFFFF = 0x000000000E9E77D2 ++crc32ch 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++crc32ch 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++crc32ch 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++crc32ch 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000082F63B78 ++crc32ch 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000056BEA9A8 ++crc32ch 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000E9E77D2 ++crc32ch 0x0000000000000000 0x123456789ABCDEF0 = 0x000000003B3170F2 ++crc32ch 0x0000000000000000 0xF0DEBC9A78563412 = 0x00000000EFF91FC1 ++crc32ch 0x0000000000000001 0x0000000000000000 = 0x0000000013A29877 ++crc32ch 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++crc32ch 0x0000000000000001 0x0000000000000002 = 0x0000000034E7A899 ++crc32ch 0x0000000000000001 0x0000000000000003 = 0x00000000274530EE ++crc32ch 0x0000000000000001 0x000000000000000F = 0x00000000F4DB928A ++crc32ch 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x000000001D3CEFA5 ++crc32ch 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x000000000E9E77D2 ++crc32ch 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x000000003A79DF4B ++crc32ch 0x0000000000000001 0x000000000000007F = 0x000000004B82460D ++crc32ch 0x0000000000000001 0x0000000000000080 = 0x00000000E861628E ++crc32ch 0x0000000000000001 0x0000000000007FFF = 0x000000009FCAD4DD ++crc32ch 0x0000000000000001 0x0000000000008000 = 0x000000009154A30F ++crc32ch 0x0000000000000001 0x000000007FFFFFFF = 0x000000001D3CEFA5 ++crc32ch 0x0000000000000001 0x0000000080000000 = 0x0000000013A29877 ++crc32ch 0x0000000000000001 0x8000000000000000 = 0x0000000013A29877 ++crc32ch 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000013A29877 ++crc32ch 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x000000009154A30F ++crc32ch 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x00000000451C31DF ++crc32ch 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x000000001D3CEFA5 ++crc32ch 0x0000000000000001 0x123456789ABCDEF0 = 0x000000002893E885 ++crc32ch 0x0000000000000001 0xF0DEBC9A78563412 = 0x00000000FC5B87B6 ++crc32ch 0x0000000000000002 0x0000000000000000 = 0x00000000274530EE ++crc32ch 0x0000000000000002 0x0000000000000001 = 0x0000000034E7A899 ++crc32ch 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++crc32ch 0x0000000000000002 0x0000000000000003 = 0x0000000013A29877 ++crc32ch 0x0000000000000002 0x000000000000000F = 0x00000000C03C3A13 ++crc32ch 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000029DB473C ++crc32ch 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x000000003A79DF4B ++crc32ch 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x000000000E9E77D2 ++crc32ch 0x0000000000000002 0x000000000000007F = 0x000000007F65EE94 ++crc32ch 0x0000000000000002 0x0000000000000080 = 0x00000000DC86CA17 ++crc32ch 0x0000000000000002 0x0000000000007FFF = 0x00000000AB2D7C44 ++crc32ch 0x0000000000000002 0x0000000000008000 = 0x00000000A5B30B96 ++crc32ch 0x0000000000000002 0x000000007FFFFFFF = 0x0000000029DB473C ++crc32ch 0x0000000000000002 0x0000000080000000 = 0x00000000274530EE ++crc32ch 0x0000000000000002 0x8000000000000000 = 0x00000000274530EE ++crc32ch 0x0000000000000002 0xFFFFFFFF80000000 = 0x00000000274530EE ++crc32ch 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x00000000A5B30B96 ++crc32ch 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000071FB9946 ++crc32ch 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000029DB473C ++crc32ch 0x0000000000000002 0x123456789ABCDEF0 = 0x000000001C74401C ++crc32ch 0x0000000000000002 0xF0DEBC9A78563412 = 0x00000000C8BC2F2F ++crc32ch 0x0000000000000003 0x0000000000000000 = 0x0000000034E7A899 ++crc32ch 0x0000000000000003 0x0000000000000001 = 0x00000000274530EE ++crc32ch 0x0000000000000003 0x0000000000000002 = 0x0000000013A29877 ++crc32ch 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++crc32ch 0x0000000000000003 0x000000000000000F = 0x00000000D39EA264 ++crc32ch 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x000000003A79DF4B ++crc32ch 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000029DB473C ++crc32ch 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000001D3CEFA5 ++crc32ch 0x0000000000000003 0x000000000000007F = 0x000000006CC776E3 ++crc32ch 0x0000000000000003 0x0000000000000080 = 0x00000000CF245260 ++crc32ch 0x0000000000000003 0x0000000000007FFF = 0x00000000B88FE433 ++crc32ch 0x0000000000000003 0x0000000000008000 = 0x00000000B61193E1 ++crc32ch 0x0000000000000003 0x000000007FFFFFFF = 0x000000003A79DF4B ++crc32ch 0x0000000000000003 0x0000000080000000 = 0x0000000034E7A899 ++crc32ch 0x0000000000000003 0x8000000000000000 = 0x0000000034E7A899 ++crc32ch 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000034E7A899 ++crc32ch 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x00000000B61193E1 ++crc32ch 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000062590131 ++crc32ch 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x000000003A79DF4B ++crc32ch 0x0000000000000003 0x123456789ABCDEF0 = 0x000000000FD6D86B ++crc32ch 0x0000000000000003 0xF0DEBC9A78563412 = 0x00000000DB1EB758 ++crc32ch 0x000000000000000F 0x0000000000000000 = 0x00000000E7790AFD ++crc32ch 0x000000000000000F 0x0000000000000001 = 0x00000000F4DB928A ++crc32ch 0x000000000000000F 0x0000000000000002 = 0x00000000C03C3A13 ++crc32ch 0x000000000000000F 0x0000000000000003 = 0x00000000D39EA264 ++crc32ch 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++crc32ch 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x00000000E9E77D2F ++crc32ch 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x00000000FA45E558 ++crc32ch 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x00000000CEA24DC1 ++crc32ch 0x000000000000000F 0x000000000000007F = 0x00000000BF59D487 ++crc32ch 0x000000000000000F 0x0000000000000080 = 0x000000001CBAF004 ++crc32ch 0x000000000000000F 0x0000000000007FFF = 0x000000006B114657 ++crc32ch 0x000000000000000F 0x0000000000008000 = 0x00000000658F3185 ++crc32ch 0x000000000000000F 0x000000007FFFFFFF = 0x00000000E9E77D2F ++crc32ch 0x000000000000000F 0x0000000080000000 = 0x00000000E7790AFD ++crc32ch 0x000000000000000F 0x8000000000000000 = 0x00000000E7790AFD ++crc32ch 0x000000000000000F 0xFFFFFFFF80000000 = 0x00000000E7790AFD ++crc32ch 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x00000000658F3185 ++crc32ch 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x00000000B1C7A355 ++crc32ch 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x00000000E9E77D2F ++crc32ch 0x000000000000000F 0x123456789ABCDEF0 = 0x00000000DC487A0F ++crc32ch 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000880153C ++crc32ch 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000E9E882D ++crc32ch 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000001D3C105A ++crc32ch 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000029DBB8C3 ++crc32ch 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000003A7920B4 ++crc32ch 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000E9E782D0 ++crc32ch 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++crc32ch 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000013A26788 ++crc32ch 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000002745CF11 ++crc32ch 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000056BE5657 ++crc32ch 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000F55D72D4 ++crc32ch 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000082F6C487 ++crc32ch 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000008C68B355 ++crc32ch 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000FFFF ++crc32ch 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000E9E882D ++crc32ch 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000E9E882D ++crc32ch 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000E9E882D ++crc32ch 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000008C68B355 ++crc32ch 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000058202185 ++crc32ch 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++crc32ch 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000035AFF8DF ++crc32ch 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000E16797EC ++crc32ch 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000001D3C105A ++crc32ch 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000000E9E882D ++crc32ch 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000003A7920B4 ++crc32ch 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000029DBB8C3 ++crc32ch 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00000000FA451AA7 ++crc32ch 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000013A26788 ++crc32ch 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++crc32ch 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000034E75766 ++crc32ch 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00000000451CCE20 ++crc32ch 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000E6FFEAA3 ++crc32ch 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000091545CF0 ++crc32ch 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000009FCA2B22 ++crc32ch 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000013A26788 ++crc32ch 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000001D3C105A ++crc32ch 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000001D3C105A ++crc32ch 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000001D3C105A ++crc32ch 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000009FCA2B22 ++crc32ch 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000004B82B9F2 ++crc32ch 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000013A26788 ++crc32ch 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000260D60A8 ++crc32ch 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x00000000F2C50F9B ++crc32ch 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000029DBB8C3 ++crc32ch 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x000000003A7920B4 ++crc32ch 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000000E9E882D ++crc32ch 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000001D3C105A ++crc32ch 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000CEA2B23E ++crc32ch 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x000000002745CF11 ++crc32ch 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000034E75766 ++crc32ch 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFF ++crc32ch 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000071FB66B9 ++crc32ch 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000D218423A ++crc32ch 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000A5B3F469 ++crc32ch 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x00000000AB2D83BB ++crc32ch 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000002745CF11 ++crc32ch 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000029DBB8C3 ++crc32ch 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000029DBB8C3 ++crc32ch 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000029DBB8C3 ++crc32ch 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000AB2D83BB ++crc32ch 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000007F65116B ++crc32ch 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x000000002745CF11 ++crc32ch 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000012EAC831 ++crc32ch 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x00000000C622A702 ++crc32ch 0x000000000000007F 0x0000000000000000 = 0x000000005820DE7A ++crc32ch 0x000000000000007F 0x0000000000000001 = 0x000000004B82460D ++crc32ch 0x000000000000007F 0x0000000000000002 = 0x000000007F65EE94 ++crc32ch 0x000000000000007F 0x0000000000000003 = 0x000000006CC776E3 ++crc32ch 0x000000000000007F 0x000000000000000F = 0x00000000BF59D487 ++crc32ch 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000056BEA9A8 ++crc32ch 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000451C31DF ++crc32ch 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000071FB9946 ++crc32ch 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++crc32ch 0x000000000000007F 0x0000000000000080 = 0x00000000A3E32483 ++crc32ch 0x000000000000007F 0x0000000000007FFF = 0x00000000D44892D0 ++crc32ch 0x000000000000007F 0x0000000000008000 = 0x00000000DAD6E502 ++crc32ch 0x000000000000007F 0x000000007FFFFFFF = 0x0000000056BEA9A8 ++crc32ch 0x000000000000007F 0x0000000080000000 = 0x000000005820DE7A ++crc32ch 0x000000000000007F 0x8000000000000000 = 0x000000005820DE7A ++crc32ch 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000005820DE7A ++crc32ch 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x00000000DAD6E502 ++crc32ch 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000E9E77D2 ++crc32ch 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000056BEA9A8 ++crc32ch 0x000000000000007F 0x123456789ABCDEF0 = 0x000000006311AE88 ++crc32ch 0x000000000000007F 0xF0DEBC9A78563412 = 0x00000000B7D9C1BB ++crc32ch 0x0000000000000080 0x0000000000000000 = 0x00000000FBC3FAF9 ++crc32ch 0x0000000000000080 0x0000000000000001 = 0x00000000E861628E ++crc32ch 0x0000000000000080 0x0000000000000002 = 0x00000000DC86CA17 ++crc32ch 0x0000000000000080 0x0000000000000003 = 0x00000000CF245260 ++crc32ch 0x0000000000000080 0x000000000000000F = 0x000000001CBAF004 ++crc32ch 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x00000000F55D8D2B ++crc32ch 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x00000000E6FF155C ++crc32ch 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x00000000D218BDC5 ++crc32ch 0x0000000000000080 0x000000000000007F = 0x00000000A3E32483 ++crc32ch 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++crc32ch 0x0000000000000080 0x0000000000007FFF = 0x0000000077ABB653 ++crc32ch 0x0000000000000080 0x0000000000008000 = 0x000000007935C181 ++crc32ch 0x0000000000000080 0x000000007FFFFFFF = 0x00000000F55D8D2B ++crc32ch 0x0000000000000080 0x0000000080000000 = 0x00000000FBC3FAF9 ++crc32ch 0x0000000000000080 0x8000000000000000 = 0x00000000FBC3FAF9 ++crc32ch 0x0000000000000080 0xFFFFFFFF80000000 = 0x00000000FBC3FAF9 ++crc32ch 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x000000007935C181 ++crc32ch 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x00000000AD7D5351 ++crc32ch 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x00000000F55D8D2B ++crc32ch 0x0000000000000080 0x123456789ABCDEF0 = 0x00000000C0F28A0B ++crc32ch 0x0000000000000080 0xF0DEBC9A78563412 = 0x00000000143AE538 ++crc32ch 0x0000000000007FFF 0x0000000000000000 = 0x000000008C684CAA ++crc32ch 0x0000000000007FFF 0x0000000000000001 = 0x000000009FCAD4DD ++crc32ch 0x0000000000007FFF 0x0000000000000002 = 0x00000000AB2D7C44 ++crc32ch 0x0000000000007FFF 0x0000000000000003 = 0x00000000B88FE433 ++crc32ch 0x0000000000007FFF 0x000000000000000F = 0x000000006B114657 ++crc32ch 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000082F63B78 ++crc32ch 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000009154A30F ++crc32ch 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x00000000A5B30B96 ++crc32ch 0x0000000000007FFF 0x000000000000007F = 0x00000000D44892D0 ++crc32ch 0x0000000000007FFF 0x0000000000000080 = 0x0000000077ABB653 ++crc32ch 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++crc32ch 0x0000000000007FFF 0x0000000000008000 = 0x000000000E9E77D2 ++crc32ch 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000082F63B78 ++crc32ch 0x0000000000007FFF 0x0000000080000000 = 0x000000008C684CAA ++crc32ch 0x0000000000007FFF 0x8000000000000000 = 0x000000008C684CAA ++crc32ch 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000008C684CAA ++crc32ch 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x000000000E9E77D2 ++crc32ch 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x00000000DAD6E502 ++crc32ch 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000082F63B78 ++crc32ch 0x0000000000007FFF 0x123456789ABCDEF0 = 0x00000000B7593C58 ++crc32ch 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000006391536B ++crc32ch 0x0000000000008000 0x0000000000000000 = 0x0000000082F63B78 ++crc32ch 0x0000000000008000 0x0000000000000001 = 0x000000009154A30F ++crc32ch 0x0000000000008000 0x0000000000000002 = 0x00000000A5B30B96 ++crc32ch 0x0000000000008000 0x0000000000000003 = 0x00000000B61193E1 ++crc32ch 0x0000000000008000 0x000000000000000F = 0x00000000658F3185 ++crc32ch 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000008C684CAA ++crc32ch 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000009FCAD4DD ++crc32ch 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x00000000AB2D7C44 ++crc32ch 0x0000000000008000 0x000000000000007F = 0x00000000DAD6E502 ++crc32ch 0x0000000000008000 0x0000000000000080 = 0x000000007935C181 ++crc32ch 0x0000000000008000 0x0000000000007FFF = 0x000000000E9E77D2 ++crc32ch 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++crc32ch 0x0000000000008000 0x000000007FFFFFFF = 0x000000008C684CAA ++crc32ch 0x0000000000008000 0x0000000080000000 = 0x0000000082F63B78 ++crc32ch 0x0000000000008000 0x8000000000000000 = 0x0000000082F63B78 ++crc32ch 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000082F63B78 ++crc32ch 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++crc32ch 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x00000000D44892D0 ++crc32ch 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x000000008C684CAA ++crc32ch 0x0000000000008000 0x123456789ABCDEF0 = 0x00000000B9C74B8A ++crc32ch 0x0000000000008000 0xF0DEBC9A78563412 = 0x000000006D0F24B9 ++crc32ch 0x000000007FFFFFFF 0x0000000000000000 = 0x000000000E9E082D ++crc32ch 0x000000007FFFFFFF 0x0000000000000001 = 0x000000001D3C905A ++crc32ch 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000029DB38C3 ++crc32ch 0x000000007FFFFFFF 0x0000000000000003 = 0x000000003A79A0B4 ++crc32ch 0x000000007FFFFFFF 0x000000000000000F = 0x00000000E9E702D0 ++crc32ch 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++crc32ch 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000013A2E788 ++crc32ch 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000027454F11 ++crc32ch 0x000000007FFFFFFF 0x000000000000007F = 0x0000000056BED657 ++crc32ch 0x000000007FFFFFFF 0x0000000000000080 = 0x00000000F55DF2D4 ++crc32ch 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000082F64487 ++crc32ch 0x000000007FFFFFFF 0x0000000000008000 = 0x000000008C683355 ++crc32ch 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000007FFF ++crc32ch 0x000000007FFFFFFF 0x0000000080000000 = 0x000000000E9E082D ++crc32ch 0x000000007FFFFFFF 0x8000000000000000 = 0x000000000E9E082D ++crc32ch 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000000E9E082D ++crc32ch 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000008C683355 ++crc32ch 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000005820A185 ++crc32ch 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++crc32ch 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000035AF78DF ++crc32ch 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00000000E16717EC ++crc32ch 0x0000000080000000 0x0000000000000000 = 0x0000000000008000 ++crc32ch 0x0000000080000000 0x0000000000000001 = 0x0000000013A21877 ++crc32ch 0x0000000080000000 0x0000000000000002 = 0x000000002745B0EE ++crc32ch 0x0000000080000000 0x0000000000000003 = 0x0000000034E72899 ++crc32ch 0x0000000080000000 0x000000000000000F = 0x00000000E7798AFD ++crc32ch 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x000000000E9EF7D2 ++crc32ch 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000001D3C6FA5 ++crc32ch 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000029DBC73C ++crc32ch 0x0000000080000000 0x000000000000007F = 0x0000000058205E7A ++crc32ch 0x0000000080000000 0x0000000000000080 = 0x00000000FBC37AF9 ++crc32ch 0x0000000080000000 0x0000000000007FFF = 0x000000008C68CCAA ++crc32ch 0x0000000080000000 0x0000000000008000 = 0x0000000082F6BB78 ++crc32ch 0x0000000080000000 0x000000007FFFFFFF = 0x000000000E9EF7D2 ++crc32ch 0x0000000080000000 0x0000000080000000 = 0x0000000000008000 ++crc32ch 0x0000000080000000 0x8000000000000000 = 0x0000000000008000 ++crc32ch 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000008000 ++crc32ch 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000082F6BB78 ++crc32ch 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000056BE29A8 ++crc32ch 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x000000000E9EF7D2 ++crc32ch 0x0000000080000000 0x123456789ABCDEF0 = 0x000000003B31F0F2 ++crc32ch 0x0000000080000000 0xF0DEBC9A78563412 = 0x00000000EFF99FC1 ++crc32ch 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32ch 0x8000000000000000 0x0000000000000001 = 0x0000000013A29877 ++crc32ch 0x8000000000000000 0x0000000000000002 = 0x00000000274530EE ++crc32ch 0x8000000000000000 0x0000000000000003 = 0x0000000034E7A899 ++crc32ch 0x8000000000000000 0x000000000000000F = 0x00000000E7790AFD ++crc32ch 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000E9E77D2 ++crc32ch 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000001D3CEFA5 ++crc32ch 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000029DB473C ++crc32ch 0x8000000000000000 0x000000000000007F = 0x000000005820DE7A ++crc32ch 0x8000000000000000 0x0000000000000080 = 0x00000000FBC3FAF9 ++crc32ch 0x8000000000000000 0x0000000000007FFF = 0x000000008C684CAA ++crc32ch 0x8000000000000000 0x0000000000008000 = 0x0000000082F63B78 ++crc32ch 0x8000000000000000 0x000000007FFFFFFF = 0x000000000E9E77D2 ++crc32ch 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++crc32ch 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++crc32ch 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++crc32ch 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000082F63B78 ++crc32ch 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000056BEA9A8 ++crc32ch 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000E9E77D2 ++crc32ch 0x8000000000000000 0x123456789ABCDEF0 = 0x000000003B3170F2 ++crc32ch 0x8000000000000000 0xF0DEBC9A78563412 = 0x00000000EFF91FC1 ++crc32ch 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000008000 ++crc32ch 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000013A21877 ++crc32ch 0xFFFFFFFF80000000 0x0000000000000002 = 0x000000002745B0EE ++crc32ch 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000034E72899 ++crc32ch 0xFFFFFFFF80000000 0x000000000000000F = 0x00000000E7798AFD ++crc32ch 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x000000000E9EF7D2 ++crc32ch 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000001D3C6FA5 ++crc32ch 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000029DBC73C ++crc32ch 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000058205E7A ++crc32ch 0xFFFFFFFF80000000 0x0000000000000080 = 0x00000000FBC37AF9 ++crc32ch 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000008C68CCAA ++crc32ch 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000082F6BB78 ++crc32ch 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000000E9EF7D2 ++crc32ch 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000008000 ++crc32ch 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000008000 ++crc32ch 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000008000 ++crc32ch 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000082F6BB78 ++crc32ch 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000056BE29A8 ++crc32ch 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x000000000E9EF7D2 ++crc32ch 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x000000003B31F0F2 ++crc32ch 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x00000000EFF99FC1 ++crc32ch 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000082F6C487 ++crc32ch 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000091545CF0 ++crc32ch 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x00000000A5B3F469 ++crc32ch 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x00000000B6116C1E ++crc32ch 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00000000658FCE7A ++crc32ch 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x000000008C68B355 ++crc32ch 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000009FCA2B22 ++crc32ch 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x00000000AB2D83BB ++crc32ch 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000DAD61AFD ++crc32ch 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000079353E7E ++crc32ch 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x000000000E9E882D ++crc32ch 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x000000000000FFFF ++crc32ch 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000008C68B355 ++crc32ch 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000082F6C487 ++crc32ch 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000082F6C487 ++crc32ch 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000082F6C487 ++crc32ch 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++crc32ch 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00000000D4486D2F ++crc32ch 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x000000008C68B355 ++crc32ch 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000B9C7B475 ++crc32ch 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000006D0FDB46 ++crc32ch 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000056BE5657 ++crc32ch 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x00000000451CCE20 ++crc32ch 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000071FB66B9 ++crc32ch 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000006259FECE ++crc32ch 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000B1C75CAA ++crc32ch 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000058202185 ++crc32ch 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000004B82B9F2 ++crc32ch 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000007F65116B ++crc32ch 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000E9E882D ++crc32ch 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x00000000AD7DACAE ++crc32ch 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000DAD61AFD ++crc32ch 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x00000000D4486D2F ++crc32ch 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000058202185 ++crc32ch 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000056BE5657 ++crc32ch 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000056BE5657 ++crc32ch 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000056BE5657 ++crc32ch 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x00000000D4486D2F ++crc32ch 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++crc32ch 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000058202185 ++crc32ch 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000006D8F26A5 ++crc32ch 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x00000000B9474996 ++crc32ch 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000E9E882D ++crc32ch 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000001D3C105A ++crc32ch 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000029DBB8C3 ++crc32ch 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000003A7920B4 ++crc32ch 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000E9E782D0 ++crc32ch 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++crc32ch 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000013A26788 ++crc32ch 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000002745CF11 ++crc32ch 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000056BE5657 ++crc32ch 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000F55D72D4 ++crc32ch 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000082F6C487 ++crc32ch 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000008C68B355 ++crc32ch 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000FFFF ++crc32ch 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000E9E882D ++crc32ch 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000E9E882D ++crc32ch 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000E9E882D ++crc32ch 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000008C68B355 ++crc32ch 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000058202185 ++crc32ch 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++crc32ch 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000035AFF8DF ++crc32ch 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000E16797EC ++crc32ch 0x123456789ABCDEF0 0x0000000000000000 = 0x000000003B31EA4E ++crc32ch 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000028937239 ++crc32ch 0x123456789ABCDEF0 0x0000000000000002 = 0x000000001C74DAA0 ++crc32ch 0x123456789ABCDEF0 0x0000000000000003 = 0x000000000FD642D7 ++crc32ch 0x123456789ABCDEF0 0x000000000000000F = 0x00000000DC48E0B3 ++crc32ch 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000035AF9D9C ++crc32ch 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x00000000260D05EB ++crc32ch 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000012EAAD72 ++crc32ch 0x123456789ABCDEF0 0x000000000000007F = 0x0000000063113434 ++crc32ch 0x123456789ABCDEF0 0x0000000000000080 = 0x00000000C0F210B7 ++crc32ch 0x123456789ABCDEF0 0x0000000000007FFF = 0x00000000B759A6E4 ++crc32ch 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000B9C7D136 ++crc32ch 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000035AF9D9C ++crc32ch 0x123456789ABCDEF0 0x0000000080000000 = 0x000000003B31EA4E ++crc32ch 0x123456789ABCDEF0 0x8000000000000000 = 0x000000003B31EA4E ++crc32ch 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000003B31EA4E ++crc32ch 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x00000000B9C7D136 ++crc32ch 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000006D8F43E6 ++crc32ch 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000035AF9D9C ++crc32ch 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000009ABC ++crc32ch 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x00000000D4C8F58F ++crc32ch 0xF0DEBC9A78563412 0x0000000000000000 = 0x00000000EFF96797 ++crc32ch 0xF0DEBC9A78563412 0x0000000000000001 = 0x00000000FC5BFFE0 ++crc32ch 0xF0DEBC9A78563412 0x0000000000000002 = 0x00000000C8BC5779 ++crc32ch 0xF0DEBC9A78563412 0x0000000000000003 = 0x00000000DB1ECF0E ++crc32ch 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000008806D6A ++crc32ch 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00000000E1671045 ++crc32ch 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x00000000F2C58832 ++crc32ch 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x00000000C62220AB ++crc32ch 0xF0DEBC9A78563412 0x000000000000007F = 0x00000000B7D9B9ED ++crc32ch 0xF0DEBC9A78563412 0x0000000000000080 = 0x00000000143A9D6E ++crc32ch 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000063912B3D ++crc32ch 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000006D0F5CEF ++crc32ch 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000E1671045 ++crc32ch 0xF0DEBC9A78563412 0x0000000080000000 = 0x00000000EFF96797 ++crc32ch 0xF0DEBC9A78563412 0x8000000000000000 = 0x00000000EFF96797 ++crc32ch 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x00000000EFF96797 ++crc32ch 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x000000006D0F5CEF ++crc32ch 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x00000000B947CE3F ++crc32ch 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000E1671045 ++crc32ch 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x00000000D4C81765 ++crc32ch 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000007856 ++=== Running test on crc32cw === ++crc32cw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32cw 0x0000000000000000 0x0000000000000001 = 0x00000000DD45AAB8 ++crc32cw 0x0000000000000000 0x0000000000000002 = 0x00000000BF672381 ++crc32cw 0x0000000000000000 0x0000000000000003 = 0x0000000062228939 ++crc32cw 0x0000000000000000 0x000000000000000F = 0x00000000EF44DB2C ++crc32cw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000B798B438 ++crc32cw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000006ADD1E80 ++crc32cw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000008FF97B9 ++crc32cw 0x0000000000000000 0x000000000000007F = 0x000000007AA3217D ++crc32cw 0x0000000000000000 0x0000000000000080 = 0x0000000052A0C93F ++crc32cw 0x0000000000000000 0x0000000000007FFF = 0x000000003221B4A9 ++crc32cw 0x0000000000000000 0x0000000000008000 = 0x000000008B277743 ++crc32cw 0x0000000000000000 0x000000007FFFFFFF = 0x00000000356E8F40 ++crc32cw 0x0000000000000000 0x0000000080000000 = 0x0000000082F63B78 ++crc32cw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++crc32cw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000082F63B78 ++crc32cw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000085B90091 ++crc32cw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000CD3B9545 ++crc32cw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000B798B438 ++crc32cw 0x0000000000000000 0x123456789ABCDEF0 = 0x00000000831EEF9D ++crc32cw 0x0000000000000000 0xF0DEBC9A78563412 = 0x000000000B67DA4D ++crc32cw 0x0000000000000001 0x0000000000000000 = 0x00000000DD45AAB8 ++crc32cw 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++crc32cw 0x0000000000000001 0x0000000000000002 = 0x0000000062228939 ++crc32cw 0x0000000000000001 0x0000000000000003 = 0x00000000BF672381 ++crc32cw 0x0000000000000001 0x000000000000000F = 0x0000000032017194 ++crc32cw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x000000006ADD1E80 ++crc32cw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x00000000B798B438 ++crc32cw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x00000000D5BA3D01 ++crc32cw 0x0000000000000001 0x000000000000007F = 0x00000000A7E68BC5 ++crc32cw 0x0000000000000001 0x0000000000000080 = 0x000000008FE56387 ++crc32cw 0x0000000000000001 0x0000000000007FFF = 0x00000000EF641E11 ++crc32cw 0x0000000000000001 0x0000000000008000 = 0x000000005662DDFB ++crc32cw 0x0000000000000001 0x000000007FFFFFFF = 0x00000000E82B25F8 ++crc32cw 0x0000000000000001 0x0000000080000000 = 0x000000005FB391C0 ++crc32cw 0x0000000000000001 0x8000000000000000 = 0x00000000DD45AAB8 ++crc32cw 0x0000000000000001 0xFFFFFFFF80000000 = 0x000000005FB391C0 ++crc32cw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000058FCAA29 ++crc32cw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x00000000107E3FFD ++crc32cw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x000000006ADD1E80 ++crc32cw 0x0000000000000001 0x123456789ABCDEF0 = 0x000000005E5B4525 ++crc32cw 0x0000000000000001 0xF0DEBC9A78563412 = 0x00000000D62270F5 ++crc32cw 0x0000000000000002 0x0000000000000000 = 0x00000000BF672381 ++crc32cw 0x0000000000000002 0x0000000000000001 = 0x0000000062228939 ++crc32cw 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++crc32cw 0x0000000000000002 0x0000000000000003 = 0x00000000DD45AAB8 ++crc32cw 0x0000000000000002 0x000000000000000F = 0x000000005023F8AD ++crc32cw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000008FF97B9 ++crc32cw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x00000000D5BA3D01 ++crc32cw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x00000000B798B438 ++crc32cw 0x0000000000000002 0x000000000000007F = 0x00000000C5C402FC ++crc32cw 0x0000000000000002 0x0000000000000080 = 0x00000000EDC7EABE ++crc32cw 0x0000000000000002 0x0000000000007FFF = 0x000000008D469728 ++crc32cw 0x0000000000000002 0x0000000000008000 = 0x00000000344054C2 ++crc32cw 0x0000000000000002 0x000000007FFFFFFF = 0x000000008A09ACC1 ++crc32cw 0x0000000000000002 0x0000000080000000 = 0x000000003D9118F9 ++crc32cw 0x0000000000000002 0x8000000000000000 = 0x00000000BF672381 ++crc32cw 0x0000000000000002 0xFFFFFFFF80000000 = 0x000000003D9118F9 ++crc32cw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x000000003ADE2310 ++crc32cw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x00000000725CB6C4 ++crc32cw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000008FF97B9 ++crc32cw 0x0000000000000002 0x123456789ABCDEF0 = 0x000000003C79CC1C ++crc32cw 0x0000000000000002 0xF0DEBC9A78563412 = 0x00000000B400F9CC ++crc32cw 0x0000000000000003 0x0000000000000000 = 0x0000000062228939 ++crc32cw 0x0000000000000003 0x0000000000000001 = 0x00000000BF672381 ++crc32cw 0x0000000000000003 0x0000000000000002 = 0x00000000DD45AAB8 ++crc32cw 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++crc32cw 0x0000000000000003 0x000000000000000F = 0x000000008D665215 ++crc32cw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x00000000D5BA3D01 ++crc32cw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000008FF97B9 ++crc32cw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000006ADD1E80 ++crc32cw 0x0000000000000003 0x000000000000007F = 0x000000001881A844 ++crc32cw 0x0000000000000003 0x0000000000000080 = 0x0000000030824006 ++crc32cw 0x0000000000000003 0x0000000000007FFF = 0x0000000050033D90 ++crc32cw 0x0000000000000003 0x0000000000008000 = 0x00000000E905FE7A ++crc32cw 0x0000000000000003 0x000000007FFFFFFF = 0x00000000574C0679 ++crc32cw 0x0000000000000003 0x0000000080000000 = 0x00000000E0D4B241 ++crc32cw 0x0000000000000003 0x8000000000000000 = 0x0000000062228939 ++crc32cw 0x0000000000000003 0xFFFFFFFF80000000 = 0x00000000E0D4B241 ++crc32cw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x00000000E79B89A8 ++crc32cw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x00000000AF191C7C ++crc32cw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x00000000D5BA3D01 ++crc32cw 0x0000000000000003 0x123456789ABCDEF0 = 0x00000000E13C66A4 ++crc32cw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000069455374 ++crc32cw 0x000000000000000F 0x0000000000000000 = 0x00000000EF44DB2C ++crc32cw 0x000000000000000F 0x0000000000000001 = 0x0000000032017194 ++crc32cw 0x000000000000000F 0x0000000000000002 = 0x000000005023F8AD ++crc32cw 0x000000000000000F 0x0000000000000003 = 0x000000008D665215 ++crc32cw 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++crc32cw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000058DC6F14 ++crc32cw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000008599C5AC ++crc32cw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x00000000E7BB4C95 ++crc32cw 0x000000000000000F 0x000000000000007F = 0x0000000095E7FA51 ++crc32cw 0x000000000000000F 0x0000000000000080 = 0x00000000BDE41213 ++crc32cw 0x000000000000000F 0x0000000000007FFF = 0x00000000DD656F85 ++crc32cw 0x000000000000000F 0x0000000000008000 = 0x000000006463AC6F ++crc32cw 0x000000000000000F 0x000000007FFFFFFF = 0x00000000DA2A546C ++crc32cw 0x000000000000000F 0x0000000080000000 = 0x000000006DB2E054 ++crc32cw 0x000000000000000F 0x8000000000000000 = 0x00000000EF44DB2C ++crc32cw 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000006DB2E054 ++crc32cw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000006AFDDBBD ++crc32cw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x00000000227F4E69 ++crc32cw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000058DC6F14 ++crc32cw 0x000000000000000F 0x123456789ABCDEF0 = 0x000000006C5A34B1 ++crc32cw 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000E4230161 ++crc32cw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000B798B438 ++crc32cw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000006ADD1E80 ++crc32cw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000008FF97B9 ++crc32cw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000D5BA3D01 ++crc32cw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000058DC6F14 ++crc32cw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++crc32cw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000DD45AAB8 ++crc32cw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000BF672381 ++crc32cw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000CD3B9545 ++crc32cw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000E5387D07 ++crc32cw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000085B90091 ++crc32cw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000003CBFC37B ++crc32cw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000082F63B78 ++crc32cw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000356E8F40 ++crc32cw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000B798B438 ++crc32cw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000356E8F40 ++crc32cw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000003221B4A9 ++crc32cw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007AA3217D ++crc32cw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++crc32cw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000034865BA5 ++crc32cw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000BCFF6E75 ++crc32cw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000006ADD1E80 ++crc32cw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000B798B438 ++crc32cw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x00000000D5BA3D01 ++crc32cw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000008FF97B9 ++crc32cw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000008599C5AC ++crc32cw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000DD45AAB8 ++crc32cw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++crc32cw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000062228939 ++crc32cw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00000000107E3FFD ++crc32cw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000387DD7BF ++crc32cw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000058FCAA29 ++crc32cw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x00000000E1FA69C3 ++crc32cw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000005FB391C0 ++crc32cw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000000E82B25F8 ++crc32cw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000006ADD1E80 ++crc32cw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000E82B25F8 ++crc32cw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x00000000EF641E11 ++crc32cw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000A7E68BC5 ++crc32cw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000DD45AAB8 ++crc32cw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000E9C3F11D ++crc32cw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000061BAC4CD ++crc32cw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000008FF97B9 ++crc32cw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000D5BA3D01 ++crc32cw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x00000000B798B438 ++crc32cw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000006ADD1E80 ++crc32cw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000E7BB4C95 ++crc32cw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000BF672381 ++crc32cw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000062228939 ++crc32cw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++crc32cw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00000000725CB6C4 ++crc32cw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000005A5F5E86 ++crc32cw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x000000003ADE2310 ++crc32cw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000083D8E0FA ++crc32cw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000003D9118F9 ++crc32cw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000008A09ACC1 ++crc32cw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000008FF97B9 ++crc32cw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000008A09ACC1 ++crc32cw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x000000008D469728 ++crc32cw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00000000C5C402FC ++crc32cw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000BF672381 ++crc32cw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000008BE17824 ++crc32cw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000003984DF4 ++crc32cw 0x000000000000007F 0x0000000000000000 = 0x000000007AA3217D ++crc32cw 0x000000000000007F 0x0000000000000001 = 0x00000000A7E68BC5 ++crc32cw 0x000000000000007F 0x0000000000000002 = 0x00000000C5C402FC ++crc32cw 0x000000000000007F 0x0000000000000003 = 0x000000001881A844 ++crc32cw 0x000000000000007F 0x000000000000000F = 0x0000000095E7FA51 ++crc32cw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000CD3B9545 ++crc32cw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000107E3FFD ++crc32cw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00000000725CB6C4 ++crc32cw 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++crc32cw 0x000000000000007F 0x0000000000000080 = 0x000000002803E842 ++crc32cw 0x000000000000007F 0x0000000000007FFF = 0x00000000488295D4 ++crc32cw 0x000000000000007F 0x0000000000008000 = 0x00000000F184563E ++crc32cw 0x000000000000007F 0x000000007FFFFFFF = 0x000000004FCDAE3D ++crc32cw 0x000000000000007F 0x0000000080000000 = 0x00000000F8551A05 ++crc32cw 0x000000000000007F 0x8000000000000000 = 0x000000007AA3217D ++crc32cw 0x000000000000007F 0xFFFFFFFF80000000 = 0x00000000F8551A05 ++crc32cw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x00000000FF1A21EC ++crc32cw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x00000000B798B438 ++crc32cw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x00000000CD3B9545 ++crc32cw 0x000000000000007F 0x123456789ABCDEF0 = 0x00000000F9BDCEE0 ++crc32cw 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000071C4FB30 ++crc32cw 0x0000000000000080 0x0000000000000000 = 0x0000000052A0C93F ++crc32cw 0x0000000000000080 0x0000000000000001 = 0x000000008FE56387 ++crc32cw 0x0000000000000080 0x0000000000000002 = 0x00000000EDC7EABE ++crc32cw 0x0000000000000080 0x0000000000000003 = 0x0000000030824006 ++crc32cw 0x0000000000000080 0x000000000000000F = 0x00000000BDE41213 ++crc32cw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x00000000E5387D07 ++crc32cw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x00000000387DD7BF ++crc32cw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x000000005A5F5E86 ++crc32cw 0x0000000000000080 0x000000000000007F = 0x000000002803E842 ++crc32cw 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++crc32cw 0x0000000000000080 0x0000000000007FFF = 0x0000000060817D96 ++crc32cw 0x0000000000000080 0x0000000000008000 = 0x00000000D987BE7C ++crc32cw 0x0000000000000080 0x000000007FFFFFFF = 0x0000000067CE467F ++crc32cw 0x0000000000000080 0x0000000080000000 = 0x00000000D056F247 ++crc32cw 0x0000000000000080 0x8000000000000000 = 0x0000000052A0C93F ++crc32cw 0x0000000000000080 0xFFFFFFFF80000000 = 0x00000000D056F247 ++crc32cw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x00000000D719C9AE ++crc32cw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x000000009F9B5C7A ++crc32cw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x00000000E5387D07 ++crc32cw 0x0000000000000080 0x123456789ABCDEF0 = 0x00000000D1BE26A2 ++crc32cw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000059C71372 ++crc32cw 0x0000000000007FFF 0x0000000000000000 = 0x000000003221B4A9 ++crc32cw 0x0000000000007FFF 0x0000000000000001 = 0x00000000EF641E11 ++crc32cw 0x0000000000007FFF 0x0000000000000002 = 0x000000008D469728 ++crc32cw 0x0000000000007FFF 0x0000000000000003 = 0x0000000050033D90 ++crc32cw 0x0000000000007FFF 0x000000000000000F = 0x00000000DD656F85 ++crc32cw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000085B90091 ++crc32cw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000058FCAA29 ++crc32cw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000003ADE2310 ++crc32cw 0x0000000000007FFF 0x000000000000007F = 0x00000000488295D4 ++crc32cw 0x0000000000007FFF 0x0000000000000080 = 0x0000000060817D96 ++crc32cw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++crc32cw 0x0000000000007FFF 0x0000000000008000 = 0x00000000B906C3EA ++crc32cw 0x0000000000007FFF 0x000000007FFFFFFF = 0x00000000074F3BE9 ++crc32cw 0x0000000000007FFF 0x0000000080000000 = 0x00000000B0D78FD1 ++crc32cw 0x0000000000007FFF 0x8000000000000000 = 0x000000003221B4A9 ++crc32cw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x00000000B0D78FD1 ++crc32cw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x00000000B798B438 ++crc32cw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x00000000FF1A21EC ++crc32cw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000085B90091 ++crc32cw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x00000000B13F5B34 ++crc32cw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000039466EE4 ++crc32cw 0x0000000000008000 0x0000000000000000 = 0x000000008B277743 ++crc32cw 0x0000000000008000 0x0000000000000001 = 0x000000005662DDFB ++crc32cw 0x0000000000008000 0x0000000000000002 = 0x00000000344054C2 ++crc32cw 0x0000000000008000 0x0000000000000003 = 0x00000000E905FE7A ++crc32cw 0x0000000000008000 0x000000000000000F = 0x000000006463AC6F ++crc32cw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000003CBFC37B ++crc32cw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x00000000E1FA69C3 ++crc32cw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000083D8E0FA ++crc32cw 0x0000000000008000 0x000000000000007F = 0x00000000F184563E ++crc32cw 0x0000000000008000 0x0000000000000080 = 0x00000000D987BE7C ++crc32cw 0x0000000000008000 0x0000000000007FFF = 0x00000000B906C3EA ++crc32cw 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++crc32cw 0x0000000000008000 0x000000007FFFFFFF = 0x00000000BE49F803 ++crc32cw 0x0000000000008000 0x0000000080000000 = 0x0000000009D14C3B ++crc32cw 0x0000000000008000 0x8000000000000000 = 0x000000008B277743 ++crc32cw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000009D14C3B ++crc32cw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x000000000E9E77D2 ++crc32cw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x00000000461CE206 ++crc32cw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x000000003CBFC37B ++crc32cw 0x0000000000008000 0x123456789ABCDEF0 = 0x00000000083998DE ++crc32cw 0x0000000000008000 0xF0DEBC9A78563412 = 0x000000008040AD0E ++crc32cw 0x000000007FFFFFFF 0x0000000000000000 = 0x00000000356E8F40 ++crc32cw 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000E82B25F8 ++crc32cw 0x000000007FFFFFFF 0x0000000000000002 = 0x000000008A09ACC1 ++crc32cw 0x000000007FFFFFFF 0x0000000000000003 = 0x00000000574C0679 ++crc32cw 0x000000007FFFFFFF 0x000000000000000F = 0x00000000DA2A546C ++crc32cw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000082F63B78 ++crc32cw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000005FB391C0 ++crc32cw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000003D9118F9 ++crc32cw 0x000000007FFFFFFF 0x000000000000007F = 0x000000004FCDAE3D ++crc32cw 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000067CE467F ++crc32cw 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000000074F3BE9 ++crc32cw 0x000000007FFFFFFF 0x0000000000008000 = 0x00000000BE49F803 ++crc32cw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++crc32cw 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000B798B438 ++crc32cw 0x000000007FFFFFFF 0x8000000000000000 = 0x00000000356E8F40 ++crc32cw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x00000000B798B438 ++crc32cw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000B0D78FD1 ++crc32cw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000F8551A05 ++crc32cw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000082F63B78 ++crc32cw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x00000000B67060DD ++crc32cw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000003E09550D ++crc32cw 0x0000000080000000 0x0000000000000000 = 0x0000000082F63B78 ++crc32cw 0x0000000080000000 0x0000000000000001 = 0x000000005FB391C0 ++crc32cw 0x0000000080000000 0x0000000000000002 = 0x000000003D9118F9 ++crc32cw 0x0000000080000000 0x0000000000000003 = 0x00000000E0D4B241 ++crc32cw 0x0000000080000000 0x000000000000000F = 0x000000006DB2E054 ++crc32cw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x00000000356E8F40 ++crc32cw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x00000000E82B25F8 ++crc32cw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000008A09ACC1 ++crc32cw 0x0000000080000000 0x000000000000007F = 0x00000000F8551A05 ++crc32cw 0x0000000080000000 0x0000000000000080 = 0x00000000D056F247 ++crc32cw 0x0000000080000000 0x0000000000007FFF = 0x00000000B0D78FD1 ++crc32cw 0x0000000080000000 0x0000000000008000 = 0x0000000009D14C3B ++crc32cw 0x0000000080000000 0x000000007FFFFFFF = 0x00000000B798B438 ++crc32cw 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++crc32cw 0x0000000080000000 0x8000000000000000 = 0x0000000082F63B78 ++crc32cw 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++crc32cw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x00000000074F3BE9 ++crc32cw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000004FCDAE3D ++crc32cw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x00000000356E8F40 ++crc32cw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000001E8D4E5 ++crc32cw 0x0000000080000000 0xF0DEBC9A78563412 = 0x000000008991E135 ++crc32cw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32cw 0x8000000000000000 0x0000000000000001 = 0x00000000DD45AAB8 ++crc32cw 0x8000000000000000 0x0000000000000002 = 0x00000000BF672381 ++crc32cw 0x8000000000000000 0x0000000000000003 = 0x0000000062228939 ++crc32cw 0x8000000000000000 0x000000000000000F = 0x00000000EF44DB2C ++crc32cw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000B798B438 ++crc32cw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000006ADD1E80 ++crc32cw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000008FF97B9 ++crc32cw 0x8000000000000000 0x000000000000007F = 0x000000007AA3217D ++crc32cw 0x8000000000000000 0x0000000000000080 = 0x0000000052A0C93F ++crc32cw 0x8000000000000000 0x0000000000007FFF = 0x000000003221B4A9 ++crc32cw 0x8000000000000000 0x0000000000008000 = 0x000000008B277743 ++crc32cw 0x8000000000000000 0x000000007FFFFFFF = 0x00000000356E8F40 ++crc32cw 0x8000000000000000 0x0000000080000000 = 0x0000000082F63B78 ++crc32cw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++crc32cw 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000082F63B78 ++crc32cw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000085B90091 ++crc32cw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000CD3B9545 ++crc32cw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000B798B438 ++crc32cw 0x8000000000000000 0x123456789ABCDEF0 = 0x00000000831EEF9D ++crc32cw 0x8000000000000000 0xF0DEBC9A78563412 = 0x000000000B67DA4D ++crc32cw 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000082F63B78 ++crc32cw 0xFFFFFFFF80000000 0x0000000000000001 = 0x000000005FB391C0 ++crc32cw 0xFFFFFFFF80000000 0x0000000000000002 = 0x000000003D9118F9 ++crc32cw 0xFFFFFFFF80000000 0x0000000000000003 = 0x00000000E0D4B241 ++crc32cw 0xFFFFFFFF80000000 0x000000000000000F = 0x000000006DB2E054 ++crc32cw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00000000356E8F40 ++crc32cw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x00000000E82B25F8 ++crc32cw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000008A09ACC1 ++crc32cw 0xFFFFFFFF80000000 0x000000000000007F = 0x00000000F8551A05 ++crc32cw 0xFFFFFFFF80000000 0x0000000000000080 = 0x00000000D056F247 ++crc32cw 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00000000B0D78FD1 ++crc32cw 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000009D14C3B ++crc32cw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00000000B798B438 ++crc32cw 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++crc32cw 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000082F63B78 ++crc32cw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++crc32cw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x00000000074F3BE9 ++crc32cw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x000000004FCDAE3D ++crc32cw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00000000356E8F40 ++crc32cw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000001E8D4E5 ++crc32cw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x000000008991E135 ++crc32cw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000085B90091 ++crc32cw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000058FCAA29 ++crc32cw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x000000003ADE2310 ++crc32cw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x00000000E79B89A8 ++crc32cw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000006AFDDBBD ++crc32cw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x000000003221B4A9 ++crc32cw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x00000000EF641E11 ++crc32cw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000008D469728 ++crc32cw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000FF1A21EC ++crc32cw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00000000D719C9AE ++crc32cw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00000000B798B438 ++crc32cw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x000000000E9E77D2 ++crc32cw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00000000B0D78FD1 ++crc32cw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x00000000074F3BE9 ++crc32cw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000085B90091 ++crc32cw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x00000000074F3BE9 ++crc32cw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++crc32cw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00000000488295D4 ++crc32cw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x000000003221B4A9 ++crc32cw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000006A7EF0C ++crc32cw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000008EDEDADC ++crc32cw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x00000000CD3B9545 ++crc32cw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x00000000107E3FFD ++crc32cw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x00000000725CB6C4 ++crc32cw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x00000000AF191C7C ++crc32cw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000227F4E69 ++crc32cw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x000000007AA3217D ++crc32cw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x00000000A7E68BC5 ++crc32cw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x00000000C5C402FC ++crc32cw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000B798B438 ++crc32cw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000009F9B5C7A ++crc32cw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000FF1A21EC ++crc32cw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x00000000461CE206 ++crc32cw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000F8551A05 ++crc32cw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000004FCDAE3D ++crc32cw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x00000000CD3B9545 ++crc32cw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000004FCDAE3D ++crc32cw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x00000000488295D4 ++crc32cw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++crc32cw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x000000007AA3217D ++crc32cw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000004E257AD8 ++crc32cw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x00000000C65C4F08 ++crc32cw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000B798B438 ++crc32cw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000006ADD1E80 ++crc32cw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000008FF97B9 ++crc32cw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000D5BA3D01 ++crc32cw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000058DC6F14 ++crc32cw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++crc32cw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000DD45AAB8 ++crc32cw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000BF672381 ++crc32cw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000CD3B9545 ++crc32cw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000E5387D07 ++crc32cw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000085B90091 ++crc32cw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000003CBFC37B ++crc32cw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000082F63B78 ++crc32cw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000356E8F40 ++crc32cw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000B798B438 ++crc32cw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000356E8F40 ++crc32cw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000003221B4A9 ++crc32cw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007AA3217D ++crc32cw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++crc32cw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000034865BA5 ++crc32cw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000BCFF6E75 ++crc32cw 0x123456789ABCDEF0 0x0000000000000000 = 0x00000000831EEF9D ++crc32cw 0x123456789ABCDEF0 0x0000000000000001 = 0x000000005E5B4525 ++crc32cw 0x123456789ABCDEF0 0x0000000000000002 = 0x000000003C79CC1C ++crc32cw 0x123456789ABCDEF0 0x0000000000000003 = 0x00000000E13C66A4 ++crc32cw 0x123456789ABCDEF0 0x000000000000000F = 0x000000006C5A34B1 ++crc32cw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000034865BA5 ++crc32cw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x00000000E9C3F11D ++crc32cw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000008BE17824 ++crc32cw 0x123456789ABCDEF0 0x000000000000007F = 0x00000000F9BDCEE0 ++crc32cw 0x123456789ABCDEF0 0x0000000000000080 = 0x00000000D1BE26A2 ++crc32cw 0x123456789ABCDEF0 0x0000000000007FFF = 0x00000000B13F5B34 ++crc32cw 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000083998DE ++crc32cw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x00000000B67060DD ++crc32cw 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000001E8D4E5 ++crc32cw 0x123456789ABCDEF0 0x8000000000000000 = 0x00000000831EEF9D ++crc32cw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000001E8D4E5 ++crc32cw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000006A7EF0C ++crc32cw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000004E257AD8 ++crc32cw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000034865BA5 ++crc32cw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++crc32cw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x00000000887935D0 ++crc32cw 0xF0DEBC9A78563412 0x0000000000000000 = 0x000000000B67DA4D ++crc32cw 0xF0DEBC9A78563412 0x0000000000000001 = 0x00000000D62270F5 ++crc32cw 0xF0DEBC9A78563412 0x0000000000000002 = 0x00000000B400F9CC ++crc32cw 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000069455374 ++crc32cw 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000E4230161 ++crc32cw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00000000BCFF6E75 ++crc32cw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000061BAC4CD ++crc32cw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000003984DF4 ++crc32cw 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000071C4FB30 ++crc32cw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000059C71372 ++crc32cw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000039466EE4 ++crc32cw 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000008040AD0E ++crc32cw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000003E09550D ++crc32cw 0xF0DEBC9A78563412 0x0000000080000000 = 0x000000008991E135 ++crc32cw 0xF0DEBC9A78563412 0x8000000000000000 = 0x000000000B67DA4D ++crc32cw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000008991E135 ++crc32cw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x000000008EDEDADC ++crc32cw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x00000000C65C4F08 ++crc32cw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000BCFF6E75 ++crc32cw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x00000000887935D0 ++crc32cw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on crc32cl === ++crc32cl 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32cl 0x0000000000000000 0x0000000000000001 = 0x00000000493C7D27 ++crc32cl 0x0000000000000000 0x0000000000000002 = 0x000000009278FA4E ++crc32cl 0x0000000000000000 0x0000000000000003 = 0x00000000DB448769 ++crc32cl 0x0000000000000000 0x000000000000000F = 0x00000000B86201DE ++crc32cl 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000C44FF94D ++crc32cl 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000008D73846A ++crc32cl 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000056370303 ++crc32cl 0x0000000000000000 0x000000000000007F = 0x000000002B14A6C1 ++crc32cl 0x0000000000000000 0x0000000000000080 = 0x0000000034019664 ++crc32cl 0x0000000000000000 0x0000000000007FFF = 0x00000000976A031E ++crc32cl 0x0000000000000000 0x0000000000008000 = 0x00000000F56E0EF4 ++crc32cl 0x0000000000000000 0x000000007FFFFFFF = 0x000000001D759829 ++crc32cl 0x0000000000000000 0x0000000080000000 = 0x000000006EA2D55C ++crc32cl 0x0000000000000000 0x8000000000000000 = 0x0000000082F63B78 ++crc32cl 0x0000000000000000 0xFFFFFFFF80000000 = 0x00000000D93A6164 ++crc32cl 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x000000005325FA53 ++crc32cl 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000EF5B5F8C ++crc32cl 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000046B9C235 ++crc32cl 0x0000000000000000 0x123456789ABCDEF0 = 0x00000000AA8C2B3E ++crc32cl 0x0000000000000000 0xF0DEBC9A78563412 = 0x00000000A12E650E ++crc32cl 0x0000000000000001 0x0000000000000000 = 0x00000000493C7D27 ++crc32cl 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++crc32cl 0x0000000000000001 0x0000000000000002 = 0x00000000DB448769 ++crc32cl 0x0000000000000001 0x0000000000000003 = 0x000000009278FA4E ++crc32cl 0x0000000000000001 0x000000000000000F = 0x00000000F15E7CF9 ++crc32cl 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x000000008D73846A ++crc32cl 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x00000000C44FF94D ++crc32cl 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x000000001F0B7E24 ++crc32cl 0x0000000000000001 0x000000000000007F = 0x000000006228DBE6 ++crc32cl 0x0000000000000001 0x0000000000000080 = 0x000000007D3DEB43 ++crc32cl 0x0000000000000001 0x0000000000007FFF = 0x00000000DE567E39 ++crc32cl 0x0000000000000001 0x0000000000008000 = 0x00000000BC5273D3 ++crc32cl 0x0000000000000001 0x000000007FFFFFFF = 0x000000005449E50E ++crc32cl 0x0000000000000001 0x0000000080000000 = 0x00000000279EA87B ++crc32cl 0x0000000000000001 0x8000000000000000 = 0x00000000CBCA465F ++crc32cl 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000090061C43 ++crc32cl 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x000000001A198774 ++crc32cl 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x00000000A66722AB ++crc32cl 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x000000000F85BF12 ++crc32cl 0x0000000000000001 0x123456789ABCDEF0 = 0x00000000E3B05619 ++crc32cl 0x0000000000000001 0xF0DEBC9A78563412 = 0x00000000E8121829 ++crc32cl 0x0000000000000002 0x0000000000000000 = 0x000000009278FA4E ++crc32cl 0x0000000000000002 0x0000000000000001 = 0x00000000DB448769 ++crc32cl 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++crc32cl 0x0000000000000002 0x0000000000000003 = 0x00000000493C7D27 ++crc32cl 0x0000000000000002 0x000000000000000F = 0x000000002A1AFB90 ++crc32cl 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000056370303 ++crc32cl 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x000000001F0B7E24 ++crc32cl 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x00000000C44FF94D ++crc32cl 0x0000000000000002 0x000000000000007F = 0x00000000B96C5C8F ++crc32cl 0x0000000000000002 0x0000000000000080 = 0x00000000A6796C2A ++crc32cl 0x0000000000000002 0x0000000000007FFF = 0x000000000512F950 ++crc32cl 0x0000000000000002 0x0000000000008000 = 0x000000006716F4BA ++crc32cl 0x0000000000000002 0x000000007FFFFFFF = 0x000000008F0D6267 ++crc32cl 0x0000000000000002 0x0000000080000000 = 0x00000000FCDA2F12 ++crc32cl 0x0000000000000002 0x8000000000000000 = 0x00000000108EC136 ++crc32cl 0x0000000000000002 0xFFFFFFFF80000000 = 0x000000004B429B2A ++crc32cl 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x00000000C15D001D ++crc32cl 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x000000007D23A5C2 ++crc32cl 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x00000000D4C1387B ++crc32cl 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000038F4D170 ++crc32cl 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000033569F40 ++crc32cl 0x0000000000000003 0x0000000000000000 = 0x00000000DB448769 ++crc32cl 0x0000000000000003 0x0000000000000001 = 0x000000009278FA4E ++crc32cl 0x0000000000000003 0x0000000000000002 = 0x00000000493C7D27 ++crc32cl 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++crc32cl 0x0000000000000003 0x000000000000000F = 0x00000000632686B7 ++crc32cl 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x000000001F0B7E24 ++crc32cl 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000056370303 ++crc32cl 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000008D73846A ++crc32cl 0x0000000000000003 0x000000000000007F = 0x00000000F05021A8 ++crc32cl 0x0000000000000003 0x0000000000000080 = 0x00000000EF45110D ++crc32cl 0x0000000000000003 0x0000000000007FFF = 0x000000004C2E8477 ++crc32cl 0x0000000000000003 0x0000000000008000 = 0x000000002E2A899D ++crc32cl 0x0000000000000003 0x000000007FFFFFFF = 0x00000000C6311F40 ++crc32cl 0x0000000000000003 0x0000000080000000 = 0x00000000B5E65235 ++crc32cl 0x0000000000000003 0x8000000000000000 = 0x0000000059B2BC11 ++crc32cl 0x0000000000000003 0xFFFFFFFF80000000 = 0x00000000027EE60D ++crc32cl 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000088617D3A ++crc32cl 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x00000000341FD8E5 ++crc32cl 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x000000009DFD455C ++crc32cl 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000071C8AC57 ++crc32cl 0x0000000000000003 0xF0DEBC9A78563412 = 0x000000007A6AE267 ++crc32cl 0x000000000000000F 0x0000000000000000 = 0x00000000B86201DE ++crc32cl 0x000000000000000F 0x0000000000000001 = 0x00000000F15E7CF9 ++crc32cl 0x000000000000000F 0x0000000000000002 = 0x000000002A1AFB90 ++crc32cl 0x000000000000000F 0x0000000000000003 = 0x00000000632686B7 ++crc32cl 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++crc32cl 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000007C2DF893 ++crc32cl 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x00000000351185B4 ++crc32cl 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x00000000EE5502DD ++crc32cl 0x000000000000000F 0x000000000000007F = 0x000000009376A71F ++crc32cl 0x000000000000000F 0x0000000000000080 = 0x000000008C6397BA ++crc32cl 0x000000000000000F 0x0000000000007FFF = 0x000000002F0802C0 ++crc32cl 0x000000000000000F 0x0000000000008000 = 0x000000004D0C0F2A ++crc32cl 0x000000000000000F 0x000000007FFFFFFF = 0x00000000A51799F7 ++crc32cl 0x000000000000000F 0x0000000080000000 = 0x00000000D6C0D482 ++crc32cl 0x000000000000000F 0x8000000000000000 = 0x000000003A943AA6 ++crc32cl 0x000000000000000F 0xFFFFFFFF80000000 = 0x00000000615860BA ++crc32cl 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x00000000EB47FB8D ++crc32cl 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000057395E52 ++crc32cl 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x00000000FEDBC3EB ++crc32cl 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000012EE2AE0 ++crc32cl 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000194C64D0 ++crc32cl 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000073D74D75 ++crc32cl 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000003AEB3052 ++crc32cl 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000E1AFB73B ++crc32cl 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000A893CA1C ++crc32cl 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000CBB54CAB ++crc32cl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000B798B438 ++crc32cl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000FEA4C91F ++crc32cl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000025E04E76 ++crc32cl 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000058C3EBB4 ++crc32cl 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000047D6DB11 ++crc32cl 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000E4BD4E6B ++crc32cl 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000086B94381 ++crc32cl 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000006EA2D55C ++crc32cl 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000001D759829 ++crc32cl 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000F121760D ++crc32cl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000AAED2C11 ++crc32cl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000020F2B726 ++crc32cl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000009C8C12F9 ++crc32cl 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000356E8F40 ++crc32cl 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000D95B664B ++crc32cl 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000D2F9287B ++crc32cl 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000003AEB3052 ++crc32cl 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000073D74D75 ++crc32cl 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x00000000A893CA1C ++crc32cl 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x00000000E1AFB73B ++crc32cl 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000008289318C ++crc32cl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000FEA4C91F ++crc32cl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x00000000B798B438 ++crc32cl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000006CDC3351 ++crc32cl 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000011FF9693 ++crc32cl 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000EEAA636 ++crc32cl 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000AD81334C ++crc32cl 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x00000000CF853EA6 ++crc32cl 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00000000279EA87B ++crc32cl 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000005449E50E ++crc32cl 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x00000000B81D0B2A ++crc32cl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000E3D15136 ++crc32cl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000069CECA01 ++crc32cl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000D5B06FDE ++crc32cl 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x000000007C52F267 ++crc32cl 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000090671B6C ++crc32cl 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000009BC5555C ++crc32cl 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x00000000E1AFB73B ++crc32cl 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000A893CA1C ++crc32cl 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000073D74D75 ++crc32cl 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000003AEB3052 ++crc32cl 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000059CDB6E5 ++crc32cl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000025E04E76 ++crc32cl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000006CDC3351 ++crc32cl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x00000000B798B438 ++crc32cl 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00000000CABB11FA ++crc32cl 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000D5AE215F ++crc32cl 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000076C5B425 ++crc32cl 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000014C1B9CF ++crc32cl 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000FCDA2F12 ++crc32cl 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000008F0D6267 ++crc32cl 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000063598C43 ++crc32cl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000003895D65F ++crc32cl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000B28A4D68 ++crc32cl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000EF4E8B7 ++crc32cl 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000A716750E ++crc32cl 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000004B239C05 ++crc32cl 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000004081D235 ++crc32cl 0x000000000000007F 0x0000000000000000 = 0x000000002B14A6C1 ++crc32cl 0x000000000000007F 0x0000000000000001 = 0x000000006228DBE6 ++crc32cl 0x000000000000007F 0x0000000000000002 = 0x00000000B96C5C8F ++crc32cl 0x000000000000007F 0x0000000000000003 = 0x00000000F05021A8 ++crc32cl 0x000000000000007F 0x000000000000000F = 0x000000009376A71F ++crc32cl 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000EF5B5F8C ++crc32cl 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000A66722AB ++crc32cl 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000007D23A5C2 ++crc32cl 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++crc32cl 0x000000000000007F 0x0000000000000080 = 0x000000001F1530A5 ++crc32cl 0x000000000000007F 0x0000000000007FFF = 0x00000000BC7EA5DF ++crc32cl 0x000000000000007F 0x0000000000008000 = 0x00000000DE7AA835 ++crc32cl 0x000000000000007F 0x000000007FFFFFFF = 0x0000000036613EE8 ++crc32cl 0x000000000000007F 0x0000000080000000 = 0x0000000045B6739D ++crc32cl 0x000000000000007F 0x8000000000000000 = 0x00000000A9E29DB9 ++crc32cl 0x000000000000007F 0xFFFFFFFF80000000 = 0x00000000F22EC7A5 ++crc32cl 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000078315C92 ++crc32cl 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x00000000C44FF94D ++crc32cl 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000006DAD64F4 ++crc32cl 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000081988DFF ++crc32cl 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000008A3AC3CF ++crc32cl 0x0000000000000080 0x0000000000000000 = 0x0000000034019664 ++crc32cl 0x0000000000000080 0x0000000000000001 = 0x000000007D3DEB43 ++crc32cl 0x0000000000000080 0x0000000000000002 = 0x00000000A6796C2A ++crc32cl 0x0000000000000080 0x0000000000000003 = 0x00000000EF45110D ++crc32cl 0x0000000000000080 0x000000000000000F = 0x000000008C6397BA ++crc32cl 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x00000000F04E6F29 ++crc32cl 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x00000000B972120E ++crc32cl 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000062369567 ++crc32cl 0x0000000000000080 0x000000000000007F = 0x000000001F1530A5 ++crc32cl 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++crc32cl 0x0000000000000080 0x0000000000007FFF = 0x00000000A36B957A ++crc32cl 0x0000000000000080 0x0000000000008000 = 0x00000000C16F9890 ++crc32cl 0x0000000000000080 0x000000007FFFFFFF = 0x0000000029740E4D ++crc32cl 0x0000000000000080 0x0000000080000000 = 0x000000005AA34338 ++crc32cl 0x0000000000000080 0x8000000000000000 = 0x00000000B6F7AD1C ++crc32cl 0x0000000000000080 0xFFFFFFFF80000000 = 0x00000000ED3BF700 ++crc32cl 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000067246C37 ++crc32cl 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x00000000DB5AC9E8 ++crc32cl 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000072B85451 ++crc32cl 0x0000000000000080 0x123456789ABCDEF0 = 0x000000009E8DBD5A ++crc32cl 0x0000000000000080 0xF0DEBC9A78563412 = 0x00000000952FF36A ++crc32cl 0x0000000000007FFF 0x0000000000000000 = 0x00000000976A031E ++crc32cl 0x0000000000007FFF 0x0000000000000001 = 0x00000000DE567E39 ++crc32cl 0x0000000000007FFF 0x0000000000000002 = 0x000000000512F950 ++crc32cl 0x0000000000007FFF 0x0000000000000003 = 0x000000004C2E8477 ++crc32cl 0x0000000000007FFF 0x000000000000000F = 0x000000002F0802C0 ++crc32cl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000005325FA53 ++crc32cl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000001A198774 ++crc32cl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x00000000C15D001D ++crc32cl 0x0000000000007FFF 0x000000000000007F = 0x00000000BC7EA5DF ++crc32cl 0x0000000000007FFF 0x0000000000000080 = 0x00000000A36B957A ++crc32cl 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++crc32cl 0x0000000000007FFF 0x0000000000008000 = 0x0000000062040DEA ++crc32cl 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000008A1F9B37 ++crc32cl 0x0000000000007FFF 0x0000000080000000 = 0x00000000F9C8D642 ++crc32cl 0x0000000000007FFF 0x8000000000000000 = 0x00000000159C3866 ++crc32cl 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000004E50627A ++crc32cl 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x00000000C44FF94D ++crc32cl 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000078315C92 ++crc32cl 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x00000000D1D3C12B ++crc32cl 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000003DE62820 ++crc32cl 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000036446610 ++crc32cl 0x0000000000008000 0x0000000000000000 = 0x00000000F56E0EF4 ++crc32cl 0x0000000000008000 0x0000000000000001 = 0x00000000BC5273D3 ++crc32cl 0x0000000000008000 0x0000000000000002 = 0x000000006716F4BA ++crc32cl 0x0000000000008000 0x0000000000000003 = 0x000000002E2A899D ++crc32cl 0x0000000000008000 0x000000000000000F = 0x000000004D0C0F2A ++crc32cl 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000003121F7B9 ++crc32cl 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x00000000781D8A9E ++crc32cl 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x00000000A3590DF7 ++crc32cl 0x0000000000008000 0x000000000000007F = 0x00000000DE7AA835 ++crc32cl 0x0000000000008000 0x0000000000000080 = 0x00000000C16F9890 ++crc32cl 0x0000000000008000 0x0000000000007FFF = 0x0000000062040DEA ++crc32cl 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++crc32cl 0x0000000000008000 0x000000007FFFFFFF = 0x00000000E81B96DD ++crc32cl 0x0000000000008000 0x0000000080000000 = 0x000000009BCCDBA8 ++crc32cl 0x0000000000008000 0x8000000000000000 = 0x000000007798358C ++crc32cl 0x0000000000008000 0xFFFFFFFF80000000 = 0x000000002C546F90 ++crc32cl 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x00000000A64BF4A7 ++crc32cl 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000001A355178 ++crc32cl 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x00000000B3D7CCC1 ++crc32cl 0x0000000000008000 0x123456789ABCDEF0 = 0x000000005FE225CA ++crc32cl 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000054406BFA ++crc32cl 0x000000007FFFFFFF 0x0000000000000000 = 0x000000001D759829 ++crc32cl 0x000000007FFFFFFF 0x0000000000000001 = 0x000000005449E50E ++crc32cl 0x000000007FFFFFFF 0x0000000000000002 = 0x000000008F0D6267 ++crc32cl 0x000000007FFFFFFF 0x0000000000000003 = 0x00000000C6311F40 ++crc32cl 0x000000007FFFFFFF 0x000000000000000F = 0x00000000A51799F7 ++crc32cl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000D93A6164 ++crc32cl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000090061C43 ++crc32cl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000004B429B2A ++crc32cl 0x000000007FFFFFFF 0x000000000000007F = 0x0000000036613EE8 ++crc32cl 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000029740E4D ++crc32cl 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000008A1F9B37 ++crc32cl 0x000000007FFFFFFF 0x0000000000008000 = 0x00000000E81B96DD ++crc32cl 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++crc32cl 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000073D74D75 ++crc32cl 0x000000007FFFFFFF 0x8000000000000000 = 0x000000009F83A351 ++crc32cl 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x00000000C44FF94D ++crc32cl 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000004E50627A ++crc32cl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000F22EC7A5 ++crc32cl 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000005BCC5A1C ++crc32cl 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x00000000B7F9B317 ++crc32cl 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00000000BC5BFD27 ++crc32cl 0x0000000080000000 0x0000000000000000 = 0x000000006EA2D55C ++crc32cl 0x0000000080000000 0x0000000000000001 = 0x00000000279EA87B ++crc32cl 0x0000000080000000 0x0000000000000002 = 0x00000000FCDA2F12 ++crc32cl 0x0000000080000000 0x0000000000000003 = 0x00000000B5E65235 ++crc32cl 0x0000000080000000 0x000000000000000F = 0x00000000D6C0D482 ++crc32cl 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x00000000AAED2C11 ++crc32cl 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x00000000E3D15136 ++crc32cl 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000003895D65F ++crc32cl 0x0000000080000000 0x000000000000007F = 0x0000000045B6739D ++crc32cl 0x0000000080000000 0x0000000000000080 = 0x000000005AA34338 ++crc32cl 0x0000000080000000 0x0000000000007FFF = 0x00000000F9C8D642 ++crc32cl 0x0000000080000000 0x0000000000008000 = 0x000000009BCCDBA8 ++crc32cl 0x0000000080000000 0x000000007FFFFFFF = 0x0000000073D74D75 ++crc32cl 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++crc32cl 0x0000000080000000 0x8000000000000000 = 0x00000000EC54EE24 ++crc32cl 0x0000000080000000 0xFFFFFFFF80000000 = 0x00000000B798B438 ++crc32cl 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x000000003D872F0F ++crc32cl 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000081F98AD0 ++crc32cl 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x00000000281B1769 ++crc32cl 0x0000000080000000 0x123456789ABCDEF0 = 0x00000000C42EFE62 ++crc32cl 0x0000000080000000 0xF0DEBC9A78563412 = 0x00000000CF8CB052 ++crc32cl 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++crc32cl 0x8000000000000000 0x0000000000000001 = 0x00000000493C7D27 ++crc32cl 0x8000000000000000 0x0000000000000002 = 0x000000009278FA4E ++crc32cl 0x8000000000000000 0x0000000000000003 = 0x00000000DB448769 ++crc32cl 0x8000000000000000 0x000000000000000F = 0x00000000B86201DE ++crc32cl 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000C44FF94D ++crc32cl 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000008D73846A ++crc32cl 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000056370303 ++crc32cl 0x8000000000000000 0x000000000000007F = 0x000000002B14A6C1 ++crc32cl 0x8000000000000000 0x0000000000000080 = 0x0000000034019664 ++crc32cl 0x8000000000000000 0x0000000000007FFF = 0x00000000976A031E ++crc32cl 0x8000000000000000 0x0000000000008000 = 0x00000000F56E0EF4 ++crc32cl 0x8000000000000000 0x000000007FFFFFFF = 0x000000001D759829 ++crc32cl 0x8000000000000000 0x0000000080000000 = 0x000000006EA2D55C ++crc32cl 0x8000000000000000 0x8000000000000000 = 0x0000000082F63B78 ++crc32cl 0x8000000000000000 0xFFFFFFFF80000000 = 0x00000000D93A6164 ++crc32cl 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x000000005325FA53 ++crc32cl 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000EF5B5F8C ++crc32cl 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000046B9C235 ++crc32cl 0x8000000000000000 0x123456789ABCDEF0 = 0x00000000AA8C2B3E ++crc32cl 0x8000000000000000 0xF0DEBC9A78563412 = 0x00000000A12E650E ++crc32cl 0xFFFFFFFF80000000 0x0000000000000000 = 0x000000006EA2D55C ++crc32cl 0xFFFFFFFF80000000 0x0000000000000001 = 0x00000000279EA87B ++crc32cl 0xFFFFFFFF80000000 0x0000000000000002 = 0x00000000FCDA2F12 ++crc32cl 0xFFFFFFFF80000000 0x0000000000000003 = 0x00000000B5E65235 ++crc32cl 0xFFFFFFFF80000000 0x000000000000000F = 0x00000000D6C0D482 ++crc32cl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00000000AAED2C11 ++crc32cl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x00000000E3D15136 ++crc32cl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000003895D65F ++crc32cl 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000045B6739D ++crc32cl 0xFFFFFFFF80000000 0x0000000000000080 = 0x000000005AA34338 ++crc32cl 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00000000F9C8D642 ++crc32cl 0xFFFFFFFF80000000 0x0000000000008000 = 0x000000009BCCDBA8 ++crc32cl 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000073D74D75 ++crc32cl 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++crc32cl 0xFFFFFFFF80000000 0x8000000000000000 = 0x00000000EC54EE24 ++crc32cl 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x00000000B798B438 ++crc32cl 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x000000003D872F0F ++crc32cl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000081F98AD0 ++crc32cl 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00000000281B1769 ++crc32cl 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x00000000C42EFE62 ++crc32cl 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x00000000CF8CB052 ++crc32cl 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x00000000E4BD4E6B ++crc32cl 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x00000000AD81334C ++crc32cl 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000076C5B425 ++crc32cl 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x000000003FF9C902 ++crc32cl 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000005CDF4FB5 ++crc32cl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000020F2B726 ++crc32cl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000069CECA01 ++crc32cl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x00000000B28A4D68 ++crc32cl 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000CFA9E8AA ++crc32cl 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00000000D0BCD80F ++crc32cl 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000073D74D75 ++crc32cl 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000011D3409F ++crc32cl 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00000000F9C8D642 ++crc32cl 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000008A1F9B37 ++crc32cl 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x00000000664B7513 ++crc32cl 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000003D872F0F ++crc32cl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x00000000B798B438 ++crc32cl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x000000000BE611E7 ++crc32cl 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00000000A2048C5E ++crc32cl 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x000000004E316555 ++crc32cl 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000045932B65 ++crc32cl 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000058C3EBB4 ++crc32cl 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000011FF9693 ++crc32cl 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x00000000CABB11FA ++crc32cl 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000083876CDD ++crc32cl 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000E0A1EA6A ++crc32cl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x000000009C8C12F9 ++crc32cl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x00000000D5B06FDE ++crc32cl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000000EF4E8B7 ++crc32cl 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000073D74D75 ++crc32cl 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000006CC27DD0 ++crc32cl 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000CFA9E8AA ++crc32cl 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x00000000ADADE540 ++crc32cl 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000045B6739D ++crc32cl 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000036613EE8 ++crc32cl 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x00000000DA35D0CC ++crc32cl 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000081F98AD0 ++crc32cl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x000000000BE611E7 ++crc32cl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x00000000B798B438 ++crc32cl 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x000000001E7A2981 ++crc32cl 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x00000000F24FC08A ++crc32cl 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x00000000F9ED8EBA ++crc32cl 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000073D74D75 ++crc32cl 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000003AEB3052 ++crc32cl 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000E1AFB73B ++crc32cl 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000A893CA1C ++crc32cl 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000CBB54CAB ++crc32cl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000B798B438 ++crc32cl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000FEA4C91F ++crc32cl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000025E04E76 ++crc32cl 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000058C3EBB4 ++crc32cl 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000047D6DB11 ++crc32cl 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000E4BD4E6B ++crc32cl 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000086B94381 ++crc32cl 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000006EA2D55C ++crc32cl 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000001D759829 ++crc32cl 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000F121760D ++crc32cl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000AAED2C11 ++crc32cl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000020F2B726 ++crc32cl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000009C8C12F9 ++crc32cl 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000356E8F40 ++crc32cl 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000D95B664B ++crc32cl 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000D2F9287B ++crc32cl 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000050F87D0A ++crc32cl 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000019C4002D ++crc32cl 0x123456789ABCDEF0 0x0000000000000002 = 0x00000000C2808744 ++crc32cl 0x123456789ABCDEF0 0x0000000000000003 = 0x000000008BBCFA63 ++crc32cl 0x123456789ABCDEF0 0x000000000000000F = 0x00000000E89A7CD4 ++crc32cl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000094B78447 ++crc32cl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x00000000DD8BF960 ++crc32cl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000006CF7E09 ++crc32cl 0x123456789ABCDEF0 0x000000000000007F = 0x000000007BECDBCB ++crc32cl 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000064F9EB6E ++crc32cl 0x123456789ABCDEF0 0x0000000000007FFF = 0x00000000C7927E14 ++crc32cl 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000A59673FE ++crc32cl 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000004D8DE523 ++crc32cl 0x123456789ABCDEF0 0x0000000080000000 = 0x000000003E5AA856 ++crc32cl 0x123456789ABCDEF0 0x8000000000000000 = 0x00000000D20E4672 ++crc32cl 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000089C21C6E ++crc32cl 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000003DD8759 ++crc32cl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x00000000BFA32286 ++crc32cl 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000001641BF3F ++crc32cl 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x00000000FA745634 ++crc32cl 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x00000000F1D61804 ++crc32cl 0xF0DEBC9A78563412 0x0000000000000000 = 0x00000000D32306EA ++crc32cl 0xF0DEBC9A78563412 0x0000000000000001 = 0x000000009A1F7BCD ++crc32cl 0xF0DEBC9A78563412 0x0000000000000002 = 0x00000000415BFCA4 ++crc32cl 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000008678183 ++crc32cl 0xF0DEBC9A78563412 0x000000000000000F = 0x000000006B410734 ++crc32cl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00000000176CFFA7 ++crc32cl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x000000005E508280 ++crc32cl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x00000000851405E9 ++crc32cl 0xF0DEBC9A78563412 0x000000000000007F = 0x00000000F837A02B ++crc32cl 0xF0DEBC9A78563412 0x0000000000000080 = 0x00000000E722908E ++crc32cl 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00000000444905F4 ++crc32cl 0xF0DEBC9A78563412 0x0000000000008000 = 0x00000000264D081E ++crc32cl 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000CE569EC3 ++crc32cl 0xF0DEBC9A78563412 0x0000000080000000 = 0x00000000BD81D3B6 ++crc32cl 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000051D53D92 ++crc32cl 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000000A19678E ++crc32cl 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x000000008006FCB9 ++crc32cl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x000000003C785966 ++crc32cl 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000959AC4DF ++crc32cl 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000079AF2DD4 ++crc32cl 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x00000000720D63E4 ++=== Running test on revbh === ++revbh 0x0000000000000000 = 0x0000000000000000 ++revbh 0x0000000000000001 = 0x0000000000000100 ++revbh 0x0000000000000002 = 0x0000000000000200 ++revbh 0x0000000000000003 = 0x0000000000000300 ++revbh 0x000000000000000F = 0x0000000000000F00 ++revbh 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++revbh 0xFFFFFFFFFFFFFFFE = 0x000000000000FEFF ++revbh 0xFFFFFFFFFFFFFFFD = 0x000000000000FDFF ++revbh 0x000000000000007F = 0x0000000000007F00 ++revbh 0x0000000000000080 = 0x0000000000008000 ++revbh 0x0000000000007FFF = 0x000000000000FF7F ++revbh 0x0000000000008000 = 0x0000000000000080 ++revbh 0x000000007FFFFFFF = 0x000000000000FFFF ++revbh 0x0000000080000000 = 0x0000000000000000 ++revbh 0x8000000000000000 = 0x0000000000000000 ++revbh 0xFFFFFFFF80000000 = 0x0000000000000000 ++revbh 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++revbh 0xFFFFFFFFFFFFFF80 = 0x00000000000080FF ++revbh 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++revbh 0x123456789ABCDEF0 = 0x000000000000F0DE ++revbh 0xF0DEBC9A78563412 = 0x0000000000001234 ++=== Running test on revbw === ++revbw 0x0000000000000000 = 0x0000000000000000 ++revbw 0x0000000000000001 = 0x0000000001000000 ++revbw 0x0000000000000002 = 0x0000000002000000 ++revbw 0x0000000000000003 = 0x0000000003000000 ++revbw 0x000000000000000F = 0x000000000F000000 ++revbw 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++revbw 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFEFFFFFF ++revbw 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFDFFFFFF ++revbw 0x000000000000007F = 0x000000007F000000 ++revbw 0x0000000000000080 = 0xFFFFFFFF80000000 ++revbw 0x0000000000007FFF = 0xFFFFFFFFFF7F0000 ++revbw 0x0000000000008000 = 0x0000000000800000 ++revbw 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF7F ++revbw 0x0000000080000000 = 0x0000000000000080 ++revbw 0x8000000000000000 = 0x0000000000000000 ++revbw 0xFFFFFFFF80000000 = 0x0000000000000080 ++revbw 0xFFFFFFFFFFFF8000 = 0x000000000080FFFF ++revbw 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80FFFFFF ++revbw 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++revbw 0x123456789ABCDEF0 = 0xFFFFFFFFF0DEBC9A ++revbw 0xF0DEBC9A78563412 = 0x0000000012345678 ++=== Running test on revbl === ++revbl 0x0000000000000000 = 0x0000000000000000 ++revbl 0x0000000000000001 = 0x0100000000000000 ++revbl 0x0000000000000002 = 0x0200000000000000 ++revbl 0x0000000000000003 = 0x0300000000000000 ++revbl 0x000000000000000F = 0x0F00000000000000 ++revbl 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++revbl 0xFFFFFFFFFFFFFFFE = 0xFEFFFFFFFFFFFFFF ++revbl 0xFFFFFFFFFFFFFFFD = 0xFDFFFFFFFFFFFFFF ++revbl 0x000000000000007F = 0x7F00000000000000 ++revbl 0x0000000000000080 = 0x8000000000000000 ++revbl 0x0000000000007FFF = 0xFF7F000000000000 ++revbl 0x0000000000008000 = 0x0080000000000000 ++revbl 0x000000007FFFFFFF = 0xFFFFFF7F00000000 ++revbl 0x0000000080000000 = 0x0000008000000000 ++revbl 0x8000000000000000 = 0x0000000000000080 ++revbl 0xFFFFFFFF80000000 = 0x00000080FFFFFFFF ++revbl 0xFFFFFFFFFFFF8000 = 0x0080FFFFFFFFFFFF ++revbl 0xFFFFFFFFFFFFFF80 = 0x80FFFFFFFFFFFFFF ++revbl 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7F ++revbl 0x123456789ABCDEF0 = 0xF0DEBC9A78563412 ++revbl 0xF0DEBC9A78563412 = 0x123456789ABCDEF0 ++=== Running test on sbt0 === ++sbt0 0x0000000000000000 = 0x0000000000000001 ++sbt0 0x0000000000000001 = 0x0000000000000001 ++sbt0 0x0000000000000002 = 0x0000000000000003 ++sbt0 0x0000000000000003 = 0x0000000000000003 ++sbt0 0x000000000000000F = 0x000000000000000F ++sbt0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sbt0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sbt0 0x000000000000007F = 0x000000000000007F ++sbt0 0x0000000000000080 = 0x0000000000000081 ++sbt0 0x0000000000007FFF = 0x0000000000007FFF ++sbt0 0x0000000000008000 = 0x0000000000008001 ++sbt0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sbt0 0x0000000080000000 = 0x0000000080000001 ++sbt0 0x8000000000000000 = 0x8000000000000001 ++sbt0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000001 ++sbt0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8001 ++sbt0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF81 ++sbt0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sbt0 0x123456789ABCDEF0 = 0x123456789ABCDEF1 ++sbt0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563413 ++=== Running test on sbt1 === ++sbt1 0x0000000000000000 = 0x0000000000000002 ++sbt1 0x0000000000000001 = 0x0000000000000003 ++sbt1 0x0000000000000002 = 0x0000000000000002 ++sbt1 0x0000000000000003 = 0x0000000000000003 ++sbt1 0x000000000000000F = 0x000000000000000F ++sbt1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sbt1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sbt1 0x000000000000007F = 0x000000000000007F ++sbt1 0x0000000000000080 = 0x0000000000000082 ++sbt1 0x0000000000007FFF = 0x0000000000007FFF ++sbt1 0x0000000000008000 = 0x0000000000008002 ++sbt1 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sbt1 0x0000000080000000 = 0x0000000080000002 ++sbt1 0x8000000000000000 = 0x8000000000000002 ++sbt1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000002 ++sbt1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8002 ++sbt1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF82 ++sbt1 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sbt1 0x123456789ABCDEF0 = 0x123456789ABCDEF2 ++sbt1 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on sbt2 === ++sbt2 0x0000000000000000 = 0x0000000000000004 ++sbt2 0x0000000000000001 = 0x0000000000000005 ++sbt2 0x0000000000000002 = 0x0000000000000006 ++sbt2 0x0000000000000003 = 0x0000000000000007 ++sbt2 0x000000000000000F = 0x000000000000000F ++sbt2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sbt2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sbt2 0x000000000000007F = 0x000000000000007F ++sbt2 0x0000000000000080 = 0x0000000000000084 ++sbt2 0x0000000000007FFF = 0x0000000000007FFF ++sbt2 0x0000000000008000 = 0x0000000000008004 ++sbt2 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sbt2 0x0000000080000000 = 0x0000000080000004 ++sbt2 0x8000000000000000 = 0x8000000000000004 ++sbt2 0xFFFFFFFF80000000 = 0xFFFFFFFF80000004 ++sbt2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8004 ++sbt2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF84 ++sbt2 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sbt2 0x123456789ABCDEF0 = 0x123456789ABCDEF4 ++sbt2 0xF0DEBC9A78563412 = 0xF0DEBC9A78563416 ++=== Running test on sbt3 === ++sbt3 0x0000000000000000 = 0x0000000000000008 ++sbt3 0x0000000000000001 = 0x0000000000000009 ++sbt3 0x0000000000000002 = 0x000000000000000A ++sbt3 0x0000000000000003 = 0x000000000000000B ++sbt3 0x000000000000000F = 0x000000000000000F ++sbt3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sbt3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sbt3 0x000000000000007F = 0x000000000000007F ++sbt3 0x0000000000000080 = 0x0000000000000088 ++sbt3 0x0000000000007FFF = 0x0000000000007FFF ++sbt3 0x0000000000008000 = 0x0000000000008008 ++sbt3 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sbt3 0x0000000080000000 = 0x0000000080000008 ++sbt3 0x8000000000000000 = 0x8000000000000008 ++sbt3 0xFFFFFFFF80000000 = 0xFFFFFFFF80000008 ++sbt3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8008 ++sbt3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF88 ++sbt3 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sbt3 0x123456789ABCDEF0 = 0x123456789ABCDEF8 ++sbt3 0xF0DEBC9A78563412 = 0xF0DEBC9A7856341A ++=== Running test on sbt15 === ++sbt15 0x0000000000000000 = 0x0000000000008000 ++sbt15 0x0000000000000001 = 0x0000000000008001 ++sbt15 0x0000000000000002 = 0x0000000000008002 ++sbt15 0x0000000000000003 = 0x0000000000008003 ++sbt15 0x000000000000000F = 0x000000000000800F ++sbt15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sbt15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sbt15 0x000000000000007F = 0x000000000000807F ++sbt15 0x0000000000000080 = 0x0000000000008080 ++sbt15 0x0000000000007FFF = 0x000000000000FFFF ++sbt15 0x0000000000008000 = 0x0000000000008000 ++sbt15 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sbt15 0x0000000080000000 = 0x0000000080008000 ++sbt15 0x8000000000000000 = 0x8000000000008000 ++sbt15 0xFFFFFFFF80000000 = 0xFFFFFFFF80008000 ++sbt15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sbt15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sbt15 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sbt15 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sbt15 0xF0DEBC9A78563412 = 0xF0DEBC9A7856B412 ++=== Running test on sbt127 === ++sbt127 0x0000000000000000 = 0x8000000000000000 ++sbt127 0x0000000000000001 = 0x8000000000000001 ++sbt127 0x0000000000000002 = 0x8000000000000002 ++sbt127 0x0000000000000003 = 0x8000000000000003 ++sbt127 0x000000000000000F = 0x800000000000000F ++sbt127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sbt127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sbt127 0x000000000000007F = 0x800000000000007F ++sbt127 0x0000000000000080 = 0x8000000000000080 ++sbt127 0x0000000000007FFF = 0x8000000000007FFF ++sbt127 0x0000000000008000 = 0x8000000000008000 ++sbt127 0x000000007FFFFFFF = 0x800000007FFFFFFF ++sbt127 0x0000000080000000 = 0x8000000080000000 ++sbt127 0x8000000000000000 = 0x8000000000000000 ++sbt127 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sbt127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sbt127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sbt127 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt127 0x123456789ABCDEF0 = 0x923456789ABCDEF0 ++sbt127 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on sbt128 === ++sbt128 0x0000000000000000 = 0x0000000000000001 ++sbt128 0x0000000000000001 = 0x0000000000000001 ++sbt128 0x0000000000000002 = 0x0000000000000003 ++sbt128 0x0000000000000003 = 0x0000000000000003 ++sbt128 0x000000000000000F = 0x000000000000000F ++sbt128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sbt128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sbt128 0x000000000000007F = 0x000000000000007F ++sbt128 0x0000000000000080 = 0x0000000000000081 ++sbt128 0x0000000000007FFF = 0x0000000000007FFF ++sbt128 0x0000000000008000 = 0x0000000000008001 ++sbt128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sbt128 0x0000000080000000 = 0x0000000080000001 ++sbt128 0x8000000000000000 = 0x8000000000000001 ++sbt128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000001 ++sbt128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8001 ++sbt128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF81 ++sbt128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sbt128 0x123456789ABCDEF0 = 0x123456789ABCDEF1 ++sbt128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563413 ++=== Running test on sbt255 === ++sbt255 0x0000000000000000 = 0x8000000000000000 ++sbt255 0x0000000000000001 = 0x8000000000000001 ++sbt255 0x0000000000000002 = 0x8000000000000002 ++sbt255 0x0000000000000003 = 0x8000000000000003 ++sbt255 0x000000000000000F = 0x800000000000000F ++sbt255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sbt255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sbt255 0x000000000000007F = 0x800000000000007F ++sbt255 0x0000000000000080 = 0x8000000000000080 ++sbt255 0x0000000000007FFF = 0x8000000000007FFF ++sbt255 0x0000000000008000 = 0x8000000000008000 ++sbt255 0x000000007FFFFFFF = 0x800000007FFFFFFF ++sbt255 0x0000000080000000 = 0x8000000080000000 ++sbt255 0x8000000000000000 = 0x8000000000000000 ++sbt255 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sbt255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sbt255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sbt255 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sbt255 0x123456789ABCDEF0 = 0x923456789ABCDEF0 ++sbt255 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on cbt0 === ++cbt0 0x0000000000000000 = 0x0000000000000000 ++cbt0 0x0000000000000001 = 0x0000000000000000 ++cbt0 0x0000000000000002 = 0x0000000000000002 ++cbt0 0x0000000000000003 = 0x0000000000000002 ++cbt0 0x000000000000000F = 0x000000000000000E ++cbt0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++cbt0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++cbt0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++cbt0 0x000000000000007F = 0x000000000000007E ++cbt0 0x0000000000000080 = 0x0000000000000080 ++cbt0 0x0000000000007FFF = 0x0000000000007FFE ++cbt0 0x0000000000008000 = 0x0000000000008000 ++cbt0 0x000000007FFFFFFF = 0x000000007FFFFFFE ++cbt0 0x0000000080000000 = 0x0000000080000000 ++cbt0 0x8000000000000000 = 0x8000000000000000 ++cbt0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++cbt0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++cbt0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++cbt0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++cbt0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++cbt0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on cbt1 === ++cbt1 0x0000000000000000 = 0x0000000000000000 ++cbt1 0x0000000000000001 = 0x0000000000000001 ++cbt1 0x0000000000000002 = 0x0000000000000000 ++cbt1 0x0000000000000003 = 0x0000000000000001 ++cbt1 0x000000000000000F = 0x000000000000000D ++cbt1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++cbt1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++cbt1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++cbt1 0x000000000000007F = 0x000000000000007D ++cbt1 0x0000000000000080 = 0x0000000000000080 ++cbt1 0x0000000000007FFF = 0x0000000000007FFD ++cbt1 0x0000000000008000 = 0x0000000000008000 ++cbt1 0x000000007FFFFFFF = 0x000000007FFFFFFD ++cbt1 0x0000000080000000 = 0x0000000080000000 ++cbt1 0x8000000000000000 = 0x8000000000000000 ++cbt1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++cbt1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++cbt1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++cbt1 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++cbt1 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++cbt1 0xF0DEBC9A78563412 = 0xF0DEBC9A78563410 ++=== Running test on cbt2 === ++cbt2 0x0000000000000000 = 0x0000000000000000 ++cbt2 0x0000000000000001 = 0x0000000000000001 ++cbt2 0x0000000000000002 = 0x0000000000000002 ++cbt2 0x0000000000000003 = 0x0000000000000003 ++cbt2 0x000000000000000F = 0x000000000000000B ++cbt2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++cbt2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++cbt2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF9 ++cbt2 0x000000000000007F = 0x000000000000007B ++cbt2 0x0000000000000080 = 0x0000000000000080 ++cbt2 0x0000000000007FFF = 0x0000000000007FFB ++cbt2 0x0000000000008000 = 0x0000000000008000 ++cbt2 0x000000007FFFFFFF = 0x000000007FFFFFFB ++cbt2 0x0000000080000000 = 0x0000000080000000 ++cbt2 0x8000000000000000 = 0x8000000000000000 ++cbt2 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++cbt2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++cbt2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++cbt2 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFB ++cbt2 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++cbt2 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on cbt3 === ++cbt3 0x0000000000000000 = 0x0000000000000000 ++cbt3 0x0000000000000001 = 0x0000000000000001 ++cbt3 0x0000000000000002 = 0x0000000000000002 ++cbt3 0x0000000000000003 = 0x0000000000000003 ++cbt3 0x000000000000000F = 0x0000000000000007 ++cbt3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++cbt3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF6 ++cbt3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF5 ++cbt3 0x000000000000007F = 0x0000000000000077 ++cbt3 0x0000000000000080 = 0x0000000000000080 ++cbt3 0x0000000000007FFF = 0x0000000000007FF7 ++cbt3 0x0000000000008000 = 0x0000000000008000 ++cbt3 0x000000007FFFFFFF = 0x000000007FFFFFF7 ++cbt3 0x0000000080000000 = 0x0000000080000000 ++cbt3 0x8000000000000000 = 0x8000000000000000 ++cbt3 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++cbt3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++cbt3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++cbt3 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF7 ++cbt3 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++cbt3 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on cbt15 === ++cbt15 0x0000000000000000 = 0x0000000000000000 ++cbt15 0x0000000000000001 = 0x0000000000000001 ++cbt15 0x0000000000000002 = 0x0000000000000002 ++cbt15 0x0000000000000003 = 0x0000000000000003 ++cbt15 0x000000000000000F = 0x000000000000000F ++cbt15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF7FFF ++cbt15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF7FFE ++cbt15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF7FFD ++cbt15 0x000000000000007F = 0x000000000000007F ++cbt15 0x0000000000000080 = 0x0000000000000080 ++cbt15 0x0000000000007FFF = 0x0000000000007FFF ++cbt15 0x0000000000008000 = 0x0000000000000000 ++cbt15 0x000000007FFFFFFF = 0x000000007FFF7FFF ++cbt15 0x0000000080000000 = 0x0000000080000000 ++cbt15 0x8000000000000000 = 0x8000000000000000 ++cbt15 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++cbt15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++cbt15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF7F80 ++cbt15 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF7FFF ++cbt15 0x123456789ABCDEF0 = 0x123456789ABC5EF0 ++cbt15 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on cbt127 === ++cbt127 0x0000000000000000 = 0x0000000000000000 ++cbt127 0x0000000000000001 = 0x0000000000000001 ++cbt127 0x0000000000000002 = 0x0000000000000002 ++cbt127 0x0000000000000003 = 0x0000000000000003 ++cbt127 0x000000000000000F = 0x000000000000000F ++cbt127 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++cbt127 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFE ++cbt127 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFD ++cbt127 0x000000000000007F = 0x000000000000007F ++cbt127 0x0000000000000080 = 0x0000000000000080 ++cbt127 0x0000000000007FFF = 0x0000000000007FFF ++cbt127 0x0000000000008000 = 0x0000000000008000 ++cbt127 0x000000007FFFFFFF = 0x000000007FFFFFFF ++cbt127 0x0000000080000000 = 0x0000000080000000 ++cbt127 0x8000000000000000 = 0x0000000000000000 ++cbt127 0xFFFFFFFF80000000 = 0x7FFFFFFF80000000 ++cbt127 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFF8000 ++cbt127 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFF80 ++cbt127 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++cbt127 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++cbt127 0xF0DEBC9A78563412 = 0x70DEBC9A78563412 ++=== Running test on cbt128 === ++cbt128 0x0000000000000000 = 0x0000000000000000 ++cbt128 0x0000000000000001 = 0x0000000000000000 ++cbt128 0x0000000000000002 = 0x0000000000000002 ++cbt128 0x0000000000000003 = 0x0000000000000002 ++cbt128 0x000000000000000F = 0x000000000000000E ++cbt128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++cbt128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++cbt128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++cbt128 0x000000000000007F = 0x000000000000007E ++cbt128 0x0000000000000080 = 0x0000000000000080 ++cbt128 0x0000000000007FFF = 0x0000000000007FFE ++cbt128 0x0000000000008000 = 0x0000000000008000 ++cbt128 0x000000007FFFFFFF = 0x000000007FFFFFFE ++cbt128 0x0000000080000000 = 0x0000000080000000 ++cbt128 0x8000000000000000 = 0x8000000000000000 ++cbt128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++cbt128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++cbt128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++cbt128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++cbt128 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++cbt128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on cbt255 === ++cbt255 0x0000000000000000 = 0x0000000000000000 ++cbt255 0x0000000000000001 = 0x0000000000000001 ++cbt255 0x0000000000000002 = 0x0000000000000002 ++cbt255 0x0000000000000003 = 0x0000000000000003 ++cbt255 0x000000000000000F = 0x000000000000000F ++cbt255 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++cbt255 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFE ++cbt255 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFD ++cbt255 0x000000000000007F = 0x000000000000007F ++cbt255 0x0000000000000080 = 0x0000000000000080 ++cbt255 0x0000000000007FFF = 0x0000000000007FFF ++cbt255 0x0000000000008000 = 0x0000000000008000 ++cbt255 0x000000007FFFFFFF = 0x000000007FFFFFFF ++cbt255 0x0000000080000000 = 0x0000000080000000 ++cbt255 0x8000000000000000 = 0x0000000000000000 ++cbt255 0xFFFFFFFF80000000 = 0x7FFFFFFF80000000 ++cbt255 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFF8000 ++cbt255 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFF80 ++cbt255 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++cbt255 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++cbt255 0xF0DEBC9A78563412 = 0x70DEBC9A78563412 ++=== Running test on roll0 === ++roll0 0x0000000000000000 = 0x0000000000000000 ++roll0 0x0000000000000001 = 0x0000000000000001 ++roll0 0x0000000000000002 = 0x0000000000000002 ++roll0 0x0000000000000003 = 0x0000000000000003 ++roll0 0x000000000000000F = 0x000000000000000F ++roll0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++roll0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++roll0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++roll0 0x000000000000007F = 0x000000000000007F ++roll0 0x0000000000000080 = 0x0000000000000080 ++roll0 0x0000000000007FFF = 0x0000000000007FFF ++roll0 0x0000000000008000 = 0x0000000000008000 ++roll0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++roll0 0x0000000080000000 = 0x0000000080000000 ++roll0 0x8000000000000000 = 0x8000000000000000 ++roll0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++roll0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++roll0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++roll0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++roll0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++roll0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on roll1 === ++roll1 0x0000000000000000 = 0x0000000000000000 ++roll1 0x0000000000000001 = 0x0000000000000002 ++roll1 0x0000000000000002 = 0x0000000000000004 ++roll1 0x0000000000000003 = 0x0000000000000006 ++roll1 0x000000000000000F = 0x000000000000001E ++roll1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++roll1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++roll1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++roll1 0x000000000000007F = 0x00000000000000FE ++roll1 0x0000000000000080 = 0x0000000000000100 ++roll1 0x0000000000007FFF = 0x000000000000FFFE ++roll1 0x0000000000008000 = 0x0000000000010000 ++roll1 0x000000007FFFFFFF = 0x00000000FFFFFFFE ++roll1 0x0000000080000000 = 0x0000000100000000 ++roll1 0x8000000000000000 = 0x0000000000000001 ++roll1 0xFFFFFFFF80000000 = 0xFFFFFFFF00000001 ++roll1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0001 ++roll1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF01 ++roll1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++roll1 0x123456789ABCDEF0 = 0x2468ACF13579BDE0 ++roll1 0xF0DEBC9A78563412 = 0xE1BD7934F0AC6825 ++=== Running test on roll2 === ++roll2 0x0000000000000000 = 0x0000000000000000 ++roll2 0x0000000000000001 = 0x0000000000000004 ++roll2 0x0000000000000002 = 0x0000000000000008 ++roll2 0x0000000000000003 = 0x000000000000000C ++roll2 0x000000000000000F = 0x000000000000003C ++roll2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++roll2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFB ++roll2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF7 ++roll2 0x000000000000007F = 0x00000000000001FC ++roll2 0x0000000000000080 = 0x0000000000000200 ++roll2 0x0000000000007FFF = 0x000000000001FFFC ++roll2 0x0000000000008000 = 0x0000000000020000 ++roll2 0x000000007FFFFFFF = 0x00000001FFFFFFFC ++roll2 0x0000000080000000 = 0x0000000200000000 ++roll2 0x8000000000000000 = 0x0000000000000002 ++roll2 0xFFFFFFFF80000000 = 0xFFFFFFFE00000003 ++roll2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0003 ++roll2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE03 ++roll2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++roll2 0x123456789ABCDEF0 = 0x48D159E26AF37BC0 ++roll2 0xF0DEBC9A78563412 = 0xC37AF269E158D04B ++=== Running test on roll3 === ++roll3 0x0000000000000000 = 0x0000000000000000 ++roll3 0x0000000000000001 = 0x0000000000000008 ++roll3 0x0000000000000002 = 0x0000000000000010 ++roll3 0x0000000000000003 = 0x0000000000000018 ++roll3 0x000000000000000F = 0x0000000000000078 ++roll3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++roll3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF7 ++roll3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFEF ++roll3 0x000000000000007F = 0x00000000000003F8 ++roll3 0x0000000000000080 = 0x0000000000000400 ++roll3 0x0000000000007FFF = 0x000000000003FFF8 ++roll3 0x0000000000008000 = 0x0000000000040000 ++roll3 0x000000007FFFFFFF = 0x00000003FFFFFFF8 ++roll3 0x0000000080000000 = 0x0000000400000000 ++roll3 0x8000000000000000 = 0x0000000000000004 ++roll3 0xFFFFFFFF80000000 = 0xFFFFFFFC00000007 ++roll3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0007 ++roll3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC07 ++roll3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++roll3 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F780 ++roll3 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A097 ++=== Running test on roll15 === ++roll15 0x0000000000000000 = 0x0000000000000000 ++roll15 0x0000000000000001 = 0x0000000000008000 ++roll15 0x0000000000000002 = 0x0000000000010000 ++roll15 0x0000000000000003 = 0x0000000000018000 ++roll15 0x000000000000000F = 0x0000000000078000 ++roll15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++roll15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF7FFF ++roll15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFEFFFF ++roll15 0x000000000000007F = 0x00000000003F8000 ++roll15 0x0000000000000080 = 0x0000000000400000 ++roll15 0x0000000000007FFF = 0x000000003FFF8000 ++roll15 0x0000000000008000 = 0x0000000040000000 ++roll15 0x000000007FFFFFFF = 0x00003FFFFFFF8000 ++roll15 0x0000000080000000 = 0x0000400000000000 ++roll15 0x8000000000000000 = 0x0000000000004000 ++roll15 0xFFFFFFFF80000000 = 0xFFFFC00000007FFF ++roll15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFC0007FFF ++roll15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFC07FFF ++roll15 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFBFFF ++roll15 0x123456789ABCDEF0 = 0x2B3C4D5E6F78091A ++roll15 0xF0DEBC9A78563412 = 0x5E4D3C2B1A09786F ++=== Running test on roll127 === ++roll127 0x0000000000000000 = 0x0000000000000000 ++roll127 0x0000000000000001 = 0x8000000000000000 ++roll127 0x0000000000000002 = 0x0000000000000001 ++roll127 0x0000000000000003 = 0x8000000000000001 ++roll127 0x000000000000000F = 0x8000000000000007 ++roll127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++roll127 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFF ++roll127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++roll127 0x000000000000007F = 0x800000000000003F ++roll127 0x0000000000000080 = 0x0000000000000040 ++roll127 0x0000000000007FFF = 0x8000000000003FFF ++roll127 0x0000000000008000 = 0x0000000000004000 ++roll127 0x000000007FFFFFFF = 0x800000003FFFFFFF ++roll127 0x0000000080000000 = 0x0000000040000000 ++roll127 0x8000000000000000 = 0x4000000000000000 ++roll127 0xFFFFFFFF80000000 = 0x7FFFFFFFC0000000 ++roll127 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFC000 ++roll127 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFC0 ++roll127 0x7FFFFFFFFFFFFFFF = 0xBFFFFFFFFFFFFFFF ++roll127 0x123456789ABCDEF0 = 0x091A2B3C4D5E6F78 ++roll127 0xF0DEBC9A78563412 = 0x786F5E4D3C2B1A09 ++=== Running test on roll128 === ++roll128 0x0000000000000000 = 0x0000000000000000 ++roll128 0x0000000000000001 = 0x0000000000000001 ++roll128 0x0000000000000002 = 0x0000000000000002 ++roll128 0x0000000000000003 = 0x0000000000000003 ++roll128 0x000000000000000F = 0x000000000000000F ++roll128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++roll128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++roll128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++roll128 0x000000000000007F = 0x000000000000007F ++roll128 0x0000000000000080 = 0x0000000000000080 ++roll128 0x0000000000007FFF = 0x0000000000007FFF ++roll128 0x0000000000008000 = 0x0000000000008000 ++roll128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++roll128 0x0000000080000000 = 0x0000000080000000 ++roll128 0x8000000000000000 = 0x8000000000000000 ++roll128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++roll128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++roll128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++roll128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++roll128 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++roll128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on roll255 === ++roll255 0x0000000000000000 = 0x0000000000000000 ++roll255 0x0000000000000001 = 0x8000000000000000 ++roll255 0x0000000000000002 = 0x0000000000000001 ++roll255 0x0000000000000003 = 0x8000000000000001 ++roll255 0x000000000000000F = 0x8000000000000007 ++roll255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++roll255 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFF ++roll255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++roll255 0x000000000000007F = 0x800000000000003F ++roll255 0x0000000000000080 = 0x0000000000000040 ++roll255 0x0000000000007FFF = 0x8000000000003FFF ++roll255 0x0000000000008000 = 0x0000000000004000 ++roll255 0x000000007FFFFFFF = 0x800000003FFFFFFF ++roll255 0x0000000080000000 = 0x0000000040000000 ++roll255 0x8000000000000000 = 0x4000000000000000 ++roll255 0xFFFFFFFF80000000 = 0x7FFFFFFFC0000000 ++roll255 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFC000 ++roll255 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFC0 ++roll255 0x7FFFFFFFFFFFFFFF = 0xBFFFFFFFFFFFFFFF ++roll255 0x123456789ABCDEF0 = 0x091A2B3C4D5E6F78 ++roll255 0xF0DEBC9A78563412 = 0x786F5E4D3C2B1A09 ++=== Running test on sllw0 === ++sllw0 0x0000000000000000 = 0x0000000000000000 ++sllw0 0x0000000000000001 = 0x0000000000000001 ++sllw0 0x0000000000000002 = 0x0000000000000002 ++sllw0 0x0000000000000003 = 0x0000000000000003 ++sllw0 0x000000000000000F = 0x000000000000000F ++sllw0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sllw0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sllw0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sllw0 0x000000000000007F = 0x000000000000007F ++sllw0 0x0000000000000080 = 0x0000000000000080 ++sllw0 0x0000000000007FFF = 0x0000000000007FFF ++sllw0 0x0000000000008000 = 0x0000000000008000 ++sllw0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sllw0 0x0000000080000000 = 0xFFFFFFFF80000000 ++sllw0 0x8000000000000000 = 0x0000000000000000 ++sllw0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sllw0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sllw0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sllw0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sllw0 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++sllw0 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on sllw1 === ++sllw1 0x0000000000000000 = 0x0000000000000000 ++sllw1 0x0000000000000001 = 0x0000000000000002 ++sllw1 0x0000000000000002 = 0x0000000000000004 ++sllw1 0x0000000000000003 = 0x0000000000000006 ++sllw1 0x000000000000000F = 0x000000000000001E ++sllw1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++sllw1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++sllw1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFA ++sllw1 0x000000000000007F = 0x00000000000000FE ++sllw1 0x0000000000000080 = 0x0000000000000100 ++sllw1 0x0000000000007FFF = 0x000000000000FFFE ++sllw1 0x0000000000008000 = 0x0000000000010000 ++sllw1 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++sllw1 0x0000000080000000 = 0x0000000000000000 ++sllw1 0x8000000000000000 = 0x0000000000000000 ++sllw1 0xFFFFFFFF80000000 = 0x0000000000000000 ++sllw1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++sllw1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++sllw1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++sllw1 0x123456789ABCDEF0 = 0x000000003579BDE0 ++sllw1 0xF0DEBC9A78563412 = 0xFFFFFFFFF0AC6824 ++=== Running test on sllw2 === ++sllw2 0x0000000000000000 = 0x0000000000000000 ++sllw2 0x0000000000000001 = 0x0000000000000004 ++sllw2 0x0000000000000002 = 0x0000000000000008 ++sllw2 0x0000000000000003 = 0x000000000000000C ++sllw2 0x000000000000000F = 0x000000000000003C ++sllw2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++sllw2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF8 ++sllw2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF4 ++sllw2 0x000000000000007F = 0x00000000000001FC ++sllw2 0x0000000000000080 = 0x0000000000000200 ++sllw2 0x0000000000007FFF = 0x000000000001FFFC ++sllw2 0x0000000000008000 = 0x0000000000020000 ++sllw2 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFC ++sllw2 0x0000000080000000 = 0x0000000000000000 ++sllw2 0x8000000000000000 = 0x0000000000000000 ++sllw2 0xFFFFFFFF80000000 = 0x0000000000000000 ++sllw2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0000 ++sllw2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE00 ++sllw2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++sllw2 0x123456789ABCDEF0 = 0x000000006AF37BC0 ++sllw2 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D048 ++=== Running test on sllw3 === ++sllw3 0x0000000000000000 = 0x0000000000000000 ++sllw3 0x0000000000000001 = 0x0000000000000008 ++sllw3 0x0000000000000002 = 0x0000000000000010 ++sllw3 0x0000000000000003 = 0x0000000000000018 ++sllw3 0x000000000000000F = 0x0000000000000078 ++sllw3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF8 ++sllw3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF0 ++sllw3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE8 ++sllw3 0x000000000000007F = 0x00000000000003F8 ++sllw3 0x0000000000000080 = 0x0000000000000400 ++sllw3 0x0000000000007FFF = 0x000000000003FFF8 ++sllw3 0x0000000000008000 = 0x0000000000040000 ++sllw3 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFF8 ++sllw3 0x0000000080000000 = 0x0000000000000000 ++sllw3 0x8000000000000000 = 0x0000000000000000 ++sllw3 0xFFFFFFFF80000000 = 0x0000000000000000 ++sllw3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0000 ++sllw3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC00 ++sllw3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF8 ++sllw3 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F780 ++sllw3 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A090 ++=== Running test on sllw15 === ++sllw15 0x0000000000000000 = 0x0000000000000000 ++sllw15 0x0000000000000001 = 0x0000000000008000 ++sllw15 0x0000000000000002 = 0x0000000000010000 ++sllw15 0x0000000000000003 = 0x0000000000018000 ++sllw15 0x000000000000000F = 0x0000000000078000 ++sllw15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++sllw15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++sllw15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFE8000 ++sllw15 0x000000000000007F = 0x00000000003F8000 ++sllw15 0x0000000000000080 = 0x0000000000400000 ++sllw15 0x0000000000007FFF = 0x000000003FFF8000 ++sllw15 0x0000000000008000 = 0x0000000040000000 ++sllw15 0x000000007FFFFFFF = 0xFFFFFFFFFFFF8000 ++sllw15 0x0000000080000000 = 0x0000000000000000 ++sllw15 0x8000000000000000 = 0x0000000000000000 ++sllw15 0xFFFFFFFF80000000 = 0x0000000000000000 ++sllw15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFC0000000 ++sllw15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFC00000 ++sllw15 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++sllw15 0x123456789ABCDEF0 = 0x000000006F780000 ++sllw15 0xF0DEBC9A78563412 = 0x000000001A090000 ++=== Running test on sllw127 === ++sllw127 0x0000000000000000 = 0x0000000000000000 ++sllw127 0x0000000000000001 = 0xFFFFFFFF80000000 ++sllw127 0x0000000000000002 = 0x0000000000000000 ++sllw127 0x0000000000000003 = 0xFFFFFFFF80000000 ++sllw127 0x000000000000000F = 0xFFFFFFFF80000000 ++sllw127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw127 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sllw127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++sllw127 0x000000000000007F = 0xFFFFFFFF80000000 ++sllw127 0x0000000000000080 = 0x0000000000000000 ++sllw127 0x0000000000007FFF = 0xFFFFFFFF80000000 ++sllw127 0x0000000000008000 = 0x0000000000000000 ++sllw127 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++sllw127 0x0000000080000000 = 0x0000000000000000 ++sllw127 0x8000000000000000 = 0x0000000000000000 ++sllw127 0xFFFFFFFF80000000 = 0x0000000000000000 ++sllw127 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sllw127 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sllw127 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw127 0x123456789ABCDEF0 = 0x0000000000000000 ++sllw127 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on sllw128 === ++sllw128 0x0000000000000000 = 0x0000000000000000 ++sllw128 0x0000000000000001 = 0x0000000000000001 ++sllw128 0x0000000000000002 = 0x0000000000000002 ++sllw128 0x0000000000000003 = 0x0000000000000003 ++sllw128 0x000000000000000F = 0x000000000000000F ++sllw128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sllw128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sllw128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sllw128 0x000000000000007F = 0x000000000000007F ++sllw128 0x0000000000000080 = 0x0000000000000080 ++sllw128 0x0000000000007FFF = 0x0000000000007FFF ++sllw128 0x0000000000008000 = 0x0000000000008000 ++sllw128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sllw128 0x0000000080000000 = 0xFFFFFFFF80000000 ++sllw128 0x8000000000000000 = 0x0000000000000000 ++sllw128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sllw128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sllw128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sllw128 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sllw128 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++sllw128 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on sllw255 === ++sllw255 0x0000000000000000 = 0x0000000000000000 ++sllw255 0x0000000000000001 = 0xFFFFFFFF80000000 ++sllw255 0x0000000000000002 = 0x0000000000000000 ++sllw255 0x0000000000000003 = 0xFFFFFFFF80000000 ++sllw255 0x000000000000000F = 0xFFFFFFFF80000000 ++sllw255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw255 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sllw255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++sllw255 0x000000000000007F = 0xFFFFFFFF80000000 ++sllw255 0x0000000000000080 = 0x0000000000000000 ++sllw255 0x0000000000007FFF = 0xFFFFFFFF80000000 ++sllw255 0x0000000000008000 = 0x0000000000000000 ++sllw255 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++sllw255 0x0000000080000000 = 0x0000000000000000 ++sllw255 0x8000000000000000 = 0x0000000000000000 ++sllw255 0xFFFFFFFF80000000 = 0x0000000000000000 ++sllw255 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sllw255 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sllw255 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sllw255 0x123456789ABCDEF0 = 0x0000000000000000 ++sllw255 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on srlw0 === ++srlw0 0x0000000000000000 = 0x0000000000000000 ++srlw0 0x0000000000000001 = 0x0000000000000001 ++srlw0 0x0000000000000002 = 0x0000000000000002 ++srlw0 0x0000000000000003 = 0x0000000000000003 ++srlw0 0x000000000000000F = 0x000000000000000F ++srlw0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++srlw0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++srlw0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++srlw0 0x000000000000007F = 0x000000000000007F ++srlw0 0x0000000000000080 = 0x0000000000000080 ++srlw0 0x0000000000007FFF = 0x0000000000007FFF ++srlw0 0x0000000000008000 = 0x0000000000008000 ++srlw0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++srlw0 0x0000000080000000 = 0xFFFFFFFF80000000 ++srlw0 0x8000000000000000 = 0x0000000000000000 ++srlw0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++srlw0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++srlw0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++srlw0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++srlw0 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++srlw0 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on srlw1 === ++srlw1 0x0000000000000000 = 0x0000000000000000 ++srlw1 0x0000000000000001 = 0x0000000000000000 ++srlw1 0x0000000000000002 = 0x0000000000000001 ++srlw1 0x0000000000000003 = 0x0000000000000001 ++srlw1 0x000000000000000F = 0x0000000000000007 ++srlw1 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++srlw1 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++srlw1 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFE ++srlw1 0x000000000000007F = 0x000000000000003F ++srlw1 0x0000000000000080 = 0x0000000000000040 ++srlw1 0x0000000000007FFF = 0x0000000000003FFF ++srlw1 0x0000000000008000 = 0x0000000000004000 ++srlw1 0x000000007FFFFFFF = 0x000000003FFFFFFF ++srlw1 0x0000000080000000 = 0x0000000040000000 ++srlw1 0x8000000000000000 = 0x0000000000000000 ++srlw1 0xFFFFFFFF80000000 = 0x0000000040000000 ++srlw1 0xFFFFFFFFFFFF8000 = 0x000000007FFFC000 ++srlw1 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFC0 ++srlw1 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++srlw1 0x123456789ABCDEF0 = 0x000000004D5E6F78 ++srlw1 0xF0DEBC9A78563412 = 0x000000003C2B1A09 ++=== Running test on srlw2 === ++srlw2 0x0000000000000000 = 0x0000000000000000 ++srlw2 0x0000000000000001 = 0x0000000000000000 ++srlw2 0x0000000000000002 = 0x0000000000000000 ++srlw2 0x0000000000000003 = 0x0000000000000000 ++srlw2 0x000000000000000F = 0x0000000000000003 ++srlw2 0xFFFFFFFFFFFFFFFF = 0x000000003FFFFFFF ++srlw2 0xFFFFFFFFFFFFFFFE = 0x000000003FFFFFFF ++srlw2 0xFFFFFFFFFFFFFFFD = 0x000000003FFFFFFF ++srlw2 0x000000000000007F = 0x000000000000001F ++srlw2 0x0000000000000080 = 0x0000000000000020 ++srlw2 0x0000000000007FFF = 0x0000000000001FFF ++srlw2 0x0000000000008000 = 0x0000000000002000 ++srlw2 0x000000007FFFFFFF = 0x000000001FFFFFFF ++srlw2 0x0000000080000000 = 0x0000000020000000 ++srlw2 0x8000000000000000 = 0x0000000000000000 ++srlw2 0xFFFFFFFF80000000 = 0x0000000020000000 ++srlw2 0xFFFFFFFFFFFF8000 = 0x000000003FFFE000 ++srlw2 0xFFFFFFFFFFFFFF80 = 0x000000003FFFFFE0 ++srlw2 0x7FFFFFFFFFFFFFFF = 0x000000003FFFFFFF ++srlw2 0x123456789ABCDEF0 = 0x0000000026AF37BC ++srlw2 0xF0DEBC9A78563412 = 0x000000001E158D04 ++=== Running test on srlw3 === ++srlw3 0x0000000000000000 = 0x0000000000000000 ++srlw3 0x0000000000000001 = 0x0000000000000000 ++srlw3 0x0000000000000002 = 0x0000000000000000 ++srlw3 0x0000000000000003 = 0x0000000000000000 ++srlw3 0x000000000000000F = 0x0000000000000001 ++srlw3 0xFFFFFFFFFFFFFFFF = 0x000000001FFFFFFF ++srlw3 0xFFFFFFFFFFFFFFFE = 0x000000001FFFFFFF ++srlw3 0xFFFFFFFFFFFFFFFD = 0x000000001FFFFFFF ++srlw3 0x000000000000007F = 0x000000000000000F ++srlw3 0x0000000000000080 = 0x0000000000000010 ++srlw3 0x0000000000007FFF = 0x0000000000000FFF ++srlw3 0x0000000000008000 = 0x0000000000001000 ++srlw3 0x000000007FFFFFFF = 0x000000000FFFFFFF ++srlw3 0x0000000080000000 = 0x0000000010000000 ++srlw3 0x8000000000000000 = 0x0000000000000000 ++srlw3 0xFFFFFFFF80000000 = 0x0000000010000000 ++srlw3 0xFFFFFFFFFFFF8000 = 0x000000001FFFF000 ++srlw3 0xFFFFFFFFFFFFFF80 = 0x000000001FFFFFF0 ++srlw3 0x7FFFFFFFFFFFFFFF = 0x000000001FFFFFFF ++srlw3 0x123456789ABCDEF0 = 0x0000000013579BDE ++srlw3 0xF0DEBC9A78563412 = 0x000000000F0AC682 ++=== Running test on srlw15 === ++srlw15 0x0000000000000000 = 0x0000000000000000 ++srlw15 0x0000000000000001 = 0x0000000000000000 ++srlw15 0x0000000000000002 = 0x0000000000000000 ++srlw15 0x0000000000000003 = 0x0000000000000000 ++srlw15 0x000000000000000F = 0x0000000000000000 ++srlw15 0xFFFFFFFFFFFFFFFF = 0x000000000001FFFF ++srlw15 0xFFFFFFFFFFFFFFFE = 0x000000000001FFFF ++srlw15 0xFFFFFFFFFFFFFFFD = 0x000000000001FFFF ++srlw15 0x000000000000007F = 0x0000000000000000 ++srlw15 0x0000000000000080 = 0x0000000000000000 ++srlw15 0x0000000000007FFF = 0x0000000000000000 ++srlw15 0x0000000000008000 = 0x0000000000000001 ++srlw15 0x000000007FFFFFFF = 0x000000000000FFFF ++srlw15 0x0000000080000000 = 0x0000000000010000 ++srlw15 0x8000000000000000 = 0x0000000000000000 ++srlw15 0xFFFFFFFF80000000 = 0x0000000000010000 ++srlw15 0xFFFFFFFFFFFF8000 = 0x000000000001FFFF ++srlw15 0xFFFFFFFFFFFFFF80 = 0x000000000001FFFF ++srlw15 0x7FFFFFFFFFFFFFFF = 0x000000000001FFFF ++srlw15 0x123456789ABCDEF0 = 0x0000000000013579 ++srlw15 0xF0DEBC9A78563412 = 0x000000000000F0AC ++=== Running test on srlw127 === ++srlw127 0x0000000000000000 = 0x0000000000000000 ++srlw127 0x0000000000000001 = 0x0000000000000000 ++srlw127 0x0000000000000002 = 0x0000000000000000 ++srlw127 0x0000000000000003 = 0x0000000000000000 ++srlw127 0x000000000000000F = 0x0000000000000000 ++srlw127 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw127 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++srlw127 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++srlw127 0x000000000000007F = 0x0000000000000000 ++srlw127 0x0000000000000080 = 0x0000000000000000 ++srlw127 0x0000000000007FFF = 0x0000000000000000 ++srlw127 0x0000000000008000 = 0x0000000000000000 ++srlw127 0x000000007FFFFFFF = 0x0000000000000000 ++srlw127 0x0000000080000000 = 0x0000000000000001 ++srlw127 0x8000000000000000 = 0x0000000000000000 ++srlw127 0xFFFFFFFF80000000 = 0x0000000000000001 ++srlw127 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++srlw127 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++srlw127 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw127 0x123456789ABCDEF0 = 0x0000000000000001 ++srlw127 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on srlw128 === ++srlw128 0x0000000000000000 = 0x0000000000000000 ++srlw128 0x0000000000000001 = 0x0000000000000001 ++srlw128 0x0000000000000002 = 0x0000000000000002 ++srlw128 0x0000000000000003 = 0x0000000000000003 ++srlw128 0x000000000000000F = 0x000000000000000F ++srlw128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++srlw128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++srlw128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++srlw128 0x000000000000007F = 0x000000000000007F ++srlw128 0x0000000000000080 = 0x0000000000000080 ++srlw128 0x0000000000007FFF = 0x0000000000007FFF ++srlw128 0x0000000000008000 = 0x0000000000008000 ++srlw128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++srlw128 0x0000000080000000 = 0xFFFFFFFF80000000 ++srlw128 0x8000000000000000 = 0x0000000000000000 ++srlw128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++srlw128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++srlw128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++srlw128 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++srlw128 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++srlw128 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on srlw255 === ++srlw255 0x0000000000000000 = 0x0000000000000000 ++srlw255 0x0000000000000001 = 0x0000000000000000 ++srlw255 0x0000000000000002 = 0x0000000000000000 ++srlw255 0x0000000000000003 = 0x0000000000000000 ++srlw255 0x000000000000000F = 0x0000000000000000 ++srlw255 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw255 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++srlw255 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++srlw255 0x000000000000007F = 0x0000000000000000 ++srlw255 0x0000000000000080 = 0x0000000000000000 ++srlw255 0x0000000000007FFF = 0x0000000000000000 ++srlw255 0x0000000000008000 = 0x0000000000000000 ++srlw255 0x000000007FFFFFFF = 0x0000000000000000 ++srlw255 0x0000000080000000 = 0x0000000000000001 ++srlw255 0x8000000000000000 = 0x0000000000000000 ++srlw255 0xFFFFFFFF80000000 = 0x0000000000000001 ++srlw255 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++srlw255 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++srlw255 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srlw255 0x123456789ABCDEF0 = 0x0000000000000001 ++srlw255 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on sraw0 === ++sraw0 0x0000000000000000 = 0x0000000000000000 ++sraw0 0x0000000000000001 = 0x0000000000000001 ++sraw0 0x0000000000000002 = 0x0000000000000002 ++sraw0 0x0000000000000003 = 0x0000000000000003 ++sraw0 0x000000000000000F = 0x000000000000000F ++sraw0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sraw0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sraw0 0x000000000000007F = 0x000000000000007F ++sraw0 0x0000000000000080 = 0x0000000000000080 ++sraw0 0x0000000000007FFF = 0x0000000000007FFF ++sraw0 0x0000000000008000 = 0x0000000000008000 ++sraw0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sraw0 0x0000000080000000 = 0xFFFFFFFF80000000 ++sraw0 0x8000000000000000 = 0x0000000000000000 ++sraw0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sraw0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sraw0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sraw0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw0 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++sraw0 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on sraw1 === ++sraw1 0x0000000000000000 = 0x0000000000000000 ++sraw1 0x0000000000000001 = 0x0000000000000000 ++sraw1 0x0000000000000002 = 0x0000000000000001 ++sraw1 0x0000000000000003 = 0x0000000000000001 ++sraw1 0x000000000000000F = 0x0000000000000007 ++sraw1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sraw1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++sraw1 0x000000000000007F = 0x000000000000003F ++sraw1 0x0000000000000080 = 0x0000000000000040 ++sraw1 0x0000000000007FFF = 0x0000000000003FFF ++sraw1 0x0000000000008000 = 0x0000000000004000 ++sraw1 0x000000007FFFFFFF = 0x000000003FFFFFFF ++sraw1 0x0000000080000000 = 0xFFFFFFFFC0000000 ++sraw1 0x8000000000000000 = 0x0000000000000000 ++sraw1 0xFFFFFFFF80000000 = 0xFFFFFFFFC0000000 ++sraw1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFC000 ++sraw1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFC0 ++sraw1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw1 0x123456789ABCDEF0 = 0xFFFFFFFFCD5E6F78 ++sraw1 0xF0DEBC9A78563412 = 0x000000003C2B1A09 ++=== Running test on sraw2 === ++sraw2 0x0000000000000000 = 0x0000000000000000 ++sraw2 0x0000000000000001 = 0x0000000000000000 ++sraw2 0x0000000000000002 = 0x0000000000000000 ++sraw2 0x0000000000000003 = 0x0000000000000000 ++sraw2 0x000000000000000F = 0x0000000000000003 ++sraw2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sraw2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sraw2 0x000000000000007F = 0x000000000000001F ++sraw2 0x0000000000000080 = 0x0000000000000020 ++sraw2 0x0000000000007FFF = 0x0000000000001FFF ++sraw2 0x0000000000008000 = 0x0000000000002000 ++sraw2 0x000000007FFFFFFF = 0x000000001FFFFFFF ++sraw2 0x0000000080000000 = 0xFFFFFFFFE0000000 ++sraw2 0x8000000000000000 = 0x0000000000000000 ++sraw2 0xFFFFFFFF80000000 = 0xFFFFFFFFE0000000 ++sraw2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFE000 ++sraw2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFE0 ++sraw2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw2 0x123456789ABCDEF0 = 0xFFFFFFFFE6AF37BC ++sraw2 0xF0DEBC9A78563412 = 0x000000001E158D04 ++=== Running test on sraw3 === ++sraw3 0x0000000000000000 = 0x0000000000000000 ++sraw3 0x0000000000000001 = 0x0000000000000000 ++sraw3 0x0000000000000002 = 0x0000000000000000 ++sraw3 0x0000000000000003 = 0x0000000000000000 ++sraw3 0x000000000000000F = 0x0000000000000001 ++sraw3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sraw3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sraw3 0x000000000000007F = 0x000000000000000F ++sraw3 0x0000000000000080 = 0x0000000000000010 ++sraw3 0x0000000000007FFF = 0x0000000000000FFF ++sraw3 0x0000000000008000 = 0x0000000000001000 ++sraw3 0x000000007FFFFFFF = 0x000000000FFFFFFF ++sraw3 0x0000000080000000 = 0xFFFFFFFFF0000000 ++sraw3 0x8000000000000000 = 0x0000000000000000 ++sraw3 0xFFFFFFFF80000000 = 0xFFFFFFFFF0000000 ++sraw3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFF000 ++sraw3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFF0 ++sraw3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw3 0x123456789ABCDEF0 = 0xFFFFFFFFF3579BDE ++sraw3 0xF0DEBC9A78563412 = 0x000000000F0AC682 ++=== Running test on sraw15 === ++sraw15 0x0000000000000000 = 0x0000000000000000 ++sraw15 0x0000000000000001 = 0x0000000000000000 ++sraw15 0x0000000000000002 = 0x0000000000000000 ++sraw15 0x0000000000000003 = 0x0000000000000000 ++sraw15 0x000000000000000F = 0x0000000000000000 ++sraw15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sraw15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sraw15 0x000000000000007F = 0x0000000000000000 ++sraw15 0x0000000000000080 = 0x0000000000000000 ++sraw15 0x0000000000007FFF = 0x0000000000000000 ++sraw15 0x0000000000008000 = 0x0000000000000001 ++sraw15 0x000000007FFFFFFF = 0x000000000000FFFF ++sraw15 0x0000000080000000 = 0xFFFFFFFFFFFF0000 ++sraw15 0x8000000000000000 = 0x0000000000000000 ++sraw15 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF0000 ++sraw15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sraw15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sraw15 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw15 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF3579 ++sraw15 0xF0DEBC9A78563412 = 0x000000000000F0AC ++=== Running test on sraw127 === ++sraw127 0x0000000000000000 = 0x0000000000000000 ++sraw127 0x0000000000000001 = 0x0000000000000000 ++sraw127 0x0000000000000002 = 0x0000000000000000 ++sraw127 0x0000000000000003 = 0x0000000000000000 ++sraw127 0x000000000000000F = 0x0000000000000000 ++sraw127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sraw127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sraw127 0x000000000000007F = 0x0000000000000000 ++sraw127 0x0000000000000080 = 0x0000000000000000 ++sraw127 0x0000000000007FFF = 0x0000000000000000 ++sraw127 0x0000000000008000 = 0x0000000000000000 ++sraw127 0x000000007FFFFFFF = 0x0000000000000000 ++sraw127 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++sraw127 0x8000000000000000 = 0x0000000000000000 ++sraw127 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++sraw127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sraw127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sraw127 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw127 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sraw127 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on sraw128 === ++sraw128 0x0000000000000000 = 0x0000000000000000 ++sraw128 0x0000000000000001 = 0x0000000000000001 ++sraw128 0x0000000000000002 = 0x0000000000000002 ++sraw128 0x0000000000000003 = 0x0000000000000003 ++sraw128 0x000000000000000F = 0x000000000000000F ++sraw128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sraw128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sraw128 0x000000000000007F = 0x000000000000007F ++sraw128 0x0000000000000080 = 0x0000000000000080 ++sraw128 0x0000000000007FFF = 0x0000000000007FFF ++sraw128 0x0000000000008000 = 0x0000000000008000 ++sraw128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sraw128 0x0000000080000000 = 0xFFFFFFFF80000000 ++sraw128 0x8000000000000000 = 0x0000000000000000 ++sraw128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sraw128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sraw128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sraw128 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw128 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++sraw128 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on sraw255 === ++sraw255 0x0000000000000000 = 0x0000000000000000 ++sraw255 0x0000000000000001 = 0x0000000000000000 ++sraw255 0x0000000000000002 = 0x0000000000000000 ++sraw255 0x0000000000000003 = 0x0000000000000000 ++sraw255 0x000000000000000F = 0x0000000000000000 ++sraw255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sraw255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sraw255 0x000000000000007F = 0x0000000000000000 ++sraw255 0x0000000000000080 = 0x0000000000000000 ++sraw255 0x0000000000007FFF = 0x0000000000000000 ++sraw255 0x0000000000008000 = 0x0000000000000000 ++sraw255 0x000000007FFFFFFF = 0x0000000000000000 ++sraw255 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++sraw255 0x8000000000000000 = 0x0000000000000000 ++sraw255 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++sraw255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sraw255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sraw255 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sraw255 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sraw255 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on rolw0 === ++rolw0 0x0000000000000000 = 0x0000000000000000 ++rolw0 0x0000000000000001 = 0x0000000000000001 ++rolw0 0x0000000000000002 = 0x0000000000000002 ++rolw0 0x0000000000000003 = 0x0000000000000003 ++rolw0 0x000000000000000F = 0x000000000000000F ++rolw0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++rolw0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++rolw0 0x000000000000007F = 0x000000000000007F ++rolw0 0x0000000000000080 = 0x0000000000000080 ++rolw0 0x0000000000007FFF = 0x0000000000007FFF ++rolw0 0x0000000000008000 = 0x0000000000008000 ++rolw0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++rolw0 0x0000000080000000 = 0xFFFFFFFF80000000 ++rolw0 0x8000000000000000 = 0x0000000000000000 ++rolw0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++rolw0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++rolw0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++rolw0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw0 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++rolw0 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on rolw1 === ++rolw1 0x0000000000000000 = 0x0000000000000000 ++rolw1 0x0000000000000001 = 0x0000000000000002 ++rolw1 0x0000000000000002 = 0x0000000000000004 ++rolw1 0x0000000000000003 = 0x0000000000000006 ++rolw1 0x000000000000000F = 0x000000000000001E ++rolw1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++rolw1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++rolw1 0x000000000000007F = 0x00000000000000FE ++rolw1 0x0000000000000080 = 0x0000000000000100 ++rolw1 0x0000000000007FFF = 0x000000000000FFFE ++rolw1 0x0000000000008000 = 0x0000000000010000 ++rolw1 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++rolw1 0x0000000080000000 = 0x0000000000000001 ++rolw1 0x8000000000000000 = 0x0000000000000000 ++rolw1 0xFFFFFFFF80000000 = 0x0000000000000001 ++rolw1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0001 ++rolw1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF01 ++rolw1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw1 0x123456789ABCDEF0 = 0x000000003579BDE1 ++rolw1 0xF0DEBC9A78563412 = 0xFFFFFFFFF0AC6824 ++=== Running test on rolw2 === ++rolw2 0x0000000000000000 = 0x0000000000000000 ++rolw2 0x0000000000000001 = 0x0000000000000004 ++rolw2 0x0000000000000002 = 0x0000000000000008 ++rolw2 0x0000000000000003 = 0x000000000000000C ++rolw2 0x000000000000000F = 0x000000000000003C ++rolw2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFB ++rolw2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF7 ++rolw2 0x000000000000007F = 0x00000000000001FC ++rolw2 0x0000000000000080 = 0x0000000000000200 ++rolw2 0x0000000000007FFF = 0x000000000001FFFC ++rolw2 0x0000000000008000 = 0x0000000000020000 ++rolw2 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFD ++rolw2 0x0000000080000000 = 0x0000000000000002 ++rolw2 0x8000000000000000 = 0x0000000000000000 ++rolw2 0xFFFFFFFF80000000 = 0x0000000000000002 ++rolw2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0003 ++rolw2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE03 ++rolw2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw2 0x123456789ABCDEF0 = 0x000000006AF37BC2 ++rolw2 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D049 ++=== Running test on rolw3 === ++rolw3 0x0000000000000000 = 0x0000000000000000 ++rolw3 0x0000000000000001 = 0x0000000000000008 ++rolw3 0x0000000000000002 = 0x0000000000000010 ++rolw3 0x0000000000000003 = 0x0000000000000018 ++rolw3 0x000000000000000F = 0x0000000000000078 ++rolw3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF7 ++rolw3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFEF ++rolw3 0x000000000000007F = 0x00000000000003F8 ++rolw3 0x0000000000000080 = 0x0000000000000400 ++rolw3 0x0000000000007FFF = 0x000000000003FFF8 ++rolw3 0x0000000000008000 = 0x0000000000040000 ++rolw3 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFB ++rolw3 0x0000000080000000 = 0x0000000000000004 ++rolw3 0x8000000000000000 = 0x0000000000000000 ++rolw3 0xFFFFFFFF80000000 = 0x0000000000000004 ++rolw3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0007 ++rolw3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC07 ++rolw3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw3 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F784 ++rolw3 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A093 ++=== Running test on rolw15 === ++rolw15 0x0000000000000000 = 0x0000000000000000 ++rolw15 0x0000000000000001 = 0x0000000000008000 ++rolw15 0x0000000000000002 = 0x0000000000010000 ++rolw15 0x0000000000000003 = 0x0000000000018000 ++rolw15 0x000000000000000F = 0x0000000000078000 ++rolw15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF7FFF ++rolw15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFEFFFF ++rolw15 0x000000000000007F = 0x00000000003F8000 ++rolw15 0x0000000000000080 = 0x0000000000400000 ++rolw15 0x0000000000007FFF = 0x000000003FFF8000 ++rolw15 0x0000000000008000 = 0x0000000040000000 ++rolw15 0x000000007FFFFFFF = 0xFFFFFFFFFFFFBFFF ++rolw15 0x0000000080000000 = 0x0000000000004000 ++rolw15 0x8000000000000000 = 0x0000000000000000 ++rolw15 0xFFFFFFFF80000000 = 0x0000000000004000 ++rolw15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFC0007FFF ++rolw15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFC07FFF ++rolw15 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw15 0x123456789ABCDEF0 = 0x000000006F784D5E ++rolw15 0xF0DEBC9A78563412 = 0x000000001A093C2B ++=== Running test on rolw127 === ++rolw127 0x0000000000000000 = 0x0000000000000000 ++rolw127 0x0000000000000001 = 0xFFFFFFFF80000000 ++rolw127 0x0000000000000002 = 0x0000000000000001 ++rolw127 0x0000000000000003 = 0xFFFFFFFF80000001 ++rolw127 0x000000000000000F = 0xFFFFFFFF80000007 ++rolw127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw127 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++rolw127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++rolw127 0x000000000000007F = 0xFFFFFFFF8000003F ++rolw127 0x0000000000000080 = 0x0000000000000040 ++rolw127 0x0000000000007FFF = 0xFFFFFFFF80003FFF ++rolw127 0x0000000000008000 = 0x0000000000004000 ++rolw127 0x000000007FFFFFFF = 0xFFFFFFFFBFFFFFFF ++rolw127 0x0000000080000000 = 0x0000000040000000 ++rolw127 0x8000000000000000 = 0x0000000000000000 ++rolw127 0xFFFFFFFF80000000 = 0x0000000040000000 ++rolw127 0xFFFFFFFFFFFF8000 = 0x000000007FFFC000 ++rolw127 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFC0 ++rolw127 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw127 0x123456789ABCDEF0 = 0x000000004D5E6F78 ++rolw127 0xF0DEBC9A78563412 = 0x000000003C2B1A09 ++=== Running test on rolw128 === ++rolw128 0x0000000000000000 = 0x0000000000000000 ++rolw128 0x0000000000000001 = 0x0000000000000001 ++rolw128 0x0000000000000002 = 0x0000000000000002 ++rolw128 0x0000000000000003 = 0x0000000000000003 ++rolw128 0x000000000000000F = 0x000000000000000F ++rolw128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++rolw128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++rolw128 0x000000000000007F = 0x000000000000007F ++rolw128 0x0000000000000080 = 0x0000000000000080 ++rolw128 0x0000000000007FFF = 0x0000000000007FFF ++rolw128 0x0000000000008000 = 0x0000000000008000 ++rolw128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++rolw128 0x0000000080000000 = 0xFFFFFFFF80000000 ++rolw128 0x8000000000000000 = 0x0000000000000000 ++rolw128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++rolw128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++rolw128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++rolw128 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw128 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++rolw128 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on rolw255 === ++rolw255 0x0000000000000000 = 0x0000000000000000 ++rolw255 0x0000000000000001 = 0xFFFFFFFF80000000 ++rolw255 0x0000000000000002 = 0x0000000000000001 ++rolw255 0x0000000000000003 = 0xFFFFFFFF80000001 ++rolw255 0x000000000000000F = 0xFFFFFFFF80000007 ++rolw255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw255 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++rolw255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++rolw255 0x000000000000007F = 0xFFFFFFFF8000003F ++rolw255 0x0000000000000080 = 0x0000000000000040 ++rolw255 0x0000000000007FFF = 0xFFFFFFFF80003FFF ++rolw255 0x0000000000008000 = 0x0000000000004000 ++rolw255 0x000000007FFFFFFF = 0xFFFFFFFFBFFFFFFF ++rolw255 0x0000000080000000 = 0x0000000040000000 ++rolw255 0x8000000000000000 = 0x0000000000000000 ++rolw255 0xFFFFFFFF80000000 = 0x0000000040000000 ++rolw255 0xFFFFFFFFFFFF8000 = 0x000000007FFFC000 ++rolw255 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFC0 ++rolw255 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++rolw255 0x123456789ABCDEF0 = 0x000000004D5E6F78 ++rolw255 0xF0DEBC9A78563412 = 0x000000003C2B1A09 +diff --git a/none/tests/sw64/8a-int.vgtest b/none/tests/sw64/8a-int.vgtest +new file mode 100644 +index 000000000..a8ba85fb4 +--- /dev/null ++++ b/none/tests/sw64/8a-int.vgtest +@@ -0,0 +1,3 @@ ++prereq: grep 'cpu.*family.*8' /proc/cpuinfo > /dev/null ++prog: 8a-int ++vgopts: -q +diff --git a/none/tests/sw64/8a-lock.c b/none/tests/sw64/8a-lock.c +new file mode 100644 +index 000000000..206288d07 +--- /dev/null ++++ b/none/tests/sw64/8a-lock.c +@@ -0,0 +1,251 @@ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#if !defined(__sw_64_sw8a__) ++int main(void) { return -1; } ++#else ++ ++__attribute__((noinline)) static int test_cas_simple(int *val, int *start) ++{ ++ while (__atomic_load_n(start, __ATOMIC_SEQ_CST) == 0); ++ for (int i = 0; i < 1000000; i++) { ++ __asm__ __volatile__ ( ++ "0: \n" ++ " ldw $1, 0(%0) \n" ++ " addw $1, 1, $2 \n" ++ " casw $1, %0, $2 \n" ++ " cmpeq $1, $2, $2 \n" ++ " beq $2, 0b \n" ++ : ++ : "r"(val) ++ : "$1", "$2", "memory" ++ ); ++ } ++ return 0; ++} ++ ++__attribute__((noinline)) static int test_cas_if_odd(int *val, int *start) ++{ ++ while (__atomic_load_n(start, __ATOMIC_SEQ_CST) == 0); ++ for (int i = 0; i < 1000000; i++) { ++ __asm__ __volatile__ ( ++ "0: \n" ++ " ldw $1, 0(%0) \n" ++ " blbc $1, 0b \n" ++ " addw $1, 1, $2 \n" ++ " casw $1, %0, $2 \n" ++ " cmpeq $1, $2, $2 \n" ++ " beq $2, 0b \n" ++ : ++ : "r"(val) ++ : "$1", "$2", "memory" ++ ); ++ } ++ return 0; ++} ++ ++__attribute__((noinline)) static int test_cas_if_even(int *val, int *start) ++{ ++ while (__atomic_load_n(start, __ATOMIC_SEQ_CST) == 0); ++ for (int i = 0; i < 1000000; i++) { ++ __asm__ __volatile__ ( ++ "0: \n" ++ " ldw $1, 0(%0) \n" ++ " blbs $1, 0b \n" ++ " addw $1, 1, $2 \n" ++ " casw $1, %0, $2 \n" ++ " cmpeq $1, $2, $2 \n" ++ " beq $2, 0b \n" ++ : ++ : "r"(val) ++ : "$1", "$2", "memory" ++ ); ++ } ++ return 0; ++} ++ ++__attribute__((noinline)) static int test_llsc_simple(int *val, int *start) ++{ ++ while (__atomic_load_n(start, __ATOMIC_SEQ_CST) == 0); ++ for (int i = 0; i < 1000000; i++) { ++ __asm__ __volatile__ ( ++ "0: \n" ++ " lldw $1, 0(%0) \n" ++ " addw $1, 1, $2 \n" ++ " lstw $2, 0(%0) \n" ++ " beq $2, 0b \n" ++ : ++ : "r"(val) ++ : "$1", "$2", "memory" ++ ); ++ } ++ return 0; ++} ++ ++__attribute__((noinline)) static int test_llsc_if_odd(int *val, int *start) ++{ ++ while (__atomic_load_n(start, __ATOMIC_SEQ_CST) == 0); ++ for (int i = 0; i < 1000000; i++) { ++ __asm__ __volatile__ ( ++ "0: \n" ++ " lldw $1, 0(%0) \n" ++ " blbc $1, 0b \n" ++ " addw $1, 1, $2 \n" ++ " lstw $2, 0(%0) \n" ++ " beq $2, 0b \n" ++ : ++ : "r"(val) ++ : "$1", "$2", "memory" ++ ); ++ } ++ return 0; ++} ++ ++__attribute__((noinline)) static int test_llsc_if_even(int *val, int *start) ++{ ++ while (__atomic_load_n(start, __ATOMIC_SEQ_CST) == 0); ++ for (int i = 0; i < 1000000; i++) { ++ __asm__ __volatile__ ( ++ "0: \n" ++ " lldw $1, 0(%0) \n" ++ " blbs $1, 0b \n" ++ " addw $1, 1, $2 \n" ++ " lstw $2, 0(%0) \n" ++ " beq $2, 0b \n" ++ : ++ : "r"(val) ++ : "$1", "$2", "memory" ++ ); ++ } ++ return 0; ++} ++ ++static void do_test1(int *val, int *start) ++{ ++ puts("===> Test CAS Simple <==="); ++ *val = 0; ++ *start = 0; ++ for (int i = 0; i < 4; i++) { ++ pid_t pid = fork(); ++ if (pid == 0) { ++ test_cas_simple(val, start); ++ exit(0); ++ } else if (pid > 0) { ++ puts(" -- process created"); ++ } else { ++ abort(); ++ } ++ } ++ ++ __atomic_store_n(start, 1, __ATOMIC_SEQ_CST); ++ while (wait(NULL) > 0); ++ ++ printf(" -- value: %d\n", *val); ++} ++ ++static void do_test2(int *val, int *start) ++{ ++ puts("===> Test CAS Conditional <==="); ++ *val = 0; ++ *start = 0; ++ for (int i = 0; i < 4; i++) { ++ pid_t pid = fork(); ++ if (pid == 0) { ++ if (i & 1) ++ test_cas_if_odd(val, start); ++ else ++ test_cas_if_even(val, start); ++ exit(0); ++ } else if (pid > 0) { ++ puts(" -- process created"); ++ } else { ++ abort(); ++ } ++ } ++ ++ __atomic_store_n(start, 1, __ATOMIC_SEQ_CST); ++ while (wait(NULL) > 0); ++ ++ printf(" -- value: %d\n", *val); ++} ++ ++static void do_test3(int *val, int *start) ++{ ++ puts("===> Test 8A Style LLSC Simple <==="); ++ *val = 0; ++ *start = 0; ++ for (int i = 0; i < 4; i++) { ++ pid_t pid = fork(); ++ if (pid == 0) { ++ test_llsc_simple(val, start); ++ exit(0); ++ } else if (pid > 0) { ++ puts(" -- process created"); ++ } else { ++ abort(); ++ } ++ } ++ ++ __atomic_store_n(start, 1, __ATOMIC_SEQ_CST); ++ while (wait(NULL) > 0); ++ ++ printf(" -- value: %d\n", *val); ++} ++ ++static void do_test4(int *val, int *start) ++{ ++ puts("===> Test 8A Style LLSC Conditional <==="); ++ *val = 0; ++ *start = 0; ++ for (int i = 0; i < 4; i++) { ++ pid_t pid = fork(); ++ if (pid == 0) { ++ if (i & 1) ++ test_llsc_if_odd(val, start); ++ else ++ test_llsc_if_even(val, start); ++ exit(0); ++ } else if (pid > 0) { ++ puts(" -- process created"); ++ } else { ++ abort(); ++ } ++ } ++ ++ __atomic_store_n(start, 1, __ATOMIC_SEQ_CST); ++ while (wait(NULL) > 0); ++ ++ printf(" -- value: %d\n", *val); ++} ++ ++static void *getshm(size_t size) ++{ ++ int prot = PROT_READ | PROT_WRITE; ++ int flags = MAP_SHARED | MAP_ANONYMOUS; ++ void *ret = mmap(NULL, size, prot, flags, -1, 0); ++ if (ret == MAP_FAILED) ++ abort(); ++ return ret; ++} ++ ++int main(void) { ++ int *shm = getshm(2 * sizeof(unsigned)); ++ int *val = shm + 0; ++ int *start = shm + 1; ++ ++ /* disable buffer, due to fork() */ ++ setbuf(stdout, NULL); ++ ++ do_test1(val, start); ++ do_test2(val, start); ++ do_test3(val, start); ++ do_test4(val, start); ++ ++ return 0; ++} ++ ++#endif +diff --git a/none/tests/sw64/8a-lock.stderr.exp b/none/tests/sw64/8a-lock.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/8a-lock.stdout.exp b/none/tests/sw64/8a-lock.stdout.exp +new file mode 100644 +index 000000000..13c3189b7 +--- /dev/null ++++ b/none/tests/sw64/8a-lock.stdout.exp +@@ -0,0 +1,24 @@ ++===> Test CAS Simple <=== ++ -- process created ++ -- process created ++ -- process created ++ -- process created ++ -- value: 4000000 ++===> Test CAS Conditional <=== ++ -- process created ++ -- process created ++ -- process created ++ -- process created ++ -- value: 4000000 ++===> Test 8A Style LLSC Simple <=== ++ -- process created ++ -- process created ++ -- process created ++ -- process created ++ -- value: 4000000 ++===> Test 8A Style LLSC Conditional <=== ++ -- process created ++ -- process created ++ -- process created ++ -- process created ++ -- value: 4000000 +diff --git a/none/tests/sw64/8a-lock.vgtest b/none/tests/sw64/8a-lock.vgtest +new file mode 100644 +index 000000000..778beede8 +--- /dev/null ++++ b/none/tests/sw64/8a-lock.vgtest +@@ -0,0 +1,3 @@ ++prereq: grep 'cpu.*family.*8' /proc/cpuinfo > /dev/null ++prog: 8a-lock ++vgopts: -q +diff --git a/none/tests/sw64/8a-misc.c b/none/tests/sw64/8a-misc.c +new file mode 100644 +index 000000000..cfbbe7b37 +--- /dev/null ++++ b/none/tests/sw64/8a-misc.c +@@ -0,0 +1,340 @@ ++#include ++#include ++ ++#if !defined(__sw_64_sw8a__) ++int main(void) { return -1; } ++#else ++ ++typedef union { ++ long l; ++ float f; ++ double d; ++} un; ++ ++un fpcases[] = { ++ (un){.f = 1}, ++ (un){.f = -1}, ++ (un){.f = 0.1}, ++ (un){.f = -0.1}, ++ (un){.f = 0.2}, ++ (un){.f = -0.2}, ++ (un){.f = 3}, ++ (un){.f = -3}, ++ (un){.f = 5}, ++ (un){.f = -5}, ++ (un){.f = 100000000}, ++ (un){.f = -100000000}, ++ (un){.d = 1}, ++ (un){.d = -1}, ++ (un){.d = 0.1}, ++ (un){.d = -0.1}, ++ (un){.d = 0.2}, ++ (un){.d = -0.2}, ++ (un){.d = 3}, ++ (un){.d = -3}, ++ (un){.d = 5}, ++ (un){.d = -5}, ++ (un){.d = 100000000}, ++ (un){.d = -100000000}, ++}; ++const int nfpcases = sizeof(fpcases) / sizeof(*fpcases); ++ ++ ++un intcases[] = { ++ (un){.l = 0}, ++ (un){.l = 0x8000000000000000ULL }, ++ (un){.l = 0xf0debc9a78563412ULL }, ++ (un){.l = 0x123456789abcdef0ULL }, ++ ++}; ++const int nintcases = sizeof(intcases) / sizeof(*intcases); ++ ++ ++int test_ldbu_a(char *addr) { ++ char *old = addr; ++ char val = 0xbe; ++ __asm__ volatile ( ++ " ldbu_a %0, 128(%1) \n" ++ : "+&r"(val), ++ "+&r"(addr) ++ : ++ : "memory" ++ ); ++ return val == *old && (void *)addr == (void *)old + 128; ++} ++ ++int test_ldhu_a(short *addr) { ++ short *old = addr; ++ short val = 0xbe; ++ __asm__ volatile ( ++ " ldhu_a %0, 128(%1) \n" ++ : "+&r"(val), ++ "+&r"(addr) ++ : ++ : "memory" ++ ); ++ return val == *old && (void *)addr == (void *)old + 128; ++} ++ ++int test_ldw_a(int *addr) { ++ int *old = addr; ++ int val = 0xbe; ++ __asm__ volatile ( ++ " ldw_a %0, 128(%1) \n" ++ : "+&r"(val), ++ "+&r"(addr) ++ : ++ : "memory" ++ ); ++ return val == *old && (void *)addr == (void *)old + 128; ++} ++ ++int test_ldl_a(long *addr) { ++ long *old = addr; ++ long val = 0xbe; ++ __asm__ volatile ( ++ " ldl_a %0, 128(%1) \n" ++ : "+&r"(val), ++ "+&r"(addr) ++ : ++ : "memory" ++ ); ++ return val == *old && (void *)addr == (void *)old + 128; ++} ++ ++int test_flds_a(float *addr) { ++ float *old = addr; ++ float val = 0.123; ++ __asm__ volatile ( ++ " flds_a %0, 128(%1) \n" ++ : "+&f"(val), ++ "+&r"(addr) ++ : ++ : "memory" ++ ); ++ return val == *old && (void *)addr == (void *)old + 128; ++} ++ ++int test_fldd_a(double *addr) { ++ double *old = addr; ++ double val = 0.123; ++ __asm__ volatile ( ++ " fldd_a %0, 128(%1) \n" ++ : "+&f"(val), ++ "+&r"(addr) ++ : ++ : "memory" ++ ); ++ return val == *old && (void *)addr == (void *)old + 128; ++} ++ ++int test_stb_a(char val) { ++ char mem = 0xbe; ++ char *addr = &mem; ++ __asm__ volatile ( ++ " stb_a %0, 128(%1) \n" ++ : "+&r"(val), ++ "+&r"(addr) ++ : ++ : "memory" ++ ); ++ return val == mem && (void *)addr == (void *)&mem + 128; ++} ++ ++int test_sth_a(short val) { ++ short mem = 0xbe; ++ short *addr = &mem; ++ __asm__ volatile ( ++ " sth_a %0, 128(%1) \n" ++ : "+&r"(val), ++ "+&r"(addr) ++ : ++ : "memory" ++ ); ++ return val == mem && (void *)addr == (void *)&mem + 128; ++} ++ ++int test_stw_a(int val) { ++ int mem = 0xbe; ++ int *addr = &mem; ++ __asm__ volatile ( ++ " stw_a %0, 128(%1) \n" ++ : "+&r"(val), ++ "+&r"(addr) ++ : ++ : "memory" ++ ); ++ return val == mem && (void *)addr == (void *)&mem + 128; ++} ++ ++int test_stl_a(long val) { ++ long mem = 0xbe; ++ long *addr = &mem; ++ __asm__ volatile ( ++ " stl_a %0, 128(%1) \n" ++ : "+&r"(val), ++ "+&r"(addr) ++ : ++ : "memory" ++ ); ++ return val == mem && (void *)addr == (void *)&mem + 128; ++} ++ ++int test_fsts_a(float val) { ++ float mem = 0.123; ++ float *addr = &mem; ++ __asm__ volatile ( ++ " fsts_a %0, 128(%1) \n" ++ : "+&f"(val), ++ "+&r"(addr) ++ : ++ : "memory" ++ ); ++ return val == mem && (void *)addr == (void *)&mem + 128; ++} ++ ++int test_fstd_a(double val) { ++ double mem = 0.123; ++ double *addr = &mem; ++ __asm__ volatile ( ++ " fstd_a %0, 128(%1) \n" ++ : "+&f"(val), ++ "+&r"(addr) ++ : ++ : "memory" ++ ); ++ return val == mem && (void *)addr == (void *)&mem + 128; ++} ++ ++void test_addpi() { ++ unsigned long entry; ++ unsigned long val0; ++ unsigned long valp1; ++ unsigned long valn1; ++ unsigned long valmax; ++ unsigned long valmin; ++ ++ __asm__ volatile ( ++ " br %[entry], 0f \n" ++ "0: addpi 0, %[val0] \n" ++ " addpi 1, %[valp1] \n" ++ " addpi -1, %[valn1] \n" ++ " addpi 0xfff, %[valmax] \n" ++ " addpi -0x1000, %[valmin] \n" ++ : [entry]"=&r"(entry), ++ [val0]"=&r"(val0), ++ [valp1]"=&r"(valp1), ++ [valn1]"=&r"(valn1), ++ [valmax]"=&r"(valmax), ++ [valmin]"=&r"(valmin) ++ ); ++ ++ printf("test_addpi val0 = 0x%016lx\n", val0 - (entry + 4*1)); ++ printf("test_addpi valp1 = 0x%016lx\n", valp1 - (entry + 4*2)); ++ printf("test_addpi valn1 = 0x%016lx\n", valn1 - (entry + 4*3)); ++ printf("test_addpi valmax = 0x%016lx\n", valmax - (entry + 4*4)); ++ printf("test_addpi valmin = 0x%016lx\n", valmin - (entry + 4*5)); ++} ++ ++void test_addpis() { ++ unsigned long entry; ++ unsigned long val0; ++ unsigned long valp1; ++ unsigned long valn1; ++ unsigned long valmax; ++ unsigned long valmin; ++ ++ __asm__ volatile ( ++ " br %[entry], 0f \n" ++ "0: addpis 0, %[val0] \n" ++ " addpis 1, %[valp1] \n" ++ " addpis -1, %[valn1] \n" ++ " addpis 0xfff, %[valmax] \n" ++ " addpis -0x1000, %[valmin] \n" ++ : [entry]"=&r"(entry), ++ [val0]"=&r"(val0), ++ [valp1]"=&r"(valp1), ++ [valn1]"=&r"(valn1), ++ [valmax]"=&r"(valmax), ++ [valmin]"=&r"(valmin) ++ ); ++ ++ printf("test_addpis val0 = 0x%016lx\n", val0 - ((entry + 4*1) & ~0xFFFF)); ++ printf("test_addpis valp1 = 0x%016lx\n", valp1 - ((entry + 4*2) & ~0xFFFF)); ++ printf("test_addpis valn1 = 0x%016lx\n", valn1 - ((entry + 4*3) & ~0xFFFF)); ++ printf("test_addpis valmax = 0x%016lx\n", valmax - ((entry + 4*4) & ~0xFFFF)); ++ printf("test_addpis valmin = 0x%016lx\n", valmin - ((entry + 4*5) & ~0xFFFF)); ++} ++ ++int main(void) ++{ ++ puts("=== Running test on ldbu_a ==="); ++ for (int i = 0; i < nintcases; i++) { ++ printf("testcase %3d: %s\n", i, test_ldbu_a((char *)&intcases[i].l) ? "PASS" : "FAILED"); ++ } ++ ++ puts("=== Running test on ldhu_a ==="); ++ for (int i = 0; i < nintcases; i++) { ++ printf("testcase %3d: %s\n", i, test_ldhu_a((short *)&intcases[i].l) ? "PASS" : "FAILED"); ++ } ++ ++ puts("=== Running test on ldw_a ==="); ++ for (int i = 0; i < nintcases; i++) { ++ printf("testcase %3d: %s\n", i, test_ldw_a((int *)&intcases[i].l) ? "PASS" : "FAILED"); ++ } ++ ++ puts("=== Running test on ldl_a ==="); ++ for (int i = 0; i < nintcases; i++) { ++ printf("testcase %3d: %s\n", i, test_ldl_a((long *)&intcases[i].l) ? "PASS" : "FAILED"); ++ } ++ ++ puts("=== Running test on flds_a ==="); ++ for (int i = 0; i < nfpcases; i++) { ++ printf("testcase %3d: %s\n", i, test_flds_a((float *)&fpcases[i].f) ? "PASS" : "FAILED"); ++ } ++ ++ puts("=== Running test on fldd_a ==="); ++ for (int i = 0; i < nfpcases; i++) { ++ printf("testcase %3d: %s\n", i, test_fldd_a((double *)&fpcases[i].d) ? "PASS" : "FAILED"); ++ } ++ ++ puts("=== Running test on stb_a ==="); ++ for (int i = 0; i < nintcases; i++) { ++ printf("testcase %3d: %s\n", i, test_stb_a(*(char *)&intcases[i].l) ? "PASS" : "FAILED"); ++ } ++ ++ puts("=== Running test on ldhu_a ==="); ++ for (int i = 0; i < nintcases; i++) { ++ printf("testcase %3d: %s\n", i, test_sth_a(*(short *)&intcases[i].l) ? "PASS" : "FAILED"); ++ } ++ ++ puts("=== Running test on ldw_a ==="); ++ for (int i = 0; i < nintcases; i++) { ++ printf("testcase %3d: %s\n", i, test_stw_a(*(int *)&intcases[i].l) ? "PASS" : "FAILED"); ++ } ++ ++ puts("=== Running test on ldl_a ==="); ++ for (int i = 0; i < nintcases; i++) { ++ printf("testcase %3d: %s\n", i, test_stl_a(*(long *)&intcases[i].l) ? "PASS" : "FAILED"); ++ } ++ ++ puts("=== Running test on flds_a ==="); ++ for (int i = 0; i < nfpcases; i++) { ++ printf("testcase %3d: %s\n", i, test_fsts_a(*(float *)&fpcases[i].f) ? "PASS" : "FAILED"); ++ } ++ ++ puts("=== Running test on fldd_a ==="); ++ for (int i = 0; i < nfpcases; i++) { ++ printf("testcase %3d: %s\n", i, test_fstd_a(*(double *)&fpcases[i].d) ? "PASS" : "FAILED"); ++ } ++ ++ puts("=== Running test on addpi ==="); ++ test_addpi(); ++ ++ puts("=== Running test on addpis ==="); ++ test_addpis(); ++ ++ return 0; ++} ++ ++#endif +diff --git a/none/tests/sw64/8a-misc.stderr.exp b/none/tests/sw64/8a-misc.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/8a-misc.stdout.exp b/none/tests/sw64/8a-misc.stdout.exp +new file mode 100644 +index 000000000..b82ad2059 +--- /dev/null ++++ b/none/tests/sw64/8a-misc.stdout.exp +@@ -0,0 +1,152 @@ ++=== Running test on ldbu_a === ++testcase 0: PASS ++testcase 1: PASS ++testcase 2: PASS ++testcase 3: PASS ++=== Running test on ldhu_a === ++testcase 0: PASS ++testcase 1: PASS ++testcase 2: PASS ++testcase 3: PASS ++=== Running test on ldw_a === ++testcase 0: PASS ++testcase 1: PASS ++testcase 2: PASS ++testcase 3: PASS ++=== Running test on ldl_a === ++testcase 0: PASS ++testcase 1: PASS ++testcase 2: PASS ++testcase 3: PASS ++=== Running test on flds_a === ++testcase 0: PASS ++testcase 1: PASS ++testcase 2: PASS ++testcase 3: PASS ++testcase 4: PASS ++testcase 5: PASS ++testcase 6: PASS ++testcase 7: PASS ++testcase 8: PASS ++testcase 9: PASS ++testcase 10: PASS ++testcase 11: PASS ++testcase 12: PASS ++testcase 13: PASS ++testcase 14: PASS ++testcase 15: PASS ++testcase 16: PASS ++testcase 17: PASS ++testcase 18: PASS ++testcase 19: PASS ++testcase 20: PASS ++testcase 21: PASS ++testcase 22: PASS ++testcase 23: PASS ++=== Running test on fldd_a === ++testcase 0: PASS ++testcase 1: PASS ++testcase 2: PASS ++testcase 3: PASS ++testcase 4: PASS ++testcase 5: PASS ++testcase 6: PASS ++testcase 7: PASS ++testcase 8: PASS ++testcase 9: PASS ++testcase 10: PASS ++testcase 11: PASS ++testcase 12: PASS ++testcase 13: PASS ++testcase 14: PASS ++testcase 15: PASS ++testcase 16: PASS ++testcase 17: PASS ++testcase 18: PASS ++testcase 19: PASS ++testcase 20: PASS ++testcase 21: PASS ++testcase 22: PASS ++testcase 23: PASS ++=== Running test on stb_a === ++testcase 0: PASS ++testcase 1: PASS ++testcase 2: PASS ++testcase 3: PASS ++=== Running test on ldhu_a === ++testcase 0: PASS ++testcase 1: PASS ++testcase 2: PASS ++testcase 3: PASS ++=== Running test on ldw_a === ++testcase 0: PASS ++testcase 1: PASS ++testcase 2: PASS ++testcase 3: PASS ++=== Running test on ldl_a === ++testcase 0: PASS ++testcase 1: PASS ++testcase 2: PASS ++testcase 3: PASS ++=== Running test on flds_a === ++testcase 0: PASS ++testcase 1: PASS ++testcase 2: PASS ++testcase 3: PASS ++testcase 4: PASS ++testcase 5: PASS ++testcase 6: PASS ++testcase 7: PASS ++testcase 8: PASS ++testcase 9: PASS ++testcase 10: PASS ++testcase 11: PASS ++testcase 12: PASS ++testcase 13: PASS ++testcase 14: PASS ++testcase 15: PASS ++testcase 16: PASS ++testcase 17: PASS ++testcase 18: PASS ++testcase 19: PASS ++testcase 20: PASS ++testcase 21: PASS ++testcase 22: PASS ++testcase 23: PASS ++=== Running test on fldd_a === ++testcase 0: PASS ++testcase 1: PASS ++testcase 2: PASS ++testcase 3: PASS ++testcase 4: PASS ++testcase 5: PASS ++testcase 6: PASS ++testcase 7: PASS ++testcase 8: PASS ++testcase 9: PASS ++testcase 10: PASS ++testcase 11: PASS ++testcase 12: PASS ++testcase 13: PASS ++testcase 14: PASS ++testcase 15: PASS ++testcase 16: PASS ++testcase 17: PASS ++testcase 18: PASS ++testcase 19: PASS ++testcase 20: PASS ++testcase 21: PASS ++testcase 22: PASS ++testcase 23: PASS ++=== Running test on addpi === ++test_addpi val0 = 0x0000000000000000 ++test_addpi valp1 = 0x0000000000000004 ++test_addpi valn1 = 0xfffffffffffffffc ++test_addpi valmax = 0x0000000000003ffc ++test_addpi valmin = 0xffffffffffffc000 ++=== Running test on addpis === ++test_addpis val0 = 0x0000000000000000 ++test_addpis valp1 = 0x0000000000010000 ++test_addpis valn1 = 0xffffffffffff0000 ++test_addpis valmax = 0x000000000fff0000 ++test_addpis valmin = 0xfffffffff0000000 +diff --git a/none/tests/sw64/8a-misc.vgtest b/none/tests/sw64/8a-misc.vgtest +new file mode 100644 +index 000000000..4ba933e52 +--- /dev/null ++++ b/none/tests/sw64/8a-misc.vgtest +@@ -0,0 +1,3 @@ ++prereq: grep 'cpu.*family.*8' /proc/cpuinfo > /dev/null ++prog: 8a-misc ++vgopts: -q +diff --git a/none/tests/sw64/Makefile.am b/none/tests/sw64/Makefile.am +new file mode 100644 +index 000000000..787d4acd5 +--- /dev/null ++++ b/none/tests/sw64/Makefile.am +@@ -0,0 +1,70 @@ ++ ++include $(top_srcdir)/Makefile.tool-tests.am ++ ++dist_noinst_SCRIPTS = filter_stderr ++ ++EXTRA_DIST = \ ++ arith-fp.vgtest arith-fp.stdout.exp arith-fp.stdout.exp-8a arith-fp.stderr.exp \ ++ arith-int-imm.vgtest arith-int-imm.stdout.exp arith-int-imm.stderr.exp \ ++ arith-int-reg.vgtest arith-int-reg.stdout.exp arith-int-reg.stderr.exp \ ++ branch.vgtest branch.stdout.exp branch.stderr.exp \ ++ div-by-zero.stderr.exp div-by-zero.stdout.exp div-by-zero.vgtest \ ++ rounding.stderr.exp rounding.stdout.exp rounding.vgtest \ ++ loadstore-fp.vgtest loadstore-fp.stdout.exp loadstore-fp.stderr.exp \ ++ loadstore-lock.vgtest loadstore-lock.stdout.exp loadstore-lock.stderr.exp \ ++ py-hash-double.stderr.exp py-hash-double.stdout.exp py-hash-double.vgtest \ ++ rcid.stderr.exp rcid.vgtest \ ++ rtc.stderr.exp rtc.vgtest \ ++ stack.stdout.exp stack.stderr.exp stack.vgtest \ ++ unique.vgtest unique.stdout.exp unique.stderr.exp \ ++ 8a-conv.vgtest 8a-conv.stderr.exp 8a-conv.stdout.exp \ ++ 8a-fp.vgtest 8a-fp.stdout.exp 8a-fp.stderr.exp \ ++ 8a-int.vgtest 8a-int.stderr.exp 8a-int.stdout.exp \ ++ 8a-lock.vgtest 8a-lock.stderr.exp 8a-lock.stdout.exp \ ++ 8a-misc.vgtest 8a-misc.stderr.exp 8a-misc.stdout.exp \ ++ simd-fp.stdout.exp simd-fp.stderr.exp \ ++ simd-int.stdout.exp simd-int.stderr.exp ++ ++check_PROGRAMS = \ ++ allexec \ ++ arith-fp \ ++ arith-int-imm \ ++ arith-int-reg \ ++ branch \ ++ div-by-zero \ ++ rounding \ ++ loadstore-fp \ ++ loadstore-lock \ ++ py-hash-double \ ++ rcid \ ++ rtc \ ++ stack \ ++ unique \ ++ 8a-conv \ ++ 8a-fp \ ++ 8a-int \ ++ 8a-lock \ ++ 8a-misc \ ++ simd-fp \ ++ simd-int ++ ++AM_CFLAGS += @FLAG_M64@ ++AM_CXXFLAGS += @FLAG_M64@ ++AM_CCASFLAGS += @FLAG_M64@ ++ ++rounding_LDADD = -lm ++ ++arith_int_reg_CFLAGS = $(AM_CFLAGS) -Og -fno-builtin ++arith_int_reg_LDFLAGS = -static -nostdlib ++ ++arith_int_imm_CFLAGS = $(AM_CFLAGS) -Og -fno-builtin ++arith_int_imm_LDFLAGS = -static -nostdlib ++ ++8a_conv_CFLAGS = $(AM_CFLAGS) -Og -fno-builtin ++8a_conv_LDFLAGS = -static -nostdlib ++ ++8a_fp_CFLAGS = $(AM_CFLAGS) -Og -fno-builtin ++8a_fp_LDFLAGS = -static -nostdlib ++ ++8a_int_CFLAGS = $(AM_CFLAGS) -Og -fno-builtin ++8a_int_LDFLAGS = -static -nostdlib +diff --git a/none/tests/sw64/allexec.c b/none/tests/sw64/allexec.c +new file mode 120000 +index 000000000..6d6a9cf28 +--- /dev/null ++++ b/none/tests/sw64/allexec.c +@@ -0,0 +1 @@ ++../allexec.c +\ No newline at end of file +diff --git a/none/tests/sw64/arith-fp.c b/none/tests/sw64/arith-fp.c +new file mode 100644 +index 000000000..2ef6d4093 +--- /dev/null ++++ b/none/tests/sw64/arith-fp.c +@@ -0,0 +1,284 @@ ++#include ++#include ++ ++typedef union { ++ unsigned long ul; ++ unsigned int ui; ++ long l; ++ int i; ++ double d; ++} un; ++ ++const un f64cases[] = { ++ (un){.ul = 0}, /* +0 */ ++ (un){.ul = 0x8000000000000000ULL }, /* -0 */ ++ (un){.ul = 0xf0debc9a78563412ULL }, ++ (un){.ul = 0x123456789abcdef0ULL }, ++ (un){.d = 1}, ++ (un){.d = -1}, ++ (un){.d = 0.1}, ++ (un){.d = -0.1}, ++ (un){.d = 0.2}, ++ (un){.d = -0.2}, ++ (un){.d = 3}, ++ (un){.d = -3}, ++ (un){.d = 5}, ++ (un){.d = -5}, ++ (un){.d = 100000000}, ++ (un){.d = -100000000}, ++}; ++const int nf64cases = sizeof(f64cases) / sizeof(*f64cases); ++ ++const un f32cases[] = { ++ (un){.ul = 0}, /* +0 */ ++ (un){.ul = 0x8000000000000000ULL }, /* -0 */ ++ (un){.d = (float)1}, ++ (un){.d = (float)-1}, ++ (un){.d = (float)0.1}, ++ (un){.d = (float)-0.1}, ++ (un){.d = (float)0.2}, ++ (un){.d = (float)-0.2}, ++ (un){.d = (float)3}, ++ (un){.d = (float)-3}, ++ (un){.d = (float)5}, ++ (un){.d = (float)-5}, ++ (un){.d = (float)100000000}, ++ (un){.d = (float)-100000000}, ++}; ++const int nf32cases = sizeof(f32cases) / sizeof(*f32cases); ++ ++const un i32cases[] = { ++ (un){ .ui = 0 }, ++ (un){ .ui = 1 }, ++ (un){ .ui = 2 }, ++ (un){ .ui = 3 }, ++ (un){ .ui = 15 }, ++ (un){ .ui = -1 }, ++ (un){ .ui = -2 }, ++ (un){ .ui = -3 }, ++ (un){ .ui = 0x7f }, ++ (un){ .ui = 0x80 }, ++ (un){ .ui = 0x7fff }, ++ (un){ .ui = 0x8000 }, ++ (un){ .ui = 0x7fffffffU }, ++ (un){ .ui = 0x80000000U }, ++ (un){ .ui = 0x12345678U }, ++ (un){ .ui = 0x78563412U } ++}; ++const int ni32cases = sizeof(i32cases) / sizeof(*i32cases); ++ ++#define STRINGIFY(x) STRINGIFY2(x) ++#define STRINGIFY2(x) #x ++ ++#define CREATE_4_OP_TEST(ins) \ ++ long test_4_op_##ins(long a, long b, long c) { \ ++ long r; \ ++ __asm__ volatile ( \ ++ ".set noreorder\n" \ ++ "ifmovd %1, $f11\n" \ ++ "ifmovd %2, $f12\n" \ ++ "ifmovd %3, $f13\n" \ ++ STRINGIFY(ins) " $f11, $f12, $f13, $f10\n" \ ++ "fimovd $f10, %0\n" \ ++ : "=r"(r) \ ++ : "r"(a), "r"(b), "r"(c) \ ++ : "$f10", "$f11", "$f12", "$f13" \ ++ ); \ ++ return r; \ ++ } ++ ++#define CREATE_3_OP_TEST(ins) \ ++ long test_3_op_##ins(long a, long b) { \ ++ long r; \ ++ __asm__ volatile ( \ ++ ".set noreorder\n" \ ++ "ifmovd %1, $f11\n" \ ++ "ifmovd %2, $f12\n" \ ++ STRINGIFY(ins) " $f11, $f12, $f10\n" \ ++ "fimovd $f10, %0\n" \ ++ : "=r"(r) \ ++ : "r"(a), "r"(b) \ ++ : "$f10", "$f11", "$f12", "$f13" \ ++ ); \ ++ return r; \ ++ } ++ ++#define CREATE_2_OP_TEST(ins) \ ++ long test_2_op_##ins(long a) { \ ++ long r; \ ++ __asm__ volatile ( \ ++ ".set noreorder\n" \ ++ "ifmovd %1, $f11\n" \ ++ STRINGIFY(ins) " $f11, $f10\n" \ ++ "fimovd $f10, %0\n" \ ++ : "=r"(r) \ ++ : "r"(a) \ ++ : "$f10", "$f11", "$f12", "$f13" \ ++ ); \ ++ return r; \ ++ } ++ ++#define RUN_4_OP_TEST64F(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < nf64cases; i++) { \ ++ for (int j = 0; j < nf64cases; j++) { \ ++ long a = f64cases[i].l; \ ++ long b = f64cases[j].l; \ ++ long c = f64cases[(i + j) % nf64cases].l; \ ++ long r = test_4_op_##ins(a, b, c); \ ++ printf(STRINGIFY(ins) " 0x%lx 0x%lx 0x%lx = 0x%lx\n", a, b, c, r); \ ++ } \ ++ } ++ ++#define RUN_3_OP_TEST64F(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < nf64cases; i++) { \ ++ for (int j = 0; j < nf64cases; j++) { \ ++ long a = f64cases[i].l; \ ++ long b = f64cases[j].l; \ ++ long r = test_3_op_##ins(a, b); \ ++ printf(STRINGIFY(ins) " 0x%lx 0x%lx = 0x%lx\n", a, b, r); \ ++ } \ ++ } ++ ++#define RUN_2_OP_TEST64F(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < nf64cases; i++) { \ ++ long a = f64cases[i].l; \ ++ long r = test_2_op_##ins(a); \ ++ printf(STRINGIFY(ins) " 0x%lx = 0x%lx\n", a, r); \ ++ } ++ ++#define RUN_4_OP_TEST32F(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < nf32cases; i++) { \ ++ for (int j = 0; j < nf32cases; j++) { \ ++ long a = f32cases[i].l; \ ++ long b = f32cases[j].l; \ ++ long c = f32cases[(i + j) % nf32cases].l; \ ++ long r = test_4_op_##ins(a, b, c); \ ++ printf(STRINGIFY(ins) " 0x%lx 0x%lx 0x%lx = 0x%lx\n", a, b, c, r); \ ++ } \ ++ } ++ ++#define RUN_3_OP_TEST32F(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < nf32cases; i++) { \ ++ for (int j = 0; j < nf32cases; j++) { \ ++ long a = f32cases[i].l; \ ++ long b = f32cases[j].l; \ ++ long r = test_3_op_##ins(a, b); \ ++ printf(STRINGIFY(ins) " 0x%lx 0x%lx = 0x%lx\n", a, b, r); \ ++ } \ ++ } ++ ++#define RUN_2_OP_TEST32F(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < nf32cases; i++) { \ ++ long a = f32cases[i].l; \ ++ long r = test_2_op_##ins(a); \ ++ printf(STRINGIFY(ins) " 0x%lx = 0x%lx\n", a, r); \ ++ } ++ ++#define RUN_2_OP_TEST32I(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < ni32cases; i++) { \ ++ long a = i32cases[i].i; \ ++ long r = test_2_op_##ins(a); \ ++ printf(STRINGIFY(ins) " 0x%lx = 0x%lx\n", a, r); \ ++ } ++ ++CREATE_2_OP_TEST(fsqrts) ++CREATE_2_OP_TEST(fsqrtd) ++CREATE_2_OP_TEST(fcvtsd) ++CREATE_2_OP_TEST(fcvtds) ++CREATE_2_OP_TEST(fcvtdl_g) ++CREATE_2_OP_TEST(fcvtdl_p) ++CREATE_2_OP_TEST(fcvtdl_z) ++CREATE_2_OP_TEST(fcvtdl_n) ++CREATE_2_OP_TEST(fcvtdl) ++CREATE_2_OP_TEST(fcvtwl) ++CREATE_2_OP_TEST(fcvtlw) ++CREATE_2_OP_TEST(fcvtls) ++CREATE_2_OP_TEST(fcvtld) ++ ++CREATE_3_OP_TEST(fadds) ++CREATE_3_OP_TEST(faddd) ++CREATE_3_OP_TEST(fsubs) ++CREATE_3_OP_TEST(fsubd) ++CREATE_3_OP_TEST(fmuls) ++CREATE_3_OP_TEST(fmuld) ++CREATE_3_OP_TEST(fdivs) ++CREATE_3_OP_TEST(fdivd) ++CREATE_3_OP_TEST(fcmpeq) ++CREATE_3_OP_TEST(fcmple) ++CREATE_3_OP_TEST(fcmplt) ++CREATE_3_OP_TEST(fcmpun) ++CREATE_3_OP_TEST(fcpys) ++CREATE_3_OP_TEST(fcpyse) ++CREATE_3_OP_TEST(fcpysn) ++ ++CREATE_4_OP_TEST(fmas) ++CREATE_4_OP_TEST(fmad) ++CREATE_4_OP_TEST(fmss) ++CREATE_4_OP_TEST(fmsd) ++CREATE_4_OP_TEST(fnmas) ++CREATE_4_OP_TEST(fnmad) ++CREATE_4_OP_TEST(fnmss) ++CREATE_4_OP_TEST(fnmsd) ++CREATE_4_OP_TEST(fseleq) ++CREATE_4_OP_TEST(fselne) ++CREATE_4_OP_TEST(fsellt) ++CREATE_4_OP_TEST(fselle) ++CREATE_4_OP_TEST(fselgt) ++CREATE_4_OP_TEST(fselge) ++ ++int main(void) ++{ ++ RUN_2_OP_TEST32F(fsqrts) ++ RUN_2_OP_TEST64F(fsqrtd) ++ RUN_2_OP_TEST32F(fcvtsd) ++ RUN_2_OP_TEST64F(fcvtds) ++ RUN_2_OP_TEST64F(fcvtdl_g) ++ RUN_2_OP_TEST64F(fcvtdl_p) ++ RUN_2_OP_TEST64F(fcvtdl_z) ++ RUN_2_OP_TEST64F(fcvtdl_n) ++ RUN_2_OP_TEST64F(fcvtdl) ++ RUN_2_OP_TEST64F(fcvtwl) ++ RUN_2_OP_TEST32I(fcvtlw) ++ RUN_2_OP_TEST64F(fcvtls) ++ RUN_2_OP_TEST64F(fcvtld) ++ ++ RUN_3_OP_TEST32F(fadds) ++ RUN_3_OP_TEST64F(faddd) ++ RUN_3_OP_TEST32F(fsubs) ++ RUN_3_OP_TEST64F(fsubd) ++ RUN_3_OP_TEST32F(fmuls) ++ RUN_3_OP_TEST64F(fmuld) ++ RUN_3_OP_TEST32F(fdivs) ++ RUN_3_OP_TEST64F(fdivd) ++ RUN_3_OP_TEST64F(fcmpeq) ++ RUN_3_OP_TEST64F(fcmple) ++ RUN_3_OP_TEST64F(fcmplt) ++ RUN_3_OP_TEST64F(fcmpun) ++ RUN_3_OP_TEST64F(fcpys) ++ RUN_3_OP_TEST64F(fcpyse) ++ RUN_3_OP_TEST64F(fcpysn) ++ ++ RUN_4_OP_TEST32F(fmas) ++ RUN_4_OP_TEST64F(fmad) ++ RUN_4_OP_TEST32F(fmss) ++ RUN_4_OP_TEST64F(fmsd) ++ RUN_4_OP_TEST32F(fnmas) ++ RUN_4_OP_TEST64F(fnmad) ++ RUN_4_OP_TEST32F(fnmss) ++ RUN_4_OP_TEST64F(fnmsd) ++ RUN_4_OP_TEST64F(fseleq) ++ RUN_4_OP_TEST64F(fselne) ++ RUN_4_OP_TEST64F(fsellt) ++ RUN_4_OP_TEST64F(fselle) ++ RUN_4_OP_TEST64F(fselgt) ++ RUN_4_OP_TEST64F(fselge) ++ ++ return 0; ++} +diff --git a/none/tests/sw64/arith-fp.stderr.exp b/none/tests/sw64/arith-fp.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/arith-fp.stdout.exp b/none/tests/sw64/arith-fp.stdout.exp +new file mode 100644 +index 000000000..857fe92e8 +--- /dev/null ++++ b/none/tests/sw64/arith-fp.stdout.exp +@@ -0,0 +1,7190 @@ ++=== Running test on fsqrts=== ++fsqrts 0x0 = 0x0 ++fsqrts 0x8000000000000000 = 0x8000000000000000 ++fsqrts 0x3ff0000000000000 = 0x3ff0000000000000 ++fsqrts 0xbff0000000000000 = 0xfff8000000000000 ++fsqrts 0x3fb99999a0000000 = 0x3fd43d1360000000 ++fsqrts 0xbfb99999a0000000 = 0xfff8000000000000 ++fsqrts 0x3fc99999a0000000 = 0x3fdc9f25c0000000 ++fsqrts 0xbfc99999a0000000 = 0xfff8000000000000 ++fsqrts 0x4008000000000000 = 0x3ffbb67ae0000000 ++fsqrts 0xc008000000000000 = 0xfff8000000000000 ++fsqrts 0x4014000000000000 = 0x4001e377a0000000 ++fsqrts 0xc014000000000000 = 0xfff8000000000000 ++fsqrts 0x4197d78400000000 = 0x40c3880000000000 ++fsqrts 0xc197d78400000000 = 0xfff8000000000000 ++=== Running test on fsqrtd=== ++fsqrtd 0x0 = 0x0 ++fsqrtd 0x8000000000000000 = 0x8000000000000000 ++fsqrtd 0xf0debc9a78563412 = 0xfff8000000000000 ++fsqrtd 0x123456789abcdef0 = 0x291209f9f2cc09c1 ++fsqrtd 0x3ff0000000000000 = 0x3ff0000000000000 ++fsqrtd 0xbff0000000000000 = 0xfff8000000000000 ++fsqrtd 0x3fb999999999999a = 0x3fd43d136248490f ++fsqrtd 0xbfb999999999999a = 0xfff8000000000000 ++fsqrtd 0x3fc999999999999a = 0x3fdc9f25c5bfedd9 ++fsqrtd 0xbfc999999999999a = 0xfff8000000000000 ++fsqrtd 0x4008000000000000 = 0x3ffbb67ae8584caa ++fsqrtd 0xc008000000000000 = 0xfff8000000000000 ++fsqrtd 0x4014000000000000 = 0x4001e3779b97f4a8 ++fsqrtd 0xc014000000000000 = 0xfff8000000000000 ++fsqrtd 0x4197d78400000000 = 0x40c3880000000000 ++fsqrtd 0xc197d78400000000 = 0xfff8000000000000 ++=== Running test on fcvtsd=== ++fcvtsd 0x0 = 0x0 ++fcvtsd 0x8000000000000000 = 0x8000000000000000 ++fcvtsd 0x3ff0000000000000 = 0x3ff0000000000000 ++fcvtsd 0xbff0000000000000 = 0xbff0000000000000 ++fcvtsd 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fcvtsd 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fcvtsd 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fcvtsd 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fcvtsd 0x4008000000000000 = 0x4008000000000000 ++fcvtsd 0xc008000000000000 = 0xc008000000000000 ++fcvtsd 0x4014000000000000 = 0x4014000000000000 ++fcvtsd 0xc014000000000000 = 0xc014000000000000 ++fcvtsd 0x4197d78400000000 = 0x4197d78400000000 ++fcvtsd 0xc197d78400000000 = 0xc197d78400000000 ++=== Running test on fcvtds=== ++fcvtds 0x0 = 0x0 ++fcvtds 0x8000000000000000 = 0x8000000000000000 ++fcvtds 0xf0debc9a78563412 = 0xfff0000000000000 ++fcvtds 0x123456789abcdef0 = 0x0 ++fcvtds 0x3ff0000000000000 = 0x3ff0000000000000 ++fcvtds 0xbff0000000000000 = 0xbff0000000000000 ++fcvtds 0x3fb999999999999a = 0x3fb99999a0000000 ++fcvtds 0xbfb999999999999a = 0xbfb99999a0000000 ++fcvtds 0x3fc999999999999a = 0x3fc99999a0000000 ++fcvtds 0xbfc999999999999a = 0xbfc99999a0000000 ++fcvtds 0x4008000000000000 = 0x4008000000000000 ++fcvtds 0xc008000000000000 = 0xc008000000000000 ++fcvtds 0x4014000000000000 = 0x4014000000000000 ++fcvtds 0xc014000000000000 = 0xc014000000000000 ++fcvtds 0x4197d78400000000 = 0x4197d78400000000 ++fcvtds 0xc197d78400000000 = 0xc197d78400000000 ++=== Running test on fcvtdl_g=== ++fcvtdl_g 0x0 = 0x0 ++fcvtdl_g 0x8000000000000000 = 0x0 ++fcvtdl_g 0xf0debc9a78563412 = 0x0 ++fcvtdl_g 0x123456789abcdef0 = 0x0 ++fcvtdl_g 0x3ff0000000000000 = 0x1 ++fcvtdl_g 0xbff0000000000000 = 0xffffffffffffffff ++fcvtdl_g 0x3fb999999999999a = 0x0 ++fcvtdl_g 0xbfb999999999999a = 0x0 ++fcvtdl_g 0x3fc999999999999a = 0x0 ++fcvtdl_g 0xbfc999999999999a = 0x0 ++fcvtdl_g 0x4008000000000000 = 0x3 ++fcvtdl_g 0xc008000000000000 = 0xfffffffffffffffd ++fcvtdl_g 0x4014000000000000 = 0x5 ++fcvtdl_g 0xc014000000000000 = 0xfffffffffffffffb ++fcvtdl_g 0x4197d78400000000 = 0x5f5e100 ++fcvtdl_g 0xc197d78400000000 = 0xfffffffffa0a1f00 ++=== Running test on fcvtdl_p=== ++fcvtdl_p 0x0 = 0x0 ++fcvtdl_p 0x8000000000000000 = 0x0 ++fcvtdl_p 0xf0debc9a78563412 = 0x0 ++fcvtdl_p 0x123456789abcdef0 = 0x1 ++fcvtdl_p 0x3ff0000000000000 = 0x1 ++fcvtdl_p 0xbff0000000000000 = 0xffffffffffffffff ++fcvtdl_p 0x3fb999999999999a = 0x1 ++fcvtdl_p 0xbfb999999999999a = 0x0 ++fcvtdl_p 0x3fc999999999999a = 0x1 ++fcvtdl_p 0xbfc999999999999a = 0x0 ++fcvtdl_p 0x4008000000000000 = 0x3 ++fcvtdl_p 0xc008000000000000 = 0xfffffffffffffffd ++fcvtdl_p 0x4014000000000000 = 0x5 ++fcvtdl_p 0xc014000000000000 = 0xfffffffffffffffb ++fcvtdl_p 0x4197d78400000000 = 0x5f5e100 ++fcvtdl_p 0xc197d78400000000 = 0xfffffffffa0a1f00 ++=== Running test on fcvtdl_z=== ++fcvtdl_z 0x0 = 0x0 ++fcvtdl_z 0x8000000000000000 = 0x0 ++fcvtdl_z 0xf0debc9a78563412 = 0x0 ++fcvtdl_z 0x123456789abcdef0 = 0x0 ++fcvtdl_z 0x3ff0000000000000 = 0x1 ++fcvtdl_z 0xbff0000000000000 = 0xffffffffffffffff ++fcvtdl_z 0x3fb999999999999a = 0x0 ++fcvtdl_z 0xbfb999999999999a = 0x0 ++fcvtdl_z 0x3fc999999999999a = 0x0 ++fcvtdl_z 0xbfc999999999999a = 0x0 ++fcvtdl_z 0x4008000000000000 = 0x3 ++fcvtdl_z 0xc008000000000000 = 0xfffffffffffffffd ++fcvtdl_z 0x4014000000000000 = 0x5 ++fcvtdl_z 0xc014000000000000 = 0xfffffffffffffffb ++fcvtdl_z 0x4197d78400000000 = 0x5f5e100 ++fcvtdl_z 0xc197d78400000000 = 0xfffffffffa0a1f00 ++=== Running test on fcvtdl_n=== ++fcvtdl_n 0x0 = 0x0 ++fcvtdl_n 0x8000000000000000 = 0x0 ++fcvtdl_n 0xf0debc9a78563412 = 0x0 ++fcvtdl_n 0x123456789abcdef0 = 0x0 ++fcvtdl_n 0x3ff0000000000000 = 0x1 ++fcvtdl_n 0xbff0000000000000 = 0xffffffffffffffff ++fcvtdl_n 0x3fb999999999999a = 0x0 ++fcvtdl_n 0xbfb999999999999a = 0xffffffffffffffff ++fcvtdl_n 0x3fc999999999999a = 0x0 ++fcvtdl_n 0xbfc999999999999a = 0xffffffffffffffff ++fcvtdl_n 0x4008000000000000 = 0x3 ++fcvtdl_n 0xc008000000000000 = 0xfffffffffffffffd ++fcvtdl_n 0x4014000000000000 = 0x5 ++fcvtdl_n 0xc014000000000000 = 0xfffffffffffffffb ++fcvtdl_n 0x4197d78400000000 = 0x5f5e100 ++fcvtdl_n 0xc197d78400000000 = 0xfffffffffa0a1f00 ++=== Running test on fcvtdl=== ++fcvtdl 0x0 = 0x0 ++fcvtdl 0x8000000000000000 = 0x0 ++fcvtdl 0xf0debc9a78563412 = 0x0 ++fcvtdl 0x123456789abcdef0 = 0x0 ++fcvtdl 0x3ff0000000000000 = 0x1 ++fcvtdl 0xbff0000000000000 = 0xffffffffffffffff ++fcvtdl 0x3fb999999999999a = 0x0 ++fcvtdl 0xbfb999999999999a = 0x0 ++fcvtdl 0x3fc999999999999a = 0x0 ++fcvtdl 0xbfc999999999999a = 0x0 ++fcvtdl 0x4008000000000000 = 0x3 ++fcvtdl 0xc008000000000000 = 0xfffffffffffffffd ++fcvtdl 0x4014000000000000 = 0x5 ++fcvtdl 0xc014000000000000 = 0xfffffffffffffffb ++fcvtdl 0x4197d78400000000 = 0x5f5e100 ++fcvtdl 0xc197d78400000000 = 0xfffffffffa0a1f00 ++=== Running test on fcvtwl=== ++fcvtwl 0x0 = 0x0 ++fcvtwl 0x8000000000000000 = 0xffffffff80000000 ++fcvtwl 0xf0debc9a78563412 = 0xffffffffc6f5e4d3 ++fcvtwl 0x123456789abcdef0 = 0x11a2b3c4 ++fcvtwl 0x3ff0000000000000 = 0x3f800000 ++fcvtwl 0xbff0000000000000 = 0xffffffffbf800000 ++fcvtwl 0x3fb999999999999a = 0x3dcccccc ++fcvtwl 0xbfb999999999999a = 0xffffffffbdcccccc ++fcvtwl 0x3fc999999999999a = 0x3e4ccccc ++fcvtwl 0xbfc999999999999a = 0xffffffffbe4ccccc ++fcvtwl 0x4008000000000000 = 0x40400000 ++fcvtwl 0xc008000000000000 = 0xffffffffc0400000 ++fcvtwl 0x4014000000000000 = 0x40a00000 ++fcvtwl 0xc014000000000000 = 0xffffffffc0a00000 ++fcvtwl 0x4197d78400000000 = 0x4cbebc20 ++fcvtwl 0xc197d78400000000 = 0xffffffffccbebc20 ++=== Running test on fcvtlw=== ++fcvtlw 0x0 = 0x0 ++fcvtlw 0x1 = 0x20000000 ++fcvtlw 0x2 = 0x40000000 ++fcvtlw 0x3 = 0x60000000 ++fcvtlw 0xf = 0x1e0000000 ++fcvtlw 0xffffffffffffffff = 0xc7ffffffe0000000 ++fcvtlw 0xfffffffffffffffe = 0xc7ffffffc0000000 ++fcvtlw 0xfffffffffffffffd = 0xc7ffffffa0000000 ++fcvtlw 0x7f = 0xfe0000000 ++fcvtlw 0x80 = 0x1000000000 ++fcvtlw 0x7fff = 0xfffe0000000 ++fcvtlw 0x8000 = 0x100000000000 ++fcvtlw 0x7fffffff = 0x47ffffffe0000000 ++fcvtlw 0xffffffff80000000 = 0x8000000000000000 ++fcvtlw 0x12345678 = 0x2468acf00000000 ++fcvtlw 0x78563412 = 0x470ac68240000000 ++=== Running test on fcvtls=== ++fcvtls 0x0 = 0x0 ++fcvtls 0x8000000000000000 = 0xc3e0000000000000 ++fcvtls 0xf0debc9a78563412 = 0xc3ae4286c0000000 ++fcvtls 0x123456789abcdef0 = 0x43b2345680000000 ++fcvtls 0x3ff0000000000000 = 0x43cff80000000000 ++fcvtls 0xbff0000000000000 = 0xc3d0040000000000 ++fcvtls 0x3fb999999999999a = 0x43cfdcccc0000000 ++fcvtls 0xbfb999999999999a = 0xc3d01199a0000000 ++fcvtls 0x3fc999999999999a = 0x43cfe4ccc0000000 ++fcvtls 0xbfc999999999999a = 0xc3d00d99a0000000 ++fcvtls 0x4008000000000000 = 0x43d0020000000000 ++fcvtls 0xc008000000000000 = 0xc3cffc0000000000 ++fcvtls 0x4014000000000000 = 0x43d0050000000000 ++fcvtls 0xc014000000000000 = 0xc3cff60000000000 ++fcvtls 0x4197d78400000000 = 0x43d065f5e0000000 ++fcvtls 0xc197d78400000000 = 0xc3cf341440000000 ++=== Running test on fcvtld=== ++fcvtld 0x0 = 0x0 ++fcvtld 0x8000000000000000 = 0xc3e0000000000000 ++fcvtld 0xf0debc9a78563412 = 0xc3ae4286cb0f5398 ++fcvtld 0x123456789abcdef0 = 0x43b23456789abcdf ++fcvtld 0x3ff0000000000000 = 0x43cff80000000000 ++fcvtld 0xbff0000000000000 = 0xc3d0040000000000 ++fcvtld 0x3fb999999999999a = 0x43cfdccccccccccd ++fcvtld 0xbfb999999999999a = 0xc3d011999999999a ++fcvtld 0x3fc999999999999a = 0x43cfe4cccccccccd ++fcvtld 0xbfc999999999999a = 0xc3d00d999999999a ++fcvtld 0x4008000000000000 = 0x43d0020000000000 ++fcvtld 0xc008000000000000 = 0xc3cffc0000000000 ++fcvtld 0x4014000000000000 = 0x43d0050000000000 ++fcvtld 0xc014000000000000 = 0xc3cff60000000000 ++fcvtld 0x4197d78400000000 = 0x43d065f5e1000000 ++fcvtld 0xc197d78400000000 = 0xc3cf34143e000000 ++=== Running test on fadds=== ++fadds 0x0 0x0 = 0x0 ++fadds 0x0 0x8000000000000000 = 0x0 ++fadds 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fadds 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fadds 0x0 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fadds 0x0 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fadds 0x0 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fadds 0x0 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fadds 0x0 0x4008000000000000 = 0x4008000000000000 ++fadds 0x0 0xc008000000000000 = 0xc008000000000000 ++fadds 0x0 0x4014000000000000 = 0x4014000000000000 ++fadds 0x0 0xc014000000000000 = 0xc014000000000000 ++fadds 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0x8000000000000000 0x0 = 0x0 ++fadds 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fadds 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fadds 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fadds 0x8000000000000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fadds 0x8000000000000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fadds 0x8000000000000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fadds 0x8000000000000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fadds 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fadds 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fadds 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fadds 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fadds 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++fadds 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++fadds 0x3ff0000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fadds 0x3ff0000000000000 0xbff0000000000000 = 0x0 ++fadds 0x3ff0000000000000 0x3fb99999a0000000 = 0x3ff19999a0000000 ++fadds 0x3ff0000000000000 0xbfb99999a0000000 = 0x3fecccccc0000000 ++fadds 0x3ff0000000000000 0x3fc99999a0000000 = 0x3ff3333340000000 ++fadds 0x3ff0000000000000 0xbfc99999a0000000 = 0x3fe99999a0000000 ++fadds 0x3ff0000000000000 0x4008000000000000 = 0x4010000000000000 ++fadds 0x3ff0000000000000 0xc008000000000000 = 0xc000000000000000 ++fadds 0x3ff0000000000000 0x4014000000000000 = 0x4018000000000000 ++fadds 0x3ff0000000000000 0xc014000000000000 = 0xc010000000000000 ++fadds 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0xbff0000000000000 0x0 = 0xbff0000000000000 ++fadds 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++fadds 0xbff0000000000000 0x3ff0000000000000 = 0x0 ++fadds 0xbff0000000000000 0xbff0000000000000 = 0xc000000000000000 ++fadds 0xbff0000000000000 0x3fb99999a0000000 = 0xbfecccccc0000000 ++fadds 0xbff0000000000000 0xbfb99999a0000000 = 0xbff19999a0000000 ++fadds 0xbff0000000000000 0x3fc99999a0000000 = 0xbfe99999a0000000 ++fadds 0xbff0000000000000 0xbfc99999a0000000 = 0xbff3333340000000 ++fadds 0xbff0000000000000 0x4008000000000000 = 0x4000000000000000 ++fadds 0xbff0000000000000 0xc008000000000000 = 0xc010000000000000 ++fadds 0xbff0000000000000 0x4014000000000000 = 0x4010000000000000 ++fadds 0xbff0000000000000 0xc014000000000000 = 0xc018000000000000 ++fadds 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0xbff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0x3fb99999a0000000 0x0 = 0x3fb99999a0000000 ++fadds 0x3fb99999a0000000 0x8000000000000000 = 0x3fb99999a0000000 ++fadds 0x3fb99999a0000000 0x3ff0000000000000 = 0x3ff19999a0000000 ++fadds 0x3fb99999a0000000 0xbff0000000000000 = 0xbfecccccc0000000 ++fadds 0x3fb99999a0000000 0x3fb99999a0000000 = 0x3fc99999a0000000 ++fadds 0x3fb99999a0000000 0xbfb99999a0000000 = 0x0 ++fadds 0x3fb99999a0000000 0x3fc99999a0000000 = 0x3fd3333340000000 ++fadds 0x3fb99999a0000000 0xbfc99999a0000000 = 0xbfb99999a0000000 ++fadds 0x3fb99999a0000000 0x4008000000000000 = 0x4008ccccc0000000 ++fadds 0x3fb99999a0000000 0xc008000000000000 = 0xc007333340000000 ++fadds 0x3fb99999a0000000 0x4014000000000000 = 0x4014666660000000 ++fadds 0x3fb99999a0000000 0xc014000000000000 = 0xc0139999a0000000 ++fadds 0x3fb99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0x3fb99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0xbfb99999a0000000 0x0 = 0xbfb99999a0000000 ++fadds 0xbfb99999a0000000 0x8000000000000000 = 0xbfb99999a0000000 ++fadds 0xbfb99999a0000000 0x3ff0000000000000 = 0x3fecccccc0000000 ++fadds 0xbfb99999a0000000 0xbff0000000000000 = 0xbff19999a0000000 ++fadds 0xbfb99999a0000000 0x3fb99999a0000000 = 0x0 ++fadds 0xbfb99999a0000000 0xbfb99999a0000000 = 0xbfc99999a0000000 ++fadds 0xbfb99999a0000000 0x3fc99999a0000000 = 0x3fb99999a0000000 ++fadds 0xbfb99999a0000000 0xbfc99999a0000000 = 0xbfd3333340000000 ++fadds 0xbfb99999a0000000 0x4008000000000000 = 0x4007333340000000 ++fadds 0xbfb99999a0000000 0xc008000000000000 = 0xc008ccccc0000000 ++fadds 0xbfb99999a0000000 0x4014000000000000 = 0x40139999a0000000 ++fadds 0xbfb99999a0000000 0xc014000000000000 = 0xc014666660000000 ++fadds 0xbfb99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0xbfb99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0x3fc99999a0000000 0x0 = 0x3fc99999a0000000 ++fadds 0x3fc99999a0000000 0x8000000000000000 = 0x3fc99999a0000000 ++fadds 0x3fc99999a0000000 0x3ff0000000000000 = 0x3ff3333340000000 ++fadds 0x3fc99999a0000000 0xbff0000000000000 = 0xbfe99999a0000000 ++fadds 0x3fc99999a0000000 0x3fb99999a0000000 = 0x3fd3333340000000 ++fadds 0x3fc99999a0000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fadds 0x3fc99999a0000000 0x3fc99999a0000000 = 0x3fd99999a0000000 ++fadds 0x3fc99999a0000000 0xbfc99999a0000000 = 0x0 ++fadds 0x3fc99999a0000000 0x4008000000000000 = 0x40099999a0000000 ++fadds 0x3fc99999a0000000 0xc008000000000000 = 0xc006666660000000 ++fadds 0x3fc99999a0000000 0x4014000000000000 = 0x4014ccccc0000000 ++fadds 0x3fc99999a0000000 0xc014000000000000 = 0xc013333340000000 ++fadds 0x3fc99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0x3fc99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0xbfc99999a0000000 0x0 = 0xbfc99999a0000000 ++fadds 0xbfc99999a0000000 0x8000000000000000 = 0xbfc99999a0000000 ++fadds 0xbfc99999a0000000 0x3ff0000000000000 = 0x3fe99999a0000000 ++fadds 0xbfc99999a0000000 0xbff0000000000000 = 0xbff3333340000000 ++fadds 0xbfc99999a0000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fadds 0xbfc99999a0000000 0xbfb99999a0000000 = 0xbfd3333340000000 ++fadds 0xbfc99999a0000000 0x3fc99999a0000000 = 0x0 ++fadds 0xbfc99999a0000000 0xbfc99999a0000000 = 0xbfd99999a0000000 ++fadds 0xbfc99999a0000000 0x4008000000000000 = 0x4006666660000000 ++fadds 0xbfc99999a0000000 0xc008000000000000 = 0xc0099999a0000000 ++fadds 0xbfc99999a0000000 0x4014000000000000 = 0x4013333340000000 ++fadds 0xbfc99999a0000000 0xc014000000000000 = 0xc014ccccc0000000 ++fadds 0xbfc99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0xbfc99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0x4008000000000000 0x0 = 0x4008000000000000 ++fadds 0x4008000000000000 0x8000000000000000 = 0x4008000000000000 ++fadds 0x4008000000000000 0x3ff0000000000000 = 0x4010000000000000 ++fadds 0x4008000000000000 0xbff0000000000000 = 0x4000000000000000 ++fadds 0x4008000000000000 0x3fb99999a0000000 = 0x4008ccccc0000000 ++fadds 0x4008000000000000 0xbfb99999a0000000 = 0x4007333340000000 ++fadds 0x4008000000000000 0x3fc99999a0000000 = 0x40099999a0000000 ++fadds 0x4008000000000000 0xbfc99999a0000000 = 0x4006666660000000 ++fadds 0x4008000000000000 0x4008000000000000 = 0x4018000000000000 ++fadds 0x4008000000000000 0xc008000000000000 = 0x0 ++fadds 0x4008000000000000 0x4014000000000000 = 0x4020000000000000 ++fadds 0x4008000000000000 0xc014000000000000 = 0xc000000000000000 ++fadds 0x4008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0x4008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0xc008000000000000 0x0 = 0xc008000000000000 ++fadds 0xc008000000000000 0x8000000000000000 = 0xc008000000000000 ++fadds 0xc008000000000000 0x3ff0000000000000 = 0xc000000000000000 ++fadds 0xc008000000000000 0xbff0000000000000 = 0xc010000000000000 ++fadds 0xc008000000000000 0x3fb99999a0000000 = 0xc007333340000000 ++fadds 0xc008000000000000 0xbfb99999a0000000 = 0xc008ccccc0000000 ++fadds 0xc008000000000000 0x3fc99999a0000000 = 0xc006666660000000 ++fadds 0xc008000000000000 0xbfc99999a0000000 = 0xc0099999a0000000 ++fadds 0xc008000000000000 0x4008000000000000 = 0x0 ++fadds 0xc008000000000000 0xc008000000000000 = 0xc018000000000000 ++fadds 0xc008000000000000 0x4014000000000000 = 0x4000000000000000 ++fadds 0xc008000000000000 0xc014000000000000 = 0xc020000000000000 ++fadds 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0xc008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0x4014000000000000 0x0 = 0x4014000000000000 ++fadds 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fadds 0x4014000000000000 0x3ff0000000000000 = 0x4018000000000000 ++fadds 0x4014000000000000 0xbff0000000000000 = 0x4010000000000000 ++fadds 0x4014000000000000 0x3fb99999a0000000 = 0x4014666660000000 ++fadds 0x4014000000000000 0xbfb99999a0000000 = 0x40139999a0000000 ++fadds 0x4014000000000000 0x3fc99999a0000000 = 0x4014ccccc0000000 ++fadds 0x4014000000000000 0xbfc99999a0000000 = 0x4013333340000000 ++fadds 0x4014000000000000 0x4008000000000000 = 0x4020000000000000 ++fadds 0x4014000000000000 0xc008000000000000 = 0x4000000000000000 ++fadds 0x4014000000000000 0x4014000000000000 = 0x4024000000000000 ++fadds 0x4014000000000000 0xc014000000000000 = 0x0 ++fadds 0x4014000000000000 0x4197d78400000000 = 0x4197d78420000000 ++fadds 0x4014000000000000 0xc197d78400000000 = 0xc197d783e0000000 ++fadds 0xc014000000000000 0x0 = 0xc014000000000000 ++fadds 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fadds 0xc014000000000000 0x3ff0000000000000 = 0xc010000000000000 ++fadds 0xc014000000000000 0xbff0000000000000 = 0xc018000000000000 ++fadds 0xc014000000000000 0x3fb99999a0000000 = 0xc0139999a0000000 ++fadds 0xc014000000000000 0xbfb99999a0000000 = 0xc014666660000000 ++fadds 0xc014000000000000 0x3fc99999a0000000 = 0xc013333340000000 ++fadds 0xc014000000000000 0xbfc99999a0000000 = 0xc014ccccc0000000 ++fadds 0xc014000000000000 0x4008000000000000 = 0xc000000000000000 ++fadds 0xc014000000000000 0xc008000000000000 = 0xc020000000000000 ++fadds 0xc014000000000000 0x4014000000000000 = 0x0 ++fadds 0xc014000000000000 0xc014000000000000 = 0xc024000000000000 ++fadds 0xc014000000000000 0x4197d78400000000 = 0x4197d783e0000000 ++fadds 0xc014000000000000 0xc197d78400000000 = 0xc197d78420000000 ++fadds 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0x3fb99999a0000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0xbfb99999a0000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0x3fc99999a0000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0xbfc99999a0000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0x4008000000000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0xc008000000000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0x4014000000000000 = 0x4197d78420000000 ++fadds 0x4197d78400000000 0xc014000000000000 = 0x4197d783e0000000 ++fadds 0x4197d78400000000 0x4197d78400000000 = 0x41a7d78400000000 ++fadds 0x4197d78400000000 0xc197d78400000000 = 0x0 ++fadds 0xc197d78400000000 0x0 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0x3fb99999a0000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0xbfb99999a0000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0x3fc99999a0000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0xbfc99999a0000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0x4008000000000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0xc008000000000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0x4014000000000000 = 0xc197d783e0000000 ++fadds 0xc197d78400000000 0xc014000000000000 = 0xc197d78420000000 ++fadds 0xc197d78400000000 0x4197d78400000000 = 0x0 ++fadds 0xc197d78400000000 0xc197d78400000000 = 0xc1a7d78400000000 ++=== Running test on faddd=== ++faddd 0x0 0x0 = 0x0 ++faddd 0x0 0x8000000000000000 = 0x0 ++faddd 0x0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x0 0x123456789abcdef0 = 0x123456789abcdef0 ++faddd 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++faddd 0x0 0xbff0000000000000 = 0xbff0000000000000 ++faddd 0x0 0x3fb999999999999a = 0x3fb999999999999a ++faddd 0x0 0xbfb999999999999a = 0xbfb999999999999a ++faddd 0x0 0x3fc999999999999a = 0x3fc999999999999a ++faddd 0x0 0xbfc999999999999a = 0xbfc999999999999a ++faddd 0x0 0x4008000000000000 = 0x4008000000000000 ++faddd 0x0 0xc008000000000000 = 0xc008000000000000 ++faddd 0x0 0x4014000000000000 = 0x4014000000000000 ++faddd 0x0 0xc014000000000000 = 0xc014000000000000 ++faddd 0x0 0x4197d78400000000 = 0x4197d78400000000 ++faddd 0x0 0xc197d78400000000 = 0xc197d78400000000 ++faddd 0x8000000000000000 0x0 = 0x0 ++faddd 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++faddd 0x8000000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x8000000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++faddd 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++faddd 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++faddd 0x8000000000000000 0x3fb999999999999a = 0x3fb999999999999a ++faddd 0x8000000000000000 0xbfb999999999999a = 0xbfb999999999999a ++faddd 0x8000000000000000 0x3fc999999999999a = 0x3fc999999999999a ++faddd 0x8000000000000000 0xbfc999999999999a = 0xbfc999999999999a ++faddd 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++faddd 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++faddd 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++faddd 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++faddd 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++faddd 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++faddd 0xf0debc9a78563412 0x0 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0x8000000000000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0eebc9a78563412 ++faddd 0xf0debc9a78563412 0x123456789abcdef0 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0xbff0000000000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0x3fb999999999999a = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0xbfb999999999999a = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0x3fc999999999999a = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0xbfc999999999999a = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0x4008000000000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0xc008000000000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0x4014000000000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0xc014000000000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0x4197d78400000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0xc197d78400000000 = 0xf0debc9a78563412 ++faddd 0x123456789abcdef0 0x0 = 0x123456789abcdef0 ++faddd 0x123456789abcdef0 0x8000000000000000 = 0x123456789abcdef0 ++faddd 0x123456789abcdef0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x123456789abcdef0 0x123456789abcdef0 = 0x124456789abcdef0 ++faddd 0x123456789abcdef0 0x3ff0000000000000 = 0x3ff0000000000000 ++faddd 0x123456789abcdef0 0xbff0000000000000 = 0xbff0000000000000 ++faddd 0x123456789abcdef0 0x3fb999999999999a = 0x3fb999999999999a ++faddd 0x123456789abcdef0 0xbfb999999999999a = 0xbfb999999999999a ++faddd 0x123456789abcdef0 0x3fc999999999999a = 0x3fc999999999999a ++faddd 0x123456789abcdef0 0xbfc999999999999a = 0xbfc999999999999a ++faddd 0x123456789abcdef0 0x4008000000000000 = 0x4008000000000000 ++faddd 0x123456789abcdef0 0xc008000000000000 = 0xc008000000000000 ++faddd 0x123456789abcdef0 0x4014000000000000 = 0x4014000000000000 ++faddd 0x123456789abcdef0 0xc014000000000000 = 0xc014000000000000 ++faddd 0x123456789abcdef0 0x4197d78400000000 = 0x4197d78400000000 ++faddd 0x123456789abcdef0 0xc197d78400000000 = 0xc197d78400000000 ++faddd 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++faddd 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++faddd 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x3ff0000000000000 0x123456789abcdef0 = 0x3ff0000000000000 ++faddd 0x3ff0000000000000 0x3ff0000000000000 = 0x4000000000000000 ++faddd 0x3ff0000000000000 0xbff0000000000000 = 0x0 ++faddd 0x3ff0000000000000 0x3fb999999999999a = 0x3ff199999999999a ++faddd 0x3ff0000000000000 0xbfb999999999999a = 0x3feccccccccccccd ++faddd 0x3ff0000000000000 0x3fc999999999999a = 0x3ff3333333333333 ++faddd 0x3ff0000000000000 0xbfc999999999999a = 0x3fe999999999999a ++faddd 0x3ff0000000000000 0x4008000000000000 = 0x4010000000000000 ++faddd 0x3ff0000000000000 0xc008000000000000 = 0xc000000000000000 ++faddd 0x3ff0000000000000 0x4014000000000000 = 0x4018000000000000 ++faddd 0x3ff0000000000000 0xc014000000000000 = 0xc010000000000000 ++faddd 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78404000000 ++faddd 0x3ff0000000000000 0xc197d78400000000 = 0xc197d783fc000000 ++faddd 0xbff0000000000000 0x0 = 0xbff0000000000000 ++faddd 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++faddd 0xbff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0xbff0000000000000 0x123456789abcdef0 = 0xbff0000000000000 ++faddd 0xbff0000000000000 0x3ff0000000000000 = 0x0 ++faddd 0xbff0000000000000 0xbff0000000000000 = 0xc000000000000000 ++faddd 0xbff0000000000000 0x3fb999999999999a = 0xbfeccccccccccccd ++faddd 0xbff0000000000000 0xbfb999999999999a = 0xbff199999999999a ++faddd 0xbff0000000000000 0x3fc999999999999a = 0xbfe999999999999a ++faddd 0xbff0000000000000 0xbfc999999999999a = 0xbff3333333333333 ++faddd 0xbff0000000000000 0x4008000000000000 = 0x4000000000000000 ++faddd 0xbff0000000000000 0xc008000000000000 = 0xc010000000000000 ++faddd 0xbff0000000000000 0x4014000000000000 = 0x4010000000000000 ++faddd 0xbff0000000000000 0xc014000000000000 = 0xc018000000000000 ++faddd 0xbff0000000000000 0x4197d78400000000 = 0x4197d783fc000000 ++faddd 0xbff0000000000000 0xc197d78400000000 = 0xc197d78404000000 ++faddd 0x3fb999999999999a 0x0 = 0x3fb999999999999a ++faddd 0x3fb999999999999a 0x8000000000000000 = 0x3fb999999999999a ++faddd 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x3fb999999999999a 0x123456789abcdef0 = 0x3fb999999999999a ++faddd 0x3fb999999999999a 0x3ff0000000000000 = 0x3ff199999999999a ++faddd 0x3fb999999999999a 0xbff0000000000000 = 0xbfeccccccccccccd ++faddd 0x3fb999999999999a 0x3fb999999999999a = 0x3fc999999999999a ++faddd 0x3fb999999999999a 0xbfb999999999999a = 0x0 ++faddd 0x3fb999999999999a 0x3fc999999999999a = 0x3fd3333333333334 ++faddd 0x3fb999999999999a 0xbfc999999999999a = 0xbfb999999999999a ++faddd 0x3fb999999999999a 0x4008000000000000 = 0x4008cccccccccccd ++faddd 0x3fb999999999999a 0xc008000000000000 = 0xc007333333333333 ++faddd 0x3fb999999999999a 0x4014000000000000 = 0x4014666666666666 ++faddd 0x3fb999999999999a 0xc014000000000000 = 0xc01399999999999a ++faddd 0x3fb999999999999a 0x4197d78400000000 = 0x4197d78400666666 ++faddd 0x3fb999999999999a 0xc197d78400000000 = 0xc197d783ff99999a ++faddd 0xbfb999999999999a 0x0 = 0xbfb999999999999a ++faddd 0xbfb999999999999a 0x8000000000000000 = 0xbfb999999999999a ++faddd 0xbfb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0xbfb999999999999a 0x123456789abcdef0 = 0xbfb999999999999a ++faddd 0xbfb999999999999a 0x3ff0000000000000 = 0x3feccccccccccccd ++faddd 0xbfb999999999999a 0xbff0000000000000 = 0xbff199999999999a ++faddd 0xbfb999999999999a 0x3fb999999999999a = 0x0 ++faddd 0xbfb999999999999a 0xbfb999999999999a = 0xbfc999999999999a ++faddd 0xbfb999999999999a 0x3fc999999999999a = 0x3fb999999999999a ++faddd 0xbfb999999999999a 0xbfc999999999999a = 0xbfd3333333333334 ++faddd 0xbfb999999999999a 0x4008000000000000 = 0x4007333333333333 ++faddd 0xbfb999999999999a 0xc008000000000000 = 0xc008cccccccccccd ++faddd 0xbfb999999999999a 0x4014000000000000 = 0x401399999999999a ++faddd 0xbfb999999999999a 0xc014000000000000 = 0xc014666666666666 ++faddd 0xbfb999999999999a 0x4197d78400000000 = 0x4197d783ff99999a ++faddd 0xbfb999999999999a 0xc197d78400000000 = 0xc197d78400666666 ++faddd 0x3fc999999999999a 0x0 = 0x3fc999999999999a ++faddd 0x3fc999999999999a 0x8000000000000000 = 0x3fc999999999999a ++faddd 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x3fc999999999999a 0x123456789abcdef0 = 0x3fc999999999999a ++faddd 0x3fc999999999999a 0x3ff0000000000000 = 0x3ff3333333333333 ++faddd 0x3fc999999999999a 0xbff0000000000000 = 0xbfe999999999999a ++faddd 0x3fc999999999999a 0x3fb999999999999a = 0x3fd3333333333334 ++faddd 0x3fc999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++faddd 0x3fc999999999999a 0x3fc999999999999a = 0x3fd999999999999a ++faddd 0x3fc999999999999a 0xbfc999999999999a = 0x0 ++faddd 0x3fc999999999999a 0x4008000000000000 = 0x400999999999999a ++faddd 0x3fc999999999999a 0xc008000000000000 = 0xc006666666666666 ++faddd 0x3fc999999999999a 0x4014000000000000 = 0x4014cccccccccccd ++faddd 0x3fc999999999999a 0xc014000000000000 = 0xc013333333333333 ++faddd 0x3fc999999999999a 0x4197d78400000000 = 0x4197d78400cccccd ++faddd 0x3fc999999999999a 0xc197d78400000000 = 0xc197d783ff333333 ++faddd 0xbfc999999999999a 0x0 = 0xbfc999999999999a ++faddd 0xbfc999999999999a 0x8000000000000000 = 0xbfc999999999999a ++faddd 0xbfc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0xbfc999999999999a 0x123456789abcdef0 = 0xbfc999999999999a ++faddd 0xbfc999999999999a 0x3ff0000000000000 = 0x3fe999999999999a ++faddd 0xbfc999999999999a 0xbff0000000000000 = 0xbff3333333333333 ++faddd 0xbfc999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++faddd 0xbfc999999999999a 0xbfb999999999999a = 0xbfd3333333333334 ++faddd 0xbfc999999999999a 0x3fc999999999999a = 0x0 ++faddd 0xbfc999999999999a 0xbfc999999999999a = 0xbfd999999999999a ++faddd 0xbfc999999999999a 0x4008000000000000 = 0x4006666666666666 ++faddd 0xbfc999999999999a 0xc008000000000000 = 0xc00999999999999a ++faddd 0xbfc999999999999a 0x4014000000000000 = 0x4013333333333333 ++faddd 0xbfc999999999999a 0xc014000000000000 = 0xc014cccccccccccd ++faddd 0xbfc999999999999a 0x4197d78400000000 = 0x4197d783ff333333 ++faddd 0xbfc999999999999a 0xc197d78400000000 = 0xc197d78400cccccd ++faddd 0x4008000000000000 0x0 = 0x4008000000000000 ++faddd 0x4008000000000000 0x8000000000000000 = 0x4008000000000000 ++faddd 0x4008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x4008000000000000 0x123456789abcdef0 = 0x4008000000000000 ++faddd 0x4008000000000000 0x3ff0000000000000 = 0x4010000000000000 ++faddd 0x4008000000000000 0xbff0000000000000 = 0x4000000000000000 ++faddd 0x4008000000000000 0x3fb999999999999a = 0x4008cccccccccccd ++faddd 0x4008000000000000 0xbfb999999999999a = 0x4007333333333333 ++faddd 0x4008000000000000 0x3fc999999999999a = 0x400999999999999a ++faddd 0x4008000000000000 0xbfc999999999999a = 0x4006666666666666 ++faddd 0x4008000000000000 0x4008000000000000 = 0x4018000000000000 ++faddd 0x4008000000000000 0xc008000000000000 = 0x0 ++faddd 0x4008000000000000 0x4014000000000000 = 0x4020000000000000 ++faddd 0x4008000000000000 0xc014000000000000 = 0xc000000000000000 ++faddd 0x4008000000000000 0x4197d78400000000 = 0x4197d7840c000000 ++faddd 0x4008000000000000 0xc197d78400000000 = 0xc197d783f4000000 ++faddd 0xc008000000000000 0x0 = 0xc008000000000000 ++faddd 0xc008000000000000 0x8000000000000000 = 0xc008000000000000 ++faddd 0xc008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0xc008000000000000 0x123456789abcdef0 = 0xc008000000000000 ++faddd 0xc008000000000000 0x3ff0000000000000 = 0xc000000000000000 ++faddd 0xc008000000000000 0xbff0000000000000 = 0xc010000000000000 ++faddd 0xc008000000000000 0x3fb999999999999a = 0xc007333333333333 ++faddd 0xc008000000000000 0xbfb999999999999a = 0xc008cccccccccccd ++faddd 0xc008000000000000 0x3fc999999999999a = 0xc006666666666666 ++faddd 0xc008000000000000 0xbfc999999999999a = 0xc00999999999999a ++faddd 0xc008000000000000 0x4008000000000000 = 0x0 ++faddd 0xc008000000000000 0xc008000000000000 = 0xc018000000000000 ++faddd 0xc008000000000000 0x4014000000000000 = 0x4000000000000000 ++faddd 0xc008000000000000 0xc014000000000000 = 0xc020000000000000 ++faddd 0xc008000000000000 0x4197d78400000000 = 0x4197d783f4000000 ++faddd 0xc008000000000000 0xc197d78400000000 = 0xc197d7840c000000 ++faddd 0x4014000000000000 0x0 = 0x4014000000000000 ++faddd 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++faddd 0x4014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x4014000000000000 0x123456789abcdef0 = 0x4014000000000000 ++faddd 0x4014000000000000 0x3ff0000000000000 = 0x4018000000000000 ++faddd 0x4014000000000000 0xbff0000000000000 = 0x4010000000000000 ++faddd 0x4014000000000000 0x3fb999999999999a = 0x4014666666666666 ++faddd 0x4014000000000000 0xbfb999999999999a = 0x401399999999999a ++faddd 0x4014000000000000 0x3fc999999999999a = 0x4014cccccccccccd ++faddd 0x4014000000000000 0xbfc999999999999a = 0x4013333333333333 ++faddd 0x4014000000000000 0x4008000000000000 = 0x4020000000000000 ++faddd 0x4014000000000000 0xc008000000000000 = 0x4000000000000000 ++faddd 0x4014000000000000 0x4014000000000000 = 0x4024000000000000 ++faddd 0x4014000000000000 0xc014000000000000 = 0x0 ++faddd 0x4014000000000000 0x4197d78400000000 = 0x4197d78414000000 ++faddd 0x4014000000000000 0xc197d78400000000 = 0xc197d783ec000000 ++faddd 0xc014000000000000 0x0 = 0xc014000000000000 ++faddd 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++faddd 0xc014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0xc014000000000000 0x123456789abcdef0 = 0xc014000000000000 ++faddd 0xc014000000000000 0x3ff0000000000000 = 0xc010000000000000 ++faddd 0xc014000000000000 0xbff0000000000000 = 0xc018000000000000 ++faddd 0xc014000000000000 0x3fb999999999999a = 0xc01399999999999a ++faddd 0xc014000000000000 0xbfb999999999999a = 0xc014666666666666 ++faddd 0xc014000000000000 0x3fc999999999999a = 0xc013333333333333 ++faddd 0xc014000000000000 0xbfc999999999999a = 0xc014cccccccccccd ++faddd 0xc014000000000000 0x4008000000000000 = 0xc000000000000000 ++faddd 0xc014000000000000 0xc008000000000000 = 0xc020000000000000 ++faddd 0xc014000000000000 0x4014000000000000 = 0x0 ++faddd 0xc014000000000000 0xc014000000000000 = 0xc024000000000000 ++faddd 0xc014000000000000 0x4197d78400000000 = 0x4197d783ec000000 ++faddd 0xc014000000000000 0xc197d78400000000 = 0xc197d78414000000 ++faddd 0x4197d78400000000 0x0 = 0x4197d78400000000 ++faddd 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++faddd 0x4197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x4197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++faddd 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78404000000 ++faddd 0x4197d78400000000 0xbff0000000000000 = 0x4197d783fc000000 ++faddd 0x4197d78400000000 0x3fb999999999999a = 0x4197d78400666666 ++faddd 0x4197d78400000000 0xbfb999999999999a = 0x4197d783ff99999a ++faddd 0x4197d78400000000 0x3fc999999999999a = 0x4197d78400cccccd ++faddd 0x4197d78400000000 0xbfc999999999999a = 0x4197d783ff333333 ++faddd 0x4197d78400000000 0x4008000000000000 = 0x4197d7840c000000 ++faddd 0x4197d78400000000 0xc008000000000000 = 0x4197d783f4000000 ++faddd 0x4197d78400000000 0x4014000000000000 = 0x4197d78414000000 ++faddd 0x4197d78400000000 0xc014000000000000 = 0x4197d783ec000000 ++faddd 0x4197d78400000000 0x4197d78400000000 = 0x41a7d78400000000 ++faddd 0x4197d78400000000 0xc197d78400000000 = 0x0 ++faddd 0xc197d78400000000 0x0 = 0xc197d78400000000 ++faddd 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++faddd 0xc197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0xc197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++faddd 0xc197d78400000000 0x3ff0000000000000 = 0xc197d783fc000000 ++faddd 0xc197d78400000000 0xbff0000000000000 = 0xc197d78404000000 ++faddd 0xc197d78400000000 0x3fb999999999999a = 0xc197d783ff99999a ++faddd 0xc197d78400000000 0xbfb999999999999a = 0xc197d78400666666 ++faddd 0xc197d78400000000 0x3fc999999999999a = 0xc197d783ff333333 ++faddd 0xc197d78400000000 0xbfc999999999999a = 0xc197d78400cccccd ++faddd 0xc197d78400000000 0x4008000000000000 = 0xc197d783f4000000 ++faddd 0xc197d78400000000 0xc008000000000000 = 0xc197d7840c000000 ++faddd 0xc197d78400000000 0x4014000000000000 = 0xc197d783ec000000 ++faddd 0xc197d78400000000 0xc014000000000000 = 0xc197d78414000000 ++faddd 0xc197d78400000000 0x4197d78400000000 = 0x0 ++faddd 0xc197d78400000000 0xc197d78400000000 = 0xc1a7d78400000000 ++=== Running test on fsubs=== ++fsubs 0x0 0x0 = 0x0 ++fsubs 0x0 0x8000000000000000 = 0x0 ++fsubs 0x0 0x3ff0000000000000 = 0xbff0000000000000 ++fsubs 0x0 0xbff0000000000000 = 0x3ff0000000000000 ++fsubs 0x0 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fsubs 0x0 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fsubs 0x0 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fsubs 0x0 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fsubs 0x0 0x4008000000000000 = 0xc008000000000000 ++fsubs 0x0 0xc008000000000000 = 0x4008000000000000 ++fsubs 0x0 0x4014000000000000 = 0xc014000000000000 ++fsubs 0x0 0xc014000000000000 = 0x4014000000000000 ++fsubs 0x0 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0x0 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0x8000000000000000 0x0 = 0x8000000000000000 ++fsubs 0x8000000000000000 0x8000000000000000 = 0x0 ++fsubs 0x8000000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fsubs 0x8000000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fsubs 0x8000000000000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fsubs 0x8000000000000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fsubs 0x8000000000000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fsubs 0x8000000000000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fsubs 0x8000000000000000 0x4008000000000000 = 0xc008000000000000 ++fsubs 0x8000000000000000 0xc008000000000000 = 0x4008000000000000 ++fsubs 0x8000000000000000 0x4014000000000000 = 0xc014000000000000 ++fsubs 0x8000000000000000 0xc014000000000000 = 0x4014000000000000 ++fsubs 0x8000000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0x8000000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++fsubs 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++fsubs 0x3ff0000000000000 0x3ff0000000000000 = 0x0 ++fsubs 0x3ff0000000000000 0xbff0000000000000 = 0x4000000000000000 ++fsubs 0x3ff0000000000000 0x3fb99999a0000000 = 0x3fecccccc0000000 ++fsubs 0x3ff0000000000000 0xbfb99999a0000000 = 0x3ff19999a0000000 ++fsubs 0x3ff0000000000000 0x3fc99999a0000000 = 0x3fe99999a0000000 ++fsubs 0x3ff0000000000000 0xbfc99999a0000000 = 0x3ff3333340000000 ++fsubs 0x3ff0000000000000 0x4008000000000000 = 0xc000000000000000 ++fsubs 0x3ff0000000000000 0xc008000000000000 = 0x4010000000000000 ++fsubs 0x3ff0000000000000 0x4014000000000000 = 0xc010000000000000 ++fsubs 0x3ff0000000000000 0xc014000000000000 = 0x4018000000000000 ++fsubs 0x3ff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0x3ff0000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0xbff0000000000000 0x0 = 0xbff0000000000000 ++fsubs 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++fsubs 0xbff0000000000000 0x3ff0000000000000 = 0xc000000000000000 ++fsubs 0xbff0000000000000 0xbff0000000000000 = 0x0 ++fsubs 0xbff0000000000000 0x3fb99999a0000000 = 0xbff19999a0000000 ++fsubs 0xbff0000000000000 0xbfb99999a0000000 = 0xbfecccccc0000000 ++fsubs 0xbff0000000000000 0x3fc99999a0000000 = 0xbff3333340000000 ++fsubs 0xbff0000000000000 0xbfc99999a0000000 = 0xbfe99999a0000000 ++fsubs 0xbff0000000000000 0x4008000000000000 = 0xc010000000000000 ++fsubs 0xbff0000000000000 0xc008000000000000 = 0x4000000000000000 ++fsubs 0xbff0000000000000 0x4014000000000000 = 0xc018000000000000 ++fsubs 0xbff0000000000000 0xc014000000000000 = 0x4010000000000000 ++fsubs 0xbff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0xbff0000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0x3fb99999a0000000 0x0 = 0x3fb99999a0000000 ++fsubs 0x3fb99999a0000000 0x8000000000000000 = 0x3fb99999a0000000 ++fsubs 0x3fb99999a0000000 0x3ff0000000000000 = 0xbfecccccc0000000 ++fsubs 0x3fb99999a0000000 0xbff0000000000000 = 0x3ff19999a0000000 ++fsubs 0x3fb99999a0000000 0x3fb99999a0000000 = 0x0 ++fsubs 0x3fb99999a0000000 0xbfb99999a0000000 = 0x3fc99999a0000000 ++fsubs 0x3fb99999a0000000 0x3fc99999a0000000 = 0xbfb99999a0000000 ++fsubs 0x3fb99999a0000000 0xbfc99999a0000000 = 0x3fd3333340000000 ++fsubs 0x3fb99999a0000000 0x4008000000000000 = 0xc007333340000000 ++fsubs 0x3fb99999a0000000 0xc008000000000000 = 0x4008ccccc0000000 ++fsubs 0x3fb99999a0000000 0x4014000000000000 = 0xc0139999a0000000 ++fsubs 0x3fb99999a0000000 0xc014000000000000 = 0x4014666660000000 ++fsubs 0x3fb99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0x3fb99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0xbfb99999a0000000 0x0 = 0xbfb99999a0000000 ++fsubs 0xbfb99999a0000000 0x8000000000000000 = 0xbfb99999a0000000 ++fsubs 0xbfb99999a0000000 0x3ff0000000000000 = 0xbff19999a0000000 ++fsubs 0xbfb99999a0000000 0xbff0000000000000 = 0x3fecccccc0000000 ++fsubs 0xbfb99999a0000000 0x3fb99999a0000000 = 0xbfc99999a0000000 ++fsubs 0xbfb99999a0000000 0xbfb99999a0000000 = 0x0 ++fsubs 0xbfb99999a0000000 0x3fc99999a0000000 = 0xbfd3333340000000 ++fsubs 0xbfb99999a0000000 0xbfc99999a0000000 = 0x3fb99999a0000000 ++fsubs 0xbfb99999a0000000 0x4008000000000000 = 0xc008ccccc0000000 ++fsubs 0xbfb99999a0000000 0xc008000000000000 = 0x4007333340000000 ++fsubs 0xbfb99999a0000000 0x4014000000000000 = 0xc014666660000000 ++fsubs 0xbfb99999a0000000 0xc014000000000000 = 0x40139999a0000000 ++fsubs 0xbfb99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0xbfb99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0x3fc99999a0000000 0x0 = 0x3fc99999a0000000 ++fsubs 0x3fc99999a0000000 0x8000000000000000 = 0x3fc99999a0000000 ++fsubs 0x3fc99999a0000000 0x3ff0000000000000 = 0xbfe99999a0000000 ++fsubs 0x3fc99999a0000000 0xbff0000000000000 = 0x3ff3333340000000 ++fsubs 0x3fc99999a0000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fsubs 0x3fc99999a0000000 0xbfb99999a0000000 = 0x3fd3333340000000 ++fsubs 0x3fc99999a0000000 0x3fc99999a0000000 = 0x0 ++fsubs 0x3fc99999a0000000 0xbfc99999a0000000 = 0x3fd99999a0000000 ++fsubs 0x3fc99999a0000000 0x4008000000000000 = 0xc006666660000000 ++fsubs 0x3fc99999a0000000 0xc008000000000000 = 0x40099999a0000000 ++fsubs 0x3fc99999a0000000 0x4014000000000000 = 0xc013333340000000 ++fsubs 0x3fc99999a0000000 0xc014000000000000 = 0x4014ccccc0000000 ++fsubs 0x3fc99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0x3fc99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0xbfc99999a0000000 0x0 = 0xbfc99999a0000000 ++fsubs 0xbfc99999a0000000 0x8000000000000000 = 0xbfc99999a0000000 ++fsubs 0xbfc99999a0000000 0x3ff0000000000000 = 0xbff3333340000000 ++fsubs 0xbfc99999a0000000 0xbff0000000000000 = 0x3fe99999a0000000 ++fsubs 0xbfc99999a0000000 0x3fb99999a0000000 = 0xbfd3333340000000 ++fsubs 0xbfc99999a0000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fsubs 0xbfc99999a0000000 0x3fc99999a0000000 = 0xbfd99999a0000000 ++fsubs 0xbfc99999a0000000 0xbfc99999a0000000 = 0x0 ++fsubs 0xbfc99999a0000000 0x4008000000000000 = 0xc0099999a0000000 ++fsubs 0xbfc99999a0000000 0xc008000000000000 = 0x4006666660000000 ++fsubs 0xbfc99999a0000000 0x4014000000000000 = 0xc014ccccc0000000 ++fsubs 0xbfc99999a0000000 0xc014000000000000 = 0x4013333340000000 ++fsubs 0xbfc99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0xbfc99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0x4008000000000000 0x0 = 0x4008000000000000 ++fsubs 0x4008000000000000 0x8000000000000000 = 0x4008000000000000 ++fsubs 0x4008000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fsubs 0x4008000000000000 0xbff0000000000000 = 0x4010000000000000 ++fsubs 0x4008000000000000 0x3fb99999a0000000 = 0x4007333340000000 ++fsubs 0x4008000000000000 0xbfb99999a0000000 = 0x4008ccccc0000000 ++fsubs 0x4008000000000000 0x3fc99999a0000000 = 0x4006666660000000 ++fsubs 0x4008000000000000 0xbfc99999a0000000 = 0x40099999a0000000 ++fsubs 0x4008000000000000 0x4008000000000000 = 0x0 ++fsubs 0x4008000000000000 0xc008000000000000 = 0x4018000000000000 ++fsubs 0x4008000000000000 0x4014000000000000 = 0xc000000000000000 ++fsubs 0x4008000000000000 0xc014000000000000 = 0x4020000000000000 ++fsubs 0x4008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0x4008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0xc008000000000000 0x0 = 0xc008000000000000 ++fsubs 0xc008000000000000 0x8000000000000000 = 0xc008000000000000 ++fsubs 0xc008000000000000 0x3ff0000000000000 = 0xc010000000000000 ++fsubs 0xc008000000000000 0xbff0000000000000 = 0xc000000000000000 ++fsubs 0xc008000000000000 0x3fb99999a0000000 = 0xc008ccccc0000000 ++fsubs 0xc008000000000000 0xbfb99999a0000000 = 0xc007333340000000 ++fsubs 0xc008000000000000 0x3fc99999a0000000 = 0xc0099999a0000000 ++fsubs 0xc008000000000000 0xbfc99999a0000000 = 0xc006666660000000 ++fsubs 0xc008000000000000 0x4008000000000000 = 0xc018000000000000 ++fsubs 0xc008000000000000 0xc008000000000000 = 0x0 ++fsubs 0xc008000000000000 0x4014000000000000 = 0xc020000000000000 ++fsubs 0xc008000000000000 0xc014000000000000 = 0x4000000000000000 ++fsubs 0xc008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0xc008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0x4014000000000000 0x0 = 0x4014000000000000 ++fsubs 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fsubs 0x4014000000000000 0x3ff0000000000000 = 0x4010000000000000 ++fsubs 0x4014000000000000 0xbff0000000000000 = 0x4018000000000000 ++fsubs 0x4014000000000000 0x3fb99999a0000000 = 0x40139999a0000000 ++fsubs 0x4014000000000000 0xbfb99999a0000000 = 0x4014666660000000 ++fsubs 0x4014000000000000 0x3fc99999a0000000 = 0x4013333340000000 ++fsubs 0x4014000000000000 0xbfc99999a0000000 = 0x4014ccccc0000000 ++fsubs 0x4014000000000000 0x4008000000000000 = 0x4000000000000000 ++fsubs 0x4014000000000000 0xc008000000000000 = 0x4020000000000000 ++fsubs 0x4014000000000000 0x4014000000000000 = 0x0 ++fsubs 0x4014000000000000 0xc014000000000000 = 0x4024000000000000 ++fsubs 0x4014000000000000 0x4197d78400000000 = 0xc197d783e0000000 ++fsubs 0x4014000000000000 0xc197d78400000000 = 0x4197d78420000000 ++fsubs 0xc014000000000000 0x0 = 0xc014000000000000 ++fsubs 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fsubs 0xc014000000000000 0x3ff0000000000000 = 0xc018000000000000 ++fsubs 0xc014000000000000 0xbff0000000000000 = 0xc010000000000000 ++fsubs 0xc014000000000000 0x3fb99999a0000000 = 0xc014666660000000 ++fsubs 0xc014000000000000 0xbfb99999a0000000 = 0xc0139999a0000000 ++fsubs 0xc014000000000000 0x3fc99999a0000000 = 0xc014ccccc0000000 ++fsubs 0xc014000000000000 0xbfc99999a0000000 = 0xc013333340000000 ++fsubs 0xc014000000000000 0x4008000000000000 = 0xc020000000000000 ++fsubs 0xc014000000000000 0xc008000000000000 = 0xc000000000000000 ++fsubs 0xc014000000000000 0x4014000000000000 = 0xc024000000000000 ++fsubs 0xc014000000000000 0xc014000000000000 = 0x0 ++fsubs 0xc014000000000000 0x4197d78400000000 = 0xc197d78420000000 ++fsubs 0xc014000000000000 0xc197d78400000000 = 0x4197d783e0000000 ++fsubs 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0x3fb99999a0000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0xbfb99999a0000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0x3fc99999a0000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0xbfc99999a0000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0x4008000000000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0xc008000000000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0x4014000000000000 = 0x4197d783e0000000 ++fsubs 0x4197d78400000000 0xc014000000000000 = 0x4197d78420000000 ++fsubs 0x4197d78400000000 0x4197d78400000000 = 0x0 ++fsubs 0x4197d78400000000 0xc197d78400000000 = 0x41a7d78400000000 ++fsubs 0xc197d78400000000 0x0 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0x3fb99999a0000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0xbfb99999a0000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0x3fc99999a0000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0xbfc99999a0000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0x4008000000000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0xc008000000000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0x4014000000000000 = 0xc197d78420000000 ++fsubs 0xc197d78400000000 0xc014000000000000 = 0xc197d783e0000000 ++fsubs 0xc197d78400000000 0x4197d78400000000 = 0xc1a7d78400000000 ++fsubs 0xc197d78400000000 0xc197d78400000000 = 0x0 ++=== Running test on fsubd=== ++fsubd 0x0 0x0 = 0x0 ++fsubd 0x0 0x8000000000000000 = 0x0 ++fsubd 0x0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x0 0x123456789abcdef0 = 0x923456789abcdef0 ++fsubd 0x0 0x3ff0000000000000 = 0xbff0000000000000 ++fsubd 0x0 0xbff0000000000000 = 0x3ff0000000000000 ++fsubd 0x0 0x3fb999999999999a = 0xbfb999999999999a ++fsubd 0x0 0xbfb999999999999a = 0x3fb999999999999a ++fsubd 0x0 0x3fc999999999999a = 0xbfc999999999999a ++fsubd 0x0 0xbfc999999999999a = 0x3fc999999999999a ++fsubd 0x0 0x4008000000000000 = 0xc008000000000000 ++fsubd 0x0 0xc008000000000000 = 0x4008000000000000 ++fsubd 0x0 0x4014000000000000 = 0xc014000000000000 ++fsubd 0x0 0xc014000000000000 = 0x4014000000000000 ++fsubd 0x0 0x4197d78400000000 = 0xc197d78400000000 ++fsubd 0x0 0xc197d78400000000 = 0x4197d78400000000 ++fsubd 0x8000000000000000 0x0 = 0x8000000000000000 ++fsubd 0x8000000000000000 0x8000000000000000 = 0x0 ++fsubd 0x8000000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x8000000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fsubd 0x8000000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fsubd 0x8000000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fsubd 0x8000000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fsubd 0x8000000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fsubd 0x8000000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fsubd 0x8000000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fsubd 0x8000000000000000 0x4008000000000000 = 0xc008000000000000 ++fsubd 0x8000000000000000 0xc008000000000000 = 0x4008000000000000 ++fsubd 0x8000000000000000 0x4014000000000000 = 0xc014000000000000 ++fsubd 0x8000000000000000 0xc014000000000000 = 0x4014000000000000 ++fsubd 0x8000000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubd 0x8000000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubd 0xf0debc9a78563412 0x0 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0x8000000000000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0xf0debc9a78563412 = 0x0 ++fsubd 0xf0debc9a78563412 0x123456789abcdef0 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0xbff0000000000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0x3fb999999999999a = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0xbfb999999999999a = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0x3fc999999999999a = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0xbfc999999999999a = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0x4008000000000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0xc008000000000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0x4014000000000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0xc014000000000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0x4197d78400000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0xc197d78400000000 = 0xf0debc9a78563412 ++fsubd 0x123456789abcdef0 0x0 = 0x123456789abcdef0 ++fsubd 0x123456789abcdef0 0x8000000000000000 = 0x123456789abcdef0 ++fsubd 0x123456789abcdef0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x123456789abcdef0 0x123456789abcdef0 = 0x0 ++fsubd 0x123456789abcdef0 0x3ff0000000000000 = 0xbff0000000000000 ++fsubd 0x123456789abcdef0 0xbff0000000000000 = 0x3ff0000000000000 ++fsubd 0x123456789abcdef0 0x3fb999999999999a = 0xbfb999999999999a ++fsubd 0x123456789abcdef0 0xbfb999999999999a = 0x3fb999999999999a ++fsubd 0x123456789abcdef0 0x3fc999999999999a = 0xbfc999999999999a ++fsubd 0x123456789abcdef0 0xbfc999999999999a = 0x3fc999999999999a ++fsubd 0x123456789abcdef0 0x4008000000000000 = 0xc008000000000000 ++fsubd 0x123456789abcdef0 0xc008000000000000 = 0x4008000000000000 ++fsubd 0x123456789abcdef0 0x4014000000000000 = 0xc014000000000000 ++fsubd 0x123456789abcdef0 0xc014000000000000 = 0x4014000000000000 ++fsubd 0x123456789abcdef0 0x4197d78400000000 = 0xc197d78400000000 ++fsubd 0x123456789abcdef0 0xc197d78400000000 = 0x4197d78400000000 ++fsubd 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++fsubd 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++fsubd 0x3ff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x3ff0000000000000 0x123456789abcdef0 = 0x3ff0000000000000 ++fsubd 0x3ff0000000000000 0x3ff0000000000000 = 0x0 ++fsubd 0x3ff0000000000000 0xbff0000000000000 = 0x4000000000000000 ++fsubd 0x3ff0000000000000 0x3fb999999999999a = 0x3feccccccccccccd ++fsubd 0x3ff0000000000000 0xbfb999999999999a = 0x3ff199999999999a ++fsubd 0x3ff0000000000000 0x3fc999999999999a = 0x3fe999999999999a ++fsubd 0x3ff0000000000000 0xbfc999999999999a = 0x3ff3333333333333 ++fsubd 0x3ff0000000000000 0x4008000000000000 = 0xc000000000000000 ++fsubd 0x3ff0000000000000 0xc008000000000000 = 0x4010000000000000 ++fsubd 0x3ff0000000000000 0x4014000000000000 = 0xc010000000000000 ++fsubd 0x3ff0000000000000 0xc014000000000000 = 0x4018000000000000 ++fsubd 0x3ff0000000000000 0x4197d78400000000 = 0xc197d783fc000000 ++fsubd 0x3ff0000000000000 0xc197d78400000000 = 0x4197d78404000000 ++fsubd 0xbff0000000000000 0x0 = 0xbff0000000000000 ++fsubd 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++fsubd 0xbff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0xbff0000000000000 0x123456789abcdef0 = 0xbff0000000000000 ++fsubd 0xbff0000000000000 0x3ff0000000000000 = 0xc000000000000000 ++fsubd 0xbff0000000000000 0xbff0000000000000 = 0x0 ++fsubd 0xbff0000000000000 0x3fb999999999999a = 0xbff199999999999a ++fsubd 0xbff0000000000000 0xbfb999999999999a = 0xbfeccccccccccccd ++fsubd 0xbff0000000000000 0x3fc999999999999a = 0xbff3333333333333 ++fsubd 0xbff0000000000000 0xbfc999999999999a = 0xbfe999999999999a ++fsubd 0xbff0000000000000 0x4008000000000000 = 0xc010000000000000 ++fsubd 0xbff0000000000000 0xc008000000000000 = 0x4000000000000000 ++fsubd 0xbff0000000000000 0x4014000000000000 = 0xc018000000000000 ++fsubd 0xbff0000000000000 0xc014000000000000 = 0x4010000000000000 ++fsubd 0xbff0000000000000 0x4197d78400000000 = 0xc197d78404000000 ++fsubd 0xbff0000000000000 0xc197d78400000000 = 0x4197d783fc000000 ++fsubd 0x3fb999999999999a 0x0 = 0x3fb999999999999a ++fsubd 0x3fb999999999999a 0x8000000000000000 = 0x3fb999999999999a ++fsubd 0x3fb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x3fb999999999999a 0x123456789abcdef0 = 0x3fb999999999999a ++fsubd 0x3fb999999999999a 0x3ff0000000000000 = 0xbfeccccccccccccd ++fsubd 0x3fb999999999999a 0xbff0000000000000 = 0x3ff199999999999a ++fsubd 0x3fb999999999999a 0x3fb999999999999a = 0x0 ++fsubd 0x3fb999999999999a 0xbfb999999999999a = 0x3fc999999999999a ++fsubd 0x3fb999999999999a 0x3fc999999999999a = 0xbfb999999999999a ++fsubd 0x3fb999999999999a 0xbfc999999999999a = 0x3fd3333333333334 ++fsubd 0x3fb999999999999a 0x4008000000000000 = 0xc007333333333333 ++fsubd 0x3fb999999999999a 0xc008000000000000 = 0x4008cccccccccccd ++fsubd 0x3fb999999999999a 0x4014000000000000 = 0xc01399999999999a ++fsubd 0x3fb999999999999a 0xc014000000000000 = 0x4014666666666666 ++fsubd 0x3fb999999999999a 0x4197d78400000000 = 0xc197d783ff99999a ++fsubd 0x3fb999999999999a 0xc197d78400000000 = 0x4197d78400666666 ++fsubd 0xbfb999999999999a 0x0 = 0xbfb999999999999a ++fsubd 0xbfb999999999999a 0x8000000000000000 = 0xbfb999999999999a ++fsubd 0xbfb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0xbfb999999999999a 0x123456789abcdef0 = 0xbfb999999999999a ++fsubd 0xbfb999999999999a 0x3ff0000000000000 = 0xbff199999999999a ++fsubd 0xbfb999999999999a 0xbff0000000000000 = 0x3feccccccccccccd ++fsubd 0xbfb999999999999a 0x3fb999999999999a = 0xbfc999999999999a ++fsubd 0xbfb999999999999a 0xbfb999999999999a = 0x0 ++fsubd 0xbfb999999999999a 0x3fc999999999999a = 0xbfd3333333333334 ++fsubd 0xbfb999999999999a 0xbfc999999999999a = 0x3fb999999999999a ++fsubd 0xbfb999999999999a 0x4008000000000000 = 0xc008cccccccccccd ++fsubd 0xbfb999999999999a 0xc008000000000000 = 0x4007333333333333 ++fsubd 0xbfb999999999999a 0x4014000000000000 = 0xc014666666666666 ++fsubd 0xbfb999999999999a 0xc014000000000000 = 0x401399999999999a ++fsubd 0xbfb999999999999a 0x4197d78400000000 = 0xc197d78400666666 ++fsubd 0xbfb999999999999a 0xc197d78400000000 = 0x4197d783ff99999a ++fsubd 0x3fc999999999999a 0x0 = 0x3fc999999999999a ++fsubd 0x3fc999999999999a 0x8000000000000000 = 0x3fc999999999999a ++fsubd 0x3fc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x3fc999999999999a 0x123456789abcdef0 = 0x3fc999999999999a ++fsubd 0x3fc999999999999a 0x3ff0000000000000 = 0xbfe999999999999a ++fsubd 0x3fc999999999999a 0xbff0000000000000 = 0x3ff3333333333333 ++fsubd 0x3fc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fsubd 0x3fc999999999999a 0xbfb999999999999a = 0x3fd3333333333334 ++fsubd 0x3fc999999999999a 0x3fc999999999999a = 0x0 ++fsubd 0x3fc999999999999a 0xbfc999999999999a = 0x3fd999999999999a ++fsubd 0x3fc999999999999a 0x4008000000000000 = 0xc006666666666666 ++fsubd 0x3fc999999999999a 0xc008000000000000 = 0x400999999999999a ++fsubd 0x3fc999999999999a 0x4014000000000000 = 0xc013333333333333 ++fsubd 0x3fc999999999999a 0xc014000000000000 = 0x4014cccccccccccd ++fsubd 0x3fc999999999999a 0x4197d78400000000 = 0xc197d783ff333333 ++fsubd 0x3fc999999999999a 0xc197d78400000000 = 0x4197d78400cccccd ++fsubd 0xbfc999999999999a 0x0 = 0xbfc999999999999a ++fsubd 0xbfc999999999999a 0x8000000000000000 = 0xbfc999999999999a ++fsubd 0xbfc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0xbfc999999999999a 0x123456789abcdef0 = 0xbfc999999999999a ++fsubd 0xbfc999999999999a 0x3ff0000000000000 = 0xbff3333333333333 ++fsubd 0xbfc999999999999a 0xbff0000000000000 = 0x3fe999999999999a ++fsubd 0xbfc999999999999a 0x3fb999999999999a = 0xbfd3333333333334 ++fsubd 0xbfc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fsubd 0xbfc999999999999a 0x3fc999999999999a = 0xbfd999999999999a ++fsubd 0xbfc999999999999a 0xbfc999999999999a = 0x0 ++fsubd 0xbfc999999999999a 0x4008000000000000 = 0xc00999999999999a ++fsubd 0xbfc999999999999a 0xc008000000000000 = 0x4006666666666666 ++fsubd 0xbfc999999999999a 0x4014000000000000 = 0xc014cccccccccccd ++fsubd 0xbfc999999999999a 0xc014000000000000 = 0x4013333333333333 ++fsubd 0xbfc999999999999a 0x4197d78400000000 = 0xc197d78400cccccd ++fsubd 0xbfc999999999999a 0xc197d78400000000 = 0x4197d783ff333333 ++fsubd 0x4008000000000000 0x0 = 0x4008000000000000 ++fsubd 0x4008000000000000 0x8000000000000000 = 0x4008000000000000 ++fsubd 0x4008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x4008000000000000 0x123456789abcdef0 = 0x4008000000000000 ++fsubd 0x4008000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fsubd 0x4008000000000000 0xbff0000000000000 = 0x4010000000000000 ++fsubd 0x4008000000000000 0x3fb999999999999a = 0x4007333333333333 ++fsubd 0x4008000000000000 0xbfb999999999999a = 0x4008cccccccccccd ++fsubd 0x4008000000000000 0x3fc999999999999a = 0x4006666666666666 ++fsubd 0x4008000000000000 0xbfc999999999999a = 0x400999999999999a ++fsubd 0x4008000000000000 0x4008000000000000 = 0x0 ++fsubd 0x4008000000000000 0xc008000000000000 = 0x4018000000000000 ++fsubd 0x4008000000000000 0x4014000000000000 = 0xc000000000000000 ++fsubd 0x4008000000000000 0xc014000000000000 = 0x4020000000000000 ++fsubd 0x4008000000000000 0x4197d78400000000 = 0xc197d783f4000000 ++fsubd 0x4008000000000000 0xc197d78400000000 = 0x4197d7840c000000 ++fsubd 0xc008000000000000 0x0 = 0xc008000000000000 ++fsubd 0xc008000000000000 0x8000000000000000 = 0xc008000000000000 ++fsubd 0xc008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0xc008000000000000 0x123456789abcdef0 = 0xc008000000000000 ++fsubd 0xc008000000000000 0x3ff0000000000000 = 0xc010000000000000 ++fsubd 0xc008000000000000 0xbff0000000000000 = 0xc000000000000000 ++fsubd 0xc008000000000000 0x3fb999999999999a = 0xc008cccccccccccd ++fsubd 0xc008000000000000 0xbfb999999999999a = 0xc007333333333333 ++fsubd 0xc008000000000000 0x3fc999999999999a = 0xc00999999999999a ++fsubd 0xc008000000000000 0xbfc999999999999a = 0xc006666666666666 ++fsubd 0xc008000000000000 0x4008000000000000 = 0xc018000000000000 ++fsubd 0xc008000000000000 0xc008000000000000 = 0x0 ++fsubd 0xc008000000000000 0x4014000000000000 = 0xc020000000000000 ++fsubd 0xc008000000000000 0xc014000000000000 = 0x4000000000000000 ++fsubd 0xc008000000000000 0x4197d78400000000 = 0xc197d7840c000000 ++fsubd 0xc008000000000000 0xc197d78400000000 = 0x4197d783f4000000 ++fsubd 0x4014000000000000 0x0 = 0x4014000000000000 ++fsubd 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fsubd 0x4014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x4014000000000000 0x123456789abcdef0 = 0x4014000000000000 ++fsubd 0x4014000000000000 0x3ff0000000000000 = 0x4010000000000000 ++fsubd 0x4014000000000000 0xbff0000000000000 = 0x4018000000000000 ++fsubd 0x4014000000000000 0x3fb999999999999a = 0x401399999999999a ++fsubd 0x4014000000000000 0xbfb999999999999a = 0x4014666666666666 ++fsubd 0x4014000000000000 0x3fc999999999999a = 0x4013333333333333 ++fsubd 0x4014000000000000 0xbfc999999999999a = 0x4014cccccccccccd ++fsubd 0x4014000000000000 0x4008000000000000 = 0x4000000000000000 ++fsubd 0x4014000000000000 0xc008000000000000 = 0x4020000000000000 ++fsubd 0x4014000000000000 0x4014000000000000 = 0x0 ++fsubd 0x4014000000000000 0xc014000000000000 = 0x4024000000000000 ++fsubd 0x4014000000000000 0x4197d78400000000 = 0xc197d783ec000000 ++fsubd 0x4014000000000000 0xc197d78400000000 = 0x4197d78414000000 ++fsubd 0xc014000000000000 0x0 = 0xc014000000000000 ++fsubd 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fsubd 0xc014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0xc014000000000000 0x123456789abcdef0 = 0xc014000000000000 ++fsubd 0xc014000000000000 0x3ff0000000000000 = 0xc018000000000000 ++fsubd 0xc014000000000000 0xbff0000000000000 = 0xc010000000000000 ++fsubd 0xc014000000000000 0x3fb999999999999a = 0xc014666666666666 ++fsubd 0xc014000000000000 0xbfb999999999999a = 0xc01399999999999a ++fsubd 0xc014000000000000 0x3fc999999999999a = 0xc014cccccccccccd ++fsubd 0xc014000000000000 0xbfc999999999999a = 0xc013333333333333 ++fsubd 0xc014000000000000 0x4008000000000000 = 0xc020000000000000 ++fsubd 0xc014000000000000 0xc008000000000000 = 0xc000000000000000 ++fsubd 0xc014000000000000 0x4014000000000000 = 0xc024000000000000 ++fsubd 0xc014000000000000 0xc014000000000000 = 0x0 ++fsubd 0xc014000000000000 0x4197d78400000000 = 0xc197d78414000000 ++fsubd 0xc014000000000000 0xc197d78400000000 = 0x4197d783ec000000 ++fsubd 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fsubd 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fsubd 0x4197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x4197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fsubd 0x4197d78400000000 0x3ff0000000000000 = 0x4197d783fc000000 ++fsubd 0x4197d78400000000 0xbff0000000000000 = 0x4197d78404000000 ++fsubd 0x4197d78400000000 0x3fb999999999999a = 0x4197d783ff99999a ++fsubd 0x4197d78400000000 0xbfb999999999999a = 0x4197d78400666666 ++fsubd 0x4197d78400000000 0x3fc999999999999a = 0x4197d783ff333333 ++fsubd 0x4197d78400000000 0xbfc999999999999a = 0x4197d78400cccccd ++fsubd 0x4197d78400000000 0x4008000000000000 = 0x4197d783f4000000 ++fsubd 0x4197d78400000000 0xc008000000000000 = 0x4197d7840c000000 ++fsubd 0x4197d78400000000 0x4014000000000000 = 0x4197d783ec000000 ++fsubd 0x4197d78400000000 0xc014000000000000 = 0x4197d78414000000 ++fsubd 0x4197d78400000000 0x4197d78400000000 = 0x0 ++fsubd 0x4197d78400000000 0xc197d78400000000 = 0x41a7d78400000000 ++fsubd 0xc197d78400000000 0x0 = 0xc197d78400000000 ++fsubd 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fsubd 0xc197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0xc197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fsubd 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78404000000 ++fsubd 0xc197d78400000000 0xbff0000000000000 = 0xc197d783fc000000 ++fsubd 0xc197d78400000000 0x3fb999999999999a = 0xc197d78400666666 ++fsubd 0xc197d78400000000 0xbfb999999999999a = 0xc197d783ff99999a ++fsubd 0xc197d78400000000 0x3fc999999999999a = 0xc197d78400cccccd ++fsubd 0xc197d78400000000 0xbfc999999999999a = 0xc197d783ff333333 ++fsubd 0xc197d78400000000 0x4008000000000000 = 0xc197d7840c000000 ++fsubd 0xc197d78400000000 0xc008000000000000 = 0xc197d783f4000000 ++fsubd 0xc197d78400000000 0x4014000000000000 = 0xc197d78414000000 ++fsubd 0xc197d78400000000 0xc014000000000000 = 0xc197d783ec000000 ++fsubd 0xc197d78400000000 0x4197d78400000000 = 0xc1a7d78400000000 ++fsubd 0xc197d78400000000 0xc197d78400000000 = 0x0 ++=== Running test on fmuls=== ++fmuls 0x0 0x0 = 0x0 ++fmuls 0x0 0x8000000000000000 = 0x8000000000000000 ++fmuls 0x0 0x3ff0000000000000 = 0x0 ++fmuls 0x0 0xbff0000000000000 = 0x8000000000000000 ++fmuls 0x0 0x3fb99999a0000000 = 0x0 ++fmuls 0x0 0xbfb99999a0000000 = 0x8000000000000000 ++fmuls 0x0 0x3fc99999a0000000 = 0x0 ++fmuls 0x0 0xbfc99999a0000000 = 0x8000000000000000 ++fmuls 0x0 0x4008000000000000 = 0x0 ++fmuls 0x0 0xc008000000000000 = 0x8000000000000000 ++fmuls 0x0 0x4014000000000000 = 0x0 ++fmuls 0x0 0xc014000000000000 = 0x8000000000000000 ++fmuls 0x0 0x4197d78400000000 = 0x0 ++fmuls 0x0 0xc197d78400000000 = 0x8000000000000000 ++fmuls 0x8000000000000000 0x0 = 0x8000000000000000 ++fmuls 0x8000000000000000 0x8000000000000000 = 0x0 ++fmuls 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fmuls 0x8000000000000000 0xbff0000000000000 = 0x0 ++fmuls 0x8000000000000000 0x3fb99999a0000000 = 0x8000000000000000 ++fmuls 0x8000000000000000 0xbfb99999a0000000 = 0x0 ++fmuls 0x8000000000000000 0x3fc99999a0000000 = 0x8000000000000000 ++fmuls 0x8000000000000000 0xbfc99999a0000000 = 0x0 ++fmuls 0x8000000000000000 0x4008000000000000 = 0x8000000000000000 ++fmuls 0x8000000000000000 0xc008000000000000 = 0x0 ++fmuls 0x8000000000000000 0x4014000000000000 = 0x8000000000000000 ++fmuls 0x8000000000000000 0xc014000000000000 = 0x0 ++fmuls 0x8000000000000000 0x4197d78400000000 = 0x8000000000000000 ++fmuls 0x8000000000000000 0xc197d78400000000 = 0x0 ++fmuls 0x3ff0000000000000 0x0 = 0x0 ++fmuls 0x3ff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fmuls 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fmuls 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmuls 0x3ff0000000000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fmuls 0x3ff0000000000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fmuls 0x3ff0000000000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fmuls 0x3ff0000000000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fmuls 0x3ff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fmuls 0x3ff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fmuls 0x3ff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fmuls 0x3ff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fmuls 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmuls 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fmuls 0xbff0000000000000 0x0 = 0x8000000000000000 ++fmuls 0xbff0000000000000 0x8000000000000000 = 0x0 ++fmuls 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fmuls 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmuls 0xbff0000000000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fmuls 0xbff0000000000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fmuls 0xbff0000000000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fmuls 0xbff0000000000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fmuls 0xbff0000000000000 0x4008000000000000 = 0xc008000000000000 ++fmuls 0xbff0000000000000 0xc008000000000000 = 0x4008000000000000 ++fmuls 0xbff0000000000000 0x4014000000000000 = 0xc014000000000000 ++fmuls 0xbff0000000000000 0xc014000000000000 = 0x4014000000000000 ++fmuls 0xbff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmuls 0xbff0000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fmuls 0x3fb99999a0000000 0x0 = 0x0 ++fmuls 0x3fb99999a0000000 0x8000000000000000 = 0x8000000000000000 ++fmuls 0x3fb99999a0000000 0x3ff0000000000000 = 0x3fb99999a0000000 ++fmuls 0x3fb99999a0000000 0xbff0000000000000 = 0xbfb99999a0000000 ++fmuls 0x3fb99999a0000000 0x3fb99999a0000000 = 0x3f847ae160000000 ++fmuls 0x3fb99999a0000000 0xbfb99999a0000000 = 0xbf847ae160000000 ++fmuls 0x3fb99999a0000000 0x3fc99999a0000000 = 0x3f947ae160000000 ++fmuls 0x3fb99999a0000000 0xbfc99999a0000000 = 0xbf947ae160000000 ++fmuls 0x3fb99999a0000000 0x4008000000000000 = 0x3fd3333340000000 ++fmuls 0x3fb99999a0000000 0xc008000000000000 = 0xbfd3333340000000 ++fmuls 0x3fb99999a0000000 0x4014000000000000 = 0x3fe0000000000000 ++fmuls 0x3fb99999a0000000 0xc014000000000000 = 0xbfe0000000000000 ++fmuls 0x3fb99999a0000000 0x4197d78400000000 = 0x416312d000000000 ++fmuls 0x3fb99999a0000000 0xc197d78400000000 = 0xc16312d000000000 ++fmuls 0xbfb99999a0000000 0x0 = 0x8000000000000000 ++fmuls 0xbfb99999a0000000 0x8000000000000000 = 0x0 ++fmuls 0xbfb99999a0000000 0x3ff0000000000000 = 0xbfb99999a0000000 ++fmuls 0xbfb99999a0000000 0xbff0000000000000 = 0x3fb99999a0000000 ++fmuls 0xbfb99999a0000000 0x3fb99999a0000000 = 0xbf847ae160000000 ++fmuls 0xbfb99999a0000000 0xbfb99999a0000000 = 0x3f847ae160000000 ++fmuls 0xbfb99999a0000000 0x3fc99999a0000000 = 0xbf947ae160000000 ++fmuls 0xbfb99999a0000000 0xbfc99999a0000000 = 0x3f947ae160000000 ++fmuls 0xbfb99999a0000000 0x4008000000000000 = 0xbfd3333340000000 ++fmuls 0xbfb99999a0000000 0xc008000000000000 = 0x3fd3333340000000 ++fmuls 0xbfb99999a0000000 0x4014000000000000 = 0xbfe0000000000000 ++fmuls 0xbfb99999a0000000 0xc014000000000000 = 0x3fe0000000000000 ++fmuls 0xbfb99999a0000000 0x4197d78400000000 = 0xc16312d000000000 ++fmuls 0xbfb99999a0000000 0xc197d78400000000 = 0x416312d000000000 ++fmuls 0x3fc99999a0000000 0x0 = 0x0 ++fmuls 0x3fc99999a0000000 0x8000000000000000 = 0x8000000000000000 ++fmuls 0x3fc99999a0000000 0x3ff0000000000000 = 0x3fc99999a0000000 ++fmuls 0x3fc99999a0000000 0xbff0000000000000 = 0xbfc99999a0000000 ++fmuls 0x3fc99999a0000000 0x3fb99999a0000000 = 0x3f947ae160000000 ++fmuls 0x3fc99999a0000000 0xbfb99999a0000000 = 0xbf947ae160000000 ++fmuls 0x3fc99999a0000000 0x3fc99999a0000000 = 0x3fa47ae160000000 ++fmuls 0x3fc99999a0000000 0xbfc99999a0000000 = 0xbfa47ae160000000 ++fmuls 0x3fc99999a0000000 0x4008000000000000 = 0x3fe3333340000000 ++fmuls 0x3fc99999a0000000 0xc008000000000000 = 0xbfe3333340000000 ++fmuls 0x3fc99999a0000000 0x4014000000000000 = 0x3ff0000000000000 ++fmuls 0x3fc99999a0000000 0xc014000000000000 = 0xbff0000000000000 ++fmuls 0x3fc99999a0000000 0x4197d78400000000 = 0x417312d000000000 ++fmuls 0x3fc99999a0000000 0xc197d78400000000 = 0xc17312d000000000 ++fmuls 0xbfc99999a0000000 0x0 = 0x8000000000000000 ++fmuls 0xbfc99999a0000000 0x8000000000000000 = 0x0 ++fmuls 0xbfc99999a0000000 0x3ff0000000000000 = 0xbfc99999a0000000 ++fmuls 0xbfc99999a0000000 0xbff0000000000000 = 0x3fc99999a0000000 ++fmuls 0xbfc99999a0000000 0x3fb99999a0000000 = 0xbf947ae160000000 ++fmuls 0xbfc99999a0000000 0xbfb99999a0000000 = 0x3f947ae160000000 ++fmuls 0xbfc99999a0000000 0x3fc99999a0000000 = 0xbfa47ae160000000 ++fmuls 0xbfc99999a0000000 0xbfc99999a0000000 = 0x3fa47ae160000000 ++fmuls 0xbfc99999a0000000 0x4008000000000000 = 0xbfe3333340000000 ++fmuls 0xbfc99999a0000000 0xc008000000000000 = 0x3fe3333340000000 ++fmuls 0xbfc99999a0000000 0x4014000000000000 = 0xbff0000000000000 ++fmuls 0xbfc99999a0000000 0xc014000000000000 = 0x3ff0000000000000 ++fmuls 0xbfc99999a0000000 0x4197d78400000000 = 0xc17312d000000000 ++fmuls 0xbfc99999a0000000 0xc197d78400000000 = 0x417312d000000000 ++fmuls 0x4008000000000000 0x0 = 0x0 ++fmuls 0x4008000000000000 0x8000000000000000 = 0x8000000000000000 ++fmuls 0x4008000000000000 0x3ff0000000000000 = 0x4008000000000000 ++fmuls 0x4008000000000000 0xbff0000000000000 = 0xc008000000000000 ++fmuls 0x4008000000000000 0x3fb99999a0000000 = 0x3fd3333340000000 ++fmuls 0x4008000000000000 0xbfb99999a0000000 = 0xbfd3333340000000 ++fmuls 0x4008000000000000 0x3fc99999a0000000 = 0x3fe3333340000000 ++fmuls 0x4008000000000000 0xbfc99999a0000000 = 0xbfe3333340000000 ++fmuls 0x4008000000000000 0x4008000000000000 = 0x4022000000000000 ++fmuls 0x4008000000000000 0xc008000000000000 = 0xc022000000000000 ++fmuls 0x4008000000000000 0x4014000000000000 = 0x402e000000000000 ++fmuls 0x4008000000000000 0xc014000000000000 = 0xc02e000000000000 ++fmuls 0x4008000000000000 0x4197d78400000000 = 0x41b1e1a300000000 ++fmuls 0x4008000000000000 0xc197d78400000000 = 0xc1b1e1a300000000 ++fmuls 0xc008000000000000 0x0 = 0x8000000000000000 ++fmuls 0xc008000000000000 0x8000000000000000 = 0x0 ++fmuls 0xc008000000000000 0x3ff0000000000000 = 0xc008000000000000 ++fmuls 0xc008000000000000 0xbff0000000000000 = 0x4008000000000000 ++fmuls 0xc008000000000000 0x3fb99999a0000000 = 0xbfd3333340000000 ++fmuls 0xc008000000000000 0xbfb99999a0000000 = 0x3fd3333340000000 ++fmuls 0xc008000000000000 0x3fc99999a0000000 = 0xbfe3333340000000 ++fmuls 0xc008000000000000 0xbfc99999a0000000 = 0x3fe3333340000000 ++fmuls 0xc008000000000000 0x4008000000000000 = 0xc022000000000000 ++fmuls 0xc008000000000000 0xc008000000000000 = 0x4022000000000000 ++fmuls 0xc008000000000000 0x4014000000000000 = 0xc02e000000000000 ++fmuls 0xc008000000000000 0xc014000000000000 = 0x402e000000000000 ++fmuls 0xc008000000000000 0x4197d78400000000 = 0xc1b1e1a300000000 ++fmuls 0xc008000000000000 0xc197d78400000000 = 0x41b1e1a300000000 ++fmuls 0x4014000000000000 0x0 = 0x0 ++fmuls 0x4014000000000000 0x8000000000000000 = 0x8000000000000000 ++fmuls 0x4014000000000000 0x3ff0000000000000 = 0x4014000000000000 ++fmuls 0x4014000000000000 0xbff0000000000000 = 0xc014000000000000 ++fmuls 0x4014000000000000 0x3fb99999a0000000 = 0x3fe0000000000000 ++fmuls 0x4014000000000000 0xbfb99999a0000000 = 0xbfe0000000000000 ++fmuls 0x4014000000000000 0x3fc99999a0000000 = 0x3ff0000000000000 ++fmuls 0x4014000000000000 0xbfc99999a0000000 = 0xbff0000000000000 ++fmuls 0x4014000000000000 0x4008000000000000 = 0x402e000000000000 ++fmuls 0x4014000000000000 0xc008000000000000 = 0xc02e000000000000 ++fmuls 0x4014000000000000 0x4014000000000000 = 0x4039000000000000 ++fmuls 0x4014000000000000 0xc014000000000000 = 0xc039000000000000 ++fmuls 0x4014000000000000 0x4197d78400000000 = 0x41bdcd6500000000 ++fmuls 0x4014000000000000 0xc197d78400000000 = 0xc1bdcd6500000000 ++fmuls 0xc014000000000000 0x0 = 0x8000000000000000 ++fmuls 0xc014000000000000 0x8000000000000000 = 0x0 ++fmuls 0xc014000000000000 0x3ff0000000000000 = 0xc014000000000000 ++fmuls 0xc014000000000000 0xbff0000000000000 = 0x4014000000000000 ++fmuls 0xc014000000000000 0x3fb99999a0000000 = 0xbfe0000000000000 ++fmuls 0xc014000000000000 0xbfb99999a0000000 = 0x3fe0000000000000 ++fmuls 0xc014000000000000 0x3fc99999a0000000 = 0xbff0000000000000 ++fmuls 0xc014000000000000 0xbfc99999a0000000 = 0x3ff0000000000000 ++fmuls 0xc014000000000000 0x4008000000000000 = 0xc02e000000000000 ++fmuls 0xc014000000000000 0xc008000000000000 = 0x402e000000000000 ++fmuls 0xc014000000000000 0x4014000000000000 = 0xc039000000000000 ++fmuls 0xc014000000000000 0xc014000000000000 = 0x4039000000000000 ++fmuls 0xc014000000000000 0x4197d78400000000 = 0xc1bdcd6500000000 ++fmuls 0xc014000000000000 0xc197d78400000000 = 0x41bdcd6500000000 ++fmuls 0x4197d78400000000 0x0 = 0x0 ++fmuls 0x4197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fmuls 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fmuls 0x4197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fmuls 0x4197d78400000000 0x3fb99999a0000000 = 0x416312d000000000 ++fmuls 0x4197d78400000000 0xbfb99999a0000000 = 0xc16312d000000000 ++fmuls 0x4197d78400000000 0x3fc99999a0000000 = 0x417312d000000000 ++fmuls 0x4197d78400000000 0xbfc99999a0000000 = 0xc17312d000000000 ++fmuls 0x4197d78400000000 0x4008000000000000 = 0x41b1e1a300000000 ++fmuls 0x4197d78400000000 0xc008000000000000 = 0xc1b1e1a300000000 ++fmuls 0x4197d78400000000 0x4014000000000000 = 0x41bdcd6500000000 ++fmuls 0x4197d78400000000 0xc014000000000000 = 0xc1bdcd6500000000 ++fmuls 0x4197d78400000000 0x4197d78400000000 = 0x4341c37940000000 ++fmuls 0x4197d78400000000 0xc197d78400000000 = 0xc341c37940000000 ++fmuls 0xc197d78400000000 0x0 = 0x8000000000000000 ++fmuls 0xc197d78400000000 0x8000000000000000 = 0x0 ++fmuls 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fmuls 0xc197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fmuls 0xc197d78400000000 0x3fb99999a0000000 = 0xc16312d000000000 ++fmuls 0xc197d78400000000 0xbfb99999a0000000 = 0x416312d000000000 ++fmuls 0xc197d78400000000 0x3fc99999a0000000 = 0xc17312d000000000 ++fmuls 0xc197d78400000000 0xbfc99999a0000000 = 0x417312d000000000 ++fmuls 0xc197d78400000000 0x4008000000000000 = 0xc1b1e1a300000000 ++fmuls 0xc197d78400000000 0xc008000000000000 = 0x41b1e1a300000000 ++fmuls 0xc197d78400000000 0x4014000000000000 = 0xc1bdcd6500000000 ++fmuls 0xc197d78400000000 0xc014000000000000 = 0x41bdcd6500000000 ++fmuls 0xc197d78400000000 0x4197d78400000000 = 0xc341c37940000000 ++fmuls 0xc197d78400000000 0xc197d78400000000 = 0x4341c37940000000 ++=== Running test on fmuld=== ++fmuld 0x0 0x0 = 0x0 ++fmuld 0x0 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x0 0xf0debc9a78563412 = 0x8000000000000000 ++fmuld 0x0 0x123456789abcdef0 = 0x0 ++fmuld 0x0 0x3ff0000000000000 = 0x0 ++fmuld 0x0 0xbff0000000000000 = 0x8000000000000000 ++fmuld 0x0 0x3fb999999999999a = 0x0 ++fmuld 0x0 0xbfb999999999999a = 0x8000000000000000 ++fmuld 0x0 0x3fc999999999999a = 0x0 ++fmuld 0x0 0xbfc999999999999a = 0x8000000000000000 ++fmuld 0x0 0x4008000000000000 = 0x0 ++fmuld 0x0 0xc008000000000000 = 0x8000000000000000 ++fmuld 0x0 0x4014000000000000 = 0x0 ++fmuld 0x0 0xc014000000000000 = 0x8000000000000000 ++fmuld 0x0 0x4197d78400000000 = 0x0 ++fmuld 0x0 0xc197d78400000000 = 0x8000000000000000 ++fmuld 0x8000000000000000 0x0 = 0x8000000000000000 ++fmuld 0x8000000000000000 0x8000000000000000 = 0x0 ++fmuld 0x8000000000000000 0xf0debc9a78563412 = 0x0 ++fmuld 0x8000000000000000 0x123456789abcdef0 = 0x8000000000000000 ++fmuld 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fmuld 0x8000000000000000 0xbff0000000000000 = 0x0 ++fmuld 0x8000000000000000 0x3fb999999999999a = 0x8000000000000000 ++fmuld 0x8000000000000000 0xbfb999999999999a = 0x0 ++fmuld 0x8000000000000000 0x3fc999999999999a = 0x8000000000000000 ++fmuld 0x8000000000000000 0xbfc999999999999a = 0x0 ++fmuld 0x8000000000000000 0x4008000000000000 = 0x8000000000000000 ++fmuld 0x8000000000000000 0xc008000000000000 = 0x0 ++fmuld 0x8000000000000000 0x4014000000000000 = 0x8000000000000000 ++fmuld 0x8000000000000000 0xc014000000000000 = 0x0 ++fmuld 0x8000000000000000 0x4197d78400000000 = 0x8000000000000000 ++fmuld 0x8000000000000000 0xc197d78400000000 = 0x0 ++fmuld 0xf0debc9a78563412 0x0 = 0x8000000000000000 ++fmuld 0xf0debc9a78563412 0x8000000000000000 = 0x0 ++fmuld 0xf0debc9a78563412 0xf0debc9a78563412 = 0x7ff0000000000000 ++fmuld 0xf0debc9a78563412 0x123456789abcdef0 = 0xc32388ef423d9d0c ++fmuld 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0debc9a78563412 ++fmuld 0xf0debc9a78563412 0xbff0000000000000 = 0x70debc9a78563412 ++fmuld 0xf0debc9a78563412 0x3fb999999999999a = 0xf0a896e1f9de900f ++fmuld 0xf0debc9a78563412 0xbfb999999999999a = 0x70a896e1f9de900f ++fmuld 0xf0debc9a78563412 0x3fc999999999999a = 0xf0b896e1f9de900f ++fmuld 0xf0debc9a78563412 0xbfc999999999999a = 0x70b896e1f9de900f ++fmuld 0xf0debc9a78563412 0x4008000000000000 = 0xf0f70d73da40a70e ++fmuld 0xf0debc9a78563412 0xc008000000000000 = 0x70f70d73da40a70e ++fmuld 0xf0debc9a78563412 0x4014000000000000 = 0xf10335e08b35e08b ++fmuld 0xf0debc9a78563412 0xc014000000000000 = 0x710335e08b35e08b ++fmuld 0xf0debc9a78563412 0x4197d78400000000 = 0xf286e690fe53a8fe ++fmuld 0xf0debc9a78563412 0xc197d78400000000 = 0x7286e690fe53a8fe ++fmuld 0x123456789abcdef0 0x0 = 0x0 ++fmuld 0x123456789abcdef0 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x123456789abcdef0 0xf0debc9a78563412 = 0xc32388ef423d9d0c ++fmuld 0x123456789abcdef0 0x123456789abcdef0 = 0x0 ++fmuld 0x123456789abcdef0 0x3ff0000000000000 = 0x123456789abcdef0 ++fmuld 0x123456789abcdef0 0xbff0000000000000 = 0x923456789abcdef0 ++fmuld 0x123456789abcdef0 0x3fb999999999999a = 0x1200452d489718c0 ++fmuld 0x123456789abcdef0 0xbfb999999999999a = 0x9200452d489718c0 ++fmuld 0x123456789abcdef0 0x3fc999999999999a = 0x1210452d489718c0 ++fmuld 0x123456789abcdef0 0xbfc999999999999a = 0x9210452d489718c0 ++fmuld 0x123456789abcdef0 0x4008000000000000 = 0x124e81b4e81b4e68 ++fmuld 0x123456789abcdef0 0xc008000000000000 = 0x924e81b4e81b4e68 ++fmuld 0x123456789abcdef0 0x4014000000000000 = 0x12596c16c16c16ac ++fmuld 0x123456789abcdef0 0xc014000000000000 = 0x92596c16c16c16ac ++fmuld 0x123456789abcdef0 0x4197d78400000000 = 0x13de4e3f1c71c703 ++fmuld 0x123456789abcdef0 0xc197d78400000000 = 0x93de4e3f1c71c703 ++fmuld 0x3ff0000000000000 0x0 = 0x0 ++fmuld 0x3ff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmuld 0x3ff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fmuld 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fmuld 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmuld 0x3ff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fmuld 0x3ff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fmuld 0x3ff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fmuld 0x3ff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fmuld 0x3ff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fmuld 0x3ff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fmuld 0x3ff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fmuld 0x3ff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fmuld 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmuld 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fmuld 0xbff0000000000000 0x0 = 0x8000000000000000 ++fmuld 0xbff0000000000000 0x8000000000000000 = 0x0 ++fmuld 0xbff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmuld 0xbff0000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fmuld 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fmuld 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmuld 0xbff0000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fmuld 0xbff0000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fmuld 0xbff0000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fmuld 0xbff0000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fmuld 0xbff0000000000000 0x4008000000000000 = 0xc008000000000000 ++fmuld 0xbff0000000000000 0xc008000000000000 = 0x4008000000000000 ++fmuld 0xbff0000000000000 0x4014000000000000 = 0xc014000000000000 ++fmuld 0xbff0000000000000 0xc014000000000000 = 0x4014000000000000 ++fmuld 0xbff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmuld 0xbff0000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fmuld 0x3fb999999999999a 0x0 = 0x0 ++fmuld 0x3fb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0a896e1f9de900f ++fmuld 0x3fb999999999999a 0x123456789abcdef0 = 0x1200452d489718c0 ++fmuld 0x3fb999999999999a 0x3ff0000000000000 = 0x3fb999999999999a ++fmuld 0x3fb999999999999a 0xbff0000000000000 = 0xbfb999999999999a ++fmuld 0x3fb999999999999a 0x3fb999999999999a = 0x3f847ae147ae147c ++fmuld 0x3fb999999999999a 0xbfb999999999999a = 0xbf847ae147ae147c ++fmuld 0x3fb999999999999a 0x3fc999999999999a = 0x3f947ae147ae147c ++fmuld 0x3fb999999999999a 0xbfc999999999999a = 0xbf947ae147ae147c ++fmuld 0x3fb999999999999a 0x4008000000000000 = 0x3fd3333333333334 ++fmuld 0x3fb999999999999a 0xc008000000000000 = 0xbfd3333333333334 ++fmuld 0x3fb999999999999a 0x4014000000000000 = 0x3fe0000000000000 ++fmuld 0x3fb999999999999a 0xc014000000000000 = 0xbfe0000000000000 ++fmuld 0x3fb999999999999a 0x4197d78400000000 = 0x416312d000000000 ++fmuld 0x3fb999999999999a 0xc197d78400000000 = 0xc16312d000000000 ++fmuld 0xbfb999999999999a 0x0 = 0x8000000000000000 ++fmuld 0xbfb999999999999a 0x8000000000000000 = 0x0 ++fmuld 0xbfb999999999999a 0xf0debc9a78563412 = 0x70a896e1f9de900f ++fmuld 0xbfb999999999999a 0x123456789abcdef0 = 0x9200452d489718c0 ++fmuld 0xbfb999999999999a 0x3ff0000000000000 = 0xbfb999999999999a ++fmuld 0xbfb999999999999a 0xbff0000000000000 = 0x3fb999999999999a ++fmuld 0xbfb999999999999a 0x3fb999999999999a = 0xbf847ae147ae147c ++fmuld 0xbfb999999999999a 0xbfb999999999999a = 0x3f847ae147ae147c ++fmuld 0xbfb999999999999a 0x3fc999999999999a = 0xbf947ae147ae147c ++fmuld 0xbfb999999999999a 0xbfc999999999999a = 0x3f947ae147ae147c ++fmuld 0xbfb999999999999a 0x4008000000000000 = 0xbfd3333333333334 ++fmuld 0xbfb999999999999a 0xc008000000000000 = 0x3fd3333333333334 ++fmuld 0xbfb999999999999a 0x4014000000000000 = 0xbfe0000000000000 ++fmuld 0xbfb999999999999a 0xc014000000000000 = 0x3fe0000000000000 ++fmuld 0xbfb999999999999a 0x4197d78400000000 = 0xc16312d000000000 ++fmuld 0xbfb999999999999a 0xc197d78400000000 = 0x416312d000000000 ++fmuld 0x3fc999999999999a 0x0 = 0x0 ++fmuld 0x3fc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0b896e1f9de900f ++fmuld 0x3fc999999999999a 0x123456789abcdef0 = 0x1210452d489718c0 ++fmuld 0x3fc999999999999a 0x3ff0000000000000 = 0x3fc999999999999a ++fmuld 0x3fc999999999999a 0xbff0000000000000 = 0xbfc999999999999a ++fmuld 0x3fc999999999999a 0x3fb999999999999a = 0x3f947ae147ae147c ++fmuld 0x3fc999999999999a 0xbfb999999999999a = 0xbf947ae147ae147c ++fmuld 0x3fc999999999999a 0x3fc999999999999a = 0x3fa47ae147ae147c ++fmuld 0x3fc999999999999a 0xbfc999999999999a = 0xbfa47ae147ae147c ++fmuld 0x3fc999999999999a 0x4008000000000000 = 0x3fe3333333333334 ++fmuld 0x3fc999999999999a 0xc008000000000000 = 0xbfe3333333333334 ++fmuld 0x3fc999999999999a 0x4014000000000000 = 0x3ff0000000000000 ++fmuld 0x3fc999999999999a 0xc014000000000000 = 0xbff0000000000000 ++fmuld 0x3fc999999999999a 0x4197d78400000000 = 0x417312d000000000 ++fmuld 0x3fc999999999999a 0xc197d78400000000 = 0xc17312d000000000 ++fmuld 0xbfc999999999999a 0x0 = 0x8000000000000000 ++fmuld 0xbfc999999999999a 0x8000000000000000 = 0x0 ++fmuld 0xbfc999999999999a 0xf0debc9a78563412 = 0x70b896e1f9de900f ++fmuld 0xbfc999999999999a 0x123456789abcdef0 = 0x9210452d489718c0 ++fmuld 0xbfc999999999999a 0x3ff0000000000000 = 0xbfc999999999999a ++fmuld 0xbfc999999999999a 0xbff0000000000000 = 0x3fc999999999999a ++fmuld 0xbfc999999999999a 0x3fb999999999999a = 0xbf947ae147ae147c ++fmuld 0xbfc999999999999a 0xbfb999999999999a = 0x3f947ae147ae147c ++fmuld 0xbfc999999999999a 0x3fc999999999999a = 0xbfa47ae147ae147c ++fmuld 0xbfc999999999999a 0xbfc999999999999a = 0x3fa47ae147ae147c ++fmuld 0xbfc999999999999a 0x4008000000000000 = 0xbfe3333333333334 ++fmuld 0xbfc999999999999a 0xc008000000000000 = 0x3fe3333333333334 ++fmuld 0xbfc999999999999a 0x4014000000000000 = 0xbff0000000000000 ++fmuld 0xbfc999999999999a 0xc014000000000000 = 0x3ff0000000000000 ++fmuld 0xbfc999999999999a 0x4197d78400000000 = 0xc17312d000000000 ++fmuld 0xbfc999999999999a 0xc197d78400000000 = 0x417312d000000000 ++fmuld 0x4008000000000000 0x0 = 0x0 ++fmuld 0x4008000000000000 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x4008000000000000 0xf0debc9a78563412 = 0xf0f70d73da40a70e ++fmuld 0x4008000000000000 0x123456789abcdef0 = 0x124e81b4e81b4e68 ++fmuld 0x4008000000000000 0x3ff0000000000000 = 0x4008000000000000 ++fmuld 0x4008000000000000 0xbff0000000000000 = 0xc008000000000000 ++fmuld 0x4008000000000000 0x3fb999999999999a = 0x3fd3333333333334 ++fmuld 0x4008000000000000 0xbfb999999999999a = 0xbfd3333333333334 ++fmuld 0x4008000000000000 0x3fc999999999999a = 0x3fe3333333333334 ++fmuld 0x4008000000000000 0xbfc999999999999a = 0xbfe3333333333334 ++fmuld 0x4008000000000000 0x4008000000000000 = 0x4022000000000000 ++fmuld 0x4008000000000000 0xc008000000000000 = 0xc022000000000000 ++fmuld 0x4008000000000000 0x4014000000000000 = 0x402e000000000000 ++fmuld 0x4008000000000000 0xc014000000000000 = 0xc02e000000000000 ++fmuld 0x4008000000000000 0x4197d78400000000 = 0x41b1e1a300000000 ++fmuld 0x4008000000000000 0xc197d78400000000 = 0xc1b1e1a300000000 ++fmuld 0xc008000000000000 0x0 = 0x8000000000000000 ++fmuld 0xc008000000000000 0x8000000000000000 = 0x0 ++fmuld 0xc008000000000000 0xf0debc9a78563412 = 0x70f70d73da40a70e ++fmuld 0xc008000000000000 0x123456789abcdef0 = 0x924e81b4e81b4e68 ++fmuld 0xc008000000000000 0x3ff0000000000000 = 0xc008000000000000 ++fmuld 0xc008000000000000 0xbff0000000000000 = 0x4008000000000000 ++fmuld 0xc008000000000000 0x3fb999999999999a = 0xbfd3333333333334 ++fmuld 0xc008000000000000 0xbfb999999999999a = 0x3fd3333333333334 ++fmuld 0xc008000000000000 0x3fc999999999999a = 0xbfe3333333333334 ++fmuld 0xc008000000000000 0xbfc999999999999a = 0x3fe3333333333334 ++fmuld 0xc008000000000000 0x4008000000000000 = 0xc022000000000000 ++fmuld 0xc008000000000000 0xc008000000000000 = 0x4022000000000000 ++fmuld 0xc008000000000000 0x4014000000000000 = 0xc02e000000000000 ++fmuld 0xc008000000000000 0xc014000000000000 = 0x402e000000000000 ++fmuld 0xc008000000000000 0x4197d78400000000 = 0xc1b1e1a300000000 ++fmuld 0xc008000000000000 0xc197d78400000000 = 0x41b1e1a300000000 ++fmuld 0x4014000000000000 0x0 = 0x0 ++fmuld 0x4014000000000000 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x4014000000000000 0xf0debc9a78563412 = 0xf10335e08b35e08b ++fmuld 0x4014000000000000 0x123456789abcdef0 = 0x12596c16c16c16ac ++fmuld 0x4014000000000000 0x3ff0000000000000 = 0x4014000000000000 ++fmuld 0x4014000000000000 0xbff0000000000000 = 0xc014000000000000 ++fmuld 0x4014000000000000 0x3fb999999999999a = 0x3fe0000000000000 ++fmuld 0x4014000000000000 0xbfb999999999999a = 0xbfe0000000000000 ++fmuld 0x4014000000000000 0x3fc999999999999a = 0x3ff0000000000000 ++fmuld 0x4014000000000000 0xbfc999999999999a = 0xbff0000000000000 ++fmuld 0x4014000000000000 0x4008000000000000 = 0x402e000000000000 ++fmuld 0x4014000000000000 0xc008000000000000 = 0xc02e000000000000 ++fmuld 0x4014000000000000 0x4014000000000000 = 0x4039000000000000 ++fmuld 0x4014000000000000 0xc014000000000000 = 0xc039000000000000 ++fmuld 0x4014000000000000 0x4197d78400000000 = 0x41bdcd6500000000 ++fmuld 0x4014000000000000 0xc197d78400000000 = 0xc1bdcd6500000000 ++fmuld 0xc014000000000000 0x0 = 0x8000000000000000 ++fmuld 0xc014000000000000 0x8000000000000000 = 0x0 ++fmuld 0xc014000000000000 0xf0debc9a78563412 = 0x710335e08b35e08b ++fmuld 0xc014000000000000 0x123456789abcdef0 = 0x92596c16c16c16ac ++fmuld 0xc014000000000000 0x3ff0000000000000 = 0xc014000000000000 ++fmuld 0xc014000000000000 0xbff0000000000000 = 0x4014000000000000 ++fmuld 0xc014000000000000 0x3fb999999999999a = 0xbfe0000000000000 ++fmuld 0xc014000000000000 0xbfb999999999999a = 0x3fe0000000000000 ++fmuld 0xc014000000000000 0x3fc999999999999a = 0xbff0000000000000 ++fmuld 0xc014000000000000 0xbfc999999999999a = 0x3ff0000000000000 ++fmuld 0xc014000000000000 0x4008000000000000 = 0xc02e000000000000 ++fmuld 0xc014000000000000 0xc008000000000000 = 0x402e000000000000 ++fmuld 0xc014000000000000 0x4014000000000000 = 0xc039000000000000 ++fmuld 0xc014000000000000 0xc014000000000000 = 0x4039000000000000 ++fmuld 0xc014000000000000 0x4197d78400000000 = 0xc1bdcd6500000000 ++fmuld 0xc014000000000000 0xc197d78400000000 = 0x41bdcd6500000000 ++fmuld 0x4197d78400000000 0x0 = 0x0 ++fmuld 0x4197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x4197d78400000000 0xf0debc9a78563412 = 0xf286e690fe53a8fe ++fmuld 0x4197d78400000000 0x123456789abcdef0 = 0x13de4e3f1c71c703 ++fmuld 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fmuld 0x4197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fmuld 0x4197d78400000000 0x3fb999999999999a = 0x416312d000000000 ++fmuld 0x4197d78400000000 0xbfb999999999999a = 0xc16312d000000000 ++fmuld 0x4197d78400000000 0x3fc999999999999a = 0x417312d000000000 ++fmuld 0x4197d78400000000 0xbfc999999999999a = 0xc17312d000000000 ++fmuld 0x4197d78400000000 0x4008000000000000 = 0x41b1e1a300000000 ++fmuld 0x4197d78400000000 0xc008000000000000 = 0xc1b1e1a300000000 ++fmuld 0x4197d78400000000 0x4014000000000000 = 0x41bdcd6500000000 ++fmuld 0x4197d78400000000 0xc014000000000000 = 0xc1bdcd6500000000 ++fmuld 0x4197d78400000000 0x4197d78400000000 = 0x4341c37937e08000 ++fmuld 0x4197d78400000000 0xc197d78400000000 = 0xc341c37937e08000 ++fmuld 0xc197d78400000000 0x0 = 0x8000000000000000 ++fmuld 0xc197d78400000000 0x8000000000000000 = 0x0 ++fmuld 0xc197d78400000000 0xf0debc9a78563412 = 0x7286e690fe53a8fe ++fmuld 0xc197d78400000000 0x123456789abcdef0 = 0x93de4e3f1c71c703 ++fmuld 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fmuld 0xc197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fmuld 0xc197d78400000000 0x3fb999999999999a = 0xc16312d000000000 ++fmuld 0xc197d78400000000 0xbfb999999999999a = 0x416312d000000000 ++fmuld 0xc197d78400000000 0x3fc999999999999a = 0xc17312d000000000 ++fmuld 0xc197d78400000000 0xbfc999999999999a = 0x417312d000000000 ++fmuld 0xc197d78400000000 0x4008000000000000 = 0xc1b1e1a300000000 ++fmuld 0xc197d78400000000 0xc008000000000000 = 0x41b1e1a300000000 ++fmuld 0xc197d78400000000 0x4014000000000000 = 0xc1bdcd6500000000 ++fmuld 0xc197d78400000000 0xc014000000000000 = 0x41bdcd6500000000 ++fmuld 0xc197d78400000000 0x4197d78400000000 = 0xc341c37937e08000 ++fmuld 0xc197d78400000000 0xc197d78400000000 = 0x4341c37937e08000 ++=== Running test on fdivs=== ++fdivs 0x0 0x0 = 0xfff8000000000000 ++fdivs 0x0 0x8000000000000000 = 0xfff8000000000000 ++fdivs 0x0 0x3ff0000000000000 = 0x0 ++fdivs 0x0 0xbff0000000000000 = 0x8000000000000000 ++fdivs 0x0 0x3fb99999a0000000 = 0x0 ++fdivs 0x0 0xbfb99999a0000000 = 0x8000000000000000 ++fdivs 0x0 0x3fc99999a0000000 = 0x0 ++fdivs 0x0 0xbfc99999a0000000 = 0x8000000000000000 ++fdivs 0x0 0x4008000000000000 = 0x0 ++fdivs 0x0 0xc008000000000000 = 0x8000000000000000 ++fdivs 0x0 0x4014000000000000 = 0x0 ++fdivs 0x0 0xc014000000000000 = 0x8000000000000000 ++fdivs 0x0 0x4197d78400000000 = 0x0 ++fdivs 0x0 0xc197d78400000000 = 0x8000000000000000 ++fdivs 0x8000000000000000 0x0 = 0xfff8000000000000 ++fdivs 0x8000000000000000 0x8000000000000000 = 0xfff8000000000000 ++fdivs 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fdivs 0x8000000000000000 0xbff0000000000000 = 0x0 ++fdivs 0x8000000000000000 0x3fb99999a0000000 = 0x8000000000000000 ++fdivs 0x8000000000000000 0xbfb99999a0000000 = 0x0 ++fdivs 0x8000000000000000 0x3fc99999a0000000 = 0x8000000000000000 ++fdivs 0x8000000000000000 0xbfc99999a0000000 = 0x0 ++fdivs 0x8000000000000000 0x4008000000000000 = 0x8000000000000000 ++fdivs 0x8000000000000000 0xc008000000000000 = 0x0 ++fdivs 0x8000000000000000 0x4014000000000000 = 0x8000000000000000 ++fdivs 0x8000000000000000 0xc014000000000000 = 0x0 ++fdivs 0x8000000000000000 0x4197d78400000000 = 0x8000000000000000 ++fdivs 0x8000000000000000 0xc197d78400000000 = 0x0 ++fdivs 0x3ff0000000000000 0x0 = 0x7ff0000000000000 ++fdivs 0x3ff0000000000000 0x8000000000000000 = 0xfff0000000000000 ++fdivs 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fdivs 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fdivs 0x3ff0000000000000 0x3fb99999a0000000 = 0x4024000000000000 ++fdivs 0x3ff0000000000000 0xbfb99999a0000000 = 0xc024000000000000 ++fdivs 0x3ff0000000000000 0x3fc99999a0000000 = 0x4014000000000000 ++fdivs 0x3ff0000000000000 0xbfc99999a0000000 = 0xc014000000000000 ++fdivs 0x3ff0000000000000 0x4008000000000000 = 0x3fd5555560000000 ++fdivs 0x3ff0000000000000 0xc008000000000000 = 0xbfd5555560000000 ++fdivs 0x3ff0000000000000 0x4014000000000000 = 0x3fc99999a0000000 ++fdivs 0x3ff0000000000000 0xc014000000000000 = 0xbfc99999a0000000 ++fdivs 0x3ff0000000000000 0x4197d78400000000 = 0x3e45798ee0000000 ++fdivs 0x3ff0000000000000 0xc197d78400000000 = 0xbe45798ee0000000 ++fdivs 0xbff0000000000000 0x0 = 0xfff0000000000000 ++fdivs 0xbff0000000000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivs 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fdivs 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fdivs 0xbff0000000000000 0x3fb99999a0000000 = 0xc024000000000000 ++fdivs 0xbff0000000000000 0xbfb99999a0000000 = 0x4024000000000000 ++fdivs 0xbff0000000000000 0x3fc99999a0000000 = 0xc014000000000000 ++fdivs 0xbff0000000000000 0xbfc99999a0000000 = 0x4014000000000000 ++fdivs 0xbff0000000000000 0x4008000000000000 = 0xbfd5555560000000 ++fdivs 0xbff0000000000000 0xc008000000000000 = 0x3fd5555560000000 ++fdivs 0xbff0000000000000 0x4014000000000000 = 0xbfc99999a0000000 ++fdivs 0xbff0000000000000 0xc014000000000000 = 0x3fc99999a0000000 ++fdivs 0xbff0000000000000 0x4197d78400000000 = 0xbe45798ee0000000 ++fdivs 0xbff0000000000000 0xc197d78400000000 = 0x3e45798ee0000000 ++fdivs 0x3fb99999a0000000 0x0 = 0x7ff0000000000000 ++fdivs 0x3fb99999a0000000 0x8000000000000000 = 0xfff0000000000000 ++fdivs 0x3fb99999a0000000 0x3ff0000000000000 = 0x3fb99999a0000000 ++fdivs 0x3fb99999a0000000 0xbff0000000000000 = 0xbfb99999a0000000 ++fdivs 0x3fb99999a0000000 0x3fb99999a0000000 = 0x3ff0000000000000 ++fdivs 0x3fb99999a0000000 0xbfb99999a0000000 = 0xbff0000000000000 ++fdivs 0x3fb99999a0000000 0x3fc99999a0000000 = 0x3fe0000000000000 ++fdivs 0x3fb99999a0000000 0xbfc99999a0000000 = 0xbfe0000000000000 ++fdivs 0x3fb99999a0000000 0x4008000000000000 = 0x3fa1111120000000 ++fdivs 0x3fb99999a0000000 0xc008000000000000 = 0xbfa1111120000000 ++fdivs 0x3fb99999a0000000 0x4014000000000000 = 0x3f947ae140000000 ++fdivs 0x3fb99999a0000000 0xc014000000000000 = 0xbf947ae140000000 ++fdivs 0x3fb99999a0000000 0x4197d78400000000 = 0x3e112e0be0000000 ++fdivs 0x3fb99999a0000000 0xc197d78400000000 = 0xbe112e0be0000000 ++fdivs 0xbfb99999a0000000 0x0 = 0xfff0000000000000 ++fdivs 0xbfb99999a0000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivs 0xbfb99999a0000000 0x3ff0000000000000 = 0xbfb99999a0000000 ++fdivs 0xbfb99999a0000000 0xbff0000000000000 = 0x3fb99999a0000000 ++fdivs 0xbfb99999a0000000 0x3fb99999a0000000 = 0xbff0000000000000 ++fdivs 0xbfb99999a0000000 0xbfb99999a0000000 = 0x3ff0000000000000 ++fdivs 0xbfb99999a0000000 0x3fc99999a0000000 = 0xbfe0000000000000 ++fdivs 0xbfb99999a0000000 0xbfc99999a0000000 = 0x3fe0000000000000 ++fdivs 0xbfb99999a0000000 0x4008000000000000 = 0xbfa1111120000000 ++fdivs 0xbfb99999a0000000 0xc008000000000000 = 0x3fa1111120000000 ++fdivs 0xbfb99999a0000000 0x4014000000000000 = 0xbf947ae140000000 ++fdivs 0xbfb99999a0000000 0xc014000000000000 = 0x3f947ae140000000 ++fdivs 0xbfb99999a0000000 0x4197d78400000000 = 0xbe112e0be0000000 ++fdivs 0xbfb99999a0000000 0xc197d78400000000 = 0x3e112e0be0000000 ++fdivs 0x3fc99999a0000000 0x0 = 0x7ff0000000000000 ++fdivs 0x3fc99999a0000000 0x8000000000000000 = 0xfff0000000000000 ++fdivs 0x3fc99999a0000000 0x3ff0000000000000 = 0x3fc99999a0000000 ++fdivs 0x3fc99999a0000000 0xbff0000000000000 = 0xbfc99999a0000000 ++fdivs 0x3fc99999a0000000 0x3fb99999a0000000 = 0x4000000000000000 ++fdivs 0x3fc99999a0000000 0xbfb99999a0000000 = 0xc000000000000000 ++fdivs 0x3fc99999a0000000 0x3fc99999a0000000 = 0x3ff0000000000000 ++fdivs 0x3fc99999a0000000 0xbfc99999a0000000 = 0xbff0000000000000 ++fdivs 0x3fc99999a0000000 0x4008000000000000 = 0x3fb1111120000000 ++fdivs 0x3fc99999a0000000 0xc008000000000000 = 0xbfb1111120000000 ++fdivs 0x3fc99999a0000000 0x4014000000000000 = 0x3fa47ae140000000 ++fdivs 0x3fc99999a0000000 0xc014000000000000 = 0xbfa47ae140000000 ++fdivs 0x3fc99999a0000000 0x4197d78400000000 = 0x3e212e0be0000000 ++fdivs 0x3fc99999a0000000 0xc197d78400000000 = 0xbe212e0be0000000 ++fdivs 0xbfc99999a0000000 0x0 = 0xfff0000000000000 ++fdivs 0xbfc99999a0000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivs 0xbfc99999a0000000 0x3ff0000000000000 = 0xbfc99999a0000000 ++fdivs 0xbfc99999a0000000 0xbff0000000000000 = 0x3fc99999a0000000 ++fdivs 0xbfc99999a0000000 0x3fb99999a0000000 = 0xc000000000000000 ++fdivs 0xbfc99999a0000000 0xbfb99999a0000000 = 0x4000000000000000 ++fdivs 0xbfc99999a0000000 0x3fc99999a0000000 = 0xbff0000000000000 ++fdivs 0xbfc99999a0000000 0xbfc99999a0000000 = 0x3ff0000000000000 ++fdivs 0xbfc99999a0000000 0x4008000000000000 = 0xbfb1111120000000 ++fdivs 0xbfc99999a0000000 0xc008000000000000 = 0x3fb1111120000000 ++fdivs 0xbfc99999a0000000 0x4014000000000000 = 0xbfa47ae140000000 ++fdivs 0xbfc99999a0000000 0xc014000000000000 = 0x3fa47ae140000000 ++fdivs 0xbfc99999a0000000 0x4197d78400000000 = 0xbe212e0be0000000 ++fdivs 0xbfc99999a0000000 0xc197d78400000000 = 0x3e212e0be0000000 ++fdivs 0x4008000000000000 0x0 = 0x7ff0000000000000 ++fdivs 0x4008000000000000 0x8000000000000000 = 0xfff0000000000000 ++fdivs 0x4008000000000000 0x3ff0000000000000 = 0x4008000000000000 ++fdivs 0x4008000000000000 0xbff0000000000000 = 0xc008000000000000 ++fdivs 0x4008000000000000 0x3fb99999a0000000 = 0x403e000000000000 ++fdivs 0x4008000000000000 0xbfb99999a0000000 = 0xc03e000000000000 ++fdivs 0x4008000000000000 0x3fc99999a0000000 = 0x402e000000000000 ++fdivs 0x4008000000000000 0xbfc99999a0000000 = 0xc02e000000000000 ++fdivs 0x4008000000000000 0x4008000000000000 = 0x3ff0000000000000 ++fdivs 0x4008000000000000 0xc008000000000000 = 0xbff0000000000000 ++fdivs 0x4008000000000000 0x4014000000000000 = 0x3fe3333340000000 ++fdivs 0x4008000000000000 0xc014000000000000 = 0xbfe3333340000000 ++fdivs 0x4008000000000000 0x4197d78400000000 = 0x3e601b2b20000000 ++fdivs 0x4008000000000000 0xc197d78400000000 = 0xbe601b2b20000000 ++fdivs 0xc008000000000000 0x0 = 0xfff0000000000000 ++fdivs 0xc008000000000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivs 0xc008000000000000 0x3ff0000000000000 = 0xc008000000000000 ++fdivs 0xc008000000000000 0xbff0000000000000 = 0x4008000000000000 ++fdivs 0xc008000000000000 0x3fb99999a0000000 = 0xc03e000000000000 ++fdivs 0xc008000000000000 0xbfb99999a0000000 = 0x403e000000000000 ++fdivs 0xc008000000000000 0x3fc99999a0000000 = 0xc02e000000000000 ++fdivs 0xc008000000000000 0xbfc99999a0000000 = 0x402e000000000000 ++fdivs 0xc008000000000000 0x4008000000000000 = 0xbff0000000000000 ++fdivs 0xc008000000000000 0xc008000000000000 = 0x3ff0000000000000 ++fdivs 0xc008000000000000 0x4014000000000000 = 0xbfe3333340000000 ++fdivs 0xc008000000000000 0xc014000000000000 = 0x3fe3333340000000 ++fdivs 0xc008000000000000 0x4197d78400000000 = 0xbe601b2b20000000 ++fdivs 0xc008000000000000 0xc197d78400000000 = 0x3e601b2b20000000 ++fdivs 0x4014000000000000 0x0 = 0x7ff0000000000000 ++fdivs 0x4014000000000000 0x8000000000000000 = 0xfff0000000000000 ++fdivs 0x4014000000000000 0x3ff0000000000000 = 0x4014000000000000 ++fdivs 0x4014000000000000 0xbff0000000000000 = 0xc014000000000000 ++fdivs 0x4014000000000000 0x3fb99999a0000000 = 0x4049000000000000 ++fdivs 0x4014000000000000 0xbfb99999a0000000 = 0xc049000000000000 ++fdivs 0x4014000000000000 0x3fc99999a0000000 = 0x4039000000000000 ++fdivs 0x4014000000000000 0xbfc99999a0000000 = 0xc039000000000000 ++fdivs 0x4014000000000000 0x4008000000000000 = 0x3ffaaaaaa0000000 ++fdivs 0x4014000000000000 0xc008000000000000 = 0xbffaaaaaa0000000 ++fdivs 0x4014000000000000 0x4014000000000000 = 0x3ff0000000000000 ++fdivs 0x4014000000000000 0xc014000000000000 = 0xbff0000000000000 ++fdivs 0x4014000000000000 0x4197d78400000000 = 0x3e6ad7f2a0000000 ++fdivs 0x4014000000000000 0xc197d78400000000 = 0xbe6ad7f2a0000000 ++fdivs 0xc014000000000000 0x0 = 0xfff0000000000000 ++fdivs 0xc014000000000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivs 0xc014000000000000 0x3ff0000000000000 = 0xc014000000000000 ++fdivs 0xc014000000000000 0xbff0000000000000 = 0x4014000000000000 ++fdivs 0xc014000000000000 0x3fb99999a0000000 = 0xc049000000000000 ++fdivs 0xc014000000000000 0xbfb99999a0000000 = 0x4049000000000000 ++fdivs 0xc014000000000000 0x3fc99999a0000000 = 0xc039000000000000 ++fdivs 0xc014000000000000 0xbfc99999a0000000 = 0x4039000000000000 ++fdivs 0xc014000000000000 0x4008000000000000 = 0xbffaaaaaa0000000 ++fdivs 0xc014000000000000 0xc008000000000000 = 0x3ffaaaaaa0000000 ++fdivs 0xc014000000000000 0x4014000000000000 = 0xbff0000000000000 ++fdivs 0xc014000000000000 0xc014000000000000 = 0x3ff0000000000000 ++fdivs 0xc014000000000000 0x4197d78400000000 = 0xbe6ad7f2a0000000 ++fdivs 0xc014000000000000 0xc197d78400000000 = 0x3e6ad7f2a0000000 ++fdivs 0x4197d78400000000 0x0 = 0x7ff0000000000000 ++fdivs 0x4197d78400000000 0x8000000000000000 = 0xfff0000000000000 ++fdivs 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fdivs 0x4197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fdivs 0x4197d78400000000 0x3fb99999a0000000 = 0x41cdcd6500000000 ++fdivs 0x4197d78400000000 0xbfb99999a0000000 = 0xc1cdcd6500000000 ++fdivs 0x4197d78400000000 0x3fc99999a0000000 = 0x41bdcd6500000000 ++fdivs 0x4197d78400000000 0xbfc99999a0000000 = 0xc1bdcd6500000000 ++fdivs 0x4197d78400000000 0x4008000000000000 = 0x417fca0560000000 ++fdivs 0x4197d78400000000 0xc008000000000000 = 0xc17fca0560000000 ++fdivs 0x4197d78400000000 0x4014000000000000 = 0x417312d000000000 ++fdivs 0x4197d78400000000 0xc014000000000000 = 0xc17312d000000000 ++fdivs 0x4197d78400000000 0x4197d78400000000 = 0x3ff0000000000000 ++fdivs 0x4197d78400000000 0xc197d78400000000 = 0xbff0000000000000 ++fdivs 0xc197d78400000000 0x0 = 0xfff0000000000000 ++fdivs 0xc197d78400000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivs 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fdivs 0xc197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fdivs 0xc197d78400000000 0x3fb99999a0000000 = 0xc1cdcd6500000000 ++fdivs 0xc197d78400000000 0xbfb99999a0000000 = 0x41cdcd6500000000 ++fdivs 0xc197d78400000000 0x3fc99999a0000000 = 0xc1bdcd6500000000 ++fdivs 0xc197d78400000000 0xbfc99999a0000000 = 0x41bdcd6500000000 ++fdivs 0xc197d78400000000 0x4008000000000000 = 0xc17fca0560000000 ++fdivs 0xc197d78400000000 0xc008000000000000 = 0x417fca0560000000 ++fdivs 0xc197d78400000000 0x4014000000000000 = 0xc17312d000000000 ++fdivs 0xc197d78400000000 0xc014000000000000 = 0x417312d000000000 ++fdivs 0xc197d78400000000 0x4197d78400000000 = 0xbff0000000000000 ++fdivs 0xc197d78400000000 0xc197d78400000000 = 0x3ff0000000000000 ++=== Running test on fdivd=== ++fdivd 0x0 0x0 = 0xfff8000000000000 ++fdivd 0x0 0x8000000000000000 = 0xfff8000000000000 ++fdivd 0x0 0xf0debc9a78563412 = 0x8000000000000000 ++fdivd 0x0 0x123456789abcdef0 = 0x0 ++fdivd 0x0 0x3ff0000000000000 = 0x0 ++fdivd 0x0 0xbff0000000000000 = 0x8000000000000000 ++fdivd 0x0 0x3fb999999999999a = 0x0 ++fdivd 0x0 0xbfb999999999999a = 0x8000000000000000 ++fdivd 0x0 0x3fc999999999999a = 0x0 ++fdivd 0x0 0xbfc999999999999a = 0x8000000000000000 ++fdivd 0x0 0x4008000000000000 = 0x0 ++fdivd 0x0 0xc008000000000000 = 0x8000000000000000 ++fdivd 0x0 0x4014000000000000 = 0x0 ++fdivd 0x0 0xc014000000000000 = 0x8000000000000000 ++fdivd 0x0 0x4197d78400000000 = 0x0 ++fdivd 0x0 0xc197d78400000000 = 0x8000000000000000 ++fdivd 0x8000000000000000 0x0 = 0xfff8000000000000 ++fdivd 0x8000000000000000 0x8000000000000000 = 0xfff8000000000000 ++fdivd 0x8000000000000000 0xf0debc9a78563412 = 0x0 ++fdivd 0x8000000000000000 0x123456789abcdef0 = 0x8000000000000000 ++fdivd 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fdivd 0x8000000000000000 0xbff0000000000000 = 0x0 ++fdivd 0x8000000000000000 0x3fb999999999999a = 0x8000000000000000 ++fdivd 0x8000000000000000 0xbfb999999999999a = 0x0 ++fdivd 0x8000000000000000 0x3fc999999999999a = 0x8000000000000000 ++fdivd 0x8000000000000000 0xbfc999999999999a = 0x0 ++fdivd 0x8000000000000000 0x4008000000000000 = 0x8000000000000000 ++fdivd 0x8000000000000000 0xc008000000000000 = 0x0 ++fdivd 0x8000000000000000 0x4014000000000000 = 0x8000000000000000 ++fdivd 0x8000000000000000 0xc014000000000000 = 0x0 ++fdivd 0x8000000000000000 0x4197d78400000000 = 0x8000000000000000 ++fdivd 0x8000000000000000 0xc197d78400000000 = 0x0 ++fdivd 0xf0debc9a78563412 0x0 = 0xfff0000000000000 ++fdivd 0xf0debc9a78563412 0x8000000000000000 = 0x7ff0000000000000 ++fdivd 0xf0debc9a78563412 0xf0debc9a78563412 = 0x3ff0000000000000 ++fdivd 0xf0debc9a78563412 0x123456789abcdef0 = 0xfff0000000000000 ++fdivd 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0debc9a78563412 ++fdivd 0xf0debc9a78563412 0xbff0000000000000 = 0x70debc9a78563412 ++fdivd 0xf0debc9a78563412 0x3fb999999999999a = 0xf11335e08b35e08b ++fdivd 0xf0debc9a78563412 0xbfb999999999999a = 0x711335e08b35e08b ++fdivd 0xf0debc9a78563412 0x3fc999999999999a = 0xf10335e08b35e08b ++fdivd 0xf0debc9a78563412 0xbfc999999999999a = 0x710335e08b35e08b ++fdivd 0xf0debc9a78563412 0x4008000000000000 = 0xf0c47dbc5039780c ++fdivd 0xf0debc9a78563412 0xc008000000000000 = 0x70c47dbc5039780c ++fdivd 0xf0debc9a78563412 0x4014000000000000 = 0xf0b896e1f9de900e ++fdivd 0xf0debc9a78563412 0xc014000000000000 = 0x70b896e1f9de900e ++fdivd 0xf0debc9a78563412 0x4197d78400000000 = 0xef34a087c53fb2aa ++fdivd 0xf0debc9a78563412 0xc197d78400000000 = 0x6f34a087c53fb2aa ++fdivd 0x123456789abcdef0 0x0 = 0x7ff0000000000000 ++fdivd 0x123456789abcdef0 0x8000000000000000 = 0xfff0000000000000 ++fdivd 0x123456789abcdef0 0xf0debc9a78563412 = 0x8000000000000000 ++fdivd 0x123456789abcdef0 0x123456789abcdef0 = 0x3ff0000000000000 ++fdivd 0x123456789abcdef0 0x3ff0000000000000 = 0x123456789abcdef0 ++fdivd 0x123456789abcdef0 0xbff0000000000000 = 0x923456789abcdef0 ++fdivd 0x123456789abcdef0 0x3fb999999999999a = 0x12696c16c16c16ac ++fdivd 0x123456789abcdef0 0xbfb999999999999a = 0x92696c16c16c16ac ++fdivd 0x123456789abcdef0 0x3fc999999999999a = 0x12596c16c16c16ac ++fdivd 0x123456789abcdef0 0xbfc999999999999a = 0x92596c16c16c16ac ++fdivd 0x123456789abcdef0 0x4008000000000000 = 0x121b1df623a67e95 ++fdivd 0x123456789abcdef0 0xc008000000000000 = 0x921b1df623a67e95 ++fdivd 0x123456789abcdef0 0x4014000000000000 = 0x1210452d489718c0 ++fdivd 0x123456789abcdef0 0xc014000000000000 = 0x9210452d489718c0 ++fdivd 0x123456789abcdef0 0x4197d78400000000 = 0x108b4c01da1b936f ++fdivd 0x123456789abcdef0 0xc197d78400000000 = 0x908b4c01da1b936f ++fdivd 0x3ff0000000000000 0x0 = 0x7ff0000000000000 ++fdivd 0x3ff0000000000000 0x8000000000000000 = 0xfff0000000000000 ++fdivd 0x3ff0000000000000 0xf0debc9a78563412 = 0x8f00a85812f3e03a ++fdivd 0x3ff0000000000000 0x123456789abcdef0 = 0x6da92cc157b86456 ++fdivd 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fdivd 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fdivd 0x3ff0000000000000 0x3fb999999999999a = 0x4024000000000000 ++fdivd 0x3ff0000000000000 0xbfb999999999999a = 0xc024000000000000 ++fdivd 0x3ff0000000000000 0x3fc999999999999a = 0x4014000000000000 ++fdivd 0x3ff0000000000000 0xbfc999999999999a = 0xc014000000000000 ++fdivd 0x3ff0000000000000 0x4008000000000000 = 0x3fd5555555555555 ++fdivd 0x3ff0000000000000 0xc008000000000000 = 0xbfd5555555555555 ++fdivd 0x3ff0000000000000 0x4014000000000000 = 0x3fc999999999999a ++fdivd 0x3ff0000000000000 0xc014000000000000 = 0xbfc999999999999a ++fdivd 0x3ff0000000000000 0x4197d78400000000 = 0x3e45798ee2308c3a ++fdivd 0x3ff0000000000000 0xc197d78400000000 = 0xbe45798ee2308c3a ++fdivd 0xbff0000000000000 0x0 = 0xfff0000000000000 ++fdivd 0xbff0000000000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivd 0xbff0000000000000 0xf0debc9a78563412 = 0xf00a85812f3e03a ++fdivd 0xbff0000000000000 0x123456789abcdef0 = 0xeda92cc157b86456 ++fdivd 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fdivd 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fdivd 0xbff0000000000000 0x3fb999999999999a = 0xc024000000000000 ++fdivd 0xbff0000000000000 0xbfb999999999999a = 0x4024000000000000 ++fdivd 0xbff0000000000000 0x3fc999999999999a = 0xc014000000000000 ++fdivd 0xbff0000000000000 0xbfc999999999999a = 0x4014000000000000 ++fdivd 0xbff0000000000000 0x4008000000000000 = 0xbfd5555555555555 ++fdivd 0xbff0000000000000 0xc008000000000000 = 0x3fd5555555555555 ++fdivd 0xbff0000000000000 0x4014000000000000 = 0xbfc999999999999a ++fdivd 0xbff0000000000000 0xc014000000000000 = 0x3fc999999999999a ++fdivd 0xbff0000000000000 0x4197d78400000000 = 0xbe45798ee2308c3a ++fdivd 0xbff0000000000000 0xc197d78400000000 = 0x3e45798ee2308c3a ++fdivd 0x3fb999999999999a 0x0 = 0x7ff0000000000000 ++fdivd 0x3fb999999999999a 0x8000000000000000 = 0xfff0000000000000 ++fdivd 0x3fb999999999999a 0xf0debc9a78563412 = 0x8ecaa6f351863390 ++fdivd 0x3fb999999999999a 0x123456789abcdef0 = 0x6d7423cddfc6b6ab ++fdivd 0x3fb999999999999a 0x3ff0000000000000 = 0x3fb999999999999a ++fdivd 0x3fb999999999999a 0xbff0000000000000 = 0xbfb999999999999a ++fdivd 0x3fb999999999999a 0x3fb999999999999a = 0x3ff0000000000000 ++fdivd 0x3fb999999999999a 0xbfb999999999999a = 0xbff0000000000000 ++fdivd 0x3fb999999999999a 0x3fc999999999999a = 0x3fe0000000000000 ++fdivd 0x3fb999999999999a 0xbfc999999999999a = 0xbfe0000000000000 ++fdivd 0x3fb999999999999a 0x4008000000000000 = 0x3fa1111111111111 ++fdivd 0x3fb999999999999a 0xc008000000000000 = 0xbfa1111111111111 ++fdivd 0x3fb999999999999a 0x4014000000000000 = 0x3f947ae147ae147b ++fdivd 0x3fb999999999999a 0xc014000000000000 = 0xbf947ae147ae147b ++fdivd 0x3fb999999999999a 0x4197d78400000000 = 0x3e112e0be826d695 ++fdivd 0x3fb999999999999a 0xc197d78400000000 = 0xbe112e0be826d695 ++fdivd 0xbfb999999999999a 0x0 = 0xfff0000000000000 ++fdivd 0xbfb999999999999a 0x8000000000000000 = 0x7ff0000000000000 ++fdivd 0xbfb999999999999a 0xf0debc9a78563412 = 0xecaa6f351863390 ++fdivd 0xbfb999999999999a 0x123456789abcdef0 = 0xed7423cddfc6b6ab ++fdivd 0xbfb999999999999a 0x3ff0000000000000 = 0xbfb999999999999a ++fdivd 0xbfb999999999999a 0xbff0000000000000 = 0x3fb999999999999a ++fdivd 0xbfb999999999999a 0x3fb999999999999a = 0xbff0000000000000 ++fdivd 0xbfb999999999999a 0xbfb999999999999a = 0x3ff0000000000000 ++fdivd 0xbfb999999999999a 0x3fc999999999999a = 0xbfe0000000000000 ++fdivd 0xbfb999999999999a 0xbfc999999999999a = 0x3fe0000000000000 ++fdivd 0xbfb999999999999a 0x4008000000000000 = 0xbfa1111111111111 ++fdivd 0xbfb999999999999a 0xc008000000000000 = 0x3fa1111111111111 ++fdivd 0xbfb999999999999a 0x4014000000000000 = 0xbf947ae147ae147b ++fdivd 0xbfb999999999999a 0xc014000000000000 = 0x3f947ae147ae147b ++fdivd 0xbfb999999999999a 0x4197d78400000000 = 0xbe112e0be826d695 ++fdivd 0xbfb999999999999a 0xc197d78400000000 = 0x3e112e0be826d695 ++fdivd 0x3fc999999999999a 0x0 = 0x7ff0000000000000 ++fdivd 0x3fc999999999999a 0x8000000000000000 = 0xfff0000000000000 ++fdivd 0x3fc999999999999a 0xf0debc9a78563412 = 0x8edaa6f351863390 ++fdivd 0x3fc999999999999a 0x123456789abcdef0 = 0x6d8423cddfc6b6ab ++fdivd 0x3fc999999999999a 0x3ff0000000000000 = 0x3fc999999999999a ++fdivd 0x3fc999999999999a 0xbff0000000000000 = 0xbfc999999999999a ++fdivd 0x3fc999999999999a 0x3fb999999999999a = 0x4000000000000000 ++fdivd 0x3fc999999999999a 0xbfb999999999999a = 0xc000000000000000 ++fdivd 0x3fc999999999999a 0x3fc999999999999a = 0x3ff0000000000000 ++fdivd 0x3fc999999999999a 0xbfc999999999999a = 0xbff0000000000000 ++fdivd 0x3fc999999999999a 0x4008000000000000 = 0x3fb1111111111111 ++fdivd 0x3fc999999999999a 0xc008000000000000 = 0xbfb1111111111111 ++fdivd 0x3fc999999999999a 0x4014000000000000 = 0x3fa47ae147ae147b ++fdivd 0x3fc999999999999a 0xc014000000000000 = 0xbfa47ae147ae147b ++fdivd 0x3fc999999999999a 0x4197d78400000000 = 0x3e212e0be826d695 ++fdivd 0x3fc999999999999a 0xc197d78400000000 = 0xbe212e0be826d695 ++fdivd 0xbfc999999999999a 0x0 = 0xfff0000000000000 ++fdivd 0xbfc999999999999a 0x8000000000000000 = 0x7ff0000000000000 ++fdivd 0xbfc999999999999a 0xf0debc9a78563412 = 0xedaa6f351863390 ++fdivd 0xbfc999999999999a 0x123456789abcdef0 = 0xed8423cddfc6b6ab ++fdivd 0xbfc999999999999a 0x3ff0000000000000 = 0xbfc999999999999a ++fdivd 0xbfc999999999999a 0xbff0000000000000 = 0x3fc999999999999a ++fdivd 0xbfc999999999999a 0x3fb999999999999a = 0xc000000000000000 ++fdivd 0xbfc999999999999a 0xbfb999999999999a = 0x4000000000000000 ++fdivd 0xbfc999999999999a 0x3fc999999999999a = 0xbff0000000000000 ++fdivd 0xbfc999999999999a 0xbfc999999999999a = 0x3ff0000000000000 ++fdivd 0xbfc999999999999a 0x4008000000000000 = 0xbfb1111111111111 ++fdivd 0xbfc999999999999a 0xc008000000000000 = 0x3fb1111111111111 ++fdivd 0xbfc999999999999a 0x4014000000000000 = 0xbfa47ae147ae147b ++fdivd 0xbfc999999999999a 0xc014000000000000 = 0x3fa47ae147ae147b ++fdivd 0xbfc999999999999a 0x4197d78400000000 = 0xbe212e0be826d695 ++fdivd 0xbfc999999999999a 0xc197d78400000000 = 0x3e212e0be826d695 ++fdivd 0x4008000000000000 0x0 = 0x7ff0000000000000 ++fdivd 0x4008000000000000 0x8000000000000000 = 0xfff0000000000000 ++fdivd 0x4008000000000000 0xf0debc9a78563412 = 0x8f18fc841c6dd057 ++fdivd 0x4008000000000000 0x123456789abcdef0 = 0x6dc2e19101ca4b40 ++fdivd 0x4008000000000000 0x3ff0000000000000 = 0x4008000000000000 ++fdivd 0x4008000000000000 0xbff0000000000000 = 0xc008000000000000 ++fdivd 0x4008000000000000 0x3fb999999999999a = 0x403e000000000000 ++fdivd 0x4008000000000000 0xbfb999999999999a = 0xc03e000000000000 ++fdivd 0x4008000000000000 0x3fc999999999999a = 0x402e000000000000 ++fdivd 0x4008000000000000 0xbfc999999999999a = 0xc02e000000000000 ++fdivd 0x4008000000000000 0x4008000000000000 = 0x3ff0000000000000 ++fdivd 0x4008000000000000 0xc008000000000000 = 0xbff0000000000000 ++fdivd 0x4008000000000000 0x4014000000000000 = 0x3fe3333333333333 ++fdivd 0x4008000000000000 0xc014000000000000 = 0xbfe3333333333333 ++fdivd 0x4008000000000000 0x4197d78400000000 = 0x3e601b2b29a4692b ++fdivd 0x4008000000000000 0xc197d78400000000 = 0xbe601b2b29a4692b ++fdivd 0xc008000000000000 0x0 = 0xfff0000000000000 ++fdivd 0xc008000000000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivd 0xc008000000000000 0xf0debc9a78563412 = 0xf18fc841c6dd057 ++fdivd 0xc008000000000000 0x123456789abcdef0 = 0xedc2e19101ca4b40 ++fdivd 0xc008000000000000 0x3ff0000000000000 = 0xc008000000000000 ++fdivd 0xc008000000000000 0xbff0000000000000 = 0x4008000000000000 ++fdivd 0xc008000000000000 0x3fb999999999999a = 0xc03e000000000000 ++fdivd 0xc008000000000000 0xbfb999999999999a = 0x403e000000000000 ++fdivd 0xc008000000000000 0x3fc999999999999a = 0xc02e000000000000 ++fdivd 0xc008000000000000 0xbfc999999999999a = 0x402e000000000000 ++fdivd 0xc008000000000000 0x4008000000000000 = 0xbff0000000000000 ++fdivd 0xc008000000000000 0xc008000000000000 = 0x3ff0000000000000 ++fdivd 0xc008000000000000 0x4014000000000000 = 0xbfe3333333333333 ++fdivd 0xc008000000000000 0xc014000000000000 = 0x3fe3333333333333 ++fdivd 0xc008000000000000 0x4197d78400000000 = 0xbe601b2b29a4692b ++fdivd 0xc008000000000000 0xc197d78400000000 = 0x3e601b2b29a4692b ++fdivd 0x4014000000000000 0x0 = 0x7ff0000000000000 ++fdivd 0x4014000000000000 0x8000000000000000 = 0xfff0000000000000 ++fdivd 0x4014000000000000 0xf0debc9a78563412 = 0x8f24d26e17b0d848 ++fdivd 0x4014000000000000 0x123456789abcdef0 = 0x6dcf77f1ada67d6b ++fdivd 0x4014000000000000 0x3ff0000000000000 = 0x4014000000000000 ++fdivd 0x4014000000000000 0xbff0000000000000 = 0xc014000000000000 ++fdivd 0x4014000000000000 0x3fb999999999999a = 0x4049000000000000 ++fdivd 0x4014000000000000 0xbfb999999999999a = 0xc049000000000000 ++fdivd 0x4014000000000000 0x3fc999999999999a = 0x4039000000000000 ++fdivd 0x4014000000000000 0xbfc999999999999a = 0xc039000000000000 ++fdivd 0x4014000000000000 0x4008000000000000 = 0x3ffaaaaaaaaaaaab ++fdivd 0x4014000000000000 0xc008000000000000 = 0xbffaaaaaaaaaaaab ++fdivd 0x4014000000000000 0x4014000000000000 = 0x3ff0000000000000 ++fdivd 0x4014000000000000 0xc014000000000000 = 0xbff0000000000000 ++fdivd 0x4014000000000000 0x4197d78400000000 = 0x3e6ad7f29abcaf48 ++fdivd 0x4014000000000000 0xc197d78400000000 = 0xbe6ad7f29abcaf48 ++fdivd 0xc014000000000000 0x0 = 0xfff0000000000000 ++fdivd 0xc014000000000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivd 0xc014000000000000 0xf0debc9a78563412 = 0xf24d26e17b0d848 ++fdivd 0xc014000000000000 0x123456789abcdef0 = 0xedcf77f1ada67d6b ++fdivd 0xc014000000000000 0x3ff0000000000000 = 0xc014000000000000 ++fdivd 0xc014000000000000 0xbff0000000000000 = 0x4014000000000000 ++fdivd 0xc014000000000000 0x3fb999999999999a = 0xc049000000000000 ++fdivd 0xc014000000000000 0xbfb999999999999a = 0x4049000000000000 ++fdivd 0xc014000000000000 0x3fc999999999999a = 0xc039000000000000 ++fdivd 0xc014000000000000 0xbfc999999999999a = 0x4039000000000000 ++fdivd 0xc014000000000000 0x4008000000000000 = 0xbffaaaaaaaaaaaab ++fdivd 0xc014000000000000 0xc008000000000000 = 0x3ffaaaaaaaaaaaab ++fdivd 0xc014000000000000 0x4014000000000000 = 0xbff0000000000000 ++fdivd 0xc014000000000000 0xc014000000000000 = 0x3ff0000000000000 ++fdivd 0xc014000000000000 0x4197d78400000000 = 0xbe6ad7f29abcaf48 ++fdivd 0xc014000000000000 0xc197d78400000000 = 0x3e6ad7f29abcaf48 ++fdivd 0x4197d78400000000 0x0 = 0x7ff0000000000000 ++fdivd 0x4197d78400000000 0x8000000000000000 = 0xfff0000000000000 ++fdivd 0x4197d78400000000 0xf0debc9a78563412 = 0x90a8d25e2793dbc4 ++fdivd 0x4197d78400000000 0x123456789abcdef0 = 0x6f52c1b782af70d8 ++fdivd 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fdivd 0x4197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fdivd 0x4197d78400000000 0x3fb999999999999a = 0x41cdcd6500000000 ++fdivd 0x4197d78400000000 0xbfb999999999999a = 0xc1cdcd6500000000 ++fdivd 0x4197d78400000000 0x3fc999999999999a = 0x41bdcd6500000000 ++fdivd 0x4197d78400000000 0xbfc999999999999a = 0xc1bdcd6500000000 ++fdivd 0x4197d78400000000 0x4008000000000000 = 0x417fca0555555555 ++fdivd 0x4197d78400000000 0xc008000000000000 = 0xc17fca0555555555 ++fdivd 0x4197d78400000000 0x4014000000000000 = 0x417312d000000000 ++fdivd 0x4197d78400000000 0xc014000000000000 = 0xc17312d000000000 ++fdivd 0x4197d78400000000 0x4197d78400000000 = 0x3ff0000000000000 ++fdivd 0x4197d78400000000 0xc197d78400000000 = 0xbff0000000000000 ++fdivd 0xc197d78400000000 0x0 = 0xfff0000000000000 ++fdivd 0xc197d78400000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivd 0xc197d78400000000 0xf0debc9a78563412 = 0x10a8d25e2793dbc4 ++fdivd 0xc197d78400000000 0x123456789abcdef0 = 0xef52c1b782af70d8 ++fdivd 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fdivd 0xc197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fdivd 0xc197d78400000000 0x3fb999999999999a = 0xc1cdcd6500000000 ++fdivd 0xc197d78400000000 0xbfb999999999999a = 0x41cdcd6500000000 ++fdivd 0xc197d78400000000 0x3fc999999999999a = 0xc1bdcd6500000000 ++fdivd 0xc197d78400000000 0xbfc999999999999a = 0x41bdcd6500000000 ++fdivd 0xc197d78400000000 0x4008000000000000 = 0xc17fca0555555555 ++fdivd 0xc197d78400000000 0xc008000000000000 = 0x417fca0555555555 ++fdivd 0xc197d78400000000 0x4014000000000000 = 0xc17312d000000000 ++fdivd 0xc197d78400000000 0xc014000000000000 = 0x417312d000000000 ++fdivd 0xc197d78400000000 0x4197d78400000000 = 0xbff0000000000000 ++fdivd 0xc197d78400000000 0xc197d78400000000 = 0x3ff0000000000000 ++=== Running test on fcmpeq=== ++fcmpeq 0x0 0x0 = 0x4000000000000000 ++fcmpeq 0x0 0x8000000000000000 = 0x4000000000000000 ++fcmpeq 0x0 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x0 0x123456789abcdef0 = 0x0 ++fcmpeq 0x0 0x3ff0000000000000 = 0x0 ++fcmpeq 0x0 0xbff0000000000000 = 0x0 ++fcmpeq 0x0 0x3fb999999999999a = 0x0 ++fcmpeq 0x0 0xbfb999999999999a = 0x0 ++fcmpeq 0x0 0x3fc999999999999a = 0x0 ++fcmpeq 0x0 0xbfc999999999999a = 0x0 ++fcmpeq 0x0 0x4008000000000000 = 0x0 ++fcmpeq 0x0 0xc008000000000000 = 0x0 ++fcmpeq 0x0 0x4014000000000000 = 0x0 ++fcmpeq 0x0 0xc014000000000000 = 0x0 ++fcmpeq 0x0 0x4197d78400000000 = 0x0 ++fcmpeq 0x0 0xc197d78400000000 = 0x0 ++fcmpeq 0x8000000000000000 0x0 = 0x4000000000000000 ++fcmpeq 0x8000000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmpeq 0x8000000000000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x8000000000000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0x8000000000000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0x8000000000000000 0xbff0000000000000 = 0x0 ++fcmpeq 0x8000000000000000 0x3fb999999999999a = 0x0 ++fcmpeq 0x8000000000000000 0xbfb999999999999a = 0x0 ++fcmpeq 0x8000000000000000 0x3fc999999999999a = 0x0 ++fcmpeq 0x8000000000000000 0xbfc999999999999a = 0x0 ++fcmpeq 0x8000000000000000 0x4008000000000000 = 0x0 ++fcmpeq 0x8000000000000000 0xc008000000000000 = 0x0 ++fcmpeq 0x8000000000000000 0x4014000000000000 = 0x0 ++fcmpeq 0x8000000000000000 0xc014000000000000 = 0x0 ++fcmpeq 0x8000000000000000 0x4197d78400000000 = 0x0 ++fcmpeq 0x8000000000000000 0xc197d78400000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0x0 = 0x0 ++fcmpeq 0xf0debc9a78563412 0x8000000000000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0xf0debc9a78563412 = 0x4000000000000000 ++fcmpeq 0xf0debc9a78563412 0x123456789abcdef0 = 0x0 ++fcmpeq 0xf0debc9a78563412 0x3ff0000000000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0xbff0000000000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0x3fb999999999999a = 0x0 ++fcmpeq 0xf0debc9a78563412 0xbfb999999999999a = 0x0 ++fcmpeq 0xf0debc9a78563412 0x3fc999999999999a = 0x0 ++fcmpeq 0xf0debc9a78563412 0xbfc999999999999a = 0x0 ++fcmpeq 0xf0debc9a78563412 0x4008000000000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0xc008000000000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0x4014000000000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0xc014000000000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0x4197d78400000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0xc197d78400000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0x0 = 0x0 ++fcmpeq 0x123456789abcdef0 0x8000000000000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x123456789abcdef0 0x123456789abcdef0 = 0x4000000000000000 ++fcmpeq 0x123456789abcdef0 0x3ff0000000000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0xbff0000000000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0x3fb999999999999a = 0x0 ++fcmpeq 0x123456789abcdef0 0xbfb999999999999a = 0x0 ++fcmpeq 0x123456789abcdef0 0x3fc999999999999a = 0x0 ++fcmpeq 0x123456789abcdef0 0xbfc999999999999a = 0x0 ++fcmpeq 0x123456789abcdef0 0x4008000000000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0xc008000000000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0x4014000000000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0xc014000000000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0x4197d78400000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0xc197d78400000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0x0 = 0x0 ++fcmpeq 0x3ff0000000000000 0x8000000000000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x3ff0000000000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0x3ff0000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmpeq 0x3ff0000000000000 0xbff0000000000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0x3fb999999999999a = 0x0 ++fcmpeq 0x3ff0000000000000 0xbfb999999999999a = 0x0 ++fcmpeq 0x3ff0000000000000 0x3fc999999999999a = 0x0 ++fcmpeq 0x3ff0000000000000 0xbfc999999999999a = 0x0 ++fcmpeq 0x3ff0000000000000 0x4008000000000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0xc008000000000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0x4014000000000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0xc014000000000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0x4197d78400000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0xc197d78400000000 = 0x0 ++fcmpeq 0xbff0000000000000 0x0 = 0x0 ++fcmpeq 0xbff0000000000000 0x8000000000000000 = 0x0 ++fcmpeq 0xbff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0xbff0000000000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0xbff0000000000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0xbff0000000000000 0xbff0000000000000 = 0x4000000000000000 ++fcmpeq 0xbff0000000000000 0x3fb999999999999a = 0x0 ++fcmpeq 0xbff0000000000000 0xbfb999999999999a = 0x0 ++fcmpeq 0xbff0000000000000 0x3fc999999999999a = 0x0 ++fcmpeq 0xbff0000000000000 0xbfc999999999999a = 0x0 ++fcmpeq 0xbff0000000000000 0x4008000000000000 = 0x0 ++fcmpeq 0xbff0000000000000 0xc008000000000000 = 0x0 ++fcmpeq 0xbff0000000000000 0x4014000000000000 = 0x0 ++fcmpeq 0xbff0000000000000 0xc014000000000000 = 0x0 ++fcmpeq 0xbff0000000000000 0x4197d78400000000 = 0x0 ++fcmpeq 0xbff0000000000000 0xc197d78400000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0x0 = 0x0 ++fcmpeq 0x3fb999999999999a 0x8000000000000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x3fb999999999999a 0x123456789abcdef0 = 0x0 ++fcmpeq 0x3fb999999999999a 0x3ff0000000000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0xbff0000000000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0x3fb999999999999a = 0x4000000000000000 ++fcmpeq 0x3fb999999999999a 0xbfb999999999999a = 0x0 ++fcmpeq 0x3fb999999999999a 0x3fc999999999999a = 0x0 ++fcmpeq 0x3fb999999999999a 0xbfc999999999999a = 0x0 ++fcmpeq 0x3fb999999999999a 0x4008000000000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0xc008000000000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0x4014000000000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0xc014000000000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0x4197d78400000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0xc197d78400000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0x0 = 0x0 ++fcmpeq 0xbfb999999999999a 0x8000000000000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpeq 0xbfb999999999999a 0x123456789abcdef0 = 0x0 ++fcmpeq 0xbfb999999999999a 0x3ff0000000000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0xbff0000000000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0x3fb999999999999a = 0x0 ++fcmpeq 0xbfb999999999999a 0xbfb999999999999a = 0x4000000000000000 ++fcmpeq 0xbfb999999999999a 0x3fc999999999999a = 0x0 ++fcmpeq 0xbfb999999999999a 0xbfc999999999999a = 0x0 ++fcmpeq 0xbfb999999999999a 0x4008000000000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0xc008000000000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0x4014000000000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0xc014000000000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0x4197d78400000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0xc197d78400000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0x0 = 0x0 ++fcmpeq 0x3fc999999999999a 0x8000000000000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x3fc999999999999a 0x123456789abcdef0 = 0x0 ++fcmpeq 0x3fc999999999999a 0x3ff0000000000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0xbff0000000000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0x3fb999999999999a = 0x0 ++fcmpeq 0x3fc999999999999a 0xbfb999999999999a = 0x0 ++fcmpeq 0x3fc999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmpeq 0x3fc999999999999a 0xbfc999999999999a = 0x0 ++fcmpeq 0x3fc999999999999a 0x4008000000000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0xc008000000000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0x4014000000000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0xc014000000000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0x4197d78400000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0xc197d78400000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0x0 = 0x0 ++fcmpeq 0xbfc999999999999a 0x8000000000000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpeq 0xbfc999999999999a 0x123456789abcdef0 = 0x0 ++fcmpeq 0xbfc999999999999a 0x3ff0000000000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0xbff0000000000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0x3fb999999999999a = 0x0 ++fcmpeq 0xbfc999999999999a 0xbfb999999999999a = 0x0 ++fcmpeq 0xbfc999999999999a 0x3fc999999999999a = 0x0 ++fcmpeq 0xbfc999999999999a 0xbfc999999999999a = 0x4000000000000000 ++fcmpeq 0xbfc999999999999a 0x4008000000000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0xc008000000000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0x4014000000000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0xc014000000000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0x4197d78400000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0xc197d78400000000 = 0x0 ++fcmpeq 0x4008000000000000 0x0 = 0x0 ++fcmpeq 0x4008000000000000 0x8000000000000000 = 0x0 ++fcmpeq 0x4008000000000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x4008000000000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0x4008000000000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0x4008000000000000 0xbff0000000000000 = 0x0 ++fcmpeq 0x4008000000000000 0x3fb999999999999a = 0x0 ++fcmpeq 0x4008000000000000 0xbfb999999999999a = 0x0 ++fcmpeq 0x4008000000000000 0x3fc999999999999a = 0x0 ++fcmpeq 0x4008000000000000 0xbfc999999999999a = 0x0 ++fcmpeq 0x4008000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmpeq 0x4008000000000000 0xc008000000000000 = 0x0 ++fcmpeq 0x4008000000000000 0x4014000000000000 = 0x0 ++fcmpeq 0x4008000000000000 0xc014000000000000 = 0x0 ++fcmpeq 0x4008000000000000 0x4197d78400000000 = 0x0 ++fcmpeq 0x4008000000000000 0xc197d78400000000 = 0x0 ++fcmpeq 0xc008000000000000 0x0 = 0x0 ++fcmpeq 0xc008000000000000 0x8000000000000000 = 0x0 ++fcmpeq 0xc008000000000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0xc008000000000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0xc008000000000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0xc008000000000000 0xbff0000000000000 = 0x0 ++fcmpeq 0xc008000000000000 0x3fb999999999999a = 0x0 ++fcmpeq 0xc008000000000000 0xbfb999999999999a = 0x0 ++fcmpeq 0xc008000000000000 0x3fc999999999999a = 0x0 ++fcmpeq 0xc008000000000000 0xbfc999999999999a = 0x0 ++fcmpeq 0xc008000000000000 0x4008000000000000 = 0x0 ++fcmpeq 0xc008000000000000 0xc008000000000000 = 0x4000000000000000 ++fcmpeq 0xc008000000000000 0x4014000000000000 = 0x0 ++fcmpeq 0xc008000000000000 0xc014000000000000 = 0x0 ++fcmpeq 0xc008000000000000 0x4197d78400000000 = 0x0 ++fcmpeq 0xc008000000000000 0xc197d78400000000 = 0x0 ++fcmpeq 0x4014000000000000 0x0 = 0x0 ++fcmpeq 0x4014000000000000 0x8000000000000000 = 0x0 ++fcmpeq 0x4014000000000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x4014000000000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0x4014000000000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0x4014000000000000 0xbff0000000000000 = 0x0 ++fcmpeq 0x4014000000000000 0x3fb999999999999a = 0x0 ++fcmpeq 0x4014000000000000 0xbfb999999999999a = 0x0 ++fcmpeq 0x4014000000000000 0x3fc999999999999a = 0x0 ++fcmpeq 0x4014000000000000 0xbfc999999999999a = 0x0 ++fcmpeq 0x4014000000000000 0x4008000000000000 = 0x0 ++fcmpeq 0x4014000000000000 0xc008000000000000 = 0x0 ++fcmpeq 0x4014000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmpeq 0x4014000000000000 0xc014000000000000 = 0x0 ++fcmpeq 0x4014000000000000 0x4197d78400000000 = 0x0 ++fcmpeq 0x4014000000000000 0xc197d78400000000 = 0x0 ++fcmpeq 0xc014000000000000 0x0 = 0x0 ++fcmpeq 0xc014000000000000 0x8000000000000000 = 0x0 ++fcmpeq 0xc014000000000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0xc014000000000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0xc014000000000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0xc014000000000000 0xbff0000000000000 = 0x0 ++fcmpeq 0xc014000000000000 0x3fb999999999999a = 0x0 ++fcmpeq 0xc014000000000000 0xbfb999999999999a = 0x0 ++fcmpeq 0xc014000000000000 0x3fc999999999999a = 0x0 ++fcmpeq 0xc014000000000000 0xbfc999999999999a = 0x0 ++fcmpeq 0xc014000000000000 0x4008000000000000 = 0x0 ++fcmpeq 0xc014000000000000 0xc008000000000000 = 0x0 ++fcmpeq 0xc014000000000000 0x4014000000000000 = 0x0 ++fcmpeq 0xc014000000000000 0xc014000000000000 = 0x4000000000000000 ++fcmpeq 0xc014000000000000 0x4197d78400000000 = 0x0 ++fcmpeq 0xc014000000000000 0xc197d78400000000 = 0x0 ++fcmpeq 0x4197d78400000000 0x0 = 0x0 ++fcmpeq 0x4197d78400000000 0x8000000000000000 = 0x0 ++fcmpeq 0x4197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x4197d78400000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0x4197d78400000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0x4197d78400000000 0xbff0000000000000 = 0x0 ++fcmpeq 0x4197d78400000000 0x3fb999999999999a = 0x0 ++fcmpeq 0x4197d78400000000 0xbfb999999999999a = 0x0 ++fcmpeq 0x4197d78400000000 0x3fc999999999999a = 0x0 ++fcmpeq 0x4197d78400000000 0xbfc999999999999a = 0x0 ++fcmpeq 0x4197d78400000000 0x4008000000000000 = 0x0 ++fcmpeq 0x4197d78400000000 0xc008000000000000 = 0x0 ++fcmpeq 0x4197d78400000000 0x4014000000000000 = 0x0 ++fcmpeq 0x4197d78400000000 0xc014000000000000 = 0x0 ++fcmpeq 0x4197d78400000000 0x4197d78400000000 = 0x4000000000000000 ++fcmpeq 0x4197d78400000000 0xc197d78400000000 = 0x0 ++fcmpeq 0xc197d78400000000 0x0 = 0x0 ++fcmpeq 0xc197d78400000000 0x8000000000000000 = 0x0 ++fcmpeq 0xc197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0xc197d78400000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0xc197d78400000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0xc197d78400000000 0xbff0000000000000 = 0x0 ++fcmpeq 0xc197d78400000000 0x3fb999999999999a = 0x0 ++fcmpeq 0xc197d78400000000 0xbfb999999999999a = 0x0 ++fcmpeq 0xc197d78400000000 0x3fc999999999999a = 0x0 ++fcmpeq 0xc197d78400000000 0xbfc999999999999a = 0x0 ++fcmpeq 0xc197d78400000000 0x4008000000000000 = 0x0 ++fcmpeq 0xc197d78400000000 0xc008000000000000 = 0x0 ++fcmpeq 0xc197d78400000000 0x4014000000000000 = 0x0 ++fcmpeq 0xc197d78400000000 0xc014000000000000 = 0x0 ++fcmpeq 0xc197d78400000000 0x4197d78400000000 = 0x0 ++fcmpeq 0xc197d78400000000 0xc197d78400000000 = 0x4000000000000000 ++=== Running test on fcmple=== ++fcmple 0x0 0x0 = 0x4000000000000000 ++fcmple 0x0 0x8000000000000000 = 0x4000000000000000 ++fcmple 0x0 0xf0debc9a78563412 = 0x0 ++fcmple 0x0 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0x0 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0x0 0xbff0000000000000 = 0x0 ++fcmple 0x0 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0x0 0xbfb999999999999a = 0x0 ++fcmple 0x0 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0x0 0xbfc999999999999a = 0x0 ++fcmple 0x0 0x4008000000000000 = 0x4000000000000000 ++fcmple 0x0 0xc008000000000000 = 0x0 ++fcmple 0x0 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x0 0xc014000000000000 = 0x0 ++fcmple 0x0 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x0 0xc197d78400000000 = 0x0 ++fcmple 0x8000000000000000 0x0 = 0x4000000000000000 ++fcmple 0x8000000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmple 0x8000000000000000 0xf0debc9a78563412 = 0x0 ++fcmple 0x8000000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0x8000000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0x8000000000000000 0xbff0000000000000 = 0x0 ++fcmple 0x8000000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0x8000000000000000 0xbfb999999999999a = 0x0 ++fcmple 0x8000000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0x8000000000000000 0xbfc999999999999a = 0x0 ++fcmple 0x8000000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmple 0x8000000000000000 0xc008000000000000 = 0x0 ++fcmple 0x8000000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x8000000000000000 0xc014000000000000 = 0x0 ++fcmple 0x8000000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x8000000000000000 0xc197d78400000000 = 0x0 ++fcmple 0xf0debc9a78563412 0x0 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x8000000000000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0xf0debc9a78563412 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0xbff0000000000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0xbfb999999999999a = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0xbfc999999999999a = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x4008000000000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0xc008000000000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x4014000000000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0xc014000000000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0xc197d78400000000 = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0x0 = 0x0 ++fcmple 0x123456789abcdef0 0x8000000000000000 = 0x0 ++fcmple 0x123456789abcdef0 0xf0debc9a78563412 = 0x0 ++fcmple 0x123456789abcdef0 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0xbff0000000000000 = 0x0 ++fcmple 0x123456789abcdef0 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0xbfb999999999999a = 0x0 ++fcmple 0x123456789abcdef0 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0xbfc999999999999a = 0x0 ++fcmple 0x123456789abcdef0 0x4008000000000000 = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0xc008000000000000 = 0x0 ++fcmple 0x123456789abcdef0 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0xc014000000000000 = 0x0 ++fcmple 0x123456789abcdef0 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0xc197d78400000000 = 0x0 ++fcmple 0x3ff0000000000000 0x0 = 0x0 ++fcmple 0x3ff0000000000000 0x8000000000000000 = 0x0 ++fcmple 0x3ff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmple 0x3ff0000000000000 0x123456789abcdef0 = 0x0 ++fcmple 0x3ff0000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0x3ff0000000000000 0xbff0000000000000 = 0x0 ++fcmple 0x3ff0000000000000 0x3fb999999999999a = 0x0 ++fcmple 0x3ff0000000000000 0xbfb999999999999a = 0x0 ++fcmple 0x3ff0000000000000 0x3fc999999999999a = 0x0 ++fcmple 0x3ff0000000000000 0xbfc999999999999a = 0x0 ++fcmple 0x3ff0000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmple 0x3ff0000000000000 0xc008000000000000 = 0x0 ++fcmple 0x3ff0000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x3ff0000000000000 0xc014000000000000 = 0x0 ++fcmple 0x3ff0000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x3ff0000000000000 0xc197d78400000000 = 0x0 ++fcmple 0xbff0000000000000 0x0 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmple 0xbff0000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0xbff0000000000000 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0xbff0000000000000 0xbfb999999999999a = 0x4000000000000000 ++fcmple 0xbff0000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0xbff0000000000000 0xbfc999999999999a = 0x4000000000000000 ++fcmple 0xbff0000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0xc008000000000000 = 0x0 ++fcmple 0xbff0000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0xc014000000000000 = 0x0 ++fcmple 0xbff0000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0xc197d78400000000 = 0x0 ++fcmple 0x3fb999999999999a 0x0 = 0x0 ++fcmple 0x3fb999999999999a 0x8000000000000000 = 0x0 ++fcmple 0x3fb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmple 0x3fb999999999999a 0x123456789abcdef0 = 0x0 ++fcmple 0x3fb999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0x3fb999999999999a 0xbff0000000000000 = 0x0 ++fcmple 0x3fb999999999999a 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0x3fb999999999999a 0xbfb999999999999a = 0x0 ++fcmple 0x3fb999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0x3fb999999999999a 0xbfc999999999999a = 0x0 ++fcmple 0x3fb999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmple 0x3fb999999999999a 0xc008000000000000 = 0x0 ++fcmple 0x3fb999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x3fb999999999999a 0xc014000000000000 = 0x0 ++fcmple 0x3fb999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x3fb999999999999a 0xc197d78400000000 = 0x0 ++fcmple 0xbfb999999999999a 0x0 = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0x8000000000000000 = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmple 0xbfb999999999999a 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0xbff0000000000000 = 0x0 ++fcmple 0xbfb999999999999a 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0xbfb999999999999a = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0xbfc999999999999a = 0x0 ++fcmple 0xbfb999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0xc008000000000000 = 0x0 ++fcmple 0xbfb999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0xc014000000000000 = 0x0 ++fcmple 0xbfb999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0xc197d78400000000 = 0x0 ++fcmple 0x3fc999999999999a 0x0 = 0x0 ++fcmple 0x3fc999999999999a 0x8000000000000000 = 0x0 ++fcmple 0x3fc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmple 0x3fc999999999999a 0x123456789abcdef0 = 0x0 ++fcmple 0x3fc999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0x3fc999999999999a 0xbff0000000000000 = 0x0 ++fcmple 0x3fc999999999999a 0x3fb999999999999a = 0x0 ++fcmple 0x3fc999999999999a 0xbfb999999999999a = 0x0 ++fcmple 0x3fc999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0x3fc999999999999a 0xbfc999999999999a = 0x0 ++fcmple 0x3fc999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmple 0x3fc999999999999a 0xc008000000000000 = 0x0 ++fcmple 0x3fc999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x3fc999999999999a 0xc014000000000000 = 0x0 ++fcmple 0x3fc999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x3fc999999999999a 0xc197d78400000000 = 0x0 ++fcmple 0xbfc999999999999a 0x0 = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0x8000000000000000 = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmple 0xbfc999999999999a 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0xbff0000000000000 = 0x0 ++fcmple 0xbfc999999999999a 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0xbfb999999999999a = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0xbfc999999999999a = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0xc008000000000000 = 0x0 ++fcmple 0xbfc999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0xc014000000000000 = 0x0 ++fcmple 0xbfc999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0xc197d78400000000 = 0x0 ++fcmple 0x4008000000000000 0x0 = 0x0 ++fcmple 0x4008000000000000 0x8000000000000000 = 0x0 ++fcmple 0x4008000000000000 0xf0debc9a78563412 = 0x0 ++fcmple 0x4008000000000000 0x123456789abcdef0 = 0x0 ++fcmple 0x4008000000000000 0x3ff0000000000000 = 0x0 ++fcmple 0x4008000000000000 0xbff0000000000000 = 0x0 ++fcmple 0x4008000000000000 0x3fb999999999999a = 0x0 ++fcmple 0x4008000000000000 0xbfb999999999999a = 0x0 ++fcmple 0x4008000000000000 0x3fc999999999999a = 0x0 ++fcmple 0x4008000000000000 0xbfc999999999999a = 0x0 ++fcmple 0x4008000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmple 0x4008000000000000 0xc008000000000000 = 0x0 ++fcmple 0x4008000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x4008000000000000 0xc014000000000000 = 0x0 ++fcmple 0x4008000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x4008000000000000 0xc197d78400000000 = 0x0 ++fcmple 0xc008000000000000 0x0 = 0x4000000000000000 ++fcmple 0xc008000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmple 0xc008000000000000 0xf0debc9a78563412 = 0x0 ++fcmple 0xc008000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0xc008000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0xc008000000000000 0xbff0000000000000 = 0x4000000000000000 ++fcmple 0xc008000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0xc008000000000000 0xbfb999999999999a = 0x4000000000000000 ++fcmple 0xc008000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0xc008000000000000 0xbfc999999999999a = 0x4000000000000000 ++fcmple 0xc008000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmple 0xc008000000000000 0xc008000000000000 = 0x4000000000000000 ++fcmple 0xc008000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0xc008000000000000 0xc014000000000000 = 0x0 ++fcmple 0xc008000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0xc008000000000000 0xc197d78400000000 = 0x0 ++fcmple 0x4014000000000000 0x0 = 0x0 ++fcmple 0x4014000000000000 0x8000000000000000 = 0x0 ++fcmple 0x4014000000000000 0xf0debc9a78563412 = 0x0 ++fcmple 0x4014000000000000 0x123456789abcdef0 = 0x0 ++fcmple 0x4014000000000000 0x3ff0000000000000 = 0x0 ++fcmple 0x4014000000000000 0xbff0000000000000 = 0x0 ++fcmple 0x4014000000000000 0x3fb999999999999a = 0x0 ++fcmple 0x4014000000000000 0xbfb999999999999a = 0x0 ++fcmple 0x4014000000000000 0x3fc999999999999a = 0x0 ++fcmple 0x4014000000000000 0xbfc999999999999a = 0x0 ++fcmple 0x4014000000000000 0x4008000000000000 = 0x0 ++fcmple 0x4014000000000000 0xc008000000000000 = 0x0 ++fcmple 0x4014000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x4014000000000000 0xc014000000000000 = 0x0 ++fcmple 0x4014000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x4014000000000000 0xc197d78400000000 = 0x0 ++fcmple 0xc014000000000000 0x0 = 0x4000000000000000 ++fcmple 0xc014000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0xf0debc9a78563412 = 0x0 ++fcmple 0xc014000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0xc014000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0xbff0000000000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0xc014000000000000 0xbfb999999999999a = 0x4000000000000000 ++fcmple 0xc014000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0xc014000000000000 0xbfc999999999999a = 0x4000000000000000 ++fcmple 0xc014000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0xc008000000000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0xc014000000000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0xc197d78400000000 = 0x0 ++fcmple 0x4197d78400000000 0x0 = 0x0 ++fcmple 0x4197d78400000000 0x8000000000000000 = 0x0 ++fcmple 0x4197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmple 0x4197d78400000000 0x123456789abcdef0 = 0x0 ++fcmple 0x4197d78400000000 0x3ff0000000000000 = 0x0 ++fcmple 0x4197d78400000000 0xbff0000000000000 = 0x0 ++fcmple 0x4197d78400000000 0x3fb999999999999a = 0x0 ++fcmple 0x4197d78400000000 0xbfb999999999999a = 0x0 ++fcmple 0x4197d78400000000 0x3fc999999999999a = 0x0 ++fcmple 0x4197d78400000000 0xbfc999999999999a = 0x0 ++fcmple 0x4197d78400000000 0x4008000000000000 = 0x0 ++fcmple 0x4197d78400000000 0xc008000000000000 = 0x0 ++fcmple 0x4197d78400000000 0x4014000000000000 = 0x0 ++fcmple 0x4197d78400000000 0xc014000000000000 = 0x0 ++fcmple 0x4197d78400000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x4197d78400000000 0xc197d78400000000 = 0x0 ++fcmple 0xc197d78400000000 0x0 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0x8000000000000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmple 0xc197d78400000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0xbff0000000000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0xc197d78400000000 0xbfb999999999999a = 0x4000000000000000 ++fcmple 0xc197d78400000000 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0xc197d78400000000 0xbfc999999999999a = 0x4000000000000000 ++fcmple 0xc197d78400000000 0x4008000000000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0xc008000000000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0xc014000000000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0xc197d78400000000 = 0x4000000000000000 ++=== Running test on fcmplt=== ++fcmplt 0x0 0x0 = 0x0 ++fcmplt 0x0 0x8000000000000000 = 0x0 ++fcmplt 0x0 0xf0debc9a78563412 = 0x0 ++fcmplt 0x0 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0x0 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0x0 0xbff0000000000000 = 0x0 ++fcmplt 0x0 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0x0 0xbfb999999999999a = 0x0 ++fcmplt 0x0 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0x0 0xbfc999999999999a = 0x0 ++fcmplt 0x0 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0x0 0xc008000000000000 = 0x0 ++fcmplt 0x0 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0x0 0xc014000000000000 = 0x0 ++fcmplt 0x0 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x0 0xc197d78400000000 = 0x0 ++fcmplt 0x8000000000000000 0x0 = 0x0 ++fcmplt 0x8000000000000000 0x8000000000000000 = 0x0 ++fcmplt 0x8000000000000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0x8000000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0x8000000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0x8000000000000000 0xbff0000000000000 = 0x0 ++fcmplt 0x8000000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0x8000000000000000 0xbfb999999999999a = 0x0 ++fcmplt 0x8000000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0x8000000000000000 0xbfc999999999999a = 0x0 ++fcmplt 0x8000000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0x8000000000000000 0xc008000000000000 = 0x0 ++fcmplt 0x8000000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0x8000000000000000 0xc014000000000000 = 0x0 ++fcmplt 0x8000000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x8000000000000000 0xc197d78400000000 = 0x0 ++fcmplt 0xf0debc9a78563412 0x0 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0x8000000000000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0xf0debc9a78563412 = 0x0 ++fcmplt 0xf0debc9a78563412 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0xbff0000000000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0xbfb999999999999a = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0xbfc999999999999a = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0xc008000000000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0xc014000000000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0xc197d78400000000 = 0x4000000000000000 ++fcmplt 0x123456789abcdef0 0x0 = 0x0 ++fcmplt 0x123456789abcdef0 0x8000000000000000 = 0x0 ++fcmplt 0x123456789abcdef0 0xf0debc9a78563412 = 0x0 ++fcmplt 0x123456789abcdef0 0x123456789abcdef0 = 0x0 ++fcmplt 0x123456789abcdef0 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0x123456789abcdef0 0xbff0000000000000 = 0x0 ++fcmplt 0x123456789abcdef0 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0x123456789abcdef0 0xbfb999999999999a = 0x0 ++fcmplt 0x123456789abcdef0 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0x123456789abcdef0 0xbfc999999999999a = 0x0 ++fcmplt 0x123456789abcdef0 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0x123456789abcdef0 0xc008000000000000 = 0x0 ++fcmplt 0x123456789abcdef0 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0x123456789abcdef0 0xc014000000000000 = 0x0 ++fcmplt 0x123456789abcdef0 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x123456789abcdef0 0xc197d78400000000 = 0x0 ++fcmplt 0x3ff0000000000000 0x0 = 0x0 ++fcmplt 0x3ff0000000000000 0x8000000000000000 = 0x0 ++fcmplt 0x3ff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0x3ff0000000000000 0x123456789abcdef0 = 0x0 ++fcmplt 0x3ff0000000000000 0x3ff0000000000000 = 0x0 ++fcmplt 0x3ff0000000000000 0xbff0000000000000 = 0x0 ++fcmplt 0x3ff0000000000000 0x3fb999999999999a = 0x0 ++fcmplt 0x3ff0000000000000 0xbfb999999999999a = 0x0 ++fcmplt 0x3ff0000000000000 0x3fc999999999999a = 0x0 ++fcmplt 0x3ff0000000000000 0xbfc999999999999a = 0x0 ++fcmplt 0x3ff0000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0x3ff0000000000000 0xc008000000000000 = 0x0 ++fcmplt 0x3ff0000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0x3ff0000000000000 0xc014000000000000 = 0x0 ++fcmplt 0x3ff0000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x3ff0000000000000 0xc197d78400000000 = 0x0 ++fcmplt 0xbff0000000000000 0x0 = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0xbff0000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0xbff0000000000000 = 0x0 ++fcmplt 0xbff0000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0xbfb999999999999a = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0xbfc999999999999a = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0xc008000000000000 = 0x0 ++fcmplt 0xbff0000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0xc014000000000000 = 0x0 ++fcmplt 0xbff0000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0xc197d78400000000 = 0x0 ++fcmplt 0x3fb999999999999a 0x0 = 0x0 ++fcmplt 0x3fb999999999999a 0x8000000000000000 = 0x0 ++fcmplt 0x3fb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmplt 0x3fb999999999999a 0x123456789abcdef0 = 0x0 ++fcmplt 0x3fb999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0x3fb999999999999a 0xbff0000000000000 = 0x0 ++fcmplt 0x3fb999999999999a 0x3fb999999999999a = 0x0 ++fcmplt 0x3fb999999999999a 0xbfb999999999999a = 0x0 ++fcmplt 0x3fb999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0x3fb999999999999a 0xbfc999999999999a = 0x0 ++fcmplt 0x3fb999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0x3fb999999999999a 0xc008000000000000 = 0x0 ++fcmplt 0x3fb999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0x3fb999999999999a 0xc014000000000000 = 0x0 ++fcmplt 0x3fb999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x3fb999999999999a 0xc197d78400000000 = 0x0 ++fcmplt 0xbfb999999999999a 0x0 = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0x8000000000000000 = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmplt 0xbfb999999999999a 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0xbff0000000000000 = 0x0 ++fcmplt 0xbfb999999999999a 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0xbfb999999999999a = 0x0 ++fcmplt 0xbfb999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0xbfc999999999999a = 0x0 ++fcmplt 0xbfb999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0xc008000000000000 = 0x0 ++fcmplt 0xbfb999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0xc014000000000000 = 0x0 ++fcmplt 0xbfb999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0xc197d78400000000 = 0x0 ++fcmplt 0x3fc999999999999a 0x0 = 0x0 ++fcmplt 0x3fc999999999999a 0x8000000000000000 = 0x0 ++fcmplt 0x3fc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmplt 0x3fc999999999999a 0x123456789abcdef0 = 0x0 ++fcmplt 0x3fc999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0x3fc999999999999a 0xbff0000000000000 = 0x0 ++fcmplt 0x3fc999999999999a 0x3fb999999999999a = 0x0 ++fcmplt 0x3fc999999999999a 0xbfb999999999999a = 0x0 ++fcmplt 0x3fc999999999999a 0x3fc999999999999a = 0x0 ++fcmplt 0x3fc999999999999a 0xbfc999999999999a = 0x0 ++fcmplt 0x3fc999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0x3fc999999999999a 0xc008000000000000 = 0x0 ++fcmplt 0x3fc999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0x3fc999999999999a 0xc014000000000000 = 0x0 ++fcmplt 0x3fc999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x3fc999999999999a 0xc197d78400000000 = 0x0 ++fcmplt 0xbfc999999999999a 0x0 = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0x8000000000000000 = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmplt 0xbfc999999999999a 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0xbff0000000000000 = 0x0 ++fcmplt 0xbfc999999999999a 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0xbfb999999999999a = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0xbfc999999999999a = 0x0 ++fcmplt 0xbfc999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0xc008000000000000 = 0x0 ++fcmplt 0xbfc999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0xc014000000000000 = 0x0 ++fcmplt 0xbfc999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0xc197d78400000000 = 0x0 ++fcmplt 0x4008000000000000 0x0 = 0x0 ++fcmplt 0x4008000000000000 0x8000000000000000 = 0x0 ++fcmplt 0x4008000000000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0x4008000000000000 0x123456789abcdef0 = 0x0 ++fcmplt 0x4008000000000000 0x3ff0000000000000 = 0x0 ++fcmplt 0x4008000000000000 0xbff0000000000000 = 0x0 ++fcmplt 0x4008000000000000 0x3fb999999999999a = 0x0 ++fcmplt 0x4008000000000000 0xbfb999999999999a = 0x0 ++fcmplt 0x4008000000000000 0x3fc999999999999a = 0x0 ++fcmplt 0x4008000000000000 0xbfc999999999999a = 0x0 ++fcmplt 0x4008000000000000 0x4008000000000000 = 0x0 ++fcmplt 0x4008000000000000 0xc008000000000000 = 0x0 ++fcmplt 0x4008000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0x4008000000000000 0xc014000000000000 = 0x0 ++fcmplt 0x4008000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x4008000000000000 0xc197d78400000000 = 0x0 ++fcmplt 0xc008000000000000 0x0 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0xc008000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0xbff0000000000000 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0xc008000000000000 0xbfb999999999999a = 0x4000000000000000 ++fcmplt 0xc008000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0xc008000000000000 0xbfc999999999999a = 0x4000000000000000 ++fcmplt 0xc008000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0xc008000000000000 = 0x0 ++fcmplt 0xc008000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0xc014000000000000 = 0x0 ++fcmplt 0xc008000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0xc197d78400000000 = 0x0 ++fcmplt 0x4014000000000000 0x0 = 0x0 ++fcmplt 0x4014000000000000 0x8000000000000000 = 0x0 ++fcmplt 0x4014000000000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0x4014000000000000 0x123456789abcdef0 = 0x0 ++fcmplt 0x4014000000000000 0x3ff0000000000000 = 0x0 ++fcmplt 0x4014000000000000 0xbff0000000000000 = 0x0 ++fcmplt 0x4014000000000000 0x3fb999999999999a = 0x0 ++fcmplt 0x4014000000000000 0xbfb999999999999a = 0x0 ++fcmplt 0x4014000000000000 0x3fc999999999999a = 0x0 ++fcmplt 0x4014000000000000 0xbfc999999999999a = 0x0 ++fcmplt 0x4014000000000000 0x4008000000000000 = 0x0 ++fcmplt 0x4014000000000000 0xc008000000000000 = 0x0 ++fcmplt 0x4014000000000000 0x4014000000000000 = 0x0 ++fcmplt 0x4014000000000000 0xc014000000000000 = 0x0 ++fcmplt 0x4014000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x4014000000000000 0xc197d78400000000 = 0x0 ++fcmplt 0xc014000000000000 0x0 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0xc014000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0xbff0000000000000 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0xc014000000000000 0xbfb999999999999a = 0x4000000000000000 ++fcmplt 0xc014000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0xc014000000000000 0xbfc999999999999a = 0x4000000000000000 ++fcmplt 0xc014000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0xc008000000000000 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0xc014000000000000 = 0x0 ++fcmplt 0xc014000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0xc197d78400000000 = 0x0 ++fcmplt 0x4197d78400000000 0x0 = 0x0 ++fcmplt 0x4197d78400000000 0x8000000000000000 = 0x0 ++fcmplt 0x4197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0x4197d78400000000 0x123456789abcdef0 = 0x0 ++fcmplt 0x4197d78400000000 0x3ff0000000000000 = 0x0 ++fcmplt 0x4197d78400000000 0xbff0000000000000 = 0x0 ++fcmplt 0x4197d78400000000 0x3fb999999999999a = 0x0 ++fcmplt 0x4197d78400000000 0xbfb999999999999a = 0x0 ++fcmplt 0x4197d78400000000 0x3fc999999999999a = 0x0 ++fcmplt 0x4197d78400000000 0xbfc999999999999a = 0x0 ++fcmplt 0x4197d78400000000 0x4008000000000000 = 0x0 ++fcmplt 0x4197d78400000000 0xc008000000000000 = 0x0 ++fcmplt 0x4197d78400000000 0x4014000000000000 = 0x0 ++fcmplt 0x4197d78400000000 0xc014000000000000 = 0x0 ++fcmplt 0x4197d78400000000 0x4197d78400000000 = 0x0 ++fcmplt 0x4197d78400000000 0xc197d78400000000 = 0x0 ++fcmplt 0xc197d78400000000 0x0 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0x8000000000000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0xc197d78400000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0xbff0000000000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0xbfb999999999999a = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0xbfc999999999999a = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0xc008000000000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0xc014000000000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0xc197d78400000000 = 0x0 ++=== Running test on fcmpun=== ++fcmpun 0x0 0x0 = 0x0 ++fcmpun 0x0 0x8000000000000000 = 0x0 ++fcmpun 0x0 0xf0debc9a78563412 = 0x0 ++fcmpun 0x0 0x123456789abcdef0 = 0x0 ++fcmpun 0x0 0x3ff0000000000000 = 0x0 ++fcmpun 0x0 0xbff0000000000000 = 0x0 ++fcmpun 0x0 0x3fb999999999999a = 0x0 ++fcmpun 0x0 0xbfb999999999999a = 0x0 ++fcmpun 0x0 0x3fc999999999999a = 0x0 ++fcmpun 0x0 0xbfc999999999999a = 0x0 ++fcmpun 0x0 0x4008000000000000 = 0x0 ++fcmpun 0x0 0xc008000000000000 = 0x0 ++fcmpun 0x0 0x4014000000000000 = 0x0 ++fcmpun 0x0 0xc014000000000000 = 0x0 ++fcmpun 0x0 0x4197d78400000000 = 0x0 ++fcmpun 0x0 0xc197d78400000000 = 0x0 ++fcmpun 0x8000000000000000 0x0 = 0x0 ++fcmpun 0x8000000000000000 0x8000000000000000 = 0x0 ++fcmpun 0x8000000000000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0x8000000000000000 0x123456789abcdef0 = 0x0 ++fcmpun 0x8000000000000000 0x3ff0000000000000 = 0x0 ++fcmpun 0x8000000000000000 0xbff0000000000000 = 0x0 ++fcmpun 0x8000000000000000 0x3fb999999999999a = 0x0 ++fcmpun 0x8000000000000000 0xbfb999999999999a = 0x0 ++fcmpun 0x8000000000000000 0x3fc999999999999a = 0x0 ++fcmpun 0x8000000000000000 0xbfc999999999999a = 0x0 ++fcmpun 0x8000000000000000 0x4008000000000000 = 0x0 ++fcmpun 0x8000000000000000 0xc008000000000000 = 0x0 ++fcmpun 0x8000000000000000 0x4014000000000000 = 0x0 ++fcmpun 0x8000000000000000 0xc014000000000000 = 0x0 ++fcmpun 0x8000000000000000 0x4197d78400000000 = 0x0 ++fcmpun 0x8000000000000000 0xc197d78400000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0x0 = 0x0 ++fcmpun 0xf0debc9a78563412 0x8000000000000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0xf0debc9a78563412 = 0x0 ++fcmpun 0xf0debc9a78563412 0x123456789abcdef0 = 0x0 ++fcmpun 0xf0debc9a78563412 0x3ff0000000000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0xbff0000000000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0x3fb999999999999a = 0x0 ++fcmpun 0xf0debc9a78563412 0xbfb999999999999a = 0x0 ++fcmpun 0xf0debc9a78563412 0x3fc999999999999a = 0x0 ++fcmpun 0xf0debc9a78563412 0xbfc999999999999a = 0x0 ++fcmpun 0xf0debc9a78563412 0x4008000000000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0xc008000000000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0x4014000000000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0xc014000000000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0x4197d78400000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0xc197d78400000000 = 0x0 ++fcmpun 0x123456789abcdef0 0x0 = 0x0 ++fcmpun 0x123456789abcdef0 0x8000000000000000 = 0x0 ++fcmpun 0x123456789abcdef0 0xf0debc9a78563412 = 0x0 ++fcmpun 0x123456789abcdef0 0x123456789abcdef0 = 0x0 ++fcmpun 0x123456789abcdef0 0x3ff0000000000000 = 0x0 ++fcmpun 0x123456789abcdef0 0xbff0000000000000 = 0x0 ++fcmpun 0x123456789abcdef0 0x3fb999999999999a = 0x0 ++fcmpun 0x123456789abcdef0 0xbfb999999999999a = 0x0 ++fcmpun 0x123456789abcdef0 0x3fc999999999999a = 0x0 ++fcmpun 0x123456789abcdef0 0xbfc999999999999a = 0x0 ++fcmpun 0x123456789abcdef0 0x4008000000000000 = 0x0 ++fcmpun 0x123456789abcdef0 0xc008000000000000 = 0x0 ++fcmpun 0x123456789abcdef0 0x4014000000000000 = 0x0 ++fcmpun 0x123456789abcdef0 0xc014000000000000 = 0x0 ++fcmpun 0x123456789abcdef0 0x4197d78400000000 = 0x0 ++fcmpun 0x123456789abcdef0 0xc197d78400000000 = 0x0 ++fcmpun 0x3ff0000000000000 0x0 = 0x0 ++fcmpun 0x3ff0000000000000 0x8000000000000000 = 0x0 ++fcmpun 0x3ff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0x3ff0000000000000 0x123456789abcdef0 = 0x0 ++fcmpun 0x3ff0000000000000 0x3ff0000000000000 = 0x0 ++fcmpun 0x3ff0000000000000 0xbff0000000000000 = 0x0 ++fcmpun 0x3ff0000000000000 0x3fb999999999999a = 0x0 ++fcmpun 0x3ff0000000000000 0xbfb999999999999a = 0x0 ++fcmpun 0x3ff0000000000000 0x3fc999999999999a = 0x0 ++fcmpun 0x3ff0000000000000 0xbfc999999999999a = 0x0 ++fcmpun 0x3ff0000000000000 0x4008000000000000 = 0x0 ++fcmpun 0x3ff0000000000000 0xc008000000000000 = 0x0 ++fcmpun 0x3ff0000000000000 0x4014000000000000 = 0x0 ++fcmpun 0x3ff0000000000000 0xc014000000000000 = 0x0 ++fcmpun 0x3ff0000000000000 0x4197d78400000000 = 0x0 ++fcmpun 0x3ff0000000000000 0xc197d78400000000 = 0x0 ++fcmpun 0xbff0000000000000 0x0 = 0x0 ++fcmpun 0xbff0000000000000 0x8000000000000000 = 0x0 ++fcmpun 0xbff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0xbff0000000000000 0x123456789abcdef0 = 0x0 ++fcmpun 0xbff0000000000000 0x3ff0000000000000 = 0x0 ++fcmpun 0xbff0000000000000 0xbff0000000000000 = 0x0 ++fcmpun 0xbff0000000000000 0x3fb999999999999a = 0x0 ++fcmpun 0xbff0000000000000 0xbfb999999999999a = 0x0 ++fcmpun 0xbff0000000000000 0x3fc999999999999a = 0x0 ++fcmpun 0xbff0000000000000 0xbfc999999999999a = 0x0 ++fcmpun 0xbff0000000000000 0x4008000000000000 = 0x0 ++fcmpun 0xbff0000000000000 0xc008000000000000 = 0x0 ++fcmpun 0xbff0000000000000 0x4014000000000000 = 0x0 ++fcmpun 0xbff0000000000000 0xc014000000000000 = 0x0 ++fcmpun 0xbff0000000000000 0x4197d78400000000 = 0x0 ++fcmpun 0xbff0000000000000 0xc197d78400000000 = 0x0 ++fcmpun 0x3fb999999999999a 0x0 = 0x0 ++fcmpun 0x3fb999999999999a 0x8000000000000000 = 0x0 ++fcmpun 0x3fb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpun 0x3fb999999999999a 0x123456789abcdef0 = 0x0 ++fcmpun 0x3fb999999999999a 0x3ff0000000000000 = 0x0 ++fcmpun 0x3fb999999999999a 0xbff0000000000000 = 0x0 ++fcmpun 0x3fb999999999999a 0x3fb999999999999a = 0x0 ++fcmpun 0x3fb999999999999a 0xbfb999999999999a = 0x0 ++fcmpun 0x3fb999999999999a 0x3fc999999999999a = 0x0 ++fcmpun 0x3fb999999999999a 0xbfc999999999999a = 0x0 ++fcmpun 0x3fb999999999999a 0x4008000000000000 = 0x0 ++fcmpun 0x3fb999999999999a 0xc008000000000000 = 0x0 ++fcmpun 0x3fb999999999999a 0x4014000000000000 = 0x0 ++fcmpun 0x3fb999999999999a 0xc014000000000000 = 0x0 ++fcmpun 0x3fb999999999999a 0x4197d78400000000 = 0x0 ++fcmpun 0x3fb999999999999a 0xc197d78400000000 = 0x0 ++fcmpun 0xbfb999999999999a 0x0 = 0x0 ++fcmpun 0xbfb999999999999a 0x8000000000000000 = 0x0 ++fcmpun 0xbfb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpun 0xbfb999999999999a 0x123456789abcdef0 = 0x0 ++fcmpun 0xbfb999999999999a 0x3ff0000000000000 = 0x0 ++fcmpun 0xbfb999999999999a 0xbff0000000000000 = 0x0 ++fcmpun 0xbfb999999999999a 0x3fb999999999999a = 0x0 ++fcmpun 0xbfb999999999999a 0xbfb999999999999a = 0x0 ++fcmpun 0xbfb999999999999a 0x3fc999999999999a = 0x0 ++fcmpun 0xbfb999999999999a 0xbfc999999999999a = 0x0 ++fcmpun 0xbfb999999999999a 0x4008000000000000 = 0x0 ++fcmpun 0xbfb999999999999a 0xc008000000000000 = 0x0 ++fcmpun 0xbfb999999999999a 0x4014000000000000 = 0x0 ++fcmpun 0xbfb999999999999a 0xc014000000000000 = 0x0 ++fcmpun 0xbfb999999999999a 0x4197d78400000000 = 0x0 ++fcmpun 0xbfb999999999999a 0xc197d78400000000 = 0x0 ++fcmpun 0x3fc999999999999a 0x0 = 0x0 ++fcmpun 0x3fc999999999999a 0x8000000000000000 = 0x0 ++fcmpun 0x3fc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpun 0x3fc999999999999a 0x123456789abcdef0 = 0x0 ++fcmpun 0x3fc999999999999a 0x3ff0000000000000 = 0x0 ++fcmpun 0x3fc999999999999a 0xbff0000000000000 = 0x0 ++fcmpun 0x3fc999999999999a 0x3fb999999999999a = 0x0 ++fcmpun 0x3fc999999999999a 0xbfb999999999999a = 0x0 ++fcmpun 0x3fc999999999999a 0x3fc999999999999a = 0x0 ++fcmpun 0x3fc999999999999a 0xbfc999999999999a = 0x0 ++fcmpun 0x3fc999999999999a 0x4008000000000000 = 0x0 ++fcmpun 0x3fc999999999999a 0xc008000000000000 = 0x0 ++fcmpun 0x3fc999999999999a 0x4014000000000000 = 0x0 ++fcmpun 0x3fc999999999999a 0xc014000000000000 = 0x0 ++fcmpun 0x3fc999999999999a 0x4197d78400000000 = 0x0 ++fcmpun 0x3fc999999999999a 0xc197d78400000000 = 0x0 ++fcmpun 0xbfc999999999999a 0x0 = 0x0 ++fcmpun 0xbfc999999999999a 0x8000000000000000 = 0x0 ++fcmpun 0xbfc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpun 0xbfc999999999999a 0x123456789abcdef0 = 0x0 ++fcmpun 0xbfc999999999999a 0x3ff0000000000000 = 0x0 ++fcmpun 0xbfc999999999999a 0xbff0000000000000 = 0x0 ++fcmpun 0xbfc999999999999a 0x3fb999999999999a = 0x0 ++fcmpun 0xbfc999999999999a 0xbfb999999999999a = 0x0 ++fcmpun 0xbfc999999999999a 0x3fc999999999999a = 0x0 ++fcmpun 0xbfc999999999999a 0xbfc999999999999a = 0x0 ++fcmpun 0xbfc999999999999a 0x4008000000000000 = 0x0 ++fcmpun 0xbfc999999999999a 0xc008000000000000 = 0x0 ++fcmpun 0xbfc999999999999a 0x4014000000000000 = 0x0 ++fcmpun 0xbfc999999999999a 0xc014000000000000 = 0x0 ++fcmpun 0xbfc999999999999a 0x4197d78400000000 = 0x0 ++fcmpun 0xbfc999999999999a 0xc197d78400000000 = 0x0 ++fcmpun 0x4008000000000000 0x0 = 0x0 ++fcmpun 0x4008000000000000 0x8000000000000000 = 0x0 ++fcmpun 0x4008000000000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0x4008000000000000 0x123456789abcdef0 = 0x0 ++fcmpun 0x4008000000000000 0x3ff0000000000000 = 0x0 ++fcmpun 0x4008000000000000 0xbff0000000000000 = 0x0 ++fcmpun 0x4008000000000000 0x3fb999999999999a = 0x0 ++fcmpun 0x4008000000000000 0xbfb999999999999a = 0x0 ++fcmpun 0x4008000000000000 0x3fc999999999999a = 0x0 ++fcmpun 0x4008000000000000 0xbfc999999999999a = 0x0 ++fcmpun 0x4008000000000000 0x4008000000000000 = 0x0 ++fcmpun 0x4008000000000000 0xc008000000000000 = 0x0 ++fcmpun 0x4008000000000000 0x4014000000000000 = 0x0 ++fcmpun 0x4008000000000000 0xc014000000000000 = 0x0 ++fcmpun 0x4008000000000000 0x4197d78400000000 = 0x0 ++fcmpun 0x4008000000000000 0xc197d78400000000 = 0x0 ++fcmpun 0xc008000000000000 0x0 = 0x0 ++fcmpun 0xc008000000000000 0x8000000000000000 = 0x0 ++fcmpun 0xc008000000000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0xc008000000000000 0x123456789abcdef0 = 0x0 ++fcmpun 0xc008000000000000 0x3ff0000000000000 = 0x0 ++fcmpun 0xc008000000000000 0xbff0000000000000 = 0x0 ++fcmpun 0xc008000000000000 0x3fb999999999999a = 0x0 ++fcmpun 0xc008000000000000 0xbfb999999999999a = 0x0 ++fcmpun 0xc008000000000000 0x3fc999999999999a = 0x0 ++fcmpun 0xc008000000000000 0xbfc999999999999a = 0x0 ++fcmpun 0xc008000000000000 0x4008000000000000 = 0x0 ++fcmpun 0xc008000000000000 0xc008000000000000 = 0x0 ++fcmpun 0xc008000000000000 0x4014000000000000 = 0x0 ++fcmpun 0xc008000000000000 0xc014000000000000 = 0x0 ++fcmpun 0xc008000000000000 0x4197d78400000000 = 0x0 ++fcmpun 0xc008000000000000 0xc197d78400000000 = 0x0 ++fcmpun 0x4014000000000000 0x0 = 0x0 ++fcmpun 0x4014000000000000 0x8000000000000000 = 0x0 ++fcmpun 0x4014000000000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0x4014000000000000 0x123456789abcdef0 = 0x0 ++fcmpun 0x4014000000000000 0x3ff0000000000000 = 0x0 ++fcmpun 0x4014000000000000 0xbff0000000000000 = 0x0 ++fcmpun 0x4014000000000000 0x3fb999999999999a = 0x0 ++fcmpun 0x4014000000000000 0xbfb999999999999a = 0x0 ++fcmpun 0x4014000000000000 0x3fc999999999999a = 0x0 ++fcmpun 0x4014000000000000 0xbfc999999999999a = 0x0 ++fcmpun 0x4014000000000000 0x4008000000000000 = 0x0 ++fcmpun 0x4014000000000000 0xc008000000000000 = 0x0 ++fcmpun 0x4014000000000000 0x4014000000000000 = 0x0 ++fcmpun 0x4014000000000000 0xc014000000000000 = 0x0 ++fcmpun 0x4014000000000000 0x4197d78400000000 = 0x0 ++fcmpun 0x4014000000000000 0xc197d78400000000 = 0x0 ++fcmpun 0xc014000000000000 0x0 = 0x0 ++fcmpun 0xc014000000000000 0x8000000000000000 = 0x0 ++fcmpun 0xc014000000000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0xc014000000000000 0x123456789abcdef0 = 0x0 ++fcmpun 0xc014000000000000 0x3ff0000000000000 = 0x0 ++fcmpun 0xc014000000000000 0xbff0000000000000 = 0x0 ++fcmpun 0xc014000000000000 0x3fb999999999999a = 0x0 ++fcmpun 0xc014000000000000 0xbfb999999999999a = 0x0 ++fcmpun 0xc014000000000000 0x3fc999999999999a = 0x0 ++fcmpun 0xc014000000000000 0xbfc999999999999a = 0x0 ++fcmpun 0xc014000000000000 0x4008000000000000 = 0x0 ++fcmpun 0xc014000000000000 0xc008000000000000 = 0x0 ++fcmpun 0xc014000000000000 0x4014000000000000 = 0x0 ++fcmpun 0xc014000000000000 0xc014000000000000 = 0x0 ++fcmpun 0xc014000000000000 0x4197d78400000000 = 0x0 ++fcmpun 0xc014000000000000 0xc197d78400000000 = 0x0 ++fcmpun 0x4197d78400000000 0x0 = 0x0 ++fcmpun 0x4197d78400000000 0x8000000000000000 = 0x0 ++fcmpun 0x4197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0x4197d78400000000 0x123456789abcdef0 = 0x0 ++fcmpun 0x4197d78400000000 0x3ff0000000000000 = 0x0 ++fcmpun 0x4197d78400000000 0xbff0000000000000 = 0x0 ++fcmpun 0x4197d78400000000 0x3fb999999999999a = 0x0 ++fcmpun 0x4197d78400000000 0xbfb999999999999a = 0x0 ++fcmpun 0x4197d78400000000 0x3fc999999999999a = 0x0 ++fcmpun 0x4197d78400000000 0xbfc999999999999a = 0x0 ++fcmpun 0x4197d78400000000 0x4008000000000000 = 0x0 ++fcmpun 0x4197d78400000000 0xc008000000000000 = 0x0 ++fcmpun 0x4197d78400000000 0x4014000000000000 = 0x0 ++fcmpun 0x4197d78400000000 0xc014000000000000 = 0x0 ++fcmpun 0x4197d78400000000 0x4197d78400000000 = 0x0 ++fcmpun 0x4197d78400000000 0xc197d78400000000 = 0x0 ++fcmpun 0xc197d78400000000 0x0 = 0x0 ++fcmpun 0xc197d78400000000 0x8000000000000000 = 0x0 ++fcmpun 0xc197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0xc197d78400000000 0x123456789abcdef0 = 0x0 ++fcmpun 0xc197d78400000000 0x3ff0000000000000 = 0x0 ++fcmpun 0xc197d78400000000 0xbff0000000000000 = 0x0 ++fcmpun 0xc197d78400000000 0x3fb999999999999a = 0x0 ++fcmpun 0xc197d78400000000 0xbfb999999999999a = 0x0 ++fcmpun 0xc197d78400000000 0x3fc999999999999a = 0x0 ++fcmpun 0xc197d78400000000 0xbfc999999999999a = 0x0 ++fcmpun 0xc197d78400000000 0x4008000000000000 = 0x0 ++fcmpun 0xc197d78400000000 0xc008000000000000 = 0x0 ++fcmpun 0xc197d78400000000 0x4014000000000000 = 0x0 ++fcmpun 0xc197d78400000000 0xc014000000000000 = 0x0 ++fcmpun 0xc197d78400000000 0x4197d78400000000 = 0x0 ++fcmpun 0xc197d78400000000 0xc197d78400000000 = 0x0 ++=== Running test on fcpys=== ++fcpys 0x0 0x0 = 0x0 ++fcpys 0x0 0x8000000000000000 = 0x0 ++fcpys 0x0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x0 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x0 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x0 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x0 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x0 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x0 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x0 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x0 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x0 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x0 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x0 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0x8000000000000000 0x0 = 0x8000000000000000 ++fcpys 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpys 0x8000000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0x8000000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0x8000000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0x8000000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0x8000000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0x8000000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0x8000000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0x8000000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpys 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpys 0x8000000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpys 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpys 0x8000000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpys 0xf0debc9a78563412 0x0 = 0x8000000000000000 ++fcpys 0xf0debc9a78563412 0x8000000000000000 = 0x8000000000000000 ++fcpys 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0xf0debc9a78563412 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0xf0debc9a78563412 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0xf0debc9a78563412 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0xf0debc9a78563412 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0xf0debc9a78563412 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0xf0debc9a78563412 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0xf0debc9a78563412 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0xf0debc9a78563412 0x4008000000000000 = 0xc008000000000000 ++fcpys 0xf0debc9a78563412 0xc008000000000000 = 0xc008000000000000 ++fcpys 0xf0debc9a78563412 0x4014000000000000 = 0xc014000000000000 ++fcpys 0xf0debc9a78563412 0xc014000000000000 = 0xc014000000000000 ++fcpys 0xf0debc9a78563412 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0xf0debc9a78563412 0xc197d78400000000 = 0xc197d78400000000 ++fcpys 0x123456789abcdef0 0x0 = 0x0 ++fcpys 0x123456789abcdef0 0x8000000000000000 = 0x0 ++fcpys 0x123456789abcdef0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x123456789abcdef0 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x123456789abcdef0 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x123456789abcdef0 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x123456789abcdef0 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x123456789abcdef0 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x123456789abcdef0 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x123456789abcdef0 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x123456789abcdef0 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x123456789abcdef0 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x123456789abcdef0 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x123456789abcdef0 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x123456789abcdef0 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0x3ff0000000000000 0x0 = 0x0 ++fcpys 0x3ff0000000000000 0x8000000000000000 = 0x0 ++fcpys 0x3ff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x3ff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x3ff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x3ff0000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x3ff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x3ff0000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x3ff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x3ff0000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x3ff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x3ff0000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x3ff0000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0xbff0000000000000 0x0 = 0x8000000000000000 ++fcpys 0xbff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpys 0xbff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0xbff0000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0xbff0000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0xbff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0xbff0000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0xbff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0xbff0000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpys 0xbff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpys 0xbff0000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpys 0xbff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpys 0xbff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0xbff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpys 0x3fb999999999999a 0x0 = 0x0 ++fcpys 0x3fb999999999999a 0x8000000000000000 = 0x0 ++fcpys 0x3fb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x3fb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x3fb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x3fb999999999999a 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x3fb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x3fb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x3fb999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x3fb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x3fb999999999999a 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x3fb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x3fb999999999999a 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x3fb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x3fb999999999999a 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0xbfb999999999999a 0x0 = 0x8000000000000000 ++fcpys 0xbfb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fcpys 0xbfb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0xbfb999999999999a 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0xbfb999999999999a 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0xbfb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0xbfb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0xbfb999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0xbfb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0xbfb999999999999a 0x4008000000000000 = 0xc008000000000000 ++fcpys 0xbfb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fcpys 0xbfb999999999999a 0x4014000000000000 = 0xc014000000000000 ++fcpys 0xbfb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fcpys 0xbfb999999999999a 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0xbfb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fcpys 0x3fc999999999999a 0x0 = 0x0 ++fcpys 0x3fc999999999999a 0x8000000000000000 = 0x0 ++fcpys 0x3fc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x3fc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x3fc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x3fc999999999999a 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x3fc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x3fc999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x3fc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x3fc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x3fc999999999999a 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x3fc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x3fc999999999999a 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x3fc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x3fc999999999999a 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0xbfc999999999999a 0x0 = 0x8000000000000000 ++fcpys 0xbfc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fcpys 0xbfc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0xbfc999999999999a 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0xbfc999999999999a 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0xbfc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0xbfc999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0xbfc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0xbfc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0xbfc999999999999a 0x4008000000000000 = 0xc008000000000000 ++fcpys 0xbfc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fcpys 0xbfc999999999999a 0x4014000000000000 = 0xc014000000000000 ++fcpys 0xbfc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fcpys 0xbfc999999999999a 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0xbfc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fcpys 0x4008000000000000 0x0 = 0x0 ++fcpys 0x4008000000000000 0x8000000000000000 = 0x0 ++fcpys 0x4008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x4008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x4008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x4008000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x4008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x4008000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x4008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x4008000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x4008000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x4008000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x4008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x4008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0xc008000000000000 0x0 = 0x8000000000000000 ++fcpys 0xc008000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpys 0xc008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0xc008000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0xc008000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0xc008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0xc008000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0xc008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0xc008000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0xc008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0xc008000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpys 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpys 0xc008000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpys 0xc008000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpys 0xc008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0xc008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpys 0x4014000000000000 0x0 = 0x0 ++fcpys 0x4014000000000000 0x8000000000000000 = 0x0 ++fcpys 0x4014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x4014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x4014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x4014000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x4014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x4014000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x4014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x4014000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x4014000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x4014000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x4014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x4014000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0xc014000000000000 0x0 = 0x8000000000000000 ++fcpys 0xc014000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpys 0xc014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0xc014000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0xc014000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0xc014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0xc014000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0xc014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0xc014000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0xc014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0xc014000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpys 0xc014000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpys 0xc014000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpys 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpys 0xc014000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0xc014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpys 0x4197d78400000000 0x0 = 0x0 ++fcpys 0x4197d78400000000 0x8000000000000000 = 0x0 ++fcpys 0x4197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x4197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x4197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x4197d78400000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x4197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x4197d78400000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x4197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x4197d78400000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x4197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x4197d78400000000 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x4197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x4197d78400000000 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0xc197d78400000000 0x0 = 0x8000000000000000 ++fcpys 0xc197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fcpys 0xc197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0xc197d78400000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0xc197d78400000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0xc197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0xc197d78400000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0xc197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0xc197d78400000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0xc197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0xc197d78400000000 0x4008000000000000 = 0xc008000000000000 ++fcpys 0xc197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fcpys 0xc197d78400000000 0x4014000000000000 = 0xc014000000000000 ++fcpys 0xc197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fcpys 0xc197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++=== Running test on fcpyse=== ++fcpyse 0x0 0x0 = 0x0 ++fcpyse 0x0 0x8000000000000000 = 0x0 ++fcpyse 0x0 0xf0debc9a78563412 = 0xebc9a78563412 ++fcpyse 0x0 0x123456789abcdef0 = 0x456789abcdef0 ++fcpyse 0x0 0x3ff0000000000000 = 0x0 ++fcpyse 0x0 0xbff0000000000000 = 0x0 ++fcpyse 0x0 0x3fb999999999999a = 0x999999999999a ++fcpyse 0x0 0xbfb999999999999a = 0x999999999999a ++fcpyse 0x0 0x3fc999999999999a = 0x999999999999a ++fcpyse 0x0 0xbfc999999999999a = 0x999999999999a ++fcpyse 0x0 0x4008000000000000 = 0x8000000000000 ++fcpyse 0x0 0xc008000000000000 = 0x8000000000000 ++fcpyse 0x0 0x4014000000000000 = 0x4000000000000 ++fcpyse 0x0 0xc014000000000000 = 0x4000000000000 ++fcpyse 0x0 0x4197d78400000000 = 0x7d78400000000 ++fcpyse 0x0 0xc197d78400000000 = 0x7d78400000000 ++fcpyse 0x8000000000000000 0x0 = 0x8000000000000000 ++fcpyse 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpyse 0x8000000000000000 0xf0debc9a78563412 = 0x800ebc9a78563412 ++fcpyse 0x8000000000000000 0x123456789abcdef0 = 0x800456789abcdef0 ++fcpyse 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fcpyse 0x8000000000000000 0xbff0000000000000 = 0x8000000000000000 ++fcpyse 0x8000000000000000 0x3fb999999999999a = 0x800999999999999a ++fcpyse 0x8000000000000000 0xbfb999999999999a = 0x800999999999999a ++fcpyse 0x8000000000000000 0x3fc999999999999a = 0x800999999999999a ++fcpyse 0x8000000000000000 0xbfc999999999999a = 0x800999999999999a ++fcpyse 0x8000000000000000 0x4008000000000000 = 0x8008000000000000 ++fcpyse 0x8000000000000000 0xc008000000000000 = 0x8008000000000000 ++fcpyse 0x8000000000000000 0x4014000000000000 = 0x8004000000000000 ++fcpyse 0x8000000000000000 0xc014000000000000 = 0x8004000000000000 ++fcpyse 0x8000000000000000 0x4197d78400000000 = 0x8007d78400000000 ++fcpyse 0x8000000000000000 0xc197d78400000000 = 0x8007d78400000000 ++fcpyse 0xf0debc9a78563412 0x0 = 0xf0d0000000000000 ++fcpyse 0xf0debc9a78563412 0x8000000000000000 = 0xf0d0000000000000 ++fcpyse 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpyse 0xf0debc9a78563412 0x123456789abcdef0 = 0xf0d456789abcdef0 ++fcpyse 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0d0000000000000 ++fcpyse 0xf0debc9a78563412 0xbff0000000000000 = 0xf0d0000000000000 ++fcpyse 0xf0debc9a78563412 0x3fb999999999999a = 0xf0d999999999999a ++fcpyse 0xf0debc9a78563412 0xbfb999999999999a = 0xf0d999999999999a ++fcpyse 0xf0debc9a78563412 0x3fc999999999999a = 0xf0d999999999999a ++fcpyse 0xf0debc9a78563412 0xbfc999999999999a = 0xf0d999999999999a ++fcpyse 0xf0debc9a78563412 0x4008000000000000 = 0xf0d8000000000000 ++fcpyse 0xf0debc9a78563412 0xc008000000000000 = 0xf0d8000000000000 ++fcpyse 0xf0debc9a78563412 0x4014000000000000 = 0xf0d4000000000000 ++fcpyse 0xf0debc9a78563412 0xc014000000000000 = 0xf0d4000000000000 ++fcpyse 0xf0debc9a78563412 0x4197d78400000000 = 0xf0d7d78400000000 ++fcpyse 0xf0debc9a78563412 0xc197d78400000000 = 0xf0d7d78400000000 ++fcpyse 0x123456789abcdef0 0x0 = 0x1230000000000000 ++fcpyse 0x123456789abcdef0 0x8000000000000000 = 0x1230000000000000 ++fcpyse 0x123456789abcdef0 0xf0debc9a78563412 = 0x123ebc9a78563412 ++fcpyse 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpyse 0x123456789abcdef0 0x3ff0000000000000 = 0x1230000000000000 ++fcpyse 0x123456789abcdef0 0xbff0000000000000 = 0x1230000000000000 ++fcpyse 0x123456789abcdef0 0x3fb999999999999a = 0x123999999999999a ++fcpyse 0x123456789abcdef0 0xbfb999999999999a = 0x123999999999999a ++fcpyse 0x123456789abcdef0 0x3fc999999999999a = 0x123999999999999a ++fcpyse 0x123456789abcdef0 0xbfc999999999999a = 0x123999999999999a ++fcpyse 0x123456789abcdef0 0x4008000000000000 = 0x1238000000000000 ++fcpyse 0x123456789abcdef0 0xc008000000000000 = 0x1238000000000000 ++fcpyse 0x123456789abcdef0 0x4014000000000000 = 0x1234000000000000 ++fcpyse 0x123456789abcdef0 0xc014000000000000 = 0x1234000000000000 ++fcpyse 0x123456789abcdef0 0x4197d78400000000 = 0x1237d78400000000 ++fcpyse 0x123456789abcdef0 0xc197d78400000000 = 0x1237d78400000000 ++fcpyse 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++fcpyse 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++fcpyse 0x3ff0000000000000 0xf0debc9a78563412 = 0x3ffebc9a78563412 ++fcpyse 0x3ff0000000000000 0x123456789abcdef0 = 0x3ff456789abcdef0 ++fcpyse 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpyse 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpyse 0x3ff0000000000000 0x3fb999999999999a = 0x3ff999999999999a ++fcpyse 0x3ff0000000000000 0xbfb999999999999a = 0x3ff999999999999a ++fcpyse 0x3ff0000000000000 0x3fc999999999999a = 0x3ff999999999999a ++fcpyse 0x3ff0000000000000 0xbfc999999999999a = 0x3ff999999999999a ++fcpyse 0x3ff0000000000000 0x4008000000000000 = 0x3ff8000000000000 ++fcpyse 0x3ff0000000000000 0xc008000000000000 = 0x3ff8000000000000 ++fcpyse 0x3ff0000000000000 0x4014000000000000 = 0x3ff4000000000000 ++fcpyse 0x3ff0000000000000 0xc014000000000000 = 0x3ff4000000000000 ++fcpyse 0x3ff0000000000000 0x4197d78400000000 = 0x3ff7d78400000000 ++fcpyse 0x3ff0000000000000 0xc197d78400000000 = 0x3ff7d78400000000 ++fcpyse 0xbff0000000000000 0x0 = 0xbff0000000000000 ++fcpyse 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++fcpyse 0xbff0000000000000 0xf0debc9a78563412 = 0xbffebc9a78563412 ++fcpyse 0xbff0000000000000 0x123456789abcdef0 = 0xbff456789abcdef0 ++fcpyse 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpyse 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpyse 0xbff0000000000000 0x3fb999999999999a = 0xbff999999999999a ++fcpyse 0xbff0000000000000 0xbfb999999999999a = 0xbff999999999999a ++fcpyse 0xbff0000000000000 0x3fc999999999999a = 0xbff999999999999a ++fcpyse 0xbff0000000000000 0xbfc999999999999a = 0xbff999999999999a ++fcpyse 0xbff0000000000000 0x4008000000000000 = 0xbff8000000000000 ++fcpyse 0xbff0000000000000 0xc008000000000000 = 0xbff8000000000000 ++fcpyse 0xbff0000000000000 0x4014000000000000 = 0xbff4000000000000 ++fcpyse 0xbff0000000000000 0xc014000000000000 = 0xbff4000000000000 ++fcpyse 0xbff0000000000000 0x4197d78400000000 = 0xbff7d78400000000 ++fcpyse 0xbff0000000000000 0xc197d78400000000 = 0xbff7d78400000000 ++fcpyse 0x3fb999999999999a 0x0 = 0x3fb0000000000000 ++fcpyse 0x3fb999999999999a 0x8000000000000000 = 0x3fb0000000000000 ++fcpyse 0x3fb999999999999a 0xf0debc9a78563412 = 0x3fbebc9a78563412 ++fcpyse 0x3fb999999999999a 0x123456789abcdef0 = 0x3fb456789abcdef0 ++fcpyse 0x3fb999999999999a 0x3ff0000000000000 = 0x3fb0000000000000 ++fcpyse 0x3fb999999999999a 0xbff0000000000000 = 0x3fb0000000000000 ++fcpyse 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fcpyse 0x3fb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fcpyse 0x3fb999999999999a 0x3fc999999999999a = 0x3fb999999999999a ++fcpyse 0x3fb999999999999a 0xbfc999999999999a = 0x3fb999999999999a ++fcpyse 0x3fb999999999999a 0x4008000000000000 = 0x3fb8000000000000 ++fcpyse 0x3fb999999999999a 0xc008000000000000 = 0x3fb8000000000000 ++fcpyse 0x3fb999999999999a 0x4014000000000000 = 0x3fb4000000000000 ++fcpyse 0x3fb999999999999a 0xc014000000000000 = 0x3fb4000000000000 ++fcpyse 0x3fb999999999999a 0x4197d78400000000 = 0x3fb7d78400000000 ++fcpyse 0x3fb999999999999a 0xc197d78400000000 = 0x3fb7d78400000000 ++fcpyse 0xbfb999999999999a 0x0 = 0xbfb0000000000000 ++fcpyse 0xbfb999999999999a 0x8000000000000000 = 0xbfb0000000000000 ++fcpyse 0xbfb999999999999a 0xf0debc9a78563412 = 0xbfbebc9a78563412 ++fcpyse 0xbfb999999999999a 0x123456789abcdef0 = 0xbfb456789abcdef0 ++fcpyse 0xbfb999999999999a 0x3ff0000000000000 = 0xbfb0000000000000 ++fcpyse 0xbfb999999999999a 0xbff0000000000000 = 0xbfb0000000000000 ++fcpyse 0xbfb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fcpyse 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fcpyse 0xbfb999999999999a 0x3fc999999999999a = 0xbfb999999999999a ++fcpyse 0xbfb999999999999a 0xbfc999999999999a = 0xbfb999999999999a ++fcpyse 0xbfb999999999999a 0x4008000000000000 = 0xbfb8000000000000 ++fcpyse 0xbfb999999999999a 0xc008000000000000 = 0xbfb8000000000000 ++fcpyse 0xbfb999999999999a 0x4014000000000000 = 0xbfb4000000000000 ++fcpyse 0xbfb999999999999a 0xc014000000000000 = 0xbfb4000000000000 ++fcpyse 0xbfb999999999999a 0x4197d78400000000 = 0xbfb7d78400000000 ++fcpyse 0xbfb999999999999a 0xc197d78400000000 = 0xbfb7d78400000000 ++fcpyse 0x3fc999999999999a 0x0 = 0x3fc0000000000000 ++fcpyse 0x3fc999999999999a 0x8000000000000000 = 0x3fc0000000000000 ++fcpyse 0x3fc999999999999a 0xf0debc9a78563412 = 0x3fcebc9a78563412 ++fcpyse 0x3fc999999999999a 0x123456789abcdef0 = 0x3fc456789abcdef0 ++fcpyse 0x3fc999999999999a 0x3ff0000000000000 = 0x3fc0000000000000 ++fcpyse 0x3fc999999999999a 0xbff0000000000000 = 0x3fc0000000000000 ++fcpyse 0x3fc999999999999a 0x3fb999999999999a = 0x3fc999999999999a ++fcpyse 0x3fc999999999999a 0xbfb999999999999a = 0x3fc999999999999a ++fcpyse 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fcpyse 0x3fc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fcpyse 0x3fc999999999999a 0x4008000000000000 = 0x3fc8000000000000 ++fcpyse 0x3fc999999999999a 0xc008000000000000 = 0x3fc8000000000000 ++fcpyse 0x3fc999999999999a 0x4014000000000000 = 0x3fc4000000000000 ++fcpyse 0x3fc999999999999a 0xc014000000000000 = 0x3fc4000000000000 ++fcpyse 0x3fc999999999999a 0x4197d78400000000 = 0x3fc7d78400000000 ++fcpyse 0x3fc999999999999a 0xc197d78400000000 = 0x3fc7d78400000000 ++fcpyse 0xbfc999999999999a 0x0 = 0xbfc0000000000000 ++fcpyse 0xbfc999999999999a 0x8000000000000000 = 0xbfc0000000000000 ++fcpyse 0xbfc999999999999a 0xf0debc9a78563412 = 0xbfcebc9a78563412 ++fcpyse 0xbfc999999999999a 0x123456789abcdef0 = 0xbfc456789abcdef0 ++fcpyse 0xbfc999999999999a 0x3ff0000000000000 = 0xbfc0000000000000 ++fcpyse 0xbfc999999999999a 0xbff0000000000000 = 0xbfc0000000000000 ++fcpyse 0xbfc999999999999a 0x3fb999999999999a = 0xbfc999999999999a ++fcpyse 0xbfc999999999999a 0xbfb999999999999a = 0xbfc999999999999a ++fcpyse 0xbfc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fcpyse 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fcpyse 0xbfc999999999999a 0x4008000000000000 = 0xbfc8000000000000 ++fcpyse 0xbfc999999999999a 0xc008000000000000 = 0xbfc8000000000000 ++fcpyse 0xbfc999999999999a 0x4014000000000000 = 0xbfc4000000000000 ++fcpyse 0xbfc999999999999a 0xc014000000000000 = 0xbfc4000000000000 ++fcpyse 0xbfc999999999999a 0x4197d78400000000 = 0xbfc7d78400000000 ++fcpyse 0xbfc999999999999a 0xc197d78400000000 = 0xbfc7d78400000000 ++fcpyse 0x4008000000000000 0x0 = 0x4000000000000000 ++fcpyse 0x4008000000000000 0x8000000000000000 = 0x4000000000000000 ++fcpyse 0x4008000000000000 0xf0debc9a78563412 = 0x400ebc9a78563412 ++fcpyse 0x4008000000000000 0x123456789abcdef0 = 0x400456789abcdef0 ++fcpyse 0x4008000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcpyse 0x4008000000000000 0xbff0000000000000 = 0x4000000000000000 ++fcpyse 0x4008000000000000 0x3fb999999999999a = 0x400999999999999a ++fcpyse 0x4008000000000000 0xbfb999999999999a = 0x400999999999999a ++fcpyse 0x4008000000000000 0x3fc999999999999a = 0x400999999999999a ++fcpyse 0x4008000000000000 0xbfc999999999999a = 0x400999999999999a ++fcpyse 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpyse 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpyse 0x4008000000000000 0x4014000000000000 = 0x4004000000000000 ++fcpyse 0x4008000000000000 0xc014000000000000 = 0x4004000000000000 ++fcpyse 0x4008000000000000 0x4197d78400000000 = 0x4007d78400000000 ++fcpyse 0x4008000000000000 0xc197d78400000000 = 0x4007d78400000000 ++fcpyse 0xc008000000000000 0x0 = 0xc000000000000000 ++fcpyse 0xc008000000000000 0x8000000000000000 = 0xc000000000000000 ++fcpyse 0xc008000000000000 0xf0debc9a78563412 = 0xc00ebc9a78563412 ++fcpyse 0xc008000000000000 0x123456789abcdef0 = 0xc00456789abcdef0 ++fcpyse 0xc008000000000000 0x3ff0000000000000 = 0xc000000000000000 ++fcpyse 0xc008000000000000 0xbff0000000000000 = 0xc000000000000000 ++fcpyse 0xc008000000000000 0x3fb999999999999a = 0xc00999999999999a ++fcpyse 0xc008000000000000 0xbfb999999999999a = 0xc00999999999999a ++fcpyse 0xc008000000000000 0x3fc999999999999a = 0xc00999999999999a ++fcpyse 0xc008000000000000 0xbfc999999999999a = 0xc00999999999999a ++fcpyse 0xc008000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpyse 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpyse 0xc008000000000000 0x4014000000000000 = 0xc004000000000000 ++fcpyse 0xc008000000000000 0xc014000000000000 = 0xc004000000000000 ++fcpyse 0xc008000000000000 0x4197d78400000000 = 0xc007d78400000000 ++fcpyse 0xc008000000000000 0xc197d78400000000 = 0xc007d78400000000 ++fcpyse 0x4014000000000000 0x0 = 0x4010000000000000 ++fcpyse 0x4014000000000000 0x8000000000000000 = 0x4010000000000000 ++fcpyse 0x4014000000000000 0xf0debc9a78563412 = 0x401ebc9a78563412 ++fcpyse 0x4014000000000000 0x123456789abcdef0 = 0x401456789abcdef0 ++fcpyse 0x4014000000000000 0x3ff0000000000000 = 0x4010000000000000 ++fcpyse 0x4014000000000000 0xbff0000000000000 = 0x4010000000000000 ++fcpyse 0x4014000000000000 0x3fb999999999999a = 0x401999999999999a ++fcpyse 0x4014000000000000 0xbfb999999999999a = 0x401999999999999a ++fcpyse 0x4014000000000000 0x3fc999999999999a = 0x401999999999999a ++fcpyse 0x4014000000000000 0xbfc999999999999a = 0x401999999999999a ++fcpyse 0x4014000000000000 0x4008000000000000 = 0x4018000000000000 ++fcpyse 0x4014000000000000 0xc008000000000000 = 0x4018000000000000 ++fcpyse 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpyse 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpyse 0x4014000000000000 0x4197d78400000000 = 0x4017d78400000000 ++fcpyse 0x4014000000000000 0xc197d78400000000 = 0x4017d78400000000 ++fcpyse 0xc014000000000000 0x0 = 0xc010000000000000 ++fcpyse 0xc014000000000000 0x8000000000000000 = 0xc010000000000000 ++fcpyse 0xc014000000000000 0xf0debc9a78563412 = 0xc01ebc9a78563412 ++fcpyse 0xc014000000000000 0x123456789abcdef0 = 0xc01456789abcdef0 ++fcpyse 0xc014000000000000 0x3ff0000000000000 = 0xc010000000000000 ++fcpyse 0xc014000000000000 0xbff0000000000000 = 0xc010000000000000 ++fcpyse 0xc014000000000000 0x3fb999999999999a = 0xc01999999999999a ++fcpyse 0xc014000000000000 0xbfb999999999999a = 0xc01999999999999a ++fcpyse 0xc014000000000000 0x3fc999999999999a = 0xc01999999999999a ++fcpyse 0xc014000000000000 0xbfc999999999999a = 0xc01999999999999a ++fcpyse 0xc014000000000000 0x4008000000000000 = 0xc018000000000000 ++fcpyse 0xc014000000000000 0xc008000000000000 = 0xc018000000000000 ++fcpyse 0xc014000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpyse 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpyse 0xc014000000000000 0x4197d78400000000 = 0xc017d78400000000 ++fcpyse 0xc014000000000000 0xc197d78400000000 = 0xc017d78400000000 ++fcpyse 0x4197d78400000000 0x0 = 0x4190000000000000 ++fcpyse 0x4197d78400000000 0x8000000000000000 = 0x4190000000000000 ++fcpyse 0x4197d78400000000 0xf0debc9a78563412 = 0x419ebc9a78563412 ++fcpyse 0x4197d78400000000 0x123456789abcdef0 = 0x419456789abcdef0 ++fcpyse 0x4197d78400000000 0x3ff0000000000000 = 0x4190000000000000 ++fcpyse 0x4197d78400000000 0xbff0000000000000 = 0x4190000000000000 ++fcpyse 0x4197d78400000000 0x3fb999999999999a = 0x419999999999999a ++fcpyse 0x4197d78400000000 0xbfb999999999999a = 0x419999999999999a ++fcpyse 0x4197d78400000000 0x3fc999999999999a = 0x419999999999999a ++fcpyse 0x4197d78400000000 0xbfc999999999999a = 0x419999999999999a ++fcpyse 0x4197d78400000000 0x4008000000000000 = 0x4198000000000000 ++fcpyse 0x4197d78400000000 0xc008000000000000 = 0x4198000000000000 ++fcpyse 0x4197d78400000000 0x4014000000000000 = 0x4194000000000000 ++fcpyse 0x4197d78400000000 0xc014000000000000 = 0x4194000000000000 ++fcpyse 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpyse 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpyse 0xc197d78400000000 0x0 = 0xc190000000000000 ++fcpyse 0xc197d78400000000 0x8000000000000000 = 0xc190000000000000 ++fcpyse 0xc197d78400000000 0xf0debc9a78563412 = 0xc19ebc9a78563412 ++fcpyse 0xc197d78400000000 0x123456789abcdef0 = 0xc19456789abcdef0 ++fcpyse 0xc197d78400000000 0x3ff0000000000000 = 0xc190000000000000 ++fcpyse 0xc197d78400000000 0xbff0000000000000 = 0xc190000000000000 ++fcpyse 0xc197d78400000000 0x3fb999999999999a = 0xc19999999999999a ++fcpyse 0xc197d78400000000 0xbfb999999999999a = 0xc19999999999999a ++fcpyse 0xc197d78400000000 0x3fc999999999999a = 0xc19999999999999a ++fcpyse 0xc197d78400000000 0xbfc999999999999a = 0xc19999999999999a ++fcpyse 0xc197d78400000000 0x4008000000000000 = 0xc198000000000000 ++fcpyse 0xc197d78400000000 0xc008000000000000 = 0xc198000000000000 ++fcpyse 0xc197d78400000000 0x4014000000000000 = 0xc194000000000000 ++fcpyse 0xc197d78400000000 0xc014000000000000 = 0xc194000000000000 ++fcpyse 0xc197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpyse 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++=== Running test on fcpysn=== ++fcpysn 0x0 0x0 = 0x8000000000000000 ++fcpysn 0x0 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x0 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x0 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x0 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x0 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x0 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x0 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x0 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x0 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x0 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x0 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x0 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0x8000000000000000 0x0 = 0x0 ++fcpysn 0x8000000000000000 0x8000000000000000 = 0x0 ++fcpysn 0x8000000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0x8000000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0x8000000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0x8000000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0x8000000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0x8000000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0x8000000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0x8000000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0x8000000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0x8000000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpysn 0xf0debc9a78563412 0x0 = 0x0 ++fcpysn 0xf0debc9a78563412 0x8000000000000000 = 0x0 ++fcpysn 0xf0debc9a78563412 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0xf0debc9a78563412 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0xf0debc9a78563412 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xf0debc9a78563412 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xf0debc9a78563412 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0xf0debc9a78563412 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0xf0debc9a78563412 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0xf0debc9a78563412 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0xf0debc9a78563412 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0xf0debc9a78563412 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0xf0debc9a78563412 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0xf0debc9a78563412 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0xf0debc9a78563412 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0xf0debc9a78563412 0xc197d78400000000 = 0x4197d78400000000 ++fcpysn 0x123456789abcdef0 0x0 = 0x8000000000000000 ++fcpysn 0x123456789abcdef0 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x123456789abcdef0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x123456789abcdef0 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x123456789abcdef0 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x123456789abcdef0 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x123456789abcdef0 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x123456789abcdef0 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x123456789abcdef0 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x123456789abcdef0 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x123456789abcdef0 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x123456789abcdef0 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x123456789abcdef0 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x123456789abcdef0 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x123456789abcdef0 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x123456789abcdef0 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0x3ff0000000000000 0x0 = 0x8000000000000000 ++fcpysn 0x3ff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x3ff0000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x3ff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x3ff0000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x3ff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x3ff0000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x3ff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x3ff0000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x3ff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x3ff0000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x3ff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x3ff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0xbff0000000000000 0x0 = 0x0 ++fcpysn 0xbff0000000000000 0x8000000000000000 = 0x0 ++fcpysn 0xbff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0xbff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0xbff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xbff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0xbff0000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0xbff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0xbff0000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0xbff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0xbff0000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0xbff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0xbff0000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0xbff0000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpysn 0x3fb999999999999a 0x0 = 0x8000000000000000 ++fcpysn 0x3fb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x3fb999999999999a 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x3fb999999999999a 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x3fb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x3fb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x3fb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x3fb999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x3fb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x3fb999999999999a 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x3fb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x3fb999999999999a 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x3fb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x3fb999999999999a 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x3fb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0xbfb999999999999a 0x0 = 0x0 ++fcpysn 0xbfb999999999999a 0x8000000000000000 = 0x0 ++fcpysn 0xbfb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0xbfb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0xbfb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xbfb999999999999a 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xbfb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0xbfb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0xbfb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0xbfb999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0xbfb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0xbfb999999999999a 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0xbfb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0xbfb999999999999a 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0xbfb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0xbfb999999999999a 0xc197d78400000000 = 0x4197d78400000000 ++fcpysn 0x3fc999999999999a 0x0 = 0x8000000000000000 ++fcpysn 0x3fc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x3fc999999999999a 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x3fc999999999999a 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x3fc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x3fc999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x3fc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x3fc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x3fc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x3fc999999999999a 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x3fc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x3fc999999999999a 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x3fc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x3fc999999999999a 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x3fc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0xbfc999999999999a 0x0 = 0x0 ++fcpysn 0xbfc999999999999a 0x8000000000000000 = 0x0 ++fcpysn 0xbfc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0xbfc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0xbfc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xbfc999999999999a 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xbfc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0xbfc999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0xbfc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0xbfc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0xbfc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0xbfc999999999999a 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0xbfc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0xbfc999999999999a 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0xbfc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0xbfc999999999999a 0xc197d78400000000 = 0x4197d78400000000 ++fcpysn 0x4008000000000000 0x0 = 0x8000000000000000 ++fcpysn 0x4008000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x4008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x4008000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x4008000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x4008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x4008000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x4008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x4008000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x4008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x4008000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x4008000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x4008000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x4008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x4008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0xc008000000000000 0x0 = 0x0 ++fcpysn 0xc008000000000000 0x8000000000000000 = 0x0 ++fcpysn 0xc008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0xc008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0xc008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xc008000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xc008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0xc008000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0xc008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0xc008000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0xc008000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0xc008000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0xc008000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0xc008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpysn 0x4014000000000000 0x0 = 0x8000000000000000 ++fcpysn 0x4014000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x4014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x4014000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x4014000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x4014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x4014000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x4014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x4014000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x4014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x4014000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x4014000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x4014000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x4014000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x4014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0xc014000000000000 0x0 = 0x0 ++fcpysn 0xc014000000000000 0x8000000000000000 = 0x0 ++fcpysn 0xc014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0xc014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0xc014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xc014000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xc014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0xc014000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0xc014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0xc014000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0xc014000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0xc014000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0xc014000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0xc014000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0xc014000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpysn 0x4197d78400000000 0x0 = 0x8000000000000000 ++fcpysn 0x4197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x4197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x4197d78400000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x4197d78400000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x4197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x4197d78400000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x4197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x4197d78400000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x4197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x4197d78400000000 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x4197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x4197d78400000000 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x4197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x4197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0xc197d78400000000 0x0 = 0x0 ++fcpysn 0xc197d78400000000 0x8000000000000000 = 0x0 ++fcpysn 0xc197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0xc197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0xc197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xc197d78400000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xc197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0xc197d78400000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0xc197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0xc197d78400000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0xc197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0xc197d78400000000 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0xc197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0xc197d78400000000 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0xc197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0xc197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++=== Running test on fmas=== ++fmas 0x0 0x0 0x0 = 0x0 ++fmas 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fmas 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fmas 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmas 0x0 0x3fb99999a0000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fmas 0x0 0xbfb99999a0000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fmas 0x0 0x3fc99999a0000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fmas 0x0 0xbfc99999a0000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fmas 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fmas 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fmas 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fmas 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fmas 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0x8000000000000000 0x0 0x8000000000000000 = 0x8000000000000000 ++fmas 0x8000000000000000 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fmas 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmas 0x8000000000000000 0xbff0000000000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fmas 0x8000000000000000 0x3fb99999a0000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fmas 0x8000000000000000 0xbfb99999a0000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fmas 0x8000000000000000 0x3fc99999a0000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fmas 0x8000000000000000 0xbfc99999a0000000 0x4008000000000000 = 0x4008000000000000 ++fmas 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fmas 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fmas 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fmas 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fmas 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fmas 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmas 0x3ff0000000000000 0x3ff0000000000000 0x3fb99999a0000000 = 0x3ff19999a0000000 ++fmas 0x3ff0000000000000 0xbff0000000000000 0xbfb99999a0000000 = 0xbff19999a0000000 ++fmas 0x3ff0000000000000 0x3fb99999a0000000 0x3fc99999a0000000 = 0x3fd3333340000000 ++fmas 0x3ff0000000000000 0xbfb99999a0000000 0xbfc99999a0000000 = 0xbfd3333340000000 ++fmas 0x3ff0000000000000 0x3fc99999a0000000 0x4008000000000000 = 0x40099999a0000000 ++fmas 0x3ff0000000000000 0xbfc99999a0000000 0xc008000000000000 = 0xc0099999a0000000 ++fmas 0x3ff0000000000000 0x4008000000000000 0x4014000000000000 = 0x4020000000000000 ++fmas 0x3ff0000000000000 0xc008000000000000 0xc014000000000000 = 0xc020000000000000 ++fmas 0x3ff0000000000000 0x4014000000000000 0x4197d78400000000 = 0x4197d78420000000 ++fmas 0x3ff0000000000000 0xc014000000000000 0xc197d78400000000 = 0xc197d78420000000 ++fmas 0x3ff0000000000000 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fmas 0x3ff0000000000000 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fmas 0xbff0000000000000 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fmas 0xbff0000000000000 0x8000000000000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fmas 0xbff0000000000000 0x3ff0000000000000 0xbfb99999a0000000 = 0xbff19999a0000000 ++fmas 0xbff0000000000000 0xbff0000000000000 0x3fc99999a0000000 = 0x3ff3333340000000 ++fmas 0xbff0000000000000 0x3fb99999a0000000 0xbfc99999a0000000 = 0xbfd3333340000000 ++fmas 0xbff0000000000000 0xbfb99999a0000000 0x4008000000000000 = 0x4008ccccc0000000 ++fmas 0xbff0000000000000 0x3fc99999a0000000 0xc008000000000000 = 0xc0099999a0000000 ++fmas 0xbff0000000000000 0xbfc99999a0000000 0x4014000000000000 = 0x4014ccccc0000000 ++fmas 0xbff0000000000000 0x4008000000000000 0xc014000000000000 = 0xc020000000000000 ++fmas 0xbff0000000000000 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0xbff0000000000000 0x4014000000000000 0xc197d78400000000 = 0xc197d78420000000 ++fmas 0xbff0000000000000 0xc014000000000000 0x0 = 0x4014000000000000 ++fmas 0xbff0000000000000 0x4197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fmas 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fmas 0x3fb99999a0000000 0x0 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fmas 0x3fb99999a0000000 0x8000000000000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fmas 0x3fb99999a0000000 0x3ff0000000000000 0x3fc99999a0000000 = 0x3fd3333340000000 ++fmas 0x3fb99999a0000000 0xbff0000000000000 0xbfc99999a0000000 = 0xbfd3333340000000 ++fmas 0x3fb99999a0000000 0x3fb99999a0000000 0x4008000000000000 = 0x4008147ae0000000 ++fmas 0x3fb99999a0000000 0xbfb99999a0000000 0xc008000000000000 = 0xc008147ae0000000 ++fmas 0x3fb99999a0000000 0x3fc99999a0000000 0x4014000000000000 = 0x4014147ae0000000 ++fmas 0x3fb99999a0000000 0xbfc99999a0000000 0xc014000000000000 = 0xc014147ae0000000 ++fmas 0x3fb99999a0000000 0x4008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0x3fb99999a0000000 0xc008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0x3fb99999a0000000 0x4014000000000000 0x0 = 0x3fe0000000000000 ++fmas 0x3fb99999a0000000 0xc014000000000000 0x8000000000000000 = 0xbfe0000000000000 ++fmas 0x3fb99999a0000000 0x4197d78400000000 0x3ff0000000000000 = 0x416312d020000000 ++fmas 0x3fb99999a0000000 0xc197d78400000000 0xbff0000000000000 = 0xc16312d020000000 ++fmas 0xbfb99999a0000000 0x0 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fmas 0xbfb99999a0000000 0x8000000000000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fmas 0xbfb99999a0000000 0x3ff0000000000000 0xbfc99999a0000000 = 0xbfd3333340000000 ++fmas 0xbfb99999a0000000 0xbff0000000000000 0x4008000000000000 = 0x4008ccccc0000000 ++fmas 0xbfb99999a0000000 0x3fb99999a0000000 0xc008000000000000 = 0xc008147ae0000000 ++fmas 0xbfb99999a0000000 0xbfb99999a0000000 0x4014000000000000 = 0x40140a3d80000000 ++fmas 0xbfb99999a0000000 0x3fc99999a0000000 0xc014000000000000 = 0xc014147ae0000000 ++fmas 0xbfb99999a0000000 0xbfc99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0xbfb99999a0000000 0x4008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0xbfb99999a0000000 0xc008000000000000 0x0 = 0x3fd3333340000000 ++fmas 0xbfb99999a0000000 0x4014000000000000 0x8000000000000000 = 0xbfe0000000000000 ++fmas 0xbfb99999a0000000 0xc014000000000000 0x3ff0000000000000 = 0x3ff8000000000000 ++fmas 0xbfb99999a0000000 0x4197d78400000000 0xbff0000000000000 = 0xc16312d020000000 ++fmas 0xbfb99999a0000000 0xc197d78400000000 0x3fb99999a0000000 = 0x416312d000000000 ++fmas 0x3fc99999a0000000 0x0 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fmas 0x3fc99999a0000000 0x8000000000000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fmas 0x3fc99999a0000000 0x3ff0000000000000 0x4008000000000000 = 0x40099999a0000000 ++fmas 0x3fc99999a0000000 0xbff0000000000000 0xc008000000000000 = 0xc0099999a0000000 ++fmas 0x3fc99999a0000000 0x3fb99999a0000000 0x4014000000000000 = 0x4014147ae0000000 ++fmas 0x3fc99999a0000000 0xbfb99999a0000000 0xc014000000000000 = 0xc014147ae0000000 ++fmas 0x3fc99999a0000000 0x3fc99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0x3fc99999a0000000 0xbfc99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0x3fc99999a0000000 0x4008000000000000 0x0 = 0x3fe3333340000000 ++fmas 0x3fc99999a0000000 0xc008000000000000 0x8000000000000000 = 0xbfe3333340000000 ++fmas 0x3fc99999a0000000 0x4014000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fmas 0x3fc99999a0000000 0xc014000000000000 0xbff0000000000000 = 0xc000000000000000 ++fmas 0x3fc99999a0000000 0x4197d78400000000 0x3fb99999a0000000 = 0x417312d000000000 ++fmas 0x3fc99999a0000000 0xc197d78400000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmas 0xbfc99999a0000000 0x0 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fmas 0xbfc99999a0000000 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fmas 0xbfc99999a0000000 0x3ff0000000000000 0xc008000000000000 = 0xc0099999a0000000 ++fmas 0xbfc99999a0000000 0xbff0000000000000 0x4014000000000000 = 0x4014ccccc0000000 ++fmas 0xbfc99999a0000000 0x3fb99999a0000000 0xc014000000000000 = 0xc014147ae0000000 ++fmas 0xbfc99999a0000000 0xbfb99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0xbfc99999a0000000 0x3fc99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0xbfc99999a0000000 0xbfc99999a0000000 0x0 = 0x3fa47ae160000000 ++fmas 0xbfc99999a0000000 0x4008000000000000 0x8000000000000000 = 0xbfe3333340000000 ++fmas 0xbfc99999a0000000 0xc008000000000000 0x3ff0000000000000 = 0x3ff99999a0000000 ++fmas 0xbfc99999a0000000 0x4014000000000000 0xbff0000000000000 = 0xc000000000000000 ++fmas 0xbfc99999a0000000 0xc014000000000000 0x3fb99999a0000000 = 0x3ff19999a0000000 ++fmas 0xbfc99999a0000000 0x4197d78400000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmas 0xbfc99999a0000000 0xc197d78400000000 0x3fc99999a0000000 = 0x417312d000000000 ++fmas 0x4008000000000000 0x0 0x4008000000000000 = 0x4008000000000000 ++fmas 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fmas 0x4008000000000000 0x3ff0000000000000 0x4014000000000000 = 0x4020000000000000 ++fmas 0x4008000000000000 0xbff0000000000000 0xc014000000000000 = 0xc020000000000000 ++fmas 0x4008000000000000 0x3fb99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0x4008000000000000 0xbfb99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0x4008000000000000 0x3fc99999a0000000 0x0 = 0x3fe3333340000000 ++fmas 0x4008000000000000 0xbfc99999a0000000 0x8000000000000000 = 0xbfe3333340000000 ++fmas 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x4024000000000000 ++fmas 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xc024000000000000 ++fmas 0x4008000000000000 0x4014000000000000 0x3fb99999a0000000 = 0x402e333340000000 ++fmas 0x4008000000000000 0xc014000000000000 0xbfb99999a0000000 = 0xc02e333340000000 ++fmas 0x4008000000000000 0x4197d78400000000 0x3fc99999a0000000 = 0x41b1e1a300000000 ++fmas 0x4008000000000000 0xc197d78400000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmas 0xc008000000000000 0x0 0xc008000000000000 = 0xc008000000000000 ++fmas 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fmas 0xc008000000000000 0x3ff0000000000000 0xc014000000000000 = 0xc020000000000000 ++fmas 0xc008000000000000 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0xc008000000000000 0x3fb99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0xc008000000000000 0xbfb99999a0000000 0x0 = 0x3fd3333340000000 ++fmas 0xc008000000000000 0x3fc99999a0000000 0x8000000000000000 = 0xbfe3333340000000 ++fmas 0xc008000000000000 0xbfc99999a0000000 0x3ff0000000000000 = 0x3ff99999a0000000 ++fmas 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0xc024000000000000 ++fmas 0xc008000000000000 0xc008000000000000 0x3fb99999a0000000 = 0x4022333340000000 ++fmas 0xc008000000000000 0x4014000000000000 0xbfb99999a0000000 = 0xc02e333340000000 ++fmas 0xc008000000000000 0xc014000000000000 0x3fc99999a0000000 = 0x402e666660000000 ++fmas 0xc008000000000000 0x4197d78400000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmas 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0x41b1e1a300000000 ++fmas 0x4014000000000000 0x0 0x4014000000000000 = 0x4014000000000000 ++fmas 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fmas 0x4014000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78420000000 ++fmas 0x4014000000000000 0xbff0000000000000 0xc197d78400000000 = 0xc197d78420000000 ++fmas 0x4014000000000000 0x3fb99999a0000000 0x0 = 0x3fe0000000000000 ++fmas 0x4014000000000000 0xbfb99999a0000000 0x8000000000000000 = 0xbfe0000000000000 ++fmas 0x4014000000000000 0x3fc99999a0000000 0x3ff0000000000000 = 0x4000000000000000 ++fmas 0x4014000000000000 0xbfc99999a0000000 0xbff0000000000000 = 0xc000000000000000 ++fmas 0x4014000000000000 0x4008000000000000 0x3fb99999a0000000 = 0x402e333340000000 ++fmas 0x4014000000000000 0xc008000000000000 0xbfb99999a0000000 = 0xc02e333340000000 ++fmas 0x4014000000000000 0x4014000000000000 0x3fc99999a0000000 = 0x4039333340000000 ++fmas 0x4014000000000000 0xc014000000000000 0xbfc99999a0000000 = 0xc039333340000000 ++fmas 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x41bdcd6500000000 ++fmas 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmas 0xc014000000000000 0x0 0xc014000000000000 = 0xc014000000000000 ++fmas 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0xc014000000000000 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78420000000 ++fmas 0xc014000000000000 0xbff0000000000000 0x0 = 0x4014000000000000 ++fmas 0xc014000000000000 0x3fb99999a0000000 0x8000000000000000 = 0xbfe0000000000000 ++fmas 0xc014000000000000 0xbfb99999a0000000 0x3ff0000000000000 = 0x3ff8000000000000 ++fmas 0xc014000000000000 0x3fc99999a0000000 0xbff0000000000000 = 0xc000000000000000 ++fmas 0xc014000000000000 0xbfc99999a0000000 0x3fb99999a0000000 = 0x3ff19999a0000000 ++fmas 0xc014000000000000 0x4008000000000000 0xbfb99999a0000000 = 0xc02e333340000000 ++fmas 0xc014000000000000 0xc008000000000000 0x3fc99999a0000000 = 0x402e666660000000 ++fmas 0xc014000000000000 0x4014000000000000 0xbfc99999a0000000 = 0xc039333340000000 ++fmas 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0x403c000000000000 ++fmas 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmas 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0x41bdcd6500000000 ++fmas 0x4197d78400000000 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0x4197d78400000000 0x3ff0000000000000 0x0 = 0x4197d78400000000 ++fmas 0x4197d78400000000 0xbff0000000000000 0x8000000000000000 = 0xc197d78400000000 ++fmas 0x4197d78400000000 0x3fb99999a0000000 0x3ff0000000000000 = 0x416312d020000000 ++fmas 0x4197d78400000000 0xbfb99999a0000000 0xbff0000000000000 = 0xc16312d020000000 ++fmas 0x4197d78400000000 0x3fc99999a0000000 0x3fb99999a0000000 = 0x417312d000000000 ++fmas 0x4197d78400000000 0xbfc99999a0000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmas 0x4197d78400000000 0x4008000000000000 0x3fc99999a0000000 = 0x41b1e1a300000000 ++fmas 0x4197d78400000000 0xc008000000000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmas 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x41bdcd6500000000 ++fmas 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmas 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4341c37940000000 ++fmas 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc341c37940000000 ++fmas 0xc197d78400000000 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fmas 0xc197d78400000000 0x3ff0000000000000 0x8000000000000000 = 0xc197d78400000000 ++fmas 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0x4197d78400000000 ++fmas 0xc197d78400000000 0x3fb99999a0000000 0xbff0000000000000 = 0xc16312d020000000 ++fmas 0xc197d78400000000 0xbfb99999a0000000 0x3fb99999a0000000 = 0x416312d000000000 ++fmas 0xc197d78400000000 0x3fc99999a0000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmas 0xc197d78400000000 0xbfc99999a0000000 0x3fc99999a0000000 = 0x417312d000000000 ++fmas 0xc197d78400000000 0x4008000000000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmas 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0x41b1e1a300000000 ++fmas 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmas 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0x41bdcd6500000000 ++fmas 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0xc341c37940000000 ++fmas 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0x4341c37940000000 ++=== Running test on fmad=== ++fmad 0x0 0x0 0x0 = 0x0 ++fmad 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fmad 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fmad 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fmad 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmad 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fmad 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fmad 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fmad 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fmad 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fmad 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fmad 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fmad 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fmad 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fmad 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fmad 0x8000000000000000 0x0 0x8000000000000000 = 0x8000000000000000 ++fmad 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0x123456789abcdef0 ++fmad 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x3ff0000000000000 ++fmad 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmad 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fmad 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fmad 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fmad 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fmad 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fmad 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fmad 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fmad 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fmad 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmad 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fmad 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fmad 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fmad 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0x7ff0000000000000 ++fmad 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0xc32388ef423d9d0e ++fmad 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0xf0debc9a78563412 ++fmad 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0x70debc9a78563412 ++fmad 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0xf0a896e1f9de900f ++fmad 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0x70a896e1f9de900f ++fmad 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0xf0b896e1f9de900f ++fmad 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0x70b896e1f9de900f ++fmad 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0xf0f70d73da40a70d ++fmad 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0x70f70d73da40a70d ++fmad 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0xf10335e08b35e08b ++fmad 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0x710335e08b35e08b ++fmad 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0xf286e690fe53a8fe ++fmad 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0x7286e690fe53a8fe ++fmad 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x123456789abcdef0 ++fmad 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fmad 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xc32388ef423d9d0e ++fmad 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x3fb999999999999a ++fmad 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fmad 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fmad 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fmad 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fmad 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fmad 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fmad 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0xc014000000000000 ++fmad 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmad 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fmad 0x123456789abcdef0 0xc014000000000000 0x0 = 0x92596c16c16c16ac ++fmad 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x13de4e3f1c71c703 ++fmad 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fmad 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmad 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0xf0debc9a78563412 ++fmad 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0xbfb999999999999a ++fmad 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3ff3333333333333 ++fmad 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbff3333333333333 ++fmad 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x4008cccccccccccd ++fmad 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xc008cccccccccccd ++fmad 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x4014cccccccccccd ++fmad 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xc014cccccccccccd ++fmad 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4197d7840c000000 ++fmad 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc197d7840c000000 ++fmad 0x3ff0000000000000 0x4014000000000000 0x0 = 0x4014000000000000 ++fmad 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fmad 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmad 0xbff0000000000000 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fmad 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fmad 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0x70debc9a78563412 ++fmad 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x3fc999999999999a ++fmad 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0xbff3333333333333 ++fmad 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0x4010000000000000 ++fmad 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0xc008cccccccccccd ++fmad 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0x4014666666666666 ++fmad 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0xc014cccccccccccd ++fmad 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0x4197d78400cccccd ++fmad 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0xc197d7840c000000 ++fmad 0xbff0000000000000 0xc008000000000000 0x0 = 0x4008000000000000 ++fmad 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0xc014000000000000 ++fmad 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmad 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0x4197d78404000000 ++fmad 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x3fb999999999999a ++fmad 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fmad 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0xf0a896e1f9de900f ++fmad 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0xbfc999999999999a ++fmad 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x4008cccccccccccd ++fmad 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xc008cccccccccccd ++fmad 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x40140a3d70a3d70a ++fmad 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xc0140a3d70a3d70a ++fmad 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x4197d78400147ae1 ++fmad 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xc197d78400147ae1 ++fmad 0x3fb999999999999a 0x4008000000000000 0x0 = 0x3fd3333333333334 ++fmad 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0xbfd3333333333334 ++fmad 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0xbfe0000000000000 ++fmad 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x416312d020000000 ++fmad 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xc16312d020000000 ++fmad 0xbfb999999999999a 0x0 0xbfb999999999999a = 0xbfb999999999999a ++fmad 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fmad 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0x70a896e1f9de900f ++fmad 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x4008000000000000 ++fmad 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0xc008cccccccccccd ++fmad 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0x4014666666666666 ++fmad 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0xc0140a3d70a3d70a ++fmad 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0x4197d784000a3d71 ++fmad 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0xc197d78400147ae1 ++fmad 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0x3f947ae147ae147c ++fmad 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0xbfd3333333333334 ++fmad 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0xbfe0000000000000 ++fmad 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0x3ff8000000000000 ++fmad 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0xc16312d020000000 ++fmad 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0x416312d003333333 ++fmad 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x3fc999999999999a ++fmad 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fmad 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0xf0b896e1f9de900f ++fmad 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0xc008000000000000 ++fmad 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x4014cccccccccccd ++fmad 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xc014cccccccccccd ++fmad 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x4197d78400147ae1 ++fmad 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xc197d78400147ae1 ++fmad 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x3fa47ae147ae147c ++fmad 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0xbfa47ae147ae147c ++fmad 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0xbfe3333333333333 ++fmad 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fmad 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xc000000000000000 ++fmad 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x417312d00199999a ++fmad 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xc17312d00199999a ++fmad 0xbfc999999999999a 0x0 0xbfc999999999999a = 0xbfc999999999999a ++fmad 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fmad 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0x70b896e1f9de900f ++fmad 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x4014000000000000 ++fmad 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0xc014cccccccccccd ++fmad 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400cccccd ++fmad 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0xc197d78400147ae1 ++fmad 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0x3f947ae147ae147c ++fmad 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0xbfa47ae147ae147c ++fmad 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0xbfe3333333333333 ++fmad 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0x3ff999999999999a ++fmad 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0xc000000000000000 ++fmad 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0x3ff199999999999a ++fmad 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0xc17312d00199999a ++fmad 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0x417312d003333333 ++fmad 0x4008000000000000 0x0 0x4008000000000000 = 0x4008000000000000 ++fmad 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fmad 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0xf0f70d73da40a70d ++fmad 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0xc014000000000000 ++fmad 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x4197d7840c000000 ++fmad 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xc197d7840c000000 ++fmad 0x4008000000000000 0x3fb999999999999a 0x0 = 0x3fd3333333333334 ++fmad 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0xbfd3333333333334 ++fmad 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0xbfe3333333333333 ++fmad 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x4024000000000000 ++fmad 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xc024000000000000 ++fmad 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x402e333333333333 ++fmad 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xc02e333333333333 ++fmad 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x41b1e1a300333333 ++fmad 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xc1b1e1a300333333 ++fmad 0xc008000000000000 0x0 0xc008000000000000 = 0xc008000000000000 ++fmad 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fmad 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0x70f70d73da40a70d ++fmad 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x4197d78400000000 ++fmad 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0xc197d7840c000000 ++fmad 0xc008000000000000 0xbff0000000000000 0x0 = 0x4008000000000000 ++fmad 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0xbfd3333333333334 ++fmad 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0xbfe3333333333333 ++fmad 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0x3ff999999999999a ++fmad 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0xc024000000000000 ++fmad 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0x4022333333333333 ++fmad 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0xc02e333333333333 ++fmad 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0x402e666666666666 ++fmad 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0xc1b1e1a300333333 ++fmad 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0x41b1e1a303000000 ++fmad 0x4014000000000000 0x0 0x4014000000000000 = 0x4014000000000000 ++fmad 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fmad 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0xf10335e08b35e08b ++fmad 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0xc197d78400000000 ++fmad 0x4014000000000000 0x3ff0000000000000 0x0 = 0x4014000000000000 ++fmad 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0xc014000000000000 ++fmad 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0xbfe0000000000000 ++fmad 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fmad 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xc000000000000000 ++fmad 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x402e333333333333 ++fmad 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xc02e333333333333 ++fmad 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x4039333333333333 ++fmad 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xc039333333333333 ++fmad 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x41bdcd6503000000 ++fmad 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc1bdcd6503000000 ++fmad 0xc014000000000000 0x0 0xc014000000000000 = 0xc014000000000000 ++fmad 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmad 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0x710335e08b35e08b ++fmad 0xc014000000000000 0x123456789abcdef0 0x0 = 0x92596c16c16c16ac ++fmad 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0xc014000000000000 ++fmad 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0xbfe0000000000000 ++fmad 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0x3ff8000000000000 ++fmad 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0xc000000000000000 ++fmad 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0x3ff199999999999a ++fmad 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0xc02e333333333333 ++fmad 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0x402e666666666666 ++fmad 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0xc039333333333333 ++fmad 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0x403c000000000000 ++fmad 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0xc1bdcd6503000000 ++fmad 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0x41bdcd6505000000 ++fmad 0x4197d78400000000 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fmad 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fmad 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0xf286e690fe53a8fe ++fmad 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x13de4e3f1c71c703 ++fmad 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmad 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x416312d020000000 ++fmad 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xc16312d020000000 ++fmad 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x417312d00199999a ++fmad 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xc17312d00199999a ++fmad 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x41b1e1a300333333 ++fmad 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xc1b1e1a300333333 ++fmad 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x41bdcd6503000000 ++fmad 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc1bdcd6503000000 ++fmad 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4341c37937e08002 ++fmad 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc341c37937e08002 ++fmad 0xc197d78400000000 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fmad 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fmad 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0x7286e690fe53a8fe ++fmad 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmad 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0x4197d78404000000 ++fmad 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0xc16312d020000000 ++fmad 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0x416312d003333333 ++fmad 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0xc17312d00199999a ++fmad 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0x417312d003333333 ++fmad 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0xc1b1e1a300333333 ++fmad 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0x41b1e1a303000000 ++fmad 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0xc1bdcd6503000000 ++fmad 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0x41bdcd6505000000 ++fmad 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0xc341c37937e08002 ++fmad 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0x4341c3793adb7080 ++=== Running test on fmss=== ++fmss 0x0 0x0 0x0 = 0x0 ++fmss 0x0 0x8000000000000000 0x8000000000000000 = 0x0 ++fmss 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fmss 0x0 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmss 0x0 0x3fb99999a0000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fmss 0x0 0xbfb99999a0000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fmss 0x0 0x3fc99999a0000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fmss 0x0 0xbfc99999a0000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fmss 0x0 0x4008000000000000 0x4008000000000000 = 0xc008000000000000 ++fmss 0x0 0xc008000000000000 0xc008000000000000 = 0x4008000000000000 ++fmss 0x0 0x4014000000000000 0x4014000000000000 = 0xc014000000000000 ++fmss 0x0 0xc014000000000000 0xc014000000000000 = 0x4014000000000000 ++fmss 0x0 0x4197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0x0 0xc197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fmss 0x8000000000000000 0x8000000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fmss 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmss 0x8000000000000000 0xbff0000000000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fmss 0x8000000000000000 0x3fb99999a0000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fmss 0x8000000000000000 0xbfb99999a0000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fmss 0x8000000000000000 0x3fc99999a0000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fmss 0x8000000000000000 0xbfc99999a0000000 0x4008000000000000 = 0xc008000000000000 ++fmss 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fmss 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0xc014000000000000 ++fmss 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fmss 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fmss 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0xbff0000000000000 ++fmss 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmss 0x3ff0000000000000 0x3ff0000000000000 0x3fb99999a0000000 = 0x3fecccccc0000000 ++fmss 0x3ff0000000000000 0xbff0000000000000 0xbfb99999a0000000 = 0xbfecccccc0000000 ++fmss 0x3ff0000000000000 0x3fb99999a0000000 0x3fc99999a0000000 = 0xbfb99999a0000000 ++fmss 0x3ff0000000000000 0xbfb99999a0000000 0xbfc99999a0000000 = 0x3fb99999a0000000 ++fmss 0x3ff0000000000000 0x3fc99999a0000000 0x4008000000000000 = 0xc006666660000000 ++fmss 0x3ff0000000000000 0xbfc99999a0000000 0xc008000000000000 = 0x4006666660000000 ++fmss 0x3ff0000000000000 0x4008000000000000 0x4014000000000000 = 0xc000000000000000 ++fmss 0x3ff0000000000000 0xc008000000000000 0xc014000000000000 = 0x4000000000000000 ++fmss 0x3ff0000000000000 0x4014000000000000 0x4197d78400000000 = 0xc197d783e0000000 ++fmss 0x3ff0000000000000 0xc014000000000000 0xc197d78400000000 = 0x4197d783e0000000 ++fmss 0x3ff0000000000000 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fmss 0x3ff0000000000000 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fmss 0xbff0000000000000 0x0 0xbff0000000000000 = 0x3ff0000000000000 ++fmss 0xbff0000000000000 0x8000000000000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fmss 0xbff0000000000000 0x3ff0000000000000 0xbfb99999a0000000 = 0xbfecccccc0000000 ++fmss 0xbff0000000000000 0xbff0000000000000 0x3fc99999a0000000 = 0x3fe99999a0000000 ++fmss 0xbff0000000000000 0x3fb99999a0000000 0xbfc99999a0000000 = 0x3fb99999a0000000 ++fmss 0xbff0000000000000 0xbfb99999a0000000 0x4008000000000000 = 0xc007333340000000 ++fmss 0xbff0000000000000 0x3fc99999a0000000 0xc008000000000000 = 0x4006666660000000 ++fmss 0xbff0000000000000 0xbfc99999a0000000 0x4014000000000000 = 0xc013333340000000 ++fmss 0xbff0000000000000 0x4008000000000000 0xc014000000000000 = 0x4000000000000000 ++fmss 0xbff0000000000000 0xc008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0xbff0000000000000 0x4014000000000000 0xc197d78400000000 = 0x4197d783e0000000 ++fmss 0xbff0000000000000 0xc014000000000000 0x0 = 0x4014000000000000 ++fmss 0xbff0000000000000 0x4197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fmss 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fmss 0x3fb99999a0000000 0x0 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fmss 0x3fb99999a0000000 0x8000000000000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fmss 0x3fb99999a0000000 0x3ff0000000000000 0x3fc99999a0000000 = 0xbfb99999a0000000 ++fmss 0x3fb99999a0000000 0xbff0000000000000 0xbfc99999a0000000 = 0x3fb99999a0000000 ++fmss 0x3fb99999a0000000 0x3fb99999a0000000 0x4008000000000000 = 0xc007eb8520000000 ++fmss 0x3fb99999a0000000 0xbfb99999a0000000 0xc008000000000000 = 0x4007eb8520000000 ++fmss 0x3fb99999a0000000 0x3fc99999a0000000 0x4014000000000000 = 0xc013eb8520000000 ++fmss 0x3fb99999a0000000 0xbfc99999a0000000 0xc014000000000000 = 0x4013eb8520000000 ++fmss 0x3fb99999a0000000 0x4008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0x3fb99999a0000000 0xc008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0x3fb99999a0000000 0x4014000000000000 0x0 = 0x3fe0000000000000 ++fmss 0x3fb99999a0000000 0xc014000000000000 0x8000000000000000 = 0xbfe0000000000000 ++fmss 0x3fb99999a0000000 0x4197d78400000000 0x3ff0000000000000 = 0x416312cfe0000000 ++fmss 0x3fb99999a0000000 0xc197d78400000000 0xbff0000000000000 = 0xc16312cfe0000000 ++fmss 0xbfb99999a0000000 0x0 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fmss 0xbfb99999a0000000 0x8000000000000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fmss 0xbfb99999a0000000 0x3ff0000000000000 0xbfc99999a0000000 = 0x3fb99999a0000000 ++fmss 0xbfb99999a0000000 0xbff0000000000000 0x4008000000000000 = 0xc007333340000000 ++fmss 0xbfb99999a0000000 0x3fb99999a0000000 0xc008000000000000 = 0x4007eb8520000000 ++fmss 0xbfb99999a0000000 0xbfb99999a0000000 0x4014000000000000 = 0xc013f5c280000000 ++fmss 0xbfb99999a0000000 0x3fc99999a0000000 0xc014000000000000 = 0x4013eb8520000000 ++fmss 0xbfb99999a0000000 0xbfc99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0xbfb99999a0000000 0x4008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0xbfb99999a0000000 0xc008000000000000 0x0 = 0x3fd3333340000000 ++fmss 0xbfb99999a0000000 0x4014000000000000 0x8000000000000000 = 0xbfe0000000000000 ++fmss 0xbfb99999a0000000 0xc014000000000000 0x3ff0000000000000 = 0xbfe0000000000000 ++fmss 0xbfb99999a0000000 0x4197d78400000000 0xbff0000000000000 = 0xc16312cfe0000000 ++fmss 0xbfb99999a0000000 0xc197d78400000000 0x3fb99999a0000000 = 0x416312d000000000 ++fmss 0x3fc99999a0000000 0x0 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fmss 0x3fc99999a0000000 0x8000000000000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fmss 0x3fc99999a0000000 0x3ff0000000000000 0x4008000000000000 = 0xc006666660000000 ++fmss 0x3fc99999a0000000 0xbff0000000000000 0xc008000000000000 = 0x4006666660000000 ++fmss 0x3fc99999a0000000 0x3fb99999a0000000 0x4014000000000000 = 0xc013eb8520000000 ++fmss 0x3fc99999a0000000 0xbfb99999a0000000 0xc014000000000000 = 0x4013eb8520000000 ++fmss 0x3fc99999a0000000 0x3fc99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0x3fc99999a0000000 0xbfc99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0x3fc99999a0000000 0x4008000000000000 0x0 = 0x3fe3333340000000 ++fmss 0x3fc99999a0000000 0xc008000000000000 0x8000000000000000 = 0xbfe3333340000000 ++fmss 0x3fc99999a0000000 0x4014000000000000 0x3ff0000000000000 = 0x3e50000000000000 ++fmss 0x3fc99999a0000000 0xc014000000000000 0xbff0000000000000 = 0xbe50000000000000 ++fmss 0x3fc99999a0000000 0x4197d78400000000 0x3fb99999a0000000 = 0x417312d000000000 ++fmss 0x3fc99999a0000000 0xc197d78400000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmss 0xbfc99999a0000000 0x0 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fmss 0xbfc99999a0000000 0x8000000000000000 0x4008000000000000 = 0xc008000000000000 ++fmss 0xbfc99999a0000000 0x3ff0000000000000 0xc008000000000000 = 0x4006666660000000 ++fmss 0xbfc99999a0000000 0xbff0000000000000 0x4014000000000000 = 0xc013333340000000 ++fmss 0xbfc99999a0000000 0x3fb99999a0000000 0xc014000000000000 = 0x4013eb8520000000 ++fmss 0xbfc99999a0000000 0xbfb99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0xbfc99999a0000000 0x3fc99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0xbfc99999a0000000 0xbfc99999a0000000 0x0 = 0x3fa47ae160000000 ++fmss 0xbfc99999a0000000 0x4008000000000000 0x8000000000000000 = 0xbfe3333340000000 ++fmss 0xbfc99999a0000000 0xc008000000000000 0x3ff0000000000000 = 0xbfd9999980000000 ++fmss 0xbfc99999a0000000 0x4014000000000000 0xbff0000000000000 = 0xbe50000000000000 ++fmss 0xbfc99999a0000000 0xc014000000000000 0x3fb99999a0000000 = 0x3feccccce0000000 ++fmss 0xbfc99999a0000000 0x4197d78400000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmss 0xbfc99999a0000000 0xc197d78400000000 0x3fc99999a0000000 = 0x417312d000000000 ++fmss 0x4008000000000000 0x0 0x4008000000000000 = 0xc008000000000000 ++fmss 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0x4008000000000000 ++fmss 0x4008000000000000 0x3ff0000000000000 0x4014000000000000 = 0xc000000000000000 ++fmss 0x4008000000000000 0xbff0000000000000 0xc014000000000000 = 0x4000000000000000 ++fmss 0x4008000000000000 0x3fb99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0x4008000000000000 0xbfb99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0x4008000000000000 0x3fc99999a0000000 0x0 = 0x3fe3333340000000 ++fmss 0x4008000000000000 0xbfc99999a0000000 0x8000000000000000 = 0xbfe3333340000000 ++fmss 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x4020000000000000 ++fmss 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xc020000000000000 ++fmss 0x4008000000000000 0x4014000000000000 0x3fb99999a0000000 = 0x402dccccc0000000 ++fmss 0x4008000000000000 0xc014000000000000 0xbfb99999a0000000 = 0xc02dccccc0000000 ++fmss 0x4008000000000000 0x4197d78400000000 0x3fc99999a0000000 = 0x41b1e1a300000000 ++fmss 0x4008000000000000 0xc197d78400000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmss 0xc008000000000000 0x0 0xc008000000000000 = 0x4008000000000000 ++fmss 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0xc014000000000000 ++fmss 0xc008000000000000 0x3ff0000000000000 0xc014000000000000 = 0x4000000000000000 ++fmss 0xc008000000000000 0xbff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0xc008000000000000 0x3fb99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0xc008000000000000 0xbfb99999a0000000 0x0 = 0x3fd3333340000000 ++fmss 0xc008000000000000 0x3fc99999a0000000 0x8000000000000000 = 0xbfe3333340000000 ++fmss 0xc008000000000000 0xbfc99999a0000000 0x3ff0000000000000 = 0xbfd9999980000000 ++fmss 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0xc020000000000000 ++fmss 0xc008000000000000 0xc008000000000000 0x3fb99999a0000000 = 0x4021ccccc0000000 ++fmss 0xc008000000000000 0x4014000000000000 0xbfb99999a0000000 = 0xc02dccccc0000000 ++fmss 0xc008000000000000 0xc014000000000000 0x3fc99999a0000000 = 0x402d9999a0000000 ++fmss 0xc008000000000000 0x4197d78400000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmss 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0x41b1e1a300000000 ++fmss 0x4014000000000000 0x0 0x4014000000000000 = 0xc014000000000000 ++fmss 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0x4014000000000000 ++fmss 0x4014000000000000 0x3ff0000000000000 0x4197d78400000000 = 0xc197d783e0000000 ++fmss 0x4014000000000000 0xbff0000000000000 0xc197d78400000000 = 0x4197d783e0000000 ++fmss 0x4014000000000000 0x3fb99999a0000000 0x0 = 0x3fe0000000000000 ++fmss 0x4014000000000000 0xbfb99999a0000000 0x8000000000000000 = 0xbfe0000000000000 ++fmss 0x4014000000000000 0x3fc99999a0000000 0x3ff0000000000000 = 0x3e50000000000000 ++fmss 0x4014000000000000 0xbfc99999a0000000 0xbff0000000000000 = 0xbe50000000000000 ++fmss 0x4014000000000000 0x4008000000000000 0x3fb99999a0000000 = 0x402dccccc0000000 ++fmss 0x4014000000000000 0xc008000000000000 0xbfb99999a0000000 = 0xc02dccccc0000000 ++fmss 0x4014000000000000 0x4014000000000000 0x3fc99999a0000000 = 0x4038ccccc0000000 ++fmss 0x4014000000000000 0xc014000000000000 0xbfc99999a0000000 = 0xc038ccccc0000000 ++fmss 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x41bdcd6500000000 ++fmss 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmss 0xc014000000000000 0x0 0xc014000000000000 = 0x4014000000000000 ++fmss 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0xc014000000000000 0x3ff0000000000000 0xc197d78400000000 = 0x4197d783e0000000 ++fmss 0xc014000000000000 0xbff0000000000000 0x0 = 0x4014000000000000 ++fmss 0xc014000000000000 0x3fb99999a0000000 0x8000000000000000 = 0xbfe0000000000000 ++fmss 0xc014000000000000 0xbfb99999a0000000 0x3ff0000000000000 = 0xbfe0000000000000 ++fmss 0xc014000000000000 0x3fc99999a0000000 0xbff0000000000000 = 0xbe50000000000000 ++fmss 0xc014000000000000 0xbfc99999a0000000 0x3fb99999a0000000 = 0x3feccccce0000000 ++fmss 0xc014000000000000 0x4008000000000000 0xbfb99999a0000000 = 0xc02dccccc0000000 ++fmss 0xc014000000000000 0xc008000000000000 0x3fc99999a0000000 = 0x402d9999a0000000 ++fmss 0xc014000000000000 0x4014000000000000 0xbfc99999a0000000 = 0xc038ccccc0000000 ++fmss 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0x4036000000000000 ++fmss 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmss 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0x41bdcd6500000000 ++fmss 0x4197d78400000000 0x0 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0x4197d78400000000 0x3ff0000000000000 0x0 = 0x4197d78400000000 ++fmss 0x4197d78400000000 0xbff0000000000000 0x8000000000000000 = 0xc197d78400000000 ++fmss 0x4197d78400000000 0x3fb99999a0000000 0x3ff0000000000000 = 0x416312cfe0000000 ++fmss 0x4197d78400000000 0xbfb99999a0000000 0xbff0000000000000 = 0xc16312cfe0000000 ++fmss 0x4197d78400000000 0x3fc99999a0000000 0x3fb99999a0000000 = 0x417312d000000000 ++fmss 0x4197d78400000000 0xbfc99999a0000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmss 0x4197d78400000000 0x4008000000000000 0x3fc99999a0000000 = 0x41b1e1a300000000 ++fmss 0x4197d78400000000 0xc008000000000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmss 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x41bdcd6500000000 ++fmss 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmss 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4341c37940000000 ++fmss 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc341c37940000000 ++fmss 0xc197d78400000000 0x0 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fmss 0xc197d78400000000 0x3ff0000000000000 0x8000000000000000 = 0xc197d78400000000 ++fmss 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0x4197d78400000000 ++fmss 0xc197d78400000000 0x3fb99999a0000000 0xbff0000000000000 = 0xc16312cfe0000000 ++fmss 0xc197d78400000000 0xbfb99999a0000000 0x3fb99999a0000000 = 0x416312d000000000 ++fmss 0xc197d78400000000 0x3fc99999a0000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmss 0xc197d78400000000 0xbfc99999a0000000 0x3fc99999a0000000 = 0x417312d000000000 ++fmss 0xc197d78400000000 0x4008000000000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmss 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0x41b1e1a300000000 ++fmss 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmss 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0x41bdcd6500000000 ++fmss 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0xc341c37940000000 ++fmss 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0x4341c37940000000 ++=== Running test on fmsd=== ++fmsd 0x0 0x0 0x0 = 0x0 ++fmsd 0x0 0x8000000000000000 0x8000000000000000 = 0x0 ++fmsd 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x923456789abcdef0 ++fmsd 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fmsd 0x0 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmsd 0x0 0x3fb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fmsd 0x0 0xbfb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fmsd 0x0 0x3fc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fmsd 0x0 0xbfc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fmsd 0x0 0x4008000000000000 0x4008000000000000 = 0xc008000000000000 ++fmsd 0x0 0xc008000000000000 0xc008000000000000 = 0x4008000000000000 ++fmsd 0x0 0x4014000000000000 0x4014000000000000 = 0xc014000000000000 ++fmsd 0x0 0xc014000000000000 0xc014000000000000 = 0x4014000000000000 ++fmsd 0x0 0x4197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++fmsd 0x0 0xc197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fmsd 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fmsd 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0x923456789abcdef0 ++fmsd 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0xbff0000000000000 ++fmsd 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmsd 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fmsd 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fmsd 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fmsd 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fmsd 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0xc008000000000000 ++fmsd 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fmsd 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0xc014000000000000 ++fmsd 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fmsd 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmsd 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fmsd 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fmsd 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fmsd 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0x7ff0000000000000 ++fmsd 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0xc32388ef423d9d0a ++fmsd 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0xf0debc9a78563412 ++fmsd 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0x70debc9a78563412 ++fmsd 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0xf0a896e1f9de900f ++fmsd 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0x70a896e1f9de900f ++fmsd 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0xf0b896e1f9de900f ++fmsd 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0x70b896e1f9de900f ++fmsd 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0xf0f70d73da40a70e ++fmsd 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0x70f70d73da40a70e ++fmsd 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0xf10335e08b35e08b ++fmsd 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0x710335e08b35e08b ++fmsd 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0xf286e690fe53a8fe ++fmsd 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0x7286e690fe53a8fe ++fmsd 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x923456789abcdef0 ++fmsd 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fmsd 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xc32388ef423d9d0a ++fmsd 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0xbfb999999999999a ++fmsd 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fmsd 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fmsd 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fmsd 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0xc008000000000000 ++fmsd 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0x4008000000000000 ++fmsd 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0xc014000000000000 ++fmsd 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0x4014000000000000 ++fmsd 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmsd 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fmsd 0x123456789abcdef0 0xc014000000000000 0x0 = 0x92596c16c16c16ac ++fmsd 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x13de4e3f1c71c703 ++fmsd 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0xbff0000000000000 ++fmsd 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmsd 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0xf0debc9a78563412 ++fmsd 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0x3fb999999999999a ++fmsd 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3fe999999999999a ++fmsd 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbfe999999999999a ++fmsd 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0xc007333333333333 ++fmsd 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0x4007333333333333 ++fmsd 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0xc013333333333333 ++fmsd 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0x4013333333333333 ++fmsd 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0xc197d783f4000000 ++fmsd 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0x4197d783f4000000 ++fmsd 0x3ff0000000000000 0x4014000000000000 0x0 = 0x4014000000000000 ++fmsd 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fmsd 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmsd 0xbff0000000000000 0x0 0xbff0000000000000 = 0x3ff0000000000000 ++fmsd 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fmsd 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0x70debc9a78563412 ++fmsd 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0xbfc999999999999a ++fmsd 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0xbfe999999999999a ++fmsd 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0xc000000000000000 ++fmsd 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0x4007333333333333 ++fmsd 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0xc01399999999999a ++fmsd 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0x4013333333333333 ++fmsd 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0xc197d783ff333333 ++fmsd 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0x4197d783f4000000 ++fmsd 0xbff0000000000000 0xc008000000000000 0x0 = 0x4008000000000000 ++fmsd 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0xc014000000000000 ++fmsd 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmsd 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0x4197d783fc000000 ++fmsd 0x3fb999999999999a 0x0 0x3fb999999999999a = 0xbfb999999999999a ++fmsd 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fmsd 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0xf0a896e1f9de900f ++fmsd 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0x3fc999999999999a ++fmsd 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0xc007333333333333 ++fmsd 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0x4007333333333333 ++fmsd 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0xc013f5c28f5c28f6 ++fmsd 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0x4013f5c28f5c28f6 ++fmsd 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0xc197d783ffeb851f ++fmsd 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0x4197d783ffeb851f ++fmsd 0x3fb999999999999a 0x4008000000000000 0x0 = 0x3fd3333333333334 ++fmsd 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0xbfd3333333333334 ++fmsd 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0xbfe0000000000000 ++fmsd 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x416312cfe0000000 ++fmsd 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xc16312cfe0000000 ++fmsd 0xbfb999999999999a 0x0 0xbfb999999999999a = 0x3fb999999999999a ++fmsd 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fmsd 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0x70a896e1f9de900f ++fmsd 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0xc008000000000000 ++fmsd 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0x4007333333333333 ++fmsd 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0xc01399999999999a ++fmsd 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0x4013f5c28f5c28f6 ++fmsd 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0xc197d783fff5c28f ++fmsd 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0x4197d783ffeb851f ++fmsd 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0x3f947ae147ae147c ++fmsd 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0xbfd3333333333334 ++fmsd 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0xbfe0000000000000 ++fmsd 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0xbfe0000000000000 ++fmsd 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0xc16312cfe0000000 ++fmsd 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0x416312cffccccccd ++fmsd 0x3fc999999999999a 0x0 0x3fc999999999999a = 0xbfc999999999999a ++fmsd 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fmsd 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0xf0b896e1f9de900f ++fmsd 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0x4008000000000000 ++fmsd 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0xc013333333333333 ++fmsd 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0x4013333333333333 ++fmsd 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0xc197d783ffeb851f ++fmsd 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0x4197d783ffeb851f ++fmsd 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x3fa47ae147ae147c ++fmsd 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0xbfa47ae147ae147c ++fmsd 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0xbfe3333333333334 ++fmsd 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x3c90000000000000 ++fmsd 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xbc90000000000000 ++fmsd 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x417312cffe666667 ++fmsd 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xc17312cffe666667 ++fmsd 0xbfc999999999999a 0x0 0xbfc999999999999a = 0x3fc999999999999a ++fmsd 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0xc008000000000000 ++fmsd 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0x70b896e1f9de900f ++fmsd 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0xc014000000000000 ++fmsd 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0x4013333333333333 ++fmsd 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0xc197d783ff333333 ++fmsd 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0x4197d783ffeb851f ++fmsd 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0x3f947ae147ae147c ++fmsd 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0xbfa47ae147ae147c ++fmsd 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0xbfe3333333333334 ++fmsd 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0xbfd9999999999999 ++fmsd 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0xbc90000000000000 ++fmsd 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0x3feccccccccccccd ++fmsd 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0xc17312cffe666667 ++fmsd 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0x417312cffccccccd ++fmsd 0x4008000000000000 0x0 0x4008000000000000 = 0xc008000000000000 ++fmsd 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0x4008000000000000 ++fmsd 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0xf0f70d73da40a70e ++fmsd 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0x4014000000000000 ++fmsd 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0xc197d783f4000000 ++fmsd 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0x4197d783f4000000 ++fmsd 0x4008000000000000 0x3fb999999999999a 0x0 = 0x3fd3333333333334 ++fmsd 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0xbfd3333333333334 ++fmsd 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0xbfe3333333333334 ++fmsd 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x4020000000000000 ++fmsd 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xc020000000000000 ++fmsd 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x402dcccccccccccd ++fmsd 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xc02dcccccccccccd ++fmsd 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x41b1e1a2ffcccccd ++fmsd 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xc1b1e1a2ffcccccd ++fmsd 0xc008000000000000 0x0 0xc008000000000000 = 0x4008000000000000 ++fmsd 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0xc014000000000000 ++fmsd 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0x70f70d73da40a70e ++fmsd 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0xc197d78400000000 ++fmsd 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0x4197d783f4000000 ++fmsd 0xc008000000000000 0xbff0000000000000 0x0 = 0x4008000000000000 ++fmsd 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0xbfd3333333333334 ++fmsd 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0xbfe3333333333334 ++fmsd 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0xbfd9999999999999 ++fmsd 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0xc020000000000000 ++fmsd 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0x4021cccccccccccd ++fmsd 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0xc02dcccccccccccd ++fmsd 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0x402d99999999999a ++fmsd 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0xc1b1e1a2ffcccccd ++fmsd 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0x41b1e1a2fd000000 ++fmsd 0x4014000000000000 0x0 0x4014000000000000 = 0xc014000000000000 ++fmsd 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0x4014000000000000 ++fmsd 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0xf10335e08b35e08b ++fmsd 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0x4197d78400000000 ++fmsd 0x4014000000000000 0x3ff0000000000000 0x0 = 0x4014000000000000 ++fmsd 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0xc014000000000000 ++fmsd 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0xbfe0000000000000 ++fmsd 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x3c90000000000000 ++fmsd 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xbc90000000000000 ++fmsd 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x402dcccccccccccd ++fmsd 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xc02dcccccccccccd ++fmsd 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x4038cccccccccccd ++fmsd 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xc038cccccccccccd ++fmsd 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x41bdcd64fd000000 ++fmsd 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc1bdcd64fd000000 ++fmsd 0xc014000000000000 0x0 0xc014000000000000 = 0x4014000000000000 ++fmsd 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmsd 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0x710335e08b35e08b ++fmsd 0xc014000000000000 0x123456789abcdef0 0x0 = 0x92596c16c16c16ac ++fmsd 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0xc014000000000000 ++fmsd 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0xbfe0000000000000 ++fmsd 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0xbfe0000000000000 ++fmsd 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0xbc90000000000000 ++fmsd 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0x3feccccccccccccd ++fmsd 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0xc02dcccccccccccd ++fmsd 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0x402d99999999999a ++fmsd 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0xc038cccccccccccd ++fmsd 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0x4036000000000000 ++fmsd 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0xc1bdcd64fd000000 ++fmsd 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0x41bdcd64fb000000 ++fmsd 0x4197d78400000000 0x0 0x4197d78400000000 = 0xc197d78400000000 ++fmsd 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fmsd 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0xf286e690fe53a8fe ++fmsd 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x13de4e3f1c71c703 ++fmsd 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmsd 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x416312cfe0000000 ++fmsd 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xc16312cfe0000000 ++fmsd 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x417312cffe666667 ++fmsd 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xc17312cffe666667 ++fmsd 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x41b1e1a2ffcccccd ++fmsd 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xc1b1e1a2ffcccccd ++fmsd 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x41bdcd64fd000000 ++fmsd 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc1bdcd64fd000000 ++fmsd 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4341c37937e07ffe ++fmsd 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc341c37937e07ffe ++fmsd 0xc197d78400000000 0x0 0xc197d78400000000 = 0x4197d78400000000 ++fmsd 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fmsd 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0x7286e690fe53a8fe ++fmsd 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmsd 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0x4197d783fc000000 ++fmsd 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0xc16312cfe0000000 ++fmsd 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0x416312cffccccccd ++fmsd 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0xc17312cffe666667 ++fmsd 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0x417312cffccccccd ++fmsd 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0xc1b1e1a2ffcccccd ++fmsd 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0x41b1e1a2fd000000 ++fmsd 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0xc1bdcd64fd000000 ++fmsd 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0x41bdcd64fb000000 ++fmsd 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0xc341c37937e07ffe ++fmsd 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0x4341c37934e58f80 ++=== Running test on fnmas=== ++fnmas 0x0 0x0 0x0 = 0x0 ++fnmas 0x0 0x8000000000000000 0x8000000000000000 = 0x0 ++fnmas 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fnmas 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fnmas 0x0 0x3fb99999a0000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fnmas 0x0 0xbfb99999a0000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fnmas 0x0 0x3fc99999a0000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fnmas 0x0 0xbfc99999a0000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fnmas 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fnmas 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fnmas 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fnmas 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fnmas 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fnmas 0x8000000000000000 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fnmas 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fnmas 0x8000000000000000 0xbff0000000000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fnmas 0x8000000000000000 0x3fb99999a0000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fnmas 0x8000000000000000 0xbfb99999a0000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fnmas 0x8000000000000000 0x3fc99999a0000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fnmas 0x8000000000000000 0xbfc99999a0000000 0x4008000000000000 = 0x4008000000000000 ++fnmas 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fnmas 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fnmas 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fnmas 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fnmas 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fnmas 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fnmas 0x3ff0000000000000 0x3ff0000000000000 0x3fb99999a0000000 = 0xbfecccccc0000000 ++fnmas 0x3ff0000000000000 0xbff0000000000000 0xbfb99999a0000000 = 0x3fecccccc0000000 ++fnmas 0x3ff0000000000000 0x3fb99999a0000000 0x3fc99999a0000000 = 0x3fb99999a0000000 ++fnmas 0x3ff0000000000000 0xbfb99999a0000000 0xbfc99999a0000000 = 0xbfb99999a0000000 ++fnmas 0x3ff0000000000000 0x3fc99999a0000000 0x4008000000000000 = 0x4006666660000000 ++fnmas 0x3ff0000000000000 0xbfc99999a0000000 0xc008000000000000 = 0xc006666660000000 ++fnmas 0x3ff0000000000000 0x4008000000000000 0x4014000000000000 = 0x4000000000000000 ++fnmas 0x3ff0000000000000 0xc008000000000000 0xc014000000000000 = 0xc000000000000000 ++fnmas 0x3ff0000000000000 0x4014000000000000 0x4197d78400000000 = 0x4197d783e0000000 ++fnmas 0x3ff0000000000000 0xc014000000000000 0xc197d78400000000 = 0xc197d783e0000000 ++fnmas 0x3ff0000000000000 0x4197d78400000000 0x0 = 0xc197d78400000000 ++fnmas 0x3ff0000000000000 0xc197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fnmas 0xbff0000000000000 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fnmas 0xbff0000000000000 0x8000000000000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fnmas 0xbff0000000000000 0x3ff0000000000000 0xbfb99999a0000000 = 0x3fecccccc0000000 ++fnmas 0xbff0000000000000 0xbff0000000000000 0x3fc99999a0000000 = 0xbfe99999a0000000 ++fnmas 0xbff0000000000000 0x3fb99999a0000000 0xbfc99999a0000000 = 0xbfb99999a0000000 ++fnmas 0xbff0000000000000 0xbfb99999a0000000 0x4008000000000000 = 0x4007333340000000 ++fnmas 0xbff0000000000000 0x3fc99999a0000000 0xc008000000000000 = 0xc006666660000000 ++fnmas 0xbff0000000000000 0xbfc99999a0000000 0x4014000000000000 = 0x4013333340000000 ++fnmas 0xbff0000000000000 0x4008000000000000 0xc014000000000000 = 0xc000000000000000 ++fnmas 0xbff0000000000000 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0xbff0000000000000 0x4014000000000000 0xc197d78400000000 = 0xc197d783e0000000 ++fnmas 0xbff0000000000000 0xc014000000000000 0x0 = 0xc014000000000000 ++fnmas 0xbff0000000000000 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fnmas 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fnmas 0x3fb99999a0000000 0x0 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fnmas 0x3fb99999a0000000 0x8000000000000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fnmas 0x3fb99999a0000000 0x3ff0000000000000 0x3fc99999a0000000 = 0x3fb99999a0000000 ++fnmas 0x3fb99999a0000000 0xbff0000000000000 0xbfc99999a0000000 = 0xbfb99999a0000000 ++fnmas 0x3fb99999a0000000 0x3fb99999a0000000 0x4008000000000000 = 0x4007eb8520000000 ++fnmas 0x3fb99999a0000000 0xbfb99999a0000000 0xc008000000000000 = 0xc007eb8520000000 ++fnmas 0x3fb99999a0000000 0x3fc99999a0000000 0x4014000000000000 = 0x4013eb8520000000 ++fnmas 0x3fb99999a0000000 0xbfc99999a0000000 0xc014000000000000 = 0xc013eb8520000000 ++fnmas 0x3fb99999a0000000 0x4008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0x3fb99999a0000000 0xc008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0x3fb99999a0000000 0x4014000000000000 0x0 = 0xbfe0000000000000 ++fnmas 0x3fb99999a0000000 0xc014000000000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmas 0x3fb99999a0000000 0x4197d78400000000 0x3ff0000000000000 = 0xc16312cfe0000000 ++fnmas 0x3fb99999a0000000 0xc197d78400000000 0xbff0000000000000 = 0x416312cfe0000000 ++fnmas 0xbfb99999a0000000 0x0 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fnmas 0xbfb99999a0000000 0x8000000000000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fnmas 0xbfb99999a0000000 0x3ff0000000000000 0xbfc99999a0000000 = 0xbfb99999a0000000 ++fnmas 0xbfb99999a0000000 0xbff0000000000000 0x4008000000000000 = 0x4007333340000000 ++fnmas 0xbfb99999a0000000 0x3fb99999a0000000 0xc008000000000000 = 0xc007eb8520000000 ++fnmas 0xbfb99999a0000000 0xbfb99999a0000000 0x4014000000000000 = 0x4013f5c280000000 ++fnmas 0xbfb99999a0000000 0x3fc99999a0000000 0xc014000000000000 = 0xc013eb8520000000 ++fnmas 0xbfb99999a0000000 0xbfc99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0xbfb99999a0000000 0x4008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0xbfb99999a0000000 0xc008000000000000 0x0 = 0xbfd3333340000000 ++fnmas 0xbfb99999a0000000 0x4014000000000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmas 0xbfb99999a0000000 0xc014000000000000 0x3ff0000000000000 = 0x3fe0000000000000 ++fnmas 0xbfb99999a0000000 0x4197d78400000000 0xbff0000000000000 = 0x416312cfe0000000 ++fnmas 0xbfb99999a0000000 0xc197d78400000000 0x3fb99999a0000000 = 0xc16312d000000000 ++fnmas 0x3fc99999a0000000 0x0 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fnmas 0x3fc99999a0000000 0x8000000000000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fnmas 0x3fc99999a0000000 0x3ff0000000000000 0x4008000000000000 = 0x4006666660000000 ++fnmas 0x3fc99999a0000000 0xbff0000000000000 0xc008000000000000 = 0xc006666660000000 ++fnmas 0x3fc99999a0000000 0x3fb99999a0000000 0x4014000000000000 = 0x4013eb8520000000 ++fnmas 0x3fc99999a0000000 0xbfb99999a0000000 0xc014000000000000 = 0xc013eb8520000000 ++fnmas 0x3fc99999a0000000 0x3fc99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0x3fc99999a0000000 0xbfc99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0x3fc99999a0000000 0x4008000000000000 0x0 = 0xbfe3333340000000 ++fnmas 0x3fc99999a0000000 0xc008000000000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmas 0x3fc99999a0000000 0x4014000000000000 0x3ff0000000000000 = 0xbe50000000000000 ++fnmas 0x3fc99999a0000000 0xc014000000000000 0xbff0000000000000 = 0x3e50000000000000 ++fnmas 0x3fc99999a0000000 0x4197d78400000000 0x3fb99999a0000000 = 0xc17312d000000000 ++fnmas 0x3fc99999a0000000 0xc197d78400000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmas 0xbfc99999a0000000 0x0 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fnmas 0xbfc99999a0000000 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fnmas 0xbfc99999a0000000 0x3ff0000000000000 0xc008000000000000 = 0xc006666660000000 ++fnmas 0xbfc99999a0000000 0xbff0000000000000 0x4014000000000000 = 0x4013333340000000 ++fnmas 0xbfc99999a0000000 0x3fb99999a0000000 0xc014000000000000 = 0xc013eb8520000000 ++fnmas 0xbfc99999a0000000 0xbfb99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0xbfc99999a0000000 0x3fc99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0xbfc99999a0000000 0xbfc99999a0000000 0x0 = 0xbfa47ae160000000 ++fnmas 0xbfc99999a0000000 0x4008000000000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmas 0xbfc99999a0000000 0xc008000000000000 0x3ff0000000000000 = 0x3fd9999980000000 ++fnmas 0xbfc99999a0000000 0x4014000000000000 0xbff0000000000000 = 0x3e50000000000000 ++fnmas 0xbfc99999a0000000 0xc014000000000000 0x3fb99999a0000000 = 0xbfeccccce0000000 ++fnmas 0xbfc99999a0000000 0x4197d78400000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmas 0xbfc99999a0000000 0xc197d78400000000 0x3fc99999a0000000 = 0xc17312d000000000 ++fnmas 0x4008000000000000 0x0 0x4008000000000000 = 0x4008000000000000 ++fnmas 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fnmas 0x4008000000000000 0x3ff0000000000000 0x4014000000000000 = 0x4000000000000000 ++fnmas 0x4008000000000000 0xbff0000000000000 0xc014000000000000 = 0xc000000000000000 ++fnmas 0x4008000000000000 0x3fb99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0x4008000000000000 0xbfb99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0x4008000000000000 0x3fc99999a0000000 0x0 = 0xbfe3333340000000 ++fnmas 0x4008000000000000 0xbfc99999a0000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmas 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0xc020000000000000 ++fnmas 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0x4020000000000000 ++fnmas 0x4008000000000000 0x4014000000000000 0x3fb99999a0000000 = 0xc02dccccc0000000 ++fnmas 0x4008000000000000 0xc014000000000000 0xbfb99999a0000000 = 0x402dccccc0000000 ++fnmas 0x4008000000000000 0x4197d78400000000 0x3fc99999a0000000 = 0xc1b1e1a300000000 ++fnmas 0x4008000000000000 0xc197d78400000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmas 0xc008000000000000 0x0 0xc008000000000000 = 0xc008000000000000 ++fnmas 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fnmas 0xc008000000000000 0x3ff0000000000000 0xc014000000000000 = 0xc000000000000000 ++fnmas 0xc008000000000000 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0xc008000000000000 0x3fb99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0xc008000000000000 0xbfb99999a0000000 0x0 = 0xbfd3333340000000 ++fnmas 0xc008000000000000 0x3fc99999a0000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmas 0xc008000000000000 0xbfc99999a0000000 0x3ff0000000000000 = 0x3fd9999980000000 ++fnmas 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0x4020000000000000 ++fnmas 0xc008000000000000 0xc008000000000000 0x3fb99999a0000000 = 0xc021ccccc0000000 ++fnmas 0xc008000000000000 0x4014000000000000 0xbfb99999a0000000 = 0x402dccccc0000000 ++fnmas 0xc008000000000000 0xc014000000000000 0x3fc99999a0000000 = 0xc02d9999a0000000 ++fnmas 0xc008000000000000 0x4197d78400000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmas 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0xc1b1e1a300000000 ++fnmas 0x4014000000000000 0x0 0x4014000000000000 = 0x4014000000000000 ++fnmas 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fnmas 0x4014000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x4197d783e0000000 ++fnmas 0x4014000000000000 0xbff0000000000000 0xc197d78400000000 = 0xc197d783e0000000 ++fnmas 0x4014000000000000 0x3fb99999a0000000 0x0 = 0xbfe0000000000000 ++fnmas 0x4014000000000000 0xbfb99999a0000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmas 0x4014000000000000 0x3fc99999a0000000 0x3ff0000000000000 = 0xbe50000000000000 ++fnmas 0x4014000000000000 0xbfc99999a0000000 0xbff0000000000000 = 0x3e50000000000000 ++fnmas 0x4014000000000000 0x4008000000000000 0x3fb99999a0000000 = 0xc02dccccc0000000 ++fnmas 0x4014000000000000 0xc008000000000000 0xbfb99999a0000000 = 0x402dccccc0000000 ++fnmas 0x4014000000000000 0x4014000000000000 0x3fc99999a0000000 = 0xc038ccccc0000000 ++fnmas 0x4014000000000000 0xc014000000000000 0xbfc99999a0000000 = 0x4038ccccc0000000 ++fnmas 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0xc1bdcd6500000000 ++fnmas 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmas 0xc014000000000000 0x0 0xc014000000000000 = 0xc014000000000000 ++fnmas 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0xc014000000000000 0x3ff0000000000000 0xc197d78400000000 = 0xc197d783e0000000 ++fnmas 0xc014000000000000 0xbff0000000000000 0x0 = 0xc014000000000000 ++fnmas 0xc014000000000000 0x3fb99999a0000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmas 0xc014000000000000 0xbfb99999a0000000 0x3ff0000000000000 = 0x3fe0000000000000 ++fnmas 0xc014000000000000 0x3fc99999a0000000 0xbff0000000000000 = 0x3e50000000000000 ++fnmas 0xc014000000000000 0xbfc99999a0000000 0x3fb99999a0000000 = 0xbfeccccce0000000 ++fnmas 0xc014000000000000 0x4008000000000000 0xbfb99999a0000000 = 0x402dccccc0000000 ++fnmas 0xc014000000000000 0xc008000000000000 0x3fc99999a0000000 = 0xc02d9999a0000000 ++fnmas 0xc014000000000000 0x4014000000000000 0xbfc99999a0000000 = 0x4038ccccc0000000 ++fnmas 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0xc036000000000000 ++fnmas 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmas 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0xc1bdcd6500000000 ++fnmas 0x4197d78400000000 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0x4197d78400000000 0x3ff0000000000000 0x0 = 0xc197d78400000000 ++fnmas 0x4197d78400000000 0xbff0000000000000 0x8000000000000000 = 0x4197d78400000000 ++fnmas 0x4197d78400000000 0x3fb99999a0000000 0x3ff0000000000000 = 0xc16312cfe0000000 ++fnmas 0x4197d78400000000 0xbfb99999a0000000 0xbff0000000000000 = 0x416312cfe0000000 ++fnmas 0x4197d78400000000 0x3fc99999a0000000 0x3fb99999a0000000 = 0xc17312d000000000 ++fnmas 0x4197d78400000000 0xbfc99999a0000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmas 0x4197d78400000000 0x4008000000000000 0x3fc99999a0000000 = 0xc1b1e1a300000000 ++fnmas 0x4197d78400000000 0xc008000000000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmas 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0xc1bdcd6500000000 ++fnmas 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmas 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0xc341c37940000000 ++fnmas 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0x4341c37940000000 ++fnmas 0xc197d78400000000 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fnmas 0xc197d78400000000 0x3ff0000000000000 0x8000000000000000 = 0x4197d78400000000 ++fnmas 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0xc197d78400000000 ++fnmas 0xc197d78400000000 0x3fb99999a0000000 0xbff0000000000000 = 0x416312cfe0000000 ++fnmas 0xc197d78400000000 0xbfb99999a0000000 0x3fb99999a0000000 = 0xc16312d000000000 ++fnmas 0xc197d78400000000 0x3fc99999a0000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmas 0xc197d78400000000 0xbfc99999a0000000 0x3fc99999a0000000 = 0xc17312d000000000 ++fnmas 0xc197d78400000000 0x4008000000000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmas 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0xc1b1e1a300000000 ++fnmas 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmas 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0xc1bdcd6500000000 ++fnmas 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0x4341c37940000000 ++fnmas 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0xc341c37940000000 ++=== Running test on fnmad=== ++fnmad 0x0 0x0 0x0 = 0x0 ++fnmad 0x0 0x8000000000000000 0x8000000000000000 = 0x0 ++fnmad 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fnmad 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fnmad 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fnmad 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fnmad 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fnmad 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fnmad 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fnmad 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fnmad 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fnmad 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fnmad 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fnmad 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmad 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmad 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fnmad 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0x123456789abcdef0 ++fnmad 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x3ff0000000000000 ++fnmad 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fnmad 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fnmad 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fnmad 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fnmad 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fnmad 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fnmad 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fnmad 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fnmad 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fnmad 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmad 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmad 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fnmad 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fnmad 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0xfff0000000000000 ++fnmad 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0x432388ef423d9d0a ++fnmad 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x70debc9a78563412 ++fnmad 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xf0debc9a78563412 ++fnmad 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x70a896e1f9de900f ++fnmad 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xf0a896e1f9de900f ++fnmad 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x70b896e1f9de900f ++fnmad 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xf0b896e1f9de900f ++fnmad 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x70f70d73da40a70e ++fnmad 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xf0f70d73da40a70e ++fnmad 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x710335e08b35e08b ++fnmad 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xf10335e08b35e08b ++fnmad 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x7286e690fe53a8fe ++fnmad 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0xf286e690fe53a8fe ++fnmad 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x123456789abcdef0 ++fnmad 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fnmad 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0x432388ef423d9d0a ++fnmad 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x3fb999999999999a ++fnmad 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fnmad 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fnmad 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fnmad 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fnmad 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fnmad 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fnmad 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0xc014000000000000 ++fnmad 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmad 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmad 0x123456789abcdef0 0xc014000000000000 0x0 = 0x12596c16c16c16ac ++fnmad 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x93de4e3f1c71c703 ++fnmad 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fnmad 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fnmad 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0x70debc9a78563412 ++fnmad 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0xbfb999999999999a ++fnmad 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0xbfe999999999999a ++fnmad 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0x3fe999999999999a ++fnmad 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x4007333333333333 ++fnmad 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xc007333333333333 ++fnmad 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x4013333333333333 ++fnmad 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xc013333333333333 ++fnmad 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4197d783f4000000 ++fnmad 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc197d783f4000000 ++fnmad 0x3ff0000000000000 0x4014000000000000 0x0 = 0xc014000000000000 ++fnmad 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmad 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmad 0xbff0000000000000 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fnmad 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fnmad 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xf0debc9a78563412 ++fnmad 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x3fc999999999999a ++fnmad 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0x3fe999999999999a ++fnmad 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0x4000000000000000 ++fnmad 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0xc007333333333333 ++fnmad 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0x401399999999999a ++fnmad 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0xc013333333333333 ++fnmad 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0x4197d783ff333333 ++fnmad 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0xc197d783f4000000 ++fnmad 0xbff0000000000000 0xc008000000000000 0x0 = 0xc008000000000000 ++fnmad 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmad 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmad 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0xc197d783fc000000 ++fnmad 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x3fb999999999999a ++fnmad 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fnmad 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0x70a896e1f9de900f ++fnmad 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0xbfc999999999999a ++fnmad 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x4007333333333333 ++fnmad 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xc007333333333333 ++fnmad 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x4013f5c28f5c28f6 ++fnmad 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xc013f5c28f5c28f6 ++fnmad 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x4197d783ffeb851f ++fnmad 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xc197d783ffeb851f ++fnmad 0x3fb999999999999a 0x4008000000000000 0x0 = 0xbfd3333333333334 ++fnmad 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0x3fd3333333333334 ++fnmad 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmad 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0xc16312cfe0000000 ++fnmad 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0x416312cfe0000000 ++fnmad 0xbfb999999999999a 0x0 0xbfb999999999999a = 0xbfb999999999999a ++fnmad 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fnmad 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xf0a896e1f9de900f ++fnmad 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x4008000000000000 ++fnmad 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0xc007333333333333 ++fnmad 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0x401399999999999a ++fnmad 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0xc013f5c28f5c28f6 ++fnmad 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0x4197d783fff5c28f ++fnmad 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0xc197d783ffeb851f ++fnmad 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0xbf947ae147ae147c ++fnmad 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x3fd3333333333334 ++fnmad 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmad 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0x3fe0000000000000 ++fnmad 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0x416312cfe0000000 ++fnmad 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0xc16312cffccccccd ++fnmad 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x3fc999999999999a ++fnmad 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fnmad 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0x70b896e1f9de900f ++fnmad 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0xc008000000000000 ++fnmad 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x4013333333333333 ++fnmad 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xc013333333333333 ++fnmad 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x4197d783ffeb851f ++fnmad 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xc197d783ffeb851f ++fnmad 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0xbfa47ae147ae147c ++fnmad 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0x3fa47ae147ae147c ++fnmad 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0x3fe3333333333334 ++fnmad 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0xbc90000000000000 ++fnmad 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0x3c90000000000000 ++fnmad 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0xc17312cffe666667 ++fnmad 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0x417312cffe666667 ++fnmad 0xbfc999999999999a 0x0 0xbfc999999999999a = 0xbfc999999999999a ++fnmad 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fnmad 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xf0b896e1f9de900f ++fnmad 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x4014000000000000 ++fnmad 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0xc013333333333333 ++fnmad 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0x4197d783ff333333 ++fnmad 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0xc197d783ffeb851f ++fnmad 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0xbf947ae147ae147c ++fnmad 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x3fa47ae147ae147c ++fnmad 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x3fe3333333333334 ++fnmad 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0x3fd9999999999999 ++fnmad 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0x3c90000000000000 ++fnmad 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0xbfeccccccccccccd ++fnmad 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0x417312cffe666667 ++fnmad 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0xc17312cffccccccd ++fnmad 0x4008000000000000 0x0 0x4008000000000000 = 0x4008000000000000 ++fnmad 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fnmad 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0x70f70d73da40a70e ++fnmad 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0xc014000000000000 ++fnmad 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x4197d783f4000000 ++fnmad 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xc197d783f4000000 ++fnmad 0x4008000000000000 0x3fb999999999999a 0x0 = 0xbfd3333333333334 ++fnmad 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0x3fd3333333333334 ++fnmad 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0x3fe3333333333334 ++fnmad 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0xc020000000000000 ++fnmad 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0x4020000000000000 ++fnmad 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0xc02dcccccccccccd ++fnmad 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0x402dcccccccccccd ++fnmad 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0xc1b1e1a2ffcccccd ++fnmad 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0x41b1e1a2ffcccccd ++fnmad 0xc008000000000000 0x0 0xc008000000000000 = 0xc008000000000000 ++fnmad 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fnmad 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xf0f70d73da40a70e ++fnmad 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x4197d78400000000 ++fnmad 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0xc197d783f4000000 ++fnmad 0xc008000000000000 0xbff0000000000000 0x0 = 0xc008000000000000 ++fnmad 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x3fd3333333333334 ++fnmad 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x3fe3333333333334 ++fnmad 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0x3fd9999999999999 ++fnmad 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0x4020000000000000 ++fnmad 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0xc021cccccccccccd ++fnmad 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0x402dcccccccccccd ++fnmad 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0xc02d99999999999a ++fnmad 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0x41b1e1a2ffcccccd ++fnmad 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0xc1b1e1a2fd000000 ++fnmad 0x4014000000000000 0x0 0x4014000000000000 = 0x4014000000000000 ++fnmad 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fnmad 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0x710335e08b35e08b ++fnmad 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0xc197d78400000000 ++fnmad 0x4014000000000000 0x3ff0000000000000 0x0 = 0xc014000000000000 ++fnmad 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmad 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmad 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0xbc90000000000000 ++fnmad 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0x3c90000000000000 ++fnmad 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0xc02dcccccccccccd ++fnmad 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0x402dcccccccccccd ++fnmad 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0xc038cccccccccccd ++fnmad 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0x4038cccccccccccd ++fnmad 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0xc1bdcd64fd000000 ++fnmad 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0x41bdcd64fd000000 ++fnmad 0xc014000000000000 0x0 0xc014000000000000 = 0xc014000000000000 ++fnmad 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmad 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xf10335e08b35e08b ++fnmad 0xc014000000000000 0x123456789abcdef0 0x0 = 0x12596c16c16c16ac ++fnmad 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmad 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmad 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0x3fe0000000000000 ++fnmad 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0x3c90000000000000 ++fnmad 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0xbfeccccccccccccd ++fnmad 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0x402dcccccccccccd ++fnmad 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0xc02d99999999999a ++fnmad 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0x4038cccccccccccd ++fnmad 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0xc036000000000000 ++fnmad 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0x41bdcd64fd000000 ++fnmad 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0xc1bdcd64fb000000 ++fnmad 0x4197d78400000000 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fnmad 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmad 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0x7286e690fe53a8fe ++fnmad 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x93de4e3f1c71c703 ++fnmad 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmad 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0xc16312cfe0000000 ++fnmad 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0x416312cfe0000000 ++fnmad 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0xc17312cffe666667 ++fnmad 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0x417312cffe666667 ++fnmad 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0xc1b1e1a2ffcccccd ++fnmad 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0x41b1e1a2ffcccccd ++fnmad 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0xc1bdcd64fd000000 ++fnmad 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0x41bdcd64fd000000 ++fnmad 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0xc341c37937e07ffe ++fnmad 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0x4341c37937e07ffe ++fnmad 0xc197d78400000000 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fnmad 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fnmad 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0xf286e690fe53a8fe ++fnmad 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmad 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0xc197d783fc000000 ++fnmad 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0x416312cfe0000000 ++fnmad 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0xc16312cffccccccd ++fnmad 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0x417312cffe666667 ++fnmad 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0xc17312cffccccccd ++fnmad 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0x41b1e1a2ffcccccd ++fnmad 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0xc1b1e1a2fd000000 ++fnmad 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0x41bdcd64fd000000 ++fnmad 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0xc1bdcd64fb000000 ++fnmad 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0x4341c37937e07ffe ++fnmad 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0xc341c37934e58f80 ++=== Running test on fnmss=== ++fnmss 0x0 0x0 0x0 = 0x8000000000000000 ++fnmss 0x0 0x8000000000000000 0x8000000000000000 = 0x0 ++fnmss 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fnmss 0x0 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fnmss 0x0 0x3fb99999a0000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fnmss 0x0 0xbfb99999a0000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fnmss 0x0 0x3fc99999a0000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fnmss 0x0 0xbfc99999a0000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fnmss 0x0 0x4008000000000000 0x4008000000000000 = 0xc008000000000000 ++fnmss 0x0 0xc008000000000000 0xc008000000000000 = 0x4008000000000000 ++fnmss 0x0 0x4014000000000000 0x4014000000000000 = 0xc014000000000000 ++fnmss 0x0 0xc014000000000000 0xc014000000000000 = 0x4014000000000000 ++fnmss 0x0 0x4197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0x0 0xc197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fnmss 0x8000000000000000 0x8000000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fnmss 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fnmss 0x8000000000000000 0xbff0000000000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fnmss 0x8000000000000000 0x3fb99999a0000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fnmss 0x8000000000000000 0xbfb99999a0000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fnmss 0x8000000000000000 0x3fc99999a0000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fnmss 0x8000000000000000 0xbfc99999a0000000 0x4008000000000000 = 0xc008000000000000 ++fnmss 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fnmss 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0xc014000000000000 ++fnmss 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fnmss 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0x8000000000000000 0xc197d78400000000 0x0 = 0x8000000000000000 ++fnmss 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0xbff0000000000000 ++fnmss 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fnmss 0x3ff0000000000000 0x3ff0000000000000 0x3fb99999a0000000 = 0xbff19999a0000000 ++fnmss 0x3ff0000000000000 0xbff0000000000000 0xbfb99999a0000000 = 0x3ff19999a0000000 ++fnmss 0x3ff0000000000000 0x3fb99999a0000000 0x3fc99999a0000000 = 0xbfd3333340000000 ++fnmss 0x3ff0000000000000 0xbfb99999a0000000 0xbfc99999a0000000 = 0x3fd3333340000000 ++fnmss 0x3ff0000000000000 0x3fc99999a0000000 0x4008000000000000 = 0xc0099999a0000000 ++fnmss 0x3ff0000000000000 0xbfc99999a0000000 0xc008000000000000 = 0x40099999a0000000 ++fnmss 0x3ff0000000000000 0x4008000000000000 0x4014000000000000 = 0xc020000000000000 ++fnmss 0x3ff0000000000000 0xc008000000000000 0xc014000000000000 = 0x4020000000000000 ++fnmss 0x3ff0000000000000 0x4014000000000000 0x4197d78400000000 = 0xc197d78420000000 ++fnmss 0x3ff0000000000000 0xc014000000000000 0xc197d78400000000 = 0x4197d78420000000 ++fnmss 0x3ff0000000000000 0x4197d78400000000 0x0 = 0xc197d78400000000 ++fnmss 0x3ff0000000000000 0xc197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fnmss 0xbff0000000000000 0x0 0xbff0000000000000 = 0x3ff0000000000000 ++fnmss 0xbff0000000000000 0x8000000000000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fnmss 0xbff0000000000000 0x3ff0000000000000 0xbfb99999a0000000 = 0x3ff19999a0000000 ++fnmss 0xbff0000000000000 0xbff0000000000000 0x3fc99999a0000000 = 0xbff3333340000000 ++fnmss 0xbff0000000000000 0x3fb99999a0000000 0xbfc99999a0000000 = 0x3fd3333340000000 ++fnmss 0xbff0000000000000 0xbfb99999a0000000 0x4008000000000000 = 0xc008ccccc0000000 ++fnmss 0xbff0000000000000 0x3fc99999a0000000 0xc008000000000000 = 0x40099999a0000000 ++fnmss 0xbff0000000000000 0xbfc99999a0000000 0x4014000000000000 = 0xc014ccccc0000000 ++fnmss 0xbff0000000000000 0x4008000000000000 0xc014000000000000 = 0x4020000000000000 ++fnmss 0xbff0000000000000 0xc008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0xbff0000000000000 0x4014000000000000 0xc197d78400000000 = 0x4197d78420000000 ++fnmss 0xbff0000000000000 0xc014000000000000 0x0 = 0xc014000000000000 ++fnmss 0xbff0000000000000 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fnmss 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fnmss 0x3fb99999a0000000 0x0 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fnmss 0x3fb99999a0000000 0x8000000000000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fnmss 0x3fb99999a0000000 0x3ff0000000000000 0x3fc99999a0000000 = 0xbfd3333340000000 ++fnmss 0x3fb99999a0000000 0xbff0000000000000 0xbfc99999a0000000 = 0x3fd3333340000000 ++fnmss 0x3fb99999a0000000 0x3fb99999a0000000 0x4008000000000000 = 0xc008147ae0000000 ++fnmss 0x3fb99999a0000000 0xbfb99999a0000000 0xc008000000000000 = 0x4008147ae0000000 ++fnmss 0x3fb99999a0000000 0x3fc99999a0000000 0x4014000000000000 = 0xc014147ae0000000 ++fnmss 0x3fb99999a0000000 0xbfc99999a0000000 0xc014000000000000 = 0x4014147ae0000000 ++fnmss 0x3fb99999a0000000 0x4008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0x3fb99999a0000000 0xc008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0x3fb99999a0000000 0x4014000000000000 0x0 = 0xbfe0000000000000 ++fnmss 0x3fb99999a0000000 0xc014000000000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmss 0x3fb99999a0000000 0x4197d78400000000 0x3ff0000000000000 = 0xc16312d020000000 ++fnmss 0x3fb99999a0000000 0xc197d78400000000 0xbff0000000000000 = 0x416312d020000000 ++fnmss 0xbfb99999a0000000 0x0 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fnmss 0xbfb99999a0000000 0x8000000000000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fnmss 0xbfb99999a0000000 0x3ff0000000000000 0xbfc99999a0000000 = 0x3fd3333340000000 ++fnmss 0xbfb99999a0000000 0xbff0000000000000 0x4008000000000000 = 0xc008ccccc0000000 ++fnmss 0xbfb99999a0000000 0x3fb99999a0000000 0xc008000000000000 = 0x4008147ae0000000 ++fnmss 0xbfb99999a0000000 0xbfb99999a0000000 0x4014000000000000 = 0xc0140a3d80000000 ++fnmss 0xbfb99999a0000000 0x3fc99999a0000000 0xc014000000000000 = 0x4014147ae0000000 ++fnmss 0xbfb99999a0000000 0xbfc99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0xbfb99999a0000000 0x4008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0xbfb99999a0000000 0xc008000000000000 0x0 = 0xbfd3333340000000 ++fnmss 0xbfb99999a0000000 0x4014000000000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmss 0xbfb99999a0000000 0xc014000000000000 0x3ff0000000000000 = 0xbff8000000000000 ++fnmss 0xbfb99999a0000000 0x4197d78400000000 0xbff0000000000000 = 0x416312d020000000 ++fnmss 0xbfb99999a0000000 0xc197d78400000000 0x3fb99999a0000000 = 0xc16312d000000000 ++fnmss 0x3fc99999a0000000 0x0 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fnmss 0x3fc99999a0000000 0x8000000000000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fnmss 0x3fc99999a0000000 0x3ff0000000000000 0x4008000000000000 = 0xc0099999a0000000 ++fnmss 0x3fc99999a0000000 0xbff0000000000000 0xc008000000000000 = 0x40099999a0000000 ++fnmss 0x3fc99999a0000000 0x3fb99999a0000000 0x4014000000000000 = 0xc014147ae0000000 ++fnmss 0x3fc99999a0000000 0xbfb99999a0000000 0xc014000000000000 = 0x4014147ae0000000 ++fnmss 0x3fc99999a0000000 0x3fc99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0x3fc99999a0000000 0xbfc99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0x3fc99999a0000000 0x4008000000000000 0x0 = 0xbfe3333340000000 ++fnmss 0x3fc99999a0000000 0xc008000000000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmss 0x3fc99999a0000000 0x4014000000000000 0x3ff0000000000000 = 0xc000000000000000 ++fnmss 0x3fc99999a0000000 0xc014000000000000 0xbff0000000000000 = 0x4000000000000000 ++fnmss 0x3fc99999a0000000 0x4197d78400000000 0x3fb99999a0000000 = 0xc17312d000000000 ++fnmss 0x3fc99999a0000000 0xc197d78400000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmss 0xbfc99999a0000000 0x0 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fnmss 0xbfc99999a0000000 0x8000000000000000 0x4008000000000000 = 0xc008000000000000 ++fnmss 0xbfc99999a0000000 0x3ff0000000000000 0xc008000000000000 = 0x40099999a0000000 ++fnmss 0xbfc99999a0000000 0xbff0000000000000 0x4014000000000000 = 0xc014ccccc0000000 ++fnmss 0xbfc99999a0000000 0x3fb99999a0000000 0xc014000000000000 = 0x4014147ae0000000 ++fnmss 0xbfc99999a0000000 0xbfb99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0xbfc99999a0000000 0x3fc99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0xbfc99999a0000000 0xbfc99999a0000000 0x0 = 0xbfa47ae160000000 ++fnmss 0xbfc99999a0000000 0x4008000000000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmss 0xbfc99999a0000000 0xc008000000000000 0x3ff0000000000000 = 0xbff99999a0000000 ++fnmss 0xbfc99999a0000000 0x4014000000000000 0xbff0000000000000 = 0x4000000000000000 ++fnmss 0xbfc99999a0000000 0xc014000000000000 0x3fb99999a0000000 = 0xbff19999a0000000 ++fnmss 0xbfc99999a0000000 0x4197d78400000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmss 0xbfc99999a0000000 0xc197d78400000000 0x3fc99999a0000000 = 0xc17312d000000000 ++fnmss 0x4008000000000000 0x0 0x4008000000000000 = 0xc008000000000000 ++fnmss 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0x4008000000000000 ++fnmss 0x4008000000000000 0x3ff0000000000000 0x4014000000000000 = 0xc020000000000000 ++fnmss 0x4008000000000000 0xbff0000000000000 0xc014000000000000 = 0x4020000000000000 ++fnmss 0x4008000000000000 0x3fb99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0x4008000000000000 0xbfb99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0x4008000000000000 0x3fc99999a0000000 0x0 = 0xbfe3333340000000 ++fnmss 0x4008000000000000 0xbfc99999a0000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmss 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0xc024000000000000 ++fnmss 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0x4024000000000000 ++fnmss 0x4008000000000000 0x4014000000000000 0x3fb99999a0000000 = 0xc02e333340000000 ++fnmss 0x4008000000000000 0xc014000000000000 0xbfb99999a0000000 = 0x402e333340000000 ++fnmss 0x4008000000000000 0x4197d78400000000 0x3fc99999a0000000 = 0xc1b1e1a300000000 ++fnmss 0x4008000000000000 0xc197d78400000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmss 0xc008000000000000 0x0 0xc008000000000000 = 0x4008000000000000 ++fnmss 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0xc014000000000000 ++fnmss 0xc008000000000000 0x3ff0000000000000 0xc014000000000000 = 0x4020000000000000 ++fnmss 0xc008000000000000 0xbff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0xc008000000000000 0x3fb99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0xc008000000000000 0xbfb99999a0000000 0x0 = 0xbfd3333340000000 ++fnmss 0xc008000000000000 0x3fc99999a0000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmss 0xc008000000000000 0xbfc99999a0000000 0x3ff0000000000000 = 0xbff99999a0000000 ++fnmss 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0x4024000000000000 ++fnmss 0xc008000000000000 0xc008000000000000 0x3fb99999a0000000 = 0xc022333340000000 ++fnmss 0xc008000000000000 0x4014000000000000 0xbfb99999a0000000 = 0x402e333340000000 ++fnmss 0xc008000000000000 0xc014000000000000 0x3fc99999a0000000 = 0xc02e666660000000 ++fnmss 0xc008000000000000 0x4197d78400000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmss 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0xc1b1e1a300000000 ++fnmss 0x4014000000000000 0x0 0x4014000000000000 = 0xc014000000000000 ++fnmss 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0x4014000000000000 ++fnmss 0x4014000000000000 0x3ff0000000000000 0x4197d78400000000 = 0xc197d78420000000 ++fnmss 0x4014000000000000 0xbff0000000000000 0xc197d78400000000 = 0x4197d78420000000 ++fnmss 0x4014000000000000 0x3fb99999a0000000 0x0 = 0xbfe0000000000000 ++fnmss 0x4014000000000000 0xbfb99999a0000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmss 0x4014000000000000 0x3fc99999a0000000 0x3ff0000000000000 = 0xc000000000000000 ++fnmss 0x4014000000000000 0xbfc99999a0000000 0xbff0000000000000 = 0x4000000000000000 ++fnmss 0x4014000000000000 0x4008000000000000 0x3fb99999a0000000 = 0xc02e333340000000 ++fnmss 0x4014000000000000 0xc008000000000000 0xbfb99999a0000000 = 0x402e333340000000 ++fnmss 0x4014000000000000 0x4014000000000000 0x3fc99999a0000000 = 0xc039333340000000 ++fnmss 0x4014000000000000 0xc014000000000000 0xbfc99999a0000000 = 0x4039333340000000 ++fnmss 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0xc1bdcd6500000000 ++fnmss 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmss 0xc014000000000000 0x0 0xc014000000000000 = 0x4014000000000000 ++fnmss 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0xc014000000000000 0x3ff0000000000000 0xc197d78400000000 = 0x4197d78420000000 ++fnmss 0xc014000000000000 0xbff0000000000000 0x0 = 0xc014000000000000 ++fnmss 0xc014000000000000 0x3fb99999a0000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmss 0xc014000000000000 0xbfb99999a0000000 0x3ff0000000000000 = 0xbff8000000000000 ++fnmss 0xc014000000000000 0x3fc99999a0000000 0xbff0000000000000 = 0x4000000000000000 ++fnmss 0xc014000000000000 0xbfc99999a0000000 0x3fb99999a0000000 = 0xbff19999a0000000 ++fnmss 0xc014000000000000 0x4008000000000000 0xbfb99999a0000000 = 0x402e333340000000 ++fnmss 0xc014000000000000 0xc008000000000000 0x3fc99999a0000000 = 0xc02e666660000000 ++fnmss 0xc014000000000000 0x4014000000000000 0xbfc99999a0000000 = 0x4039333340000000 ++fnmss 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0xc03c000000000000 ++fnmss 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmss 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0xc1bdcd6500000000 ++fnmss 0x4197d78400000000 0x0 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0x4197d78400000000 0x3ff0000000000000 0x0 = 0xc197d78400000000 ++fnmss 0x4197d78400000000 0xbff0000000000000 0x8000000000000000 = 0x4197d78400000000 ++fnmss 0x4197d78400000000 0x3fb99999a0000000 0x3ff0000000000000 = 0xc16312d020000000 ++fnmss 0x4197d78400000000 0xbfb99999a0000000 0xbff0000000000000 = 0x416312d020000000 ++fnmss 0x4197d78400000000 0x3fc99999a0000000 0x3fb99999a0000000 = 0xc17312d000000000 ++fnmss 0x4197d78400000000 0xbfc99999a0000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmss 0x4197d78400000000 0x4008000000000000 0x3fc99999a0000000 = 0xc1b1e1a300000000 ++fnmss 0x4197d78400000000 0xc008000000000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmss 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0xc1bdcd6500000000 ++fnmss 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmss 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0xc341c37940000000 ++fnmss 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0x4341c37940000000 ++fnmss 0xc197d78400000000 0x0 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0xc197d78400000000 0x8000000000000000 0x0 = 0x8000000000000000 ++fnmss 0xc197d78400000000 0x3ff0000000000000 0x8000000000000000 = 0x4197d78400000000 ++fnmss 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0xc197d78400000000 ++fnmss 0xc197d78400000000 0x3fb99999a0000000 0xbff0000000000000 = 0x416312d020000000 ++fnmss 0xc197d78400000000 0xbfb99999a0000000 0x3fb99999a0000000 = 0xc16312d000000000 ++fnmss 0xc197d78400000000 0x3fc99999a0000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmss 0xc197d78400000000 0xbfc99999a0000000 0x3fc99999a0000000 = 0xc17312d000000000 ++fnmss 0xc197d78400000000 0x4008000000000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmss 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0xc1b1e1a300000000 ++fnmss 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmss 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0xc1bdcd6500000000 ++fnmss 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0x4341c37940000000 ++fnmss 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0xc341c37940000000 ++=== Running test on fnmsd=== ++fnmsd 0x0 0x0 0x0 = 0x8000000000000000 ++fnmsd 0x0 0x8000000000000000 0x8000000000000000 = 0x0 ++fnmsd 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x923456789abcdef0 ++fnmsd 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fnmsd 0x0 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fnmsd 0x0 0x3fb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fnmsd 0x0 0xbfb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fnmsd 0x0 0x3fc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fnmsd 0x0 0xbfc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fnmsd 0x0 0x4008000000000000 0x4008000000000000 = 0xc008000000000000 ++fnmsd 0x0 0xc008000000000000 0xc008000000000000 = 0x4008000000000000 ++fnmsd 0x0 0x4014000000000000 0x4014000000000000 = 0xc014000000000000 ++fnmsd 0x0 0xc014000000000000 0xc014000000000000 = 0x4014000000000000 ++fnmsd 0x0 0x4197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmsd 0x0 0xc197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmsd 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fnmsd 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0x923456789abcdef0 ++fnmsd 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0xbff0000000000000 ++fnmsd 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fnmsd 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fnmsd 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fnmsd 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fnmsd 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fnmsd 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0xc008000000000000 ++fnmsd 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fnmsd 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0xc014000000000000 ++fnmsd 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fnmsd 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmsd 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmsd 0x8000000000000000 0xc197d78400000000 0x0 = 0x8000000000000000 ++fnmsd 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fnmsd 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0xfff0000000000000 ++fnmsd 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0x432388ef423d9d0e ++fnmsd 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x70debc9a78563412 ++fnmsd 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xf0debc9a78563412 ++fnmsd 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x70a896e1f9de900f ++fnmsd 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xf0a896e1f9de900f ++fnmsd 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x70b896e1f9de900f ++fnmsd 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xf0b896e1f9de900f ++fnmsd 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x70f70d73da40a70d ++fnmsd 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xf0f70d73da40a70d ++fnmsd 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x710335e08b35e08b ++fnmsd 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xf10335e08b35e08b ++fnmsd 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x7286e690fe53a8fe ++fnmsd 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0xf286e690fe53a8fe ++fnmsd 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x923456789abcdef0 ++fnmsd 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fnmsd 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0x432388ef423d9d0e ++fnmsd 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0xbfb999999999999a ++fnmsd 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fnmsd 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fnmsd 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fnmsd 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0xc008000000000000 ++fnmsd 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0x4008000000000000 ++fnmsd 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0xc014000000000000 ++fnmsd 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0x4014000000000000 ++fnmsd 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmsd 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmsd 0x123456789abcdef0 0xc014000000000000 0x0 = 0x12596c16c16c16ac ++fnmsd 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x93de4e3f1c71c703 ++fnmsd 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0xbff0000000000000 ++fnmsd 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fnmsd 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0x70debc9a78563412 ++fnmsd 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0x3fb999999999999a ++fnmsd 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0xbff3333333333333 ++fnmsd 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0x3ff3333333333333 ++fnmsd 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0xc008cccccccccccd ++fnmsd 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0x4008cccccccccccd ++fnmsd 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0xc014cccccccccccd ++fnmsd 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0x4014cccccccccccd ++fnmsd 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0xc197d7840c000000 ++fnmsd 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0x4197d7840c000000 ++fnmsd 0x3ff0000000000000 0x4014000000000000 0x0 = 0xc014000000000000 ++fnmsd 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmsd 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmsd 0xbff0000000000000 0x0 0xbff0000000000000 = 0x3ff0000000000000 ++fnmsd 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fnmsd 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xf0debc9a78563412 ++fnmsd 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0xbfc999999999999a ++fnmsd 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0x3ff3333333333333 ++fnmsd 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0xc010000000000000 ++fnmsd 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0x4008cccccccccccd ++fnmsd 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0xc014666666666666 ++fnmsd 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0x4014cccccccccccd ++fnmsd 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0xc197d78400cccccd ++fnmsd 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0x4197d7840c000000 ++fnmsd 0xbff0000000000000 0xc008000000000000 0x0 = 0xc008000000000000 ++fnmsd 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmsd 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmsd 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78404000000 ++fnmsd 0x3fb999999999999a 0x0 0x3fb999999999999a = 0xbfb999999999999a ++fnmsd 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fnmsd 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0x70a896e1f9de900f ++fnmsd 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0x3fc999999999999a ++fnmsd 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0xc008cccccccccccd ++fnmsd 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0x4008cccccccccccd ++fnmsd 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0xc0140a3d70a3d70a ++fnmsd 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0x40140a3d70a3d70a ++fnmsd 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0xc197d78400147ae1 ++fnmsd 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0x4197d78400147ae1 ++fnmsd 0x3fb999999999999a 0x4008000000000000 0x0 = 0xbfd3333333333334 ++fnmsd 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0x3fd3333333333334 ++fnmsd 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmsd 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0xc16312d020000000 ++fnmsd 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0x416312d020000000 ++fnmsd 0xbfb999999999999a 0x0 0xbfb999999999999a = 0x3fb999999999999a ++fnmsd 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fnmsd 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xf0a896e1f9de900f ++fnmsd 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0xc008000000000000 ++fnmsd 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0x4008cccccccccccd ++fnmsd 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0xc014666666666666 ++fnmsd 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0x40140a3d70a3d70a ++fnmsd 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0xc197d784000a3d71 ++fnmsd 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0x4197d78400147ae1 ++fnmsd 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0xbf947ae147ae147c ++fnmsd 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x3fd3333333333334 ++fnmsd 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmsd 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0xbff8000000000000 ++fnmsd 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0x416312d020000000 ++fnmsd 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0xc16312d003333333 ++fnmsd 0x3fc999999999999a 0x0 0x3fc999999999999a = 0xbfc999999999999a ++fnmsd 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fnmsd 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0x70b896e1f9de900f ++fnmsd 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0x4008000000000000 ++fnmsd 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0xc014cccccccccccd ++fnmsd 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0x4014cccccccccccd ++fnmsd 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0xc197d78400147ae1 ++fnmsd 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0x4197d78400147ae1 ++fnmsd 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0xbfa47ae147ae147c ++fnmsd 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0x3fa47ae147ae147c ++fnmsd 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0x3fe3333333333333 ++fnmsd 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0xc000000000000000 ++fnmsd 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0x4000000000000000 ++fnmsd 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0xc17312d00199999a ++fnmsd 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0x417312d00199999a ++fnmsd 0xbfc999999999999a 0x0 0xbfc999999999999a = 0x3fc999999999999a ++fnmsd 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0xc008000000000000 ++fnmsd 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xf0b896e1f9de900f ++fnmsd 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0xc014000000000000 ++fnmsd 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0x4014cccccccccccd ++fnmsd 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0xc197d78400cccccd ++fnmsd 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0x4197d78400147ae1 ++fnmsd 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0xbf947ae147ae147c ++fnmsd 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x3fa47ae147ae147c ++fnmsd 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x3fe3333333333333 ++fnmsd 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0xbff999999999999a ++fnmsd 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0x4000000000000000 ++fnmsd 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0xbff199999999999a ++fnmsd 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0x417312d00199999a ++fnmsd 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0xc17312d003333333 ++fnmsd 0x4008000000000000 0x0 0x4008000000000000 = 0xc008000000000000 ++fnmsd 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0x4008000000000000 ++fnmsd 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0x70f70d73da40a70d ++fnmsd 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0x4014000000000000 ++fnmsd 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0xc197d7840c000000 ++fnmsd 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0x4197d7840c000000 ++fnmsd 0x4008000000000000 0x3fb999999999999a 0x0 = 0xbfd3333333333334 ++fnmsd 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0x3fd3333333333334 ++fnmsd 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0x3fe3333333333333 ++fnmsd 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0xc024000000000000 ++fnmsd 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0x4024000000000000 ++fnmsd 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0xc02e333333333333 ++fnmsd 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0x402e333333333333 ++fnmsd 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0xc1b1e1a300333333 ++fnmsd 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0x41b1e1a300333333 ++fnmsd 0xc008000000000000 0x0 0xc008000000000000 = 0x4008000000000000 ++fnmsd 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0xc014000000000000 ++fnmsd 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xf0f70d73da40a70d ++fnmsd 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0xc197d78400000000 ++fnmsd 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0x4197d7840c000000 ++fnmsd 0xc008000000000000 0xbff0000000000000 0x0 = 0xc008000000000000 ++fnmsd 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x3fd3333333333334 ++fnmsd 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x3fe3333333333333 ++fnmsd 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0xbff999999999999a ++fnmsd 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0x4024000000000000 ++fnmsd 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0xc022333333333333 ++fnmsd 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0x402e333333333333 ++fnmsd 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0xc02e666666666666 ++fnmsd 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0x41b1e1a300333333 ++fnmsd 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0xc1b1e1a303000000 ++fnmsd 0x4014000000000000 0x0 0x4014000000000000 = 0xc014000000000000 ++fnmsd 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0x4014000000000000 ++fnmsd 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0x710335e08b35e08b ++fnmsd 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0x4197d78400000000 ++fnmsd 0x4014000000000000 0x3ff0000000000000 0x0 = 0xc014000000000000 ++fnmsd 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmsd 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmsd 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0xc000000000000000 ++fnmsd 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0x4000000000000000 ++fnmsd 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0xc02e333333333333 ++fnmsd 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0x402e333333333333 ++fnmsd 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0xc039333333333333 ++fnmsd 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0x4039333333333333 ++fnmsd 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0xc1bdcd6503000000 ++fnmsd 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0x41bdcd6503000000 ++fnmsd 0xc014000000000000 0x0 0xc014000000000000 = 0x4014000000000000 ++fnmsd 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmsd 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xf10335e08b35e08b ++fnmsd 0xc014000000000000 0x123456789abcdef0 0x0 = 0x12596c16c16c16ac ++fnmsd 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmsd 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmsd 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0xbff8000000000000 ++fnmsd 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0x4000000000000000 ++fnmsd 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0xbff199999999999a ++fnmsd 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0x402e333333333333 ++fnmsd 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0xc02e666666666666 ++fnmsd 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0x4039333333333333 ++fnmsd 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0xc03c000000000000 ++fnmsd 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0x41bdcd6503000000 ++fnmsd 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0xc1bdcd6505000000 ++fnmsd 0x4197d78400000000 0x0 0x4197d78400000000 = 0xc197d78400000000 ++fnmsd 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmsd 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0x7286e690fe53a8fe ++fnmsd 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x93de4e3f1c71c703 ++fnmsd 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmsd 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0xc16312d020000000 ++fnmsd 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0x416312d020000000 ++fnmsd 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0xc17312d00199999a ++fnmsd 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0x417312d00199999a ++fnmsd 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0xc1b1e1a300333333 ++fnmsd 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0x41b1e1a300333333 ++fnmsd 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0xc1bdcd6503000000 ++fnmsd 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0x41bdcd6503000000 ++fnmsd 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0xc341c37937e08002 ++fnmsd 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0x4341c37937e08002 ++fnmsd 0xc197d78400000000 0x0 0xc197d78400000000 = 0x4197d78400000000 ++fnmsd 0xc197d78400000000 0x8000000000000000 0x0 = 0x8000000000000000 ++fnmsd 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0xf286e690fe53a8fe ++fnmsd 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmsd 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0xc197d78404000000 ++fnmsd 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0x416312d020000000 ++fnmsd 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0xc16312d003333333 ++fnmsd 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0x417312d00199999a ++fnmsd 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0xc17312d003333333 ++fnmsd 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0x41b1e1a300333333 ++fnmsd 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0xc1b1e1a303000000 ++fnmsd 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0x41bdcd6503000000 ++fnmsd 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0xc1bdcd6505000000 ++fnmsd 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0x4341c37937e08002 ++fnmsd 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0xc341c3793adb7080 ++=== Running test on fseleq=== ++fseleq 0x0 0x0 0x0 = 0x0 ++fseleq 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fseleq 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0x8000000000000000 ++fseleq 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0xf0debc9a78563412 ++fseleq 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x123456789abcdef0 ++fseleq 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fseleq 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0xbff0000000000000 ++fseleq 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fseleq 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0xbfb999999999999a ++fseleq 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fseleq 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0xbfc999999999999a ++fseleq 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fseleq 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0xc008000000000000 ++fseleq 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fseleq 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0xc014000000000000 ++fseleq 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fseleq 0x8000000000000000 0xc197d78400000000 0x0 = 0xc197d78400000000 ++fseleq 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fseleq 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x0 ++fseleq 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fseleq 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x123456789abcdef0 0xc014000000000000 0x0 = 0x0 ++fseleq 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fseleq 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fseleq 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x3ff0000000000000 0x4014000000000000 0x0 = 0x0 ++fseleq 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xbff0000000000000 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fseleq 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0xbff0000000000000 0xc008000000000000 0x0 = 0x0 ++fseleq 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fseleq 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x3fb999999999999a 0x4008000000000000 0x0 = 0x0 ++fseleq 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xbfb999999999999a 0x0 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x4008000000000000 ++fseleq 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0x0 ++fseleq 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0xc008000000000000 ++fseleq 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x0 ++fseleq 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xbfc999999999999a 0x0 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x4014000000000000 ++fseleq 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0x0 ++fseleq 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fseleq 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x4008000000000000 0x0 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0xc014000000000000 ++fseleq 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x4008000000000000 0x3fb999999999999a 0x0 = 0x0 ++fseleq 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xc008000000000000 0x0 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0xc008000000000000 0xbff0000000000000 0x0 = 0x0 ++fseleq 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fseleq 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x4014000000000000 0x0 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x4014000000000000 0x3ff0000000000000 0x0 = 0x0 ++fseleq 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xc014000000000000 0x0 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0xc014000000000000 0x123456789abcdef0 0x0 = 0x0 ++fseleq 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x4197d78400000000 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0x0 ++fseleq 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xc197d78400000000 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fseleq 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0x8000000000000000 ++fseleq 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++=== Running test on fselne=== ++fselne 0x0 0x0 0x0 = 0x0 ++fselne 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fselne 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselne 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fselne 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselne 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselne 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselne 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselne 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselne 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselne 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fselne 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fselne 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fselne 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fselne 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fselne 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fselne 0x8000000000000000 0x0 0x8000000000000000 = 0x8000000000000000 ++fselne 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselne 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0x123456789abcdef0 ++fselne 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x3ff0000000000000 ++fselne 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselne 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselne 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselne 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselne 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselne 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fselne 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fselne 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fselne 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fselne 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselne 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fselne 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fselne 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0x0 ++fselne 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x8000000000000000 ++fselne 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0debc9a78563412 ++fselne 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0x123456789abcdef0 ++fselne 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x3ff0000000000000 ++fselne 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xbff0000000000000 ++fselne 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x3fb999999999999a ++fselne 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xbfb999999999999a ++fselne 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x3fc999999999999a ++fselne 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xbfc999999999999a ++fselne 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x4008000000000000 ++fselne 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xc008000000000000 ++fselne 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x4014000000000000 ++fselne 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xc014000000000000 ++fselne 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fselne 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fselne 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x0 ++fselne 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fselne 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xf0debc9a78563412 ++fselne 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x123456789abcdef0 ++fselne 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0x3ff0000000000000 ++fselne 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0xbff0000000000000 ++fselne 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0x3fb999999999999a ++fselne 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0xbfb999999999999a ++fselne 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0x3fc999999999999a ++fselne 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0xbfc999999999999a ++fselne 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0x4008000000000000 ++fselne 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0xc008000000000000 ++fselne 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0x4014000000000000 ++fselne 0x123456789abcdef0 0xc014000000000000 0x0 = 0xc014000000000000 ++fselne 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fselne 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xc197d78400000000 ++fselne 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x0 ++fselne 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0x8000000000000000 ++fselne 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0xf0debc9a78563412 ++fselne 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0x123456789abcdef0 ++fselne 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3ff0000000000000 ++fselne 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbff0000000000000 ++fselne 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x3fb999999999999a ++fselne 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xbfb999999999999a ++fselne 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x3fc999999999999a ++fselne 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xbfc999999999999a ++fselne 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4008000000000000 ++fselne 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc008000000000000 ++fselne 0x3ff0000000000000 0x4014000000000000 0x0 = 0x4014000000000000 ++fselne 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fselne 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0x4197d78400000000 ++fselne 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fselne 0xbff0000000000000 0x0 0xbff0000000000000 = 0x0 ++fselne 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x8000000000000000 ++fselne 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xf0debc9a78563412 ++fselne 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x123456789abcdef0 ++fselne 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0x3ff0000000000000 ++fselne 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0xbff0000000000000 ++fselne 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0x3fb999999999999a ++fselne 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0xbfb999999999999a ++fselne 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0x3fc999999999999a ++fselne 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0xbfc999999999999a ++fselne 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0x4008000000000000 ++fselne 0xbff0000000000000 0xc008000000000000 0x0 = 0xc008000000000000 ++fselne 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fselne 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xc014000000000000 ++fselne 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fselne 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fselne 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x0 ++fselne 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0x8000000000000000 ++fselne 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0xf0debc9a78563412 ++fselne 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0x123456789abcdef0 ++fselne 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x3ff0000000000000 ++fselne 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xbff0000000000000 ++fselne 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x3fb999999999999a ++fselne 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xbfb999999999999a ++fselne 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x3fc999999999999a ++fselne 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xbfc999999999999a ++fselne 0x3fb999999999999a 0x4008000000000000 0x0 = 0x4008000000000000 ++fselne 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0xc008000000000000 ++fselne 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0x4014000000000000 ++fselne 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0xc014000000000000 ++fselne 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fselne 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fselne 0xbfb999999999999a 0x0 0xbfb999999999999a = 0x0 ++fselne 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x8000000000000000 ++fselne 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xf0debc9a78563412 ++fselne 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x123456789abcdef0 ++fselne 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0x3ff0000000000000 ++fselne 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0xbff0000000000000 ++fselne 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0x3fb999999999999a ++fselne 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0xbfb999999999999a ++fselne 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0x3fc999999999999a ++fselne 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0xbfc999999999999a ++fselne 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x4008000000000000 ++fselne 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xc008000000000000 ++fselne 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x4014000000000000 ++fselne 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0xc014000000000000 ++fselne 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fselne 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0xc197d78400000000 ++fselne 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x0 ++fselne 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0x8000000000000000 ++fselne 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0xf0debc9a78563412 ++fselne 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0x123456789abcdef0 ++fselne 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x3ff0000000000000 ++fselne 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xbff0000000000000 ++fselne 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x3fb999999999999a ++fselne 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xbfb999999999999a ++fselne 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x3fc999999999999a ++fselne 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0xbfc999999999999a ++fselne 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0x4008000000000000 ++fselne 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0xc008000000000000 ++fselne 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x4014000000000000 ++fselne 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xc014000000000000 ++fselne 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x4197d78400000000 ++fselne 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xc197d78400000000 ++fselne 0xbfc999999999999a 0x0 0xbfc999999999999a = 0x0 ++fselne 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x8000000000000000 ++fselne 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xf0debc9a78563412 ++fselne 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x123456789abcdef0 ++fselne 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0x3ff0000000000000 ++fselne 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0xbff0000000000000 ++fselne 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0x3fb999999999999a ++fselne 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0xbfb999999999999a ++fselne 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x3fc999999999999a ++fselne 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xbfc999999999999a ++fselne 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x4008000000000000 ++fselne 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0xc008000000000000 ++fselne 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0x4014000000000000 ++fselne 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0xc014000000000000 ++fselne 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0x4197d78400000000 ++fselne 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0xc197d78400000000 ++fselne 0x4008000000000000 0x0 0x4008000000000000 = 0x0 ++fselne 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0x8000000000000000 ++fselne 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0xf0debc9a78563412 ++fselne 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0x123456789abcdef0 ++fselne 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x3ff0000000000000 ++fselne 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xbff0000000000000 ++fselne 0x4008000000000000 0x3fb999999999999a 0x0 = 0x3fb999999999999a ++fselne 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0xbfb999999999999a ++fselne 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0x3fc999999999999a ++fselne 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0xbfc999999999999a ++fselne 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x4008000000000000 ++fselne 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xc008000000000000 ++fselne 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x4014000000000000 ++fselne 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xc014000000000000 ++fselne 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x4197d78400000000 ++fselne 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xc197d78400000000 ++fselne 0xc008000000000000 0x0 0xc008000000000000 = 0x0 ++fselne 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x8000000000000000 ++fselne 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xf0debc9a78563412 ++fselne 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x123456789abcdef0 ++fselne 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0x3ff0000000000000 ++fselne 0xc008000000000000 0xbff0000000000000 0x0 = 0xbff0000000000000 ++fselne 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x3fb999999999999a ++fselne 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xbfb999999999999a ++fselne 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x3fc999999999999a ++fselne 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0xbfc999999999999a ++fselne 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0x4008000000000000 ++fselne 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0xc008000000000000 ++fselne 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0x4014000000000000 ++fselne 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0xc014000000000000 ++fselne 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0x4197d78400000000 ++fselne 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0xc197d78400000000 ++fselne 0x4014000000000000 0x0 0x4014000000000000 = 0x0 ++fselne 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0x8000000000000000 ++fselne 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0xf0debc9a78563412 ++fselne 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0x123456789abcdef0 ++fselne 0x4014000000000000 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++fselne 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++fselne 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0x3fb999999999999a ++fselne 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0xbfb999999999999a ++fselne 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x3fc999999999999a ++fselne 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xbfc999999999999a ++fselne 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x4008000000000000 ++fselne 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xc008000000000000 ++fselne 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x4014000000000000 ++fselne 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xc014000000000000 ++fselne 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x4197d78400000000 ++fselne 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc197d78400000000 ++fselne 0xc014000000000000 0x0 0xc014000000000000 = 0x0 ++fselne 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x8000000000000000 ++fselne 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xf0debc9a78563412 ++fselne 0xc014000000000000 0x123456789abcdef0 0x0 = 0x123456789abcdef0 ++fselne 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++fselne 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xbff0000000000000 ++fselne 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x3fb999999999999a ++fselne 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0xbfb999999999999a ++fselne 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0x3fc999999999999a ++fselne 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0xbfc999999999999a ++fselne 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0x4008000000000000 ++fselne 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0xc008000000000000 ++fselne 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0x4014000000000000 ++fselne 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0xc014000000000000 ++fselne 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0x4197d78400000000 ++fselne 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0xc197d78400000000 ++fselne 0x4197d78400000000 0x0 0x4197d78400000000 = 0x0 ++fselne 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0x8000000000000000 ++fselne 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0xf0debc9a78563412 ++fselne 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x123456789abcdef0 ++fselne 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0x3ff0000000000000 ++fselne 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0xbff0000000000000 ++fselne 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x3fb999999999999a ++fselne 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xbfb999999999999a ++fselne 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x3fc999999999999a ++fselne 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xbfc999999999999a ++fselne 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x4008000000000000 ++fselne 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xc008000000000000 ++fselne 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x4014000000000000 ++fselne 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc014000000000000 ++fselne 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4197d78400000000 ++fselne 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc197d78400000000 ++fselne 0xc197d78400000000 0x0 0xc197d78400000000 = 0x0 ++fselne 0xc197d78400000000 0x8000000000000000 0x0 = 0x8000000000000000 ++fselne 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0xf0debc9a78563412 ++fselne 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0x123456789abcdef0 ++fselne 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x3ff0000000000000 ++fselne 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fselne 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0x3fb999999999999a ++fselne 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fselne 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0x3fc999999999999a ++fselne 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fselne 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0x4008000000000000 ++fselne 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0xc008000000000000 ++fselne 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0x4014000000000000 ++fselne 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0xc014000000000000 ++fselne 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0x4197d78400000000 ++fselne 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++=== Running test on fsellt=== ++fsellt 0x0 0x0 0x0 = 0x0 ++fsellt 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x8000000000000000 0x0 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fsellt 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0x0 ++fsellt 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x8000000000000000 ++fsellt 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0debc9a78563412 ++fsellt 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0x123456789abcdef0 ++fsellt 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x3ff0000000000000 ++fsellt 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xbff0000000000000 ++fsellt 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x3fb999999999999a ++fsellt 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xbfb999999999999a ++fsellt 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x3fc999999999999a ++fsellt 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xbfc999999999999a ++fsellt 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x4008000000000000 ++fsellt 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xc008000000000000 ++fsellt 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x4014000000000000 ++fsellt 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xc014000000000000 ++fsellt 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fsellt 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fsellt 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x123456789abcdef0 0xc014000000000000 0x0 = 0x0 ++fsellt 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x3ff0000000000000 0x4014000000000000 0x0 = 0x0 ++fsellt 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0xbff0000000000000 0x0 0xbff0000000000000 = 0x0 ++fsellt 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x8000000000000000 ++fsellt 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xf0debc9a78563412 ++fsellt 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x123456789abcdef0 ++fsellt 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0x3ff0000000000000 ++fsellt 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0xbff0000000000000 ++fsellt 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0x3fb999999999999a ++fsellt 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0xbfb999999999999a ++fsellt 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0x3fc999999999999a ++fsellt 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0xbfc999999999999a ++fsellt 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0x4008000000000000 ++fsellt 0xbff0000000000000 0xc008000000000000 0x0 = 0xc008000000000000 ++fsellt 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fsellt 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xc014000000000000 ++fsellt 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fsellt 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fsellt 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x3fb999999999999a 0x4008000000000000 0x0 = 0x0 ++fsellt 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0xbfb999999999999a 0x0 0xbfb999999999999a = 0x0 ++fsellt 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x8000000000000000 ++fsellt 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xf0debc9a78563412 ++fsellt 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x123456789abcdef0 ++fsellt 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0x3ff0000000000000 ++fsellt 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0xbff0000000000000 ++fsellt 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0x3fb999999999999a ++fsellt 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0xbfb999999999999a ++fsellt 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0x3fc999999999999a ++fsellt 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0xbfc999999999999a ++fsellt 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x4008000000000000 ++fsellt 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xc008000000000000 ++fsellt 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x4014000000000000 ++fsellt 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0xc014000000000000 ++fsellt 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fsellt 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0xc197d78400000000 ++fsellt 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x0 ++fsellt 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0xbfc999999999999a 0x0 0xbfc999999999999a = 0x0 ++fsellt 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x8000000000000000 ++fsellt 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xf0debc9a78563412 ++fsellt 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x123456789abcdef0 ++fsellt 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0x3ff0000000000000 ++fsellt 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0xbff0000000000000 ++fsellt 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0x3fb999999999999a ++fsellt 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0xbfb999999999999a ++fsellt 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x3fc999999999999a ++fsellt 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xbfc999999999999a ++fsellt 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x4008000000000000 ++fsellt 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0xc008000000000000 ++fsellt 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0x4014000000000000 ++fsellt 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0xc014000000000000 ++fsellt 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0x4197d78400000000 ++fsellt 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0xc197d78400000000 ++fsellt 0x4008000000000000 0x0 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x4008000000000000 0x3fb999999999999a 0x0 = 0x0 ++fsellt 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0xc008000000000000 0x0 0xc008000000000000 = 0x0 ++fsellt 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x8000000000000000 ++fsellt 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xf0debc9a78563412 ++fsellt 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x123456789abcdef0 ++fsellt 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0x3ff0000000000000 ++fsellt 0xc008000000000000 0xbff0000000000000 0x0 = 0xbff0000000000000 ++fsellt 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x3fb999999999999a ++fsellt 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xbfb999999999999a ++fsellt 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x3fc999999999999a ++fsellt 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0xbfc999999999999a ++fsellt 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0x4008000000000000 ++fsellt 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0xc008000000000000 ++fsellt 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0x4014000000000000 ++fsellt 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0xc014000000000000 ++fsellt 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0x4197d78400000000 ++fsellt 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0xc197d78400000000 ++fsellt 0x4014000000000000 0x0 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x4014000000000000 0x3ff0000000000000 0x0 = 0x0 ++fsellt 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fsellt 0xc014000000000000 0x0 0xc014000000000000 = 0x0 ++fsellt 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x8000000000000000 ++fsellt 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xf0debc9a78563412 ++fsellt 0xc014000000000000 0x123456789abcdef0 0x0 = 0x123456789abcdef0 ++fsellt 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++fsellt 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xbff0000000000000 ++fsellt 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x3fb999999999999a ++fsellt 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0xbfb999999999999a ++fsellt 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0x3fc999999999999a ++fsellt 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0xbfc999999999999a ++fsellt 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0x4008000000000000 ++fsellt 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0xc008000000000000 ++fsellt 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0x4014000000000000 ++fsellt 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0xc014000000000000 ++fsellt 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0x4197d78400000000 ++fsellt 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0xc197d78400000000 ++fsellt 0x4197d78400000000 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0x0 ++fsellt 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fsellt 0xc197d78400000000 0x0 0xc197d78400000000 = 0x0 ++fsellt 0xc197d78400000000 0x8000000000000000 0x0 = 0x8000000000000000 ++fsellt 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0xf0debc9a78563412 ++fsellt 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0x123456789abcdef0 ++fsellt 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x3ff0000000000000 ++fsellt 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fsellt 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0x3fb999999999999a ++fsellt 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fsellt 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0x3fc999999999999a ++fsellt 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fsellt 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0x4008000000000000 ++fsellt 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0xc008000000000000 ++fsellt 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0x4014000000000000 ++fsellt 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0xc014000000000000 ++fsellt 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0x4197d78400000000 ++fsellt 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++=== Running test on fselle=== ++fselle 0x0 0x0 0x0 = 0x0 ++fselle 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fselle 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fselle 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fselle 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fselle 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fselle 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fselle 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0x8000000000000000 ++fselle 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0xf0debc9a78563412 ++fselle 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x123456789abcdef0 ++fselle 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fselle 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0xbff0000000000000 ++fselle 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fselle 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0xbfb999999999999a ++fselle 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fselle 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0xbfc999999999999a ++fselle 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fselle 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0xc008000000000000 ++fselle 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fselle 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0xc014000000000000 ++fselle 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fselle 0x8000000000000000 0xc197d78400000000 0x0 = 0xc197d78400000000 ++fselle 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0x0 ++fselle 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x8000000000000000 ++fselle 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0debc9a78563412 ++fselle 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0x123456789abcdef0 ++fselle 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x3ff0000000000000 ++fselle 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xbff0000000000000 ++fselle 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x3fb999999999999a ++fselle 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xbfb999999999999a ++fselle 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x3fc999999999999a ++fselle 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xbfc999999999999a ++fselle 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x4008000000000000 ++fselle 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xc008000000000000 ++fselle 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x4014000000000000 ++fselle 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xc014000000000000 ++fselle 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fselle 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fselle 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fselle 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fselle 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fselle 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0xc014000000000000 ++fselle 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x123456789abcdef0 0xc014000000000000 0x0 = 0x0 ++fselle 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fselle 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fselle 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fselle 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fselle 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fselle 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x3ff0000000000000 0x4014000000000000 0x0 = 0x0 ++fselle 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0x8000000000000000 ++fselle 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0xbff0000000000000 0x0 0xbff0000000000000 = 0x0 ++fselle 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x8000000000000000 ++fselle 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xf0debc9a78563412 ++fselle 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x123456789abcdef0 ++fselle 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0x3ff0000000000000 ++fselle 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0xbff0000000000000 ++fselle 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0x3fb999999999999a ++fselle 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0xbfb999999999999a ++fselle 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0x3fc999999999999a ++fselle 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0xbfc999999999999a ++fselle 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0x4008000000000000 ++fselle 0xbff0000000000000 0xc008000000000000 0x0 = 0xc008000000000000 ++fselle 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fselle 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xc014000000000000 ++fselle 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fselle 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fselle 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fselle 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fselle 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fselle 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fselle 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x3fb999999999999a 0x4008000000000000 0x0 = 0x0 ++fselle 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0x8000000000000000 ++fselle 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0xbfb999999999999a 0x0 0xbfb999999999999a = 0x0 ++fselle 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x8000000000000000 ++fselle 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xf0debc9a78563412 ++fselle 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x123456789abcdef0 ++fselle 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0x3ff0000000000000 ++fselle 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0xbff0000000000000 ++fselle 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0x3fb999999999999a ++fselle 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0xbfb999999999999a ++fselle 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0x3fc999999999999a ++fselle 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0xbfc999999999999a ++fselle 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x4008000000000000 ++fselle 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xc008000000000000 ++fselle 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x4014000000000000 ++fselle 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0xc014000000000000 ++fselle 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fselle 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0xc197d78400000000 ++fselle 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0x4008000000000000 ++fselle 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0xc008000000000000 ++fselle 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fselle 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fselle 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x0 ++fselle 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fselle 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0xbfc999999999999a 0x0 0xbfc999999999999a = 0x0 ++fselle 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x8000000000000000 ++fselle 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xf0debc9a78563412 ++fselle 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x123456789abcdef0 ++fselle 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0x3ff0000000000000 ++fselle 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0xbff0000000000000 ++fselle 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0x3fb999999999999a ++fselle 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0xbfb999999999999a ++fselle 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x3fc999999999999a ++fselle 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xbfc999999999999a ++fselle 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x4008000000000000 ++fselle 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0xc008000000000000 ++fselle 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0x4014000000000000 ++fselle 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0xc014000000000000 ++fselle 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0x4197d78400000000 ++fselle 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0xc197d78400000000 ++fselle 0x4008000000000000 0x0 0x4008000000000000 = 0x4008000000000000 ++fselle 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fselle 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0x4014000000000000 ++fselle 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0xc014000000000000 ++fselle 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x4008000000000000 0x3fb999999999999a 0x0 = 0x0 ++fselle 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fselle 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0xc008000000000000 0x0 0xc008000000000000 = 0x0 ++fselle 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x8000000000000000 ++fselle 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xf0debc9a78563412 ++fselle 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x123456789abcdef0 ++fselle 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0x3ff0000000000000 ++fselle 0xc008000000000000 0xbff0000000000000 0x0 = 0xbff0000000000000 ++fselle 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x3fb999999999999a ++fselle 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xbfb999999999999a ++fselle 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x3fc999999999999a ++fselle 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0xbfc999999999999a ++fselle 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0x4008000000000000 ++fselle 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0xc008000000000000 ++fselle 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0x4014000000000000 ++fselle 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0xc014000000000000 ++fselle 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0x4197d78400000000 ++fselle 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0xc197d78400000000 ++fselle 0x4014000000000000 0x0 0x4014000000000000 = 0x4014000000000000 ++fselle 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fselle 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x4014000000000000 0x3ff0000000000000 0x0 = 0x0 ++fselle 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fselle 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fselle 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fselle 0xc014000000000000 0x0 0xc014000000000000 = 0x0 ++fselle 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x8000000000000000 ++fselle 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xf0debc9a78563412 ++fselle 0xc014000000000000 0x123456789abcdef0 0x0 = 0x123456789abcdef0 ++fselle 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++fselle 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xbff0000000000000 ++fselle 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x3fb999999999999a ++fselle 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0xbfb999999999999a ++fselle 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0x3fc999999999999a ++fselle 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0xbfc999999999999a ++fselle 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0x4008000000000000 ++fselle 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0xc008000000000000 ++fselle 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0x4014000000000000 ++fselle 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0xc014000000000000 ++fselle 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0x4197d78400000000 ++fselle 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0xc197d78400000000 ++fselle 0x4197d78400000000 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0x0 ++fselle 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x8000000000000000 ++fselle 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x4008000000000000 ++fselle 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc008000000000000 ++fselle 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fselle 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fselle 0xc197d78400000000 0x0 0xc197d78400000000 = 0x0 ++fselle 0xc197d78400000000 0x8000000000000000 0x0 = 0x8000000000000000 ++fselle 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0xf0debc9a78563412 ++fselle 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0x123456789abcdef0 ++fselle 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x3ff0000000000000 ++fselle 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fselle 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0x3fb999999999999a ++fselle 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fselle 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0x3fc999999999999a ++fselle 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fselle 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0x4008000000000000 ++fselle 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0xc008000000000000 ++fselle 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0x4014000000000000 ++fselle 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0xc014000000000000 ++fselle 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0x4197d78400000000 ++fselle 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++=== Running test on fselgt=== ++fselgt 0x0 0x0 0x0 = 0x0 ++fselgt 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fselgt 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fselgt 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fselgt 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fselgt 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fselgt 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0x8000000000000000 0x0 0x8000000000000000 = 0x8000000000000000 ++fselgt 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fselgt 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fselgt 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fselgt 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fselgt 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fselgt 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fselgt 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fselgt 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x4014000000000000 ++fselgt 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xc014000000000000 ++fselgt 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x0 ++fselgt 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fselgt 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x0 ++fselgt 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fselgt 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xf0debc9a78563412 ++fselgt 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x123456789abcdef0 ++fselgt 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0x3ff0000000000000 ++fselgt 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0xbff0000000000000 ++fselgt 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0x3fb999999999999a ++fselgt 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0xbfb999999999999a ++fselgt 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0x3fc999999999999a ++fselgt 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0xbfc999999999999a ++fselgt 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0x4008000000000000 ++fselgt 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0xc008000000000000 ++fselgt 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0x4014000000000000 ++fselgt 0x123456789abcdef0 0xc014000000000000 0x0 = 0xc014000000000000 ++fselgt 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fselgt 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xc197d78400000000 ++fselgt 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x0 ++fselgt 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0x8000000000000000 ++fselgt 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0xf0debc9a78563412 ++fselgt 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0x123456789abcdef0 ++fselgt 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3ff0000000000000 ++fselgt 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbff0000000000000 ++fselgt 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x3fb999999999999a ++fselgt 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xbfb999999999999a ++fselgt 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x3fc999999999999a ++fselgt 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xbfc999999999999a ++fselgt 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4008000000000000 ++fselgt 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc008000000000000 ++fselgt 0x3ff0000000000000 0x4014000000000000 0x0 = 0x4014000000000000 ++fselgt 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fselgt 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0x4197d78400000000 ++fselgt 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fselgt 0xbff0000000000000 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fselgt 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fselgt 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fselgt 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fselgt 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0xbff0000000000000 0xc008000000000000 0x0 = 0x0 ++fselgt 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x8000000000000000 ++fselgt 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x0 ++fselgt 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0x8000000000000000 ++fselgt 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0xf0debc9a78563412 ++fselgt 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0x123456789abcdef0 ++fselgt 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x3ff0000000000000 ++fselgt 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xbff0000000000000 ++fselgt 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x3fb999999999999a ++fselgt 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xbfb999999999999a ++fselgt 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x3fc999999999999a ++fselgt 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xbfc999999999999a ++fselgt 0x3fb999999999999a 0x4008000000000000 0x0 = 0x4008000000000000 ++fselgt 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0xc008000000000000 ++fselgt 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0x4014000000000000 ++fselgt 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0xc014000000000000 ++fselgt 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fselgt 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fselgt 0xbfb999999999999a 0x0 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x4008000000000000 ++fselgt 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fselgt 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fselgt 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fselgt 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0x0 ++fselgt 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x8000000000000000 ++fselgt 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x0 ++fselgt 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0x8000000000000000 ++fselgt 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0xf0debc9a78563412 ++fselgt 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0x123456789abcdef0 ++fselgt 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x3ff0000000000000 ++fselgt 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xbff0000000000000 ++fselgt 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x3fb999999999999a ++fselgt 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xbfb999999999999a ++fselgt 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x3fc999999999999a ++fselgt 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0xbfc999999999999a ++fselgt 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0x4008000000000000 ++fselgt 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0xc008000000000000 ++fselgt 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x4014000000000000 ++fselgt 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xc014000000000000 ++fselgt 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x4197d78400000000 ++fselgt 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xc197d78400000000 ++fselgt 0xbfc999999999999a 0x0 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fselgt 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xc008000000000000 ++fselgt 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x4014000000000000 ++fselgt 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fselgt 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0x0 ++fselgt 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fselgt 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0x4008000000000000 0x0 0x4008000000000000 = 0x0 ++fselgt 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0x8000000000000000 ++fselgt 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0xf0debc9a78563412 ++fselgt 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0x123456789abcdef0 ++fselgt 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x3ff0000000000000 ++fselgt 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xbff0000000000000 ++fselgt 0x4008000000000000 0x3fb999999999999a 0x0 = 0x3fb999999999999a ++fselgt 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0xbfb999999999999a ++fselgt 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0x3fc999999999999a ++fselgt 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0xbfc999999999999a ++fselgt 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x4008000000000000 ++fselgt 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xc008000000000000 ++fselgt 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x4014000000000000 ++fselgt 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xc014000000000000 ++fselgt 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x4197d78400000000 ++fselgt 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xc197d78400000000 ++fselgt 0xc008000000000000 0x0 0xc008000000000000 = 0xc008000000000000 ++fselgt 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fselgt 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xc014000000000000 ++fselgt 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0xc008000000000000 0xbff0000000000000 0x0 = 0x0 ++fselgt 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fselgt 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fselgt 0x4014000000000000 0x0 0x4014000000000000 = 0x0 ++fselgt 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0x8000000000000000 ++fselgt 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0xf0debc9a78563412 ++fselgt 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0x123456789abcdef0 ++fselgt 0x4014000000000000 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++fselgt 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++fselgt 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0x3fb999999999999a ++fselgt 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0xbfb999999999999a ++fselgt 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x3fc999999999999a ++fselgt 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xbfc999999999999a ++fselgt 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x4008000000000000 ++fselgt 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xc008000000000000 ++fselgt 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x4014000000000000 ++fselgt 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xc014000000000000 ++fselgt 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x4197d78400000000 ++fselgt 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc197d78400000000 ++fselgt 0xc014000000000000 0x0 0xc014000000000000 = 0xc014000000000000 ++fselgt 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0xc014000000000000 0x123456789abcdef0 0x0 = 0x0 ++fselgt 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fselgt 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0x4008000000000000 ++fselgt 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fselgt 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fselgt 0x4197d78400000000 0x0 0x4197d78400000000 = 0x0 ++fselgt 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0x8000000000000000 ++fselgt 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0xf0debc9a78563412 ++fselgt 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x123456789abcdef0 ++fselgt 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0x3ff0000000000000 ++fselgt 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0xbff0000000000000 ++fselgt 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x3fb999999999999a ++fselgt 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xbfb999999999999a ++fselgt 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x3fc999999999999a ++fselgt 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xbfc999999999999a ++fselgt 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x4008000000000000 ++fselgt 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xc008000000000000 ++fselgt 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x4014000000000000 ++fselgt 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc014000000000000 ++fselgt 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4197d78400000000 ++fselgt 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc197d78400000000 ++fselgt 0xc197d78400000000 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fselgt 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0x8000000000000000 ++fselgt 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0x4008000000000000 ++fselgt 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0xc008000000000000 ++fselgt 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0x4014000000000000 ++fselgt 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fselgt 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++=== Running test on fselge=== ++fselge 0x0 0x0 0x0 = 0x0 ++fselge 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fselge 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fselge 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fselge 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fselge 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fselge 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fselge 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fselge 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0x8000000000000000 ++fselge 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0xf0debc9a78563412 ++fselge 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x123456789abcdef0 ++fselge 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fselge 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0xbff0000000000000 ++fselge 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fselge 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0xbfb999999999999a ++fselge 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fselge 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0xbfc999999999999a ++fselge 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fselge 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0xc008000000000000 ++fselge 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fselge 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0xc014000000000000 ++fselge 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fselge 0x8000000000000000 0xc197d78400000000 0x0 = 0xc197d78400000000 ++fselge 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fselge 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fselge 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x4014000000000000 ++fselge 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xc014000000000000 ++fselge 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselge 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x0 ++fselge 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fselge 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x0 ++fselge 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fselge 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xf0debc9a78563412 ++fselge 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x123456789abcdef0 ++fselge 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0x3ff0000000000000 ++fselge 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0xbff0000000000000 ++fselge 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0x3fb999999999999a ++fselge 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0xbfb999999999999a ++fselge 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0x3fc999999999999a ++fselge 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0xbfc999999999999a ++fselge 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0x4008000000000000 ++fselge 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0xc008000000000000 ++fselge 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0x4014000000000000 ++fselge 0x123456789abcdef0 0xc014000000000000 0x0 = 0xc014000000000000 ++fselge 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fselge 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xc197d78400000000 ++fselge 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x0 ++fselge 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0x8000000000000000 ++fselge 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0xf0debc9a78563412 ++fselge 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0x123456789abcdef0 ++fselge 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3ff0000000000000 ++fselge 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbff0000000000000 ++fselge 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x3fb999999999999a ++fselge 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xbfb999999999999a ++fselge 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x3fc999999999999a ++fselge 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xbfc999999999999a ++fselge 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4008000000000000 ++fselge 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc008000000000000 ++fselge 0x3ff0000000000000 0x4014000000000000 0x0 = 0x4014000000000000 ++fselge 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fselge 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0x4197d78400000000 ++fselge 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fselge 0xbff0000000000000 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fselge 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fselge 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fselge 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fselge 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fselge 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0xbff0000000000000 0xc008000000000000 0x0 = 0x0 ++fselge 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x8000000000000000 ++fselge 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x0 ++fselge 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0x8000000000000000 ++fselge 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0xf0debc9a78563412 ++fselge 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0x123456789abcdef0 ++fselge 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x3ff0000000000000 ++fselge 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xbff0000000000000 ++fselge 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x3fb999999999999a ++fselge 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xbfb999999999999a ++fselge 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x3fc999999999999a ++fselge 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xbfc999999999999a ++fselge 0x3fb999999999999a 0x4008000000000000 0x0 = 0x4008000000000000 ++fselge 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0xc008000000000000 ++fselge 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0x4014000000000000 ++fselge 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0xc014000000000000 ++fselge 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fselge 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fselge 0xbfb999999999999a 0x0 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x4008000000000000 ++fselge 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fselge 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fselge 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fselge 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fselge 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0x0 ++fselge 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x8000000000000000 ++fselge 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x0 ++fselge 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0x8000000000000000 ++fselge 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0xf0debc9a78563412 ++fselge 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0x123456789abcdef0 ++fselge 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x3ff0000000000000 ++fselge 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xbff0000000000000 ++fselge 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x3fb999999999999a ++fselge 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xbfb999999999999a ++fselge 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x3fc999999999999a ++fselge 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0xbfc999999999999a ++fselge 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0x4008000000000000 ++fselge 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0xc008000000000000 ++fselge 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x4014000000000000 ++fselge 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xc014000000000000 ++fselge 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x4197d78400000000 ++fselge 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xc197d78400000000 ++fselge 0xbfc999999999999a 0x0 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fselge 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xc008000000000000 ++fselge 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x4014000000000000 ++fselge 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fselge 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselge 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0x0 ++fselge 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fselge 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0x4008000000000000 0x0 0x4008000000000000 = 0x0 ++fselge 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0x8000000000000000 ++fselge 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0xf0debc9a78563412 ++fselge 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0x123456789abcdef0 ++fselge 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x3ff0000000000000 ++fselge 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xbff0000000000000 ++fselge 0x4008000000000000 0x3fb999999999999a 0x0 = 0x3fb999999999999a ++fselge 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0xbfb999999999999a ++fselge 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0x3fc999999999999a ++fselge 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0xbfc999999999999a ++fselge 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x4008000000000000 ++fselge 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xc008000000000000 ++fselge 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x4014000000000000 ++fselge 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xc014000000000000 ++fselge 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x4197d78400000000 ++fselge 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xc197d78400000000 ++fselge 0xc008000000000000 0x0 0xc008000000000000 = 0xc008000000000000 ++fselge 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fselge 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xc014000000000000 ++fselge 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x4197d78400000000 ++fselge 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0xc008000000000000 0xbff0000000000000 0x0 = 0x0 ++fselge 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fselge 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fselge 0x4014000000000000 0x0 0x4014000000000000 = 0x0 ++fselge 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0x8000000000000000 ++fselge 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0xf0debc9a78563412 ++fselge 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0x123456789abcdef0 ++fselge 0x4014000000000000 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++fselge 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++fselge 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0x3fb999999999999a ++fselge 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0xbfb999999999999a ++fselge 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x3fc999999999999a ++fselge 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xbfc999999999999a ++fselge 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x4008000000000000 ++fselge 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xc008000000000000 ++fselge 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x4014000000000000 ++fselge 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xc014000000000000 ++fselge 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x4197d78400000000 ++fselge 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc197d78400000000 ++fselge 0xc014000000000000 0x0 0xc014000000000000 = 0xc014000000000000 ++fselge 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselge 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0xc014000000000000 0x123456789abcdef0 0x0 = 0x0 ++fselge 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fselge 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0x4008000000000000 ++fselge 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fselge 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fselge 0x4197d78400000000 0x0 0x4197d78400000000 = 0x0 ++fselge 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0x8000000000000000 ++fselge 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0xf0debc9a78563412 ++fselge 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x123456789abcdef0 ++fselge 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0x3ff0000000000000 ++fselge 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0xbff0000000000000 ++fselge 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x3fb999999999999a ++fselge 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xbfb999999999999a ++fselge 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x3fc999999999999a ++fselge 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xbfc999999999999a ++fselge 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x4008000000000000 ++fselge 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xc008000000000000 ++fselge 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x4014000000000000 ++fselge 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc014000000000000 ++fselge 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4197d78400000000 ++fselge 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc197d78400000000 ++fselge 0xc197d78400000000 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fselge 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0x8000000000000000 ++fselge 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0x4008000000000000 ++fselge 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0xc008000000000000 ++fselge 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0x4014000000000000 ++fselge 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fselge 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0x4197d78400000000 +diff --git a/none/tests/sw64/arith-fp.stdout.exp-8a b/none/tests/sw64/arith-fp.stdout.exp-8a +new file mode 100644 +index 000000000..113f0d91f +--- /dev/null ++++ b/none/tests/sw64/arith-fp.stdout.exp-8a +@@ -0,0 +1,7190 @@ ++=== Running test on fsqrts=== ++fsqrts 0x0 = 0x0 ++fsqrts 0x8000000000000000 = 0x8000000000000000 ++fsqrts 0x3ff0000000000000 = 0x3ff0000000000000 ++fsqrts 0xbff0000000000000 = 0xfff8000000000000 ++fsqrts 0x3fb99999a0000000 = 0x3fd43d1360000000 ++fsqrts 0xbfb99999a0000000 = 0xfff8000000000000 ++fsqrts 0x3fc99999a0000000 = 0x3fdc9f25c0000000 ++fsqrts 0xbfc99999a0000000 = 0xfff8000000000000 ++fsqrts 0x4008000000000000 = 0x3ffbb67ae0000000 ++fsqrts 0xc008000000000000 = 0xfff8000000000000 ++fsqrts 0x4014000000000000 = 0x4001e377a0000000 ++fsqrts 0xc014000000000000 = 0xfff8000000000000 ++fsqrts 0x4197d78400000000 = 0x40c3880000000000 ++fsqrts 0xc197d78400000000 = 0xfff8000000000000 ++=== Running test on fsqrtd=== ++fsqrtd 0x0 = 0x0 ++fsqrtd 0x8000000000000000 = 0x8000000000000000 ++fsqrtd 0xf0debc9a78563412 = 0xfff8000000000000 ++fsqrtd 0x123456789abcdef0 = 0x291209f9f2cc09c1 ++fsqrtd 0x3ff0000000000000 = 0x3ff0000000000000 ++fsqrtd 0xbff0000000000000 = 0xfff8000000000000 ++fsqrtd 0x3fb999999999999a = 0x3fd43d136248490f ++fsqrtd 0xbfb999999999999a = 0xfff8000000000000 ++fsqrtd 0x3fc999999999999a = 0x3fdc9f25c5bfedd9 ++fsqrtd 0xbfc999999999999a = 0xfff8000000000000 ++fsqrtd 0x4008000000000000 = 0x3ffbb67ae8584caa ++fsqrtd 0xc008000000000000 = 0xfff8000000000000 ++fsqrtd 0x4014000000000000 = 0x4001e3779b97f4a8 ++fsqrtd 0xc014000000000000 = 0xfff8000000000000 ++fsqrtd 0x4197d78400000000 = 0x40c3880000000000 ++fsqrtd 0xc197d78400000000 = 0xfff8000000000000 ++=== Running test on fcvtsd=== ++fcvtsd 0x0 = 0x0 ++fcvtsd 0x8000000000000000 = 0x8000000000000000 ++fcvtsd 0x3ff0000000000000 = 0x3ff0000000000000 ++fcvtsd 0xbff0000000000000 = 0xbff0000000000000 ++fcvtsd 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fcvtsd 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fcvtsd 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fcvtsd 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fcvtsd 0x4008000000000000 = 0x4008000000000000 ++fcvtsd 0xc008000000000000 = 0xc008000000000000 ++fcvtsd 0x4014000000000000 = 0x4014000000000000 ++fcvtsd 0xc014000000000000 = 0xc014000000000000 ++fcvtsd 0x4197d78400000000 = 0x4197d78400000000 ++fcvtsd 0xc197d78400000000 = 0xc197d78400000000 ++=== Running test on fcvtds=== ++fcvtds 0x0 = 0x0 ++fcvtds 0x8000000000000000 = 0x8000000000000000 ++fcvtds 0xf0debc9a78563412 = 0xfff0000000000000 ++fcvtds 0x123456789abcdef0 = 0x0 ++fcvtds 0x3ff0000000000000 = 0x3ff0000000000000 ++fcvtds 0xbff0000000000000 = 0xbff0000000000000 ++fcvtds 0x3fb999999999999a = 0x3fb99999a0000000 ++fcvtds 0xbfb999999999999a = 0xbfb99999a0000000 ++fcvtds 0x3fc999999999999a = 0x3fc99999a0000000 ++fcvtds 0xbfc999999999999a = 0xbfc99999a0000000 ++fcvtds 0x4008000000000000 = 0x4008000000000000 ++fcvtds 0xc008000000000000 = 0xc008000000000000 ++fcvtds 0x4014000000000000 = 0x4014000000000000 ++fcvtds 0xc014000000000000 = 0xc014000000000000 ++fcvtds 0x4197d78400000000 = 0x4197d78400000000 ++fcvtds 0xc197d78400000000 = 0xc197d78400000000 ++=== Running test on fcvtdl_g=== ++fcvtdl_g 0x0 = 0x0 ++fcvtdl_g 0x8000000000000000 = 0x0 ++fcvtdl_g 0xf0debc9a78563412 = 0x8000000000000000 ++fcvtdl_g 0x123456789abcdef0 = 0x0 ++fcvtdl_g 0x3ff0000000000000 = 0x1 ++fcvtdl_g 0xbff0000000000000 = 0xffffffffffffffff ++fcvtdl_g 0x3fb999999999999a = 0x0 ++fcvtdl_g 0xbfb999999999999a = 0x0 ++fcvtdl_g 0x3fc999999999999a = 0x0 ++fcvtdl_g 0xbfc999999999999a = 0x0 ++fcvtdl_g 0x4008000000000000 = 0x3 ++fcvtdl_g 0xc008000000000000 = 0xfffffffffffffffd ++fcvtdl_g 0x4014000000000000 = 0x5 ++fcvtdl_g 0xc014000000000000 = 0xfffffffffffffffb ++fcvtdl_g 0x4197d78400000000 = 0x5f5e100 ++fcvtdl_g 0xc197d78400000000 = 0xfffffffffa0a1f00 ++=== Running test on fcvtdl_p=== ++fcvtdl_p 0x0 = 0x0 ++fcvtdl_p 0x8000000000000000 = 0x0 ++fcvtdl_p 0xf0debc9a78563412 = 0x8000000000000000 ++fcvtdl_p 0x123456789abcdef0 = 0x1 ++fcvtdl_p 0x3ff0000000000000 = 0x1 ++fcvtdl_p 0xbff0000000000000 = 0xffffffffffffffff ++fcvtdl_p 0x3fb999999999999a = 0x1 ++fcvtdl_p 0xbfb999999999999a = 0x0 ++fcvtdl_p 0x3fc999999999999a = 0x1 ++fcvtdl_p 0xbfc999999999999a = 0x0 ++fcvtdl_p 0x4008000000000000 = 0x3 ++fcvtdl_p 0xc008000000000000 = 0xfffffffffffffffd ++fcvtdl_p 0x4014000000000000 = 0x5 ++fcvtdl_p 0xc014000000000000 = 0xfffffffffffffffb ++fcvtdl_p 0x4197d78400000000 = 0x5f5e100 ++fcvtdl_p 0xc197d78400000000 = 0xfffffffffa0a1f00 ++=== Running test on fcvtdl_z=== ++fcvtdl_z 0x0 = 0x0 ++fcvtdl_z 0x8000000000000000 = 0x0 ++fcvtdl_z 0xf0debc9a78563412 = 0x8000000000000000 ++fcvtdl_z 0x123456789abcdef0 = 0x0 ++fcvtdl_z 0x3ff0000000000000 = 0x1 ++fcvtdl_z 0xbff0000000000000 = 0xffffffffffffffff ++fcvtdl_z 0x3fb999999999999a = 0x0 ++fcvtdl_z 0xbfb999999999999a = 0x0 ++fcvtdl_z 0x3fc999999999999a = 0x0 ++fcvtdl_z 0xbfc999999999999a = 0x0 ++fcvtdl_z 0x4008000000000000 = 0x3 ++fcvtdl_z 0xc008000000000000 = 0xfffffffffffffffd ++fcvtdl_z 0x4014000000000000 = 0x5 ++fcvtdl_z 0xc014000000000000 = 0xfffffffffffffffb ++fcvtdl_z 0x4197d78400000000 = 0x5f5e100 ++fcvtdl_z 0xc197d78400000000 = 0xfffffffffa0a1f00 ++=== Running test on fcvtdl_n=== ++fcvtdl_n 0x0 = 0x0 ++fcvtdl_n 0x8000000000000000 = 0x0 ++fcvtdl_n 0xf0debc9a78563412 = 0x8000000000000000 ++fcvtdl_n 0x123456789abcdef0 = 0x0 ++fcvtdl_n 0x3ff0000000000000 = 0x1 ++fcvtdl_n 0xbff0000000000000 = 0xffffffffffffffff ++fcvtdl_n 0x3fb999999999999a = 0x0 ++fcvtdl_n 0xbfb999999999999a = 0xffffffffffffffff ++fcvtdl_n 0x3fc999999999999a = 0x0 ++fcvtdl_n 0xbfc999999999999a = 0xffffffffffffffff ++fcvtdl_n 0x4008000000000000 = 0x3 ++fcvtdl_n 0xc008000000000000 = 0xfffffffffffffffd ++fcvtdl_n 0x4014000000000000 = 0x5 ++fcvtdl_n 0xc014000000000000 = 0xfffffffffffffffb ++fcvtdl_n 0x4197d78400000000 = 0x5f5e100 ++fcvtdl_n 0xc197d78400000000 = 0xfffffffffa0a1f00 ++=== Running test on fcvtdl=== ++fcvtdl 0x0 = 0x0 ++fcvtdl 0x8000000000000000 = 0x0 ++fcvtdl 0xf0debc9a78563412 = 0x8000000000000000 ++fcvtdl 0x123456789abcdef0 = 0x0 ++fcvtdl 0x3ff0000000000000 = 0x1 ++fcvtdl 0xbff0000000000000 = 0xffffffffffffffff ++fcvtdl 0x3fb999999999999a = 0x0 ++fcvtdl 0xbfb999999999999a = 0x0 ++fcvtdl 0x3fc999999999999a = 0x0 ++fcvtdl 0xbfc999999999999a = 0x0 ++fcvtdl 0x4008000000000000 = 0x3 ++fcvtdl 0xc008000000000000 = 0xfffffffffffffffd ++fcvtdl 0x4014000000000000 = 0x5 ++fcvtdl 0xc014000000000000 = 0xfffffffffffffffb ++fcvtdl 0x4197d78400000000 = 0x5f5e100 ++fcvtdl 0xc197d78400000000 = 0xfffffffffa0a1f00 ++=== Running test on fcvtwl=== ++fcvtwl 0x0 = 0x0 ++fcvtwl 0x8000000000000000 = 0xffffffff80000000 ++fcvtwl 0xf0debc9a78563412 = 0xffffffffc6f5e4d3 ++fcvtwl 0x123456789abcdef0 = 0x11a2b3c4 ++fcvtwl 0x3ff0000000000000 = 0x3f800000 ++fcvtwl 0xbff0000000000000 = 0xffffffffbf800000 ++fcvtwl 0x3fb999999999999a = 0x3dcccccc ++fcvtwl 0xbfb999999999999a = 0xffffffffbdcccccc ++fcvtwl 0x3fc999999999999a = 0x3e4ccccc ++fcvtwl 0xbfc999999999999a = 0xffffffffbe4ccccc ++fcvtwl 0x4008000000000000 = 0x40400000 ++fcvtwl 0xc008000000000000 = 0xffffffffc0400000 ++fcvtwl 0x4014000000000000 = 0x40a00000 ++fcvtwl 0xc014000000000000 = 0xffffffffc0a00000 ++fcvtwl 0x4197d78400000000 = 0x4cbebc20 ++fcvtwl 0xc197d78400000000 = 0xffffffffccbebc20 ++=== Running test on fcvtlw=== ++fcvtlw 0x0 = 0x0 ++fcvtlw 0x1 = 0x20000000 ++fcvtlw 0x2 = 0x40000000 ++fcvtlw 0x3 = 0x60000000 ++fcvtlw 0xf = 0x1e0000000 ++fcvtlw 0xffffffffffffffff = 0xc7ffffffe0000000 ++fcvtlw 0xfffffffffffffffe = 0xc7ffffffc0000000 ++fcvtlw 0xfffffffffffffffd = 0xc7ffffffa0000000 ++fcvtlw 0x7f = 0xfe0000000 ++fcvtlw 0x80 = 0x1000000000 ++fcvtlw 0x7fff = 0xfffe0000000 ++fcvtlw 0x8000 = 0x100000000000 ++fcvtlw 0x7fffffff = 0x47ffffffe0000000 ++fcvtlw 0xffffffff80000000 = 0x8000000000000000 ++fcvtlw 0x12345678 = 0x2468acf00000000 ++fcvtlw 0x78563412 = 0x470ac68240000000 ++=== Running test on fcvtls=== ++fcvtls 0x0 = 0x0 ++fcvtls 0x8000000000000000 = 0xc3e0000000000000 ++fcvtls 0xf0debc9a78563412 = 0xc3ae4286c0000000 ++fcvtls 0x123456789abcdef0 = 0x43b2345680000000 ++fcvtls 0x3ff0000000000000 = 0x43cff80000000000 ++fcvtls 0xbff0000000000000 = 0xc3d0040000000000 ++fcvtls 0x3fb999999999999a = 0x43cfdcccc0000000 ++fcvtls 0xbfb999999999999a = 0xc3d01199a0000000 ++fcvtls 0x3fc999999999999a = 0x43cfe4ccc0000000 ++fcvtls 0xbfc999999999999a = 0xc3d00d99a0000000 ++fcvtls 0x4008000000000000 = 0x43d0020000000000 ++fcvtls 0xc008000000000000 = 0xc3cffc0000000000 ++fcvtls 0x4014000000000000 = 0x43d0050000000000 ++fcvtls 0xc014000000000000 = 0xc3cff60000000000 ++fcvtls 0x4197d78400000000 = 0x43d065f5e0000000 ++fcvtls 0xc197d78400000000 = 0xc3cf341440000000 ++=== Running test on fcvtld=== ++fcvtld 0x0 = 0x0 ++fcvtld 0x8000000000000000 = 0xc3e0000000000000 ++fcvtld 0xf0debc9a78563412 = 0xc3ae4286cb0f5398 ++fcvtld 0x123456789abcdef0 = 0x43b23456789abcdf ++fcvtld 0x3ff0000000000000 = 0x43cff80000000000 ++fcvtld 0xbff0000000000000 = 0xc3d0040000000000 ++fcvtld 0x3fb999999999999a = 0x43cfdccccccccccd ++fcvtld 0xbfb999999999999a = 0xc3d011999999999a ++fcvtld 0x3fc999999999999a = 0x43cfe4cccccccccd ++fcvtld 0xbfc999999999999a = 0xc3d00d999999999a ++fcvtld 0x4008000000000000 = 0x43d0020000000000 ++fcvtld 0xc008000000000000 = 0xc3cffc0000000000 ++fcvtld 0x4014000000000000 = 0x43d0050000000000 ++fcvtld 0xc014000000000000 = 0xc3cff60000000000 ++fcvtld 0x4197d78400000000 = 0x43d065f5e1000000 ++fcvtld 0xc197d78400000000 = 0xc3cf34143e000000 ++=== Running test on fadds=== ++fadds 0x0 0x0 = 0x0 ++fadds 0x0 0x8000000000000000 = 0x0 ++fadds 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fadds 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fadds 0x0 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fadds 0x0 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fadds 0x0 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fadds 0x0 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fadds 0x0 0x4008000000000000 = 0x4008000000000000 ++fadds 0x0 0xc008000000000000 = 0xc008000000000000 ++fadds 0x0 0x4014000000000000 = 0x4014000000000000 ++fadds 0x0 0xc014000000000000 = 0xc014000000000000 ++fadds 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0x8000000000000000 0x0 = 0x0 ++fadds 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fadds 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fadds 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fadds 0x8000000000000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fadds 0x8000000000000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fadds 0x8000000000000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fadds 0x8000000000000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fadds 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fadds 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fadds 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fadds 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fadds 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++fadds 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++fadds 0x3ff0000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fadds 0x3ff0000000000000 0xbff0000000000000 = 0x0 ++fadds 0x3ff0000000000000 0x3fb99999a0000000 = 0x3ff19999a0000000 ++fadds 0x3ff0000000000000 0xbfb99999a0000000 = 0x3fecccccc0000000 ++fadds 0x3ff0000000000000 0x3fc99999a0000000 = 0x3ff3333340000000 ++fadds 0x3ff0000000000000 0xbfc99999a0000000 = 0x3fe99999a0000000 ++fadds 0x3ff0000000000000 0x4008000000000000 = 0x4010000000000000 ++fadds 0x3ff0000000000000 0xc008000000000000 = 0xc000000000000000 ++fadds 0x3ff0000000000000 0x4014000000000000 = 0x4018000000000000 ++fadds 0x3ff0000000000000 0xc014000000000000 = 0xc010000000000000 ++fadds 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0xbff0000000000000 0x0 = 0xbff0000000000000 ++fadds 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++fadds 0xbff0000000000000 0x3ff0000000000000 = 0x0 ++fadds 0xbff0000000000000 0xbff0000000000000 = 0xc000000000000000 ++fadds 0xbff0000000000000 0x3fb99999a0000000 = 0xbfecccccc0000000 ++fadds 0xbff0000000000000 0xbfb99999a0000000 = 0xbff19999a0000000 ++fadds 0xbff0000000000000 0x3fc99999a0000000 = 0xbfe99999a0000000 ++fadds 0xbff0000000000000 0xbfc99999a0000000 = 0xbff3333340000000 ++fadds 0xbff0000000000000 0x4008000000000000 = 0x4000000000000000 ++fadds 0xbff0000000000000 0xc008000000000000 = 0xc010000000000000 ++fadds 0xbff0000000000000 0x4014000000000000 = 0x4010000000000000 ++fadds 0xbff0000000000000 0xc014000000000000 = 0xc018000000000000 ++fadds 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0xbff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0x3fb99999a0000000 0x0 = 0x3fb99999a0000000 ++fadds 0x3fb99999a0000000 0x8000000000000000 = 0x3fb99999a0000000 ++fadds 0x3fb99999a0000000 0x3ff0000000000000 = 0x3ff19999a0000000 ++fadds 0x3fb99999a0000000 0xbff0000000000000 = 0xbfecccccc0000000 ++fadds 0x3fb99999a0000000 0x3fb99999a0000000 = 0x3fc99999a0000000 ++fadds 0x3fb99999a0000000 0xbfb99999a0000000 = 0x0 ++fadds 0x3fb99999a0000000 0x3fc99999a0000000 = 0x3fd3333340000000 ++fadds 0x3fb99999a0000000 0xbfc99999a0000000 = 0xbfb99999a0000000 ++fadds 0x3fb99999a0000000 0x4008000000000000 = 0x4008ccccc0000000 ++fadds 0x3fb99999a0000000 0xc008000000000000 = 0xc007333340000000 ++fadds 0x3fb99999a0000000 0x4014000000000000 = 0x4014666660000000 ++fadds 0x3fb99999a0000000 0xc014000000000000 = 0xc0139999a0000000 ++fadds 0x3fb99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0x3fb99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0xbfb99999a0000000 0x0 = 0xbfb99999a0000000 ++fadds 0xbfb99999a0000000 0x8000000000000000 = 0xbfb99999a0000000 ++fadds 0xbfb99999a0000000 0x3ff0000000000000 = 0x3fecccccc0000000 ++fadds 0xbfb99999a0000000 0xbff0000000000000 = 0xbff19999a0000000 ++fadds 0xbfb99999a0000000 0x3fb99999a0000000 = 0x0 ++fadds 0xbfb99999a0000000 0xbfb99999a0000000 = 0xbfc99999a0000000 ++fadds 0xbfb99999a0000000 0x3fc99999a0000000 = 0x3fb99999a0000000 ++fadds 0xbfb99999a0000000 0xbfc99999a0000000 = 0xbfd3333340000000 ++fadds 0xbfb99999a0000000 0x4008000000000000 = 0x4007333340000000 ++fadds 0xbfb99999a0000000 0xc008000000000000 = 0xc008ccccc0000000 ++fadds 0xbfb99999a0000000 0x4014000000000000 = 0x40139999a0000000 ++fadds 0xbfb99999a0000000 0xc014000000000000 = 0xc014666660000000 ++fadds 0xbfb99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0xbfb99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0x3fc99999a0000000 0x0 = 0x3fc99999a0000000 ++fadds 0x3fc99999a0000000 0x8000000000000000 = 0x3fc99999a0000000 ++fadds 0x3fc99999a0000000 0x3ff0000000000000 = 0x3ff3333340000000 ++fadds 0x3fc99999a0000000 0xbff0000000000000 = 0xbfe99999a0000000 ++fadds 0x3fc99999a0000000 0x3fb99999a0000000 = 0x3fd3333340000000 ++fadds 0x3fc99999a0000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fadds 0x3fc99999a0000000 0x3fc99999a0000000 = 0x3fd99999a0000000 ++fadds 0x3fc99999a0000000 0xbfc99999a0000000 = 0x0 ++fadds 0x3fc99999a0000000 0x4008000000000000 = 0x40099999a0000000 ++fadds 0x3fc99999a0000000 0xc008000000000000 = 0xc006666660000000 ++fadds 0x3fc99999a0000000 0x4014000000000000 = 0x4014ccccc0000000 ++fadds 0x3fc99999a0000000 0xc014000000000000 = 0xc013333340000000 ++fadds 0x3fc99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0x3fc99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0xbfc99999a0000000 0x0 = 0xbfc99999a0000000 ++fadds 0xbfc99999a0000000 0x8000000000000000 = 0xbfc99999a0000000 ++fadds 0xbfc99999a0000000 0x3ff0000000000000 = 0x3fe99999a0000000 ++fadds 0xbfc99999a0000000 0xbff0000000000000 = 0xbff3333340000000 ++fadds 0xbfc99999a0000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fadds 0xbfc99999a0000000 0xbfb99999a0000000 = 0xbfd3333340000000 ++fadds 0xbfc99999a0000000 0x3fc99999a0000000 = 0x0 ++fadds 0xbfc99999a0000000 0xbfc99999a0000000 = 0xbfd99999a0000000 ++fadds 0xbfc99999a0000000 0x4008000000000000 = 0x4006666660000000 ++fadds 0xbfc99999a0000000 0xc008000000000000 = 0xc0099999a0000000 ++fadds 0xbfc99999a0000000 0x4014000000000000 = 0x4013333340000000 ++fadds 0xbfc99999a0000000 0xc014000000000000 = 0xc014ccccc0000000 ++fadds 0xbfc99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0xbfc99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0x4008000000000000 0x0 = 0x4008000000000000 ++fadds 0x4008000000000000 0x8000000000000000 = 0x4008000000000000 ++fadds 0x4008000000000000 0x3ff0000000000000 = 0x4010000000000000 ++fadds 0x4008000000000000 0xbff0000000000000 = 0x4000000000000000 ++fadds 0x4008000000000000 0x3fb99999a0000000 = 0x4008ccccc0000000 ++fadds 0x4008000000000000 0xbfb99999a0000000 = 0x4007333340000000 ++fadds 0x4008000000000000 0x3fc99999a0000000 = 0x40099999a0000000 ++fadds 0x4008000000000000 0xbfc99999a0000000 = 0x4006666660000000 ++fadds 0x4008000000000000 0x4008000000000000 = 0x4018000000000000 ++fadds 0x4008000000000000 0xc008000000000000 = 0x0 ++fadds 0x4008000000000000 0x4014000000000000 = 0x4020000000000000 ++fadds 0x4008000000000000 0xc014000000000000 = 0xc000000000000000 ++fadds 0x4008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0x4008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0xc008000000000000 0x0 = 0xc008000000000000 ++fadds 0xc008000000000000 0x8000000000000000 = 0xc008000000000000 ++fadds 0xc008000000000000 0x3ff0000000000000 = 0xc000000000000000 ++fadds 0xc008000000000000 0xbff0000000000000 = 0xc010000000000000 ++fadds 0xc008000000000000 0x3fb99999a0000000 = 0xc007333340000000 ++fadds 0xc008000000000000 0xbfb99999a0000000 = 0xc008ccccc0000000 ++fadds 0xc008000000000000 0x3fc99999a0000000 = 0xc006666660000000 ++fadds 0xc008000000000000 0xbfc99999a0000000 = 0xc0099999a0000000 ++fadds 0xc008000000000000 0x4008000000000000 = 0x0 ++fadds 0xc008000000000000 0xc008000000000000 = 0xc018000000000000 ++fadds 0xc008000000000000 0x4014000000000000 = 0x4000000000000000 ++fadds 0xc008000000000000 0xc014000000000000 = 0xc020000000000000 ++fadds 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fadds 0xc008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fadds 0x4014000000000000 0x0 = 0x4014000000000000 ++fadds 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fadds 0x4014000000000000 0x3ff0000000000000 = 0x4018000000000000 ++fadds 0x4014000000000000 0xbff0000000000000 = 0x4010000000000000 ++fadds 0x4014000000000000 0x3fb99999a0000000 = 0x4014666660000000 ++fadds 0x4014000000000000 0xbfb99999a0000000 = 0x40139999a0000000 ++fadds 0x4014000000000000 0x3fc99999a0000000 = 0x4014ccccc0000000 ++fadds 0x4014000000000000 0xbfc99999a0000000 = 0x4013333340000000 ++fadds 0x4014000000000000 0x4008000000000000 = 0x4020000000000000 ++fadds 0x4014000000000000 0xc008000000000000 = 0x4000000000000000 ++fadds 0x4014000000000000 0x4014000000000000 = 0x4024000000000000 ++fadds 0x4014000000000000 0xc014000000000000 = 0x0 ++fadds 0x4014000000000000 0x4197d78400000000 = 0x4197d78420000000 ++fadds 0x4014000000000000 0xc197d78400000000 = 0xc197d783e0000000 ++fadds 0xc014000000000000 0x0 = 0xc014000000000000 ++fadds 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fadds 0xc014000000000000 0x3ff0000000000000 = 0xc010000000000000 ++fadds 0xc014000000000000 0xbff0000000000000 = 0xc018000000000000 ++fadds 0xc014000000000000 0x3fb99999a0000000 = 0xc0139999a0000000 ++fadds 0xc014000000000000 0xbfb99999a0000000 = 0xc014666660000000 ++fadds 0xc014000000000000 0x3fc99999a0000000 = 0xc013333340000000 ++fadds 0xc014000000000000 0xbfc99999a0000000 = 0xc014ccccc0000000 ++fadds 0xc014000000000000 0x4008000000000000 = 0xc000000000000000 ++fadds 0xc014000000000000 0xc008000000000000 = 0xc020000000000000 ++fadds 0xc014000000000000 0x4014000000000000 = 0x0 ++fadds 0xc014000000000000 0xc014000000000000 = 0xc024000000000000 ++fadds 0xc014000000000000 0x4197d78400000000 = 0x4197d783e0000000 ++fadds 0xc014000000000000 0xc197d78400000000 = 0xc197d78420000000 ++fadds 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0x3fb99999a0000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0xbfb99999a0000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0x3fc99999a0000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0xbfc99999a0000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0x4008000000000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0xc008000000000000 = 0x4197d78400000000 ++fadds 0x4197d78400000000 0x4014000000000000 = 0x4197d78420000000 ++fadds 0x4197d78400000000 0xc014000000000000 = 0x4197d783e0000000 ++fadds 0x4197d78400000000 0x4197d78400000000 = 0x41a7d78400000000 ++fadds 0x4197d78400000000 0xc197d78400000000 = 0x0 ++fadds 0xc197d78400000000 0x0 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0x3fb99999a0000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0xbfb99999a0000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0x3fc99999a0000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0xbfc99999a0000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0x4008000000000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0xc008000000000000 = 0xc197d78400000000 ++fadds 0xc197d78400000000 0x4014000000000000 = 0xc197d783e0000000 ++fadds 0xc197d78400000000 0xc014000000000000 = 0xc197d78420000000 ++fadds 0xc197d78400000000 0x4197d78400000000 = 0x0 ++fadds 0xc197d78400000000 0xc197d78400000000 = 0xc1a7d78400000000 ++=== Running test on faddd=== ++faddd 0x0 0x0 = 0x0 ++faddd 0x0 0x8000000000000000 = 0x0 ++faddd 0x0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x0 0x123456789abcdef0 = 0x123456789abcdef0 ++faddd 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++faddd 0x0 0xbff0000000000000 = 0xbff0000000000000 ++faddd 0x0 0x3fb999999999999a = 0x3fb999999999999a ++faddd 0x0 0xbfb999999999999a = 0xbfb999999999999a ++faddd 0x0 0x3fc999999999999a = 0x3fc999999999999a ++faddd 0x0 0xbfc999999999999a = 0xbfc999999999999a ++faddd 0x0 0x4008000000000000 = 0x4008000000000000 ++faddd 0x0 0xc008000000000000 = 0xc008000000000000 ++faddd 0x0 0x4014000000000000 = 0x4014000000000000 ++faddd 0x0 0xc014000000000000 = 0xc014000000000000 ++faddd 0x0 0x4197d78400000000 = 0x4197d78400000000 ++faddd 0x0 0xc197d78400000000 = 0xc197d78400000000 ++faddd 0x8000000000000000 0x0 = 0x0 ++faddd 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++faddd 0x8000000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x8000000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++faddd 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++faddd 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++faddd 0x8000000000000000 0x3fb999999999999a = 0x3fb999999999999a ++faddd 0x8000000000000000 0xbfb999999999999a = 0xbfb999999999999a ++faddd 0x8000000000000000 0x3fc999999999999a = 0x3fc999999999999a ++faddd 0x8000000000000000 0xbfc999999999999a = 0xbfc999999999999a ++faddd 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++faddd 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++faddd 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++faddd 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++faddd 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++faddd 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++faddd 0xf0debc9a78563412 0x0 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0x8000000000000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0eebc9a78563412 ++faddd 0xf0debc9a78563412 0x123456789abcdef0 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0xbff0000000000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0x3fb999999999999a = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0xbfb999999999999a = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0x3fc999999999999a = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0xbfc999999999999a = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0x4008000000000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0xc008000000000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0x4014000000000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0xc014000000000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0x4197d78400000000 = 0xf0debc9a78563412 ++faddd 0xf0debc9a78563412 0xc197d78400000000 = 0xf0debc9a78563412 ++faddd 0x123456789abcdef0 0x0 = 0x123456789abcdef0 ++faddd 0x123456789abcdef0 0x8000000000000000 = 0x123456789abcdef0 ++faddd 0x123456789abcdef0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x123456789abcdef0 0x123456789abcdef0 = 0x124456789abcdef0 ++faddd 0x123456789abcdef0 0x3ff0000000000000 = 0x3ff0000000000000 ++faddd 0x123456789abcdef0 0xbff0000000000000 = 0xbff0000000000000 ++faddd 0x123456789abcdef0 0x3fb999999999999a = 0x3fb999999999999a ++faddd 0x123456789abcdef0 0xbfb999999999999a = 0xbfb999999999999a ++faddd 0x123456789abcdef0 0x3fc999999999999a = 0x3fc999999999999a ++faddd 0x123456789abcdef0 0xbfc999999999999a = 0xbfc999999999999a ++faddd 0x123456789abcdef0 0x4008000000000000 = 0x4008000000000000 ++faddd 0x123456789abcdef0 0xc008000000000000 = 0xc008000000000000 ++faddd 0x123456789abcdef0 0x4014000000000000 = 0x4014000000000000 ++faddd 0x123456789abcdef0 0xc014000000000000 = 0xc014000000000000 ++faddd 0x123456789abcdef0 0x4197d78400000000 = 0x4197d78400000000 ++faddd 0x123456789abcdef0 0xc197d78400000000 = 0xc197d78400000000 ++faddd 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++faddd 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++faddd 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x3ff0000000000000 0x123456789abcdef0 = 0x3ff0000000000000 ++faddd 0x3ff0000000000000 0x3ff0000000000000 = 0x4000000000000000 ++faddd 0x3ff0000000000000 0xbff0000000000000 = 0x0 ++faddd 0x3ff0000000000000 0x3fb999999999999a = 0x3ff199999999999a ++faddd 0x3ff0000000000000 0xbfb999999999999a = 0x3feccccccccccccd ++faddd 0x3ff0000000000000 0x3fc999999999999a = 0x3ff3333333333333 ++faddd 0x3ff0000000000000 0xbfc999999999999a = 0x3fe999999999999a ++faddd 0x3ff0000000000000 0x4008000000000000 = 0x4010000000000000 ++faddd 0x3ff0000000000000 0xc008000000000000 = 0xc000000000000000 ++faddd 0x3ff0000000000000 0x4014000000000000 = 0x4018000000000000 ++faddd 0x3ff0000000000000 0xc014000000000000 = 0xc010000000000000 ++faddd 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78404000000 ++faddd 0x3ff0000000000000 0xc197d78400000000 = 0xc197d783fc000000 ++faddd 0xbff0000000000000 0x0 = 0xbff0000000000000 ++faddd 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++faddd 0xbff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0xbff0000000000000 0x123456789abcdef0 = 0xbff0000000000000 ++faddd 0xbff0000000000000 0x3ff0000000000000 = 0x0 ++faddd 0xbff0000000000000 0xbff0000000000000 = 0xc000000000000000 ++faddd 0xbff0000000000000 0x3fb999999999999a = 0xbfeccccccccccccd ++faddd 0xbff0000000000000 0xbfb999999999999a = 0xbff199999999999a ++faddd 0xbff0000000000000 0x3fc999999999999a = 0xbfe999999999999a ++faddd 0xbff0000000000000 0xbfc999999999999a = 0xbff3333333333333 ++faddd 0xbff0000000000000 0x4008000000000000 = 0x4000000000000000 ++faddd 0xbff0000000000000 0xc008000000000000 = 0xc010000000000000 ++faddd 0xbff0000000000000 0x4014000000000000 = 0x4010000000000000 ++faddd 0xbff0000000000000 0xc014000000000000 = 0xc018000000000000 ++faddd 0xbff0000000000000 0x4197d78400000000 = 0x4197d783fc000000 ++faddd 0xbff0000000000000 0xc197d78400000000 = 0xc197d78404000000 ++faddd 0x3fb999999999999a 0x0 = 0x3fb999999999999a ++faddd 0x3fb999999999999a 0x8000000000000000 = 0x3fb999999999999a ++faddd 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x3fb999999999999a 0x123456789abcdef0 = 0x3fb999999999999a ++faddd 0x3fb999999999999a 0x3ff0000000000000 = 0x3ff199999999999a ++faddd 0x3fb999999999999a 0xbff0000000000000 = 0xbfeccccccccccccd ++faddd 0x3fb999999999999a 0x3fb999999999999a = 0x3fc999999999999a ++faddd 0x3fb999999999999a 0xbfb999999999999a = 0x0 ++faddd 0x3fb999999999999a 0x3fc999999999999a = 0x3fd3333333333334 ++faddd 0x3fb999999999999a 0xbfc999999999999a = 0xbfb999999999999a ++faddd 0x3fb999999999999a 0x4008000000000000 = 0x4008cccccccccccd ++faddd 0x3fb999999999999a 0xc008000000000000 = 0xc007333333333333 ++faddd 0x3fb999999999999a 0x4014000000000000 = 0x4014666666666666 ++faddd 0x3fb999999999999a 0xc014000000000000 = 0xc01399999999999a ++faddd 0x3fb999999999999a 0x4197d78400000000 = 0x4197d78400666666 ++faddd 0x3fb999999999999a 0xc197d78400000000 = 0xc197d783ff99999a ++faddd 0xbfb999999999999a 0x0 = 0xbfb999999999999a ++faddd 0xbfb999999999999a 0x8000000000000000 = 0xbfb999999999999a ++faddd 0xbfb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0xbfb999999999999a 0x123456789abcdef0 = 0xbfb999999999999a ++faddd 0xbfb999999999999a 0x3ff0000000000000 = 0x3feccccccccccccd ++faddd 0xbfb999999999999a 0xbff0000000000000 = 0xbff199999999999a ++faddd 0xbfb999999999999a 0x3fb999999999999a = 0x0 ++faddd 0xbfb999999999999a 0xbfb999999999999a = 0xbfc999999999999a ++faddd 0xbfb999999999999a 0x3fc999999999999a = 0x3fb999999999999a ++faddd 0xbfb999999999999a 0xbfc999999999999a = 0xbfd3333333333334 ++faddd 0xbfb999999999999a 0x4008000000000000 = 0x4007333333333333 ++faddd 0xbfb999999999999a 0xc008000000000000 = 0xc008cccccccccccd ++faddd 0xbfb999999999999a 0x4014000000000000 = 0x401399999999999a ++faddd 0xbfb999999999999a 0xc014000000000000 = 0xc014666666666666 ++faddd 0xbfb999999999999a 0x4197d78400000000 = 0x4197d783ff99999a ++faddd 0xbfb999999999999a 0xc197d78400000000 = 0xc197d78400666666 ++faddd 0x3fc999999999999a 0x0 = 0x3fc999999999999a ++faddd 0x3fc999999999999a 0x8000000000000000 = 0x3fc999999999999a ++faddd 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x3fc999999999999a 0x123456789abcdef0 = 0x3fc999999999999a ++faddd 0x3fc999999999999a 0x3ff0000000000000 = 0x3ff3333333333333 ++faddd 0x3fc999999999999a 0xbff0000000000000 = 0xbfe999999999999a ++faddd 0x3fc999999999999a 0x3fb999999999999a = 0x3fd3333333333334 ++faddd 0x3fc999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++faddd 0x3fc999999999999a 0x3fc999999999999a = 0x3fd999999999999a ++faddd 0x3fc999999999999a 0xbfc999999999999a = 0x0 ++faddd 0x3fc999999999999a 0x4008000000000000 = 0x400999999999999a ++faddd 0x3fc999999999999a 0xc008000000000000 = 0xc006666666666666 ++faddd 0x3fc999999999999a 0x4014000000000000 = 0x4014cccccccccccd ++faddd 0x3fc999999999999a 0xc014000000000000 = 0xc013333333333333 ++faddd 0x3fc999999999999a 0x4197d78400000000 = 0x4197d78400cccccd ++faddd 0x3fc999999999999a 0xc197d78400000000 = 0xc197d783ff333333 ++faddd 0xbfc999999999999a 0x0 = 0xbfc999999999999a ++faddd 0xbfc999999999999a 0x8000000000000000 = 0xbfc999999999999a ++faddd 0xbfc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0xbfc999999999999a 0x123456789abcdef0 = 0xbfc999999999999a ++faddd 0xbfc999999999999a 0x3ff0000000000000 = 0x3fe999999999999a ++faddd 0xbfc999999999999a 0xbff0000000000000 = 0xbff3333333333333 ++faddd 0xbfc999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++faddd 0xbfc999999999999a 0xbfb999999999999a = 0xbfd3333333333334 ++faddd 0xbfc999999999999a 0x3fc999999999999a = 0x0 ++faddd 0xbfc999999999999a 0xbfc999999999999a = 0xbfd999999999999a ++faddd 0xbfc999999999999a 0x4008000000000000 = 0x4006666666666666 ++faddd 0xbfc999999999999a 0xc008000000000000 = 0xc00999999999999a ++faddd 0xbfc999999999999a 0x4014000000000000 = 0x4013333333333333 ++faddd 0xbfc999999999999a 0xc014000000000000 = 0xc014cccccccccccd ++faddd 0xbfc999999999999a 0x4197d78400000000 = 0x4197d783ff333333 ++faddd 0xbfc999999999999a 0xc197d78400000000 = 0xc197d78400cccccd ++faddd 0x4008000000000000 0x0 = 0x4008000000000000 ++faddd 0x4008000000000000 0x8000000000000000 = 0x4008000000000000 ++faddd 0x4008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x4008000000000000 0x123456789abcdef0 = 0x4008000000000000 ++faddd 0x4008000000000000 0x3ff0000000000000 = 0x4010000000000000 ++faddd 0x4008000000000000 0xbff0000000000000 = 0x4000000000000000 ++faddd 0x4008000000000000 0x3fb999999999999a = 0x4008cccccccccccd ++faddd 0x4008000000000000 0xbfb999999999999a = 0x4007333333333333 ++faddd 0x4008000000000000 0x3fc999999999999a = 0x400999999999999a ++faddd 0x4008000000000000 0xbfc999999999999a = 0x4006666666666666 ++faddd 0x4008000000000000 0x4008000000000000 = 0x4018000000000000 ++faddd 0x4008000000000000 0xc008000000000000 = 0x0 ++faddd 0x4008000000000000 0x4014000000000000 = 0x4020000000000000 ++faddd 0x4008000000000000 0xc014000000000000 = 0xc000000000000000 ++faddd 0x4008000000000000 0x4197d78400000000 = 0x4197d7840c000000 ++faddd 0x4008000000000000 0xc197d78400000000 = 0xc197d783f4000000 ++faddd 0xc008000000000000 0x0 = 0xc008000000000000 ++faddd 0xc008000000000000 0x8000000000000000 = 0xc008000000000000 ++faddd 0xc008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0xc008000000000000 0x123456789abcdef0 = 0xc008000000000000 ++faddd 0xc008000000000000 0x3ff0000000000000 = 0xc000000000000000 ++faddd 0xc008000000000000 0xbff0000000000000 = 0xc010000000000000 ++faddd 0xc008000000000000 0x3fb999999999999a = 0xc007333333333333 ++faddd 0xc008000000000000 0xbfb999999999999a = 0xc008cccccccccccd ++faddd 0xc008000000000000 0x3fc999999999999a = 0xc006666666666666 ++faddd 0xc008000000000000 0xbfc999999999999a = 0xc00999999999999a ++faddd 0xc008000000000000 0x4008000000000000 = 0x0 ++faddd 0xc008000000000000 0xc008000000000000 = 0xc018000000000000 ++faddd 0xc008000000000000 0x4014000000000000 = 0x4000000000000000 ++faddd 0xc008000000000000 0xc014000000000000 = 0xc020000000000000 ++faddd 0xc008000000000000 0x4197d78400000000 = 0x4197d783f4000000 ++faddd 0xc008000000000000 0xc197d78400000000 = 0xc197d7840c000000 ++faddd 0x4014000000000000 0x0 = 0x4014000000000000 ++faddd 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++faddd 0x4014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x4014000000000000 0x123456789abcdef0 = 0x4014000000000000 ++faddd 0x4014000000000000 0x3ff0000000000000 = 0x4018000000000000 ++faddd 0x4014000000000000 0xbff0000000000000 = 0x4010000000000000 ++faddd 0x4014000000000000 0x3fb999999999999a = 0x4014666666666666 ++faddd 0x4014000000000000 0xbfb999999999999a = 0x401399999999999a ++faddd 0x4014000000000000 0x3fc999999999999a = 0x4014cccccccccccd ++faddd 0x4014000000000000 0xbfc999999999999a = 0x4013333333333333 ++faddd 0x4014000000000000 0x4008000000000000 = 0x4020000000000000 ++faddd 0x4014000000000000 0xc008000000000000 = 0x4000000000000000 ++faddd 0x4014000000000000 0x4014000000000000 = 0x4024000000000000 ++faddd 0x4014000000000000 0xc014000000000000 = 0x0 ++faddd 0x4014000000000000 0x4197d78400000000 = 0x4197d78414000000 ++faddd 0x4014000000000000 0xc197d78400000000 = 0xc197d783ec000000 ++faddd 0xc014000000000000 0x0 = 0xc014000000000000 ++faddd 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++faddd 0xc014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0xc014000000000000 0x123456789abcdef0 = 0xc014000000000000 ++faddd 0xc014000000000000 0x3ff0000000000000 = 0xc010000000000000 ++faddd 0xc014000000000000 0xbff0000000000000 = 0xc018000000000000 ++faddd 0xc014000000000000 0x3fb999999999999a = 0xc01399999999999a ++faddd 0xc014000000000000 0xbfb999999999999a = 0xc014666666666666 ++faddd 0xc014000000000000 0x3fc999999999999a = 0xc013333333333333 ++faddd 0xc014000000000000 0xbfc999999999999a = 0xc014cccccccccccd ++faddd 0xc014000000000000 0x4008000000000000 = 0xc000000000000000 ++faddd 0xc014000000000000 0xc008000000000000 = 0xc020000000000000 ++faddd 0xc014000000000000 0x4014000000000000 = 0x0 ++faddd 0xc014000000000000 0xc014000000000000 = 0xc024000000000000 ++faddd 0xc014000000000000 0x4197d78400000000 = 0x4197d783ec000000 ++faddd 0xc014000000000000 0xc197d78400000000 = 0xc197d78414000000 ++faddd 0x4197d78400000000 0x0 = 0x4197d78400000000 ++faddd 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++faddd 0x4197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0x4197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++faddd 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78404000000 ++faddd 0x4197d78400000000 0xbff0000000000000 = 0x4197d783fc000000 ++faddd 0x4197d78400000000 0x3fb999999999999a = 0x4197d78400666666 ++faddd 0x4197d78400000000 0xbfb999999999999a = 0x4197d783ff99999a ++faddd 0x4197d78400000000 0x3fc999999999999a = 0x4197d78400cccccd ++faddd 0x4197d78400000000 0xbfc999999999999a = 0x4197d783ff333333 ++faddd 0x4197d78400000000 0x4008000000000000 = 0x4197d7840c000000 ++faddd 0x4197d78400000000 0xc008000000000000 = 0x4197d783f4000000 ++faddd 0x4197d78400000000 0x4014000000000000 = 0x4197d78414000000 ++faddd 0x4197d78400000000 0xc014000000000000 = 0x4197d783ec000000 ++faddd 0x4197d78400000000 0x4197d78400000000 = 0x41a7d78400000000 ++faddd 0x4197d78400000000 0xc197d78400000000 = 0x0 ++faddd 0xc197d78400000000 0x0 = 0xc197d78400000000 ++faddd 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++faddd 0xc197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++faddd 0xc197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++faddd 0xc197d78400000000 0x3ff0000000000000 = 0xc197d783fc000000 ++faddd 0xc197d78400000000 0xbff0000000000000 = 0xc197d78404000000 ++faddd 0xc197d78400000000 0x3fb999999999999a = 0xc197d783ff99999a ++faddd 0xc197d78400000000 0xbfb999999999999a = 0xc197d78400666666 ++faddd 0xc197d78400000000 0x3fc999999999999a = 0xc197d783ff333333 ++faddd 0xc197d78400000000 0xbfc999999999999a = 0xc197d78400cccccd ++faddd 0xc197d78400000000 0x4008000000000000 = 0xc197d783f4000000 ++faddd 0xc197d78400000000 0xc008000000000000 = 0xc197d7840c000000 ++faddd 0xc197d78400000000 0x4014000000000000 = 0xc197d783ec000000 ++faddd 0xc197d78400000000 0xc014000000000000 = 0xc197d78414000000 ++faddd 0xc197d78400000000 0x4197d78400000000 = 0x0 ++faddd 0xc197d78400000000 0xc197d78400000000 = 0xc1a7d78400000000 ++=== Running test on fsubs=== ++fsubs 0x0 0x0 = 0x0 ++fsubs 0x0 0x8000000000000000 = 0x0 ++fsubs 0x0 0x3ff0000000000000 = 0xbff0000000000000 ++fsubs 0x0 0xbff0000000000000 = 0x3ff0000000000000 ++fsubs 0x0 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fsubs 0x0 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fsubs 0x0 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fsubs 0x0 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fsubs 0x0 0x4008000000000000 = 0xc008000000000000 ++fsubs 0x0 0xc008000000000000 = 0x4008000000000000 ++fsubs 0x0 0x4014000000000000 = 0xc014000000000000 ++fsubs 0x0 0xc014000000000000 = 0x4014000000000000 ++fsubs 0x0 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0x0 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0x8000000000000000 0x0 = 0x8000000000000000 ++fsubs 0x8000000000000000 0x8000000000000000 = 0x0 ++fsubs 0x8000000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fsubs 0x8000000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fsubs 0x8000000000000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fsubs 0x8000000000000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fsubs 0x8000000000000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fsubs 0x8000000000000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fsubs 0x8000000000000000 0x4008000000000000 = 0xc008000000000000 ++fsubs 0x8000000000000000 0xc008000000000000 = 0x4008000000000000 ++fsubs 0x8000000000000000 0x4014000000000000 = 0xc014000000000000 ++fsubs 0x8000000000000000 0xc014000000000000 = 0x4014000000000000 ++fsubs 0x8000000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0x8000000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++fsubs 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++fsubs 0x3ff0000000000000 0x3ff0000000000000 = 0x0 ++fsubs 0x3ff0000000000000 0xbff0000000000000 = 0x4000000000000000 ++fsubs 0x3ff0000000000000 0x3fb99999a0000000 = 0x3fecccccc0000000 ++fsubs 0x3ff0000000000000 0xbfb99999a0000000 = 0x3ff19999a0000000 ++fsubs 0x3ff0000000000000 0x3fc99999a0000000 = 0x3fe99999a0000000 ++fsubs 0x3ff0000000000000 0xbfc99999a0000000 = 0x3ff3333340000000 ++fsubs 0x3ff0000000000000 0x4008000000000000 = 0xc000000000000000 ++fsubs 0x3ff0000000000000 0xc008000000000000 = 0x4010000000000000 ++fsubs 0x3ff0000000000000 0x4014000000000000 = 0xc010000000000000 ++fsubs 0x3ff0000000000000 0xc014000000000000 = 0x4018000000000000 ++fsubs 0x3ff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0x3ff0000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0xbff0000000000000 0x0 = 0xbff0000000000000 ++fsubs 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++fsubs 0xbff0000000000000 0x3ff0000000000000 = 0xc000000000000000 ++fsubs 0xbff0000000000000 0xbff0000000000000 = 0x0 ++fsubs 0xbff0000000000000 0x3fb99999a0000000 = 0xbff19999a0000000 ++fsubs 0xbff0000000000000 0xbfb99999a0000000 = 0xbfecccccc0000000 ++fsubs 0xbff0000000000000 0x3fc99999a0000000 = 0xbff3333340000000 ++fsubs 0xbff0000000000000 0xbfc99999a0000000 = 0xbfe99999a0000000 ++fsubs 0xbff0000000000000 0x4008000000000000 = 0xc010000000000000 ++fsubs 0xbff0000000000000 0xc008000000000000 = 0x4000000000000000 ++fsubs 0xbff0000000000000 0x4014000000000000 = 0xc018000000000000 ++fsubs 0xbff0000000000000 0xc014000000000000 = 0x4010000000000000 ++fsubs 0xbff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0xbff0000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0x3fb99999a0000000 0x0 = 0x3fb99999a0000000 ++fsubs 0x3fb99999a0000000 0x8000000000000000 = 0x3fb99999a0000000 ++fsubs 0x3fb99999a0000000 0x3ff0000000000000 = 0xbfecccccc0000000 ++fsubs 0x3fb99999a0000000 0xbff0000000000000 = 0x3ff19999a0000000 ++fsubs 0x3fb99999a0000000 0x3fb99999a0000000 = 0x0 ++fsubs 0x3fb99999a0000000 0xbfb99999a0000000 = 0x3fc99999a0000000 ++fsubs 0x3fb99999a0000000 0x3fc99999a0000000 = 0xbfb99999a0000000 ++fsubs 0x3fb99999a0000000 0xbfc99999a0000000 = 0x3fd3333340000000 ++fsubs 0x3fb99999a0000000 0x4008000000000000 = 0xc007333340000000 ++fsubs 0x3fb99999a0000000 0xc008000000000000 = 0x4008ccccc0000000 ++fsubs 0x3fb99999a0000000 0x4014000000000000 = 0xc0139999a0000000 ++fsubs 0x3fb99999a0000000 0xc014000000000000 = 0x4014666660000000 ++fsubs 0x3fb99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0x3fb99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0xbfb99999a0000000 0x0 = 0xbfb99999a0000000 ++fsubs 0xbfb99999a0000000 0x8000000000000000 = 0xbfb99999a0000000 ++fsubs 0xbfb99999a0000000 0x3ff0000000000000 = 0xbff19999a0000000 ++fsubs 0xbfb99999a0000000 0xbff0000000000000 = 0x3fecccccc0000000 ++fsubs 0xbfb99999a0000000 0x3fb99999a0000000 = 0xbfc99999a0000000 ++fsubs 0xbfb99999a0000000 0xbfb99999a0000000 = 0x0 ++fsubs 0xbfb99999a0000000 0x3fc99999a0000000 = 0xbfd3333340000000 ++fsubs 0xbfb99999a0000000 0xbfc99999a0000000 = 0x3fb99999a0000000 ++fsubs 0xbfb99999a0000000 0x4008000000000000 = 0xc008ccccc0000000 ++fsubs 0xbfb99999a0000000 0xc008000000000000 = 0x4007333340000000 ++fsubs 0xbfb99999a0000000 0x4014000000000000 = 0xc014666660000000 ++fsubs 0xbfb99999a0000000 0xc014000000000000 = 0x40139999a0000000 ++fsubs 0xbfb99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0xbfb99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0x3fc99999a0000000 0x0 = 0x3fc99999a0000000 ++fsubs 0x3fc99999a0000000 0x8000000000000000 = 0x3fc99999a0000000 ++fsubs 0x3fc99999a0000000 0x3ff0000000000000 = 0xbfe99999a0000000 ++fsubs 0x3fc99999a0000000 0xbff0000000000000 = 0x3ff3333340000000 ++fsubs 0x3fc99999a0000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fsubs 0x3fc99999a0000000 0xbfb99999a0000000 = 0x3fd3333340000000 ++fsubs 0x3fc99999a0000000 0x3fc99999a0000000 = 0x0 ++fsubs 0x3fc99999a0000000 0xbfc99999a0000000 = 0x3fd99999a0000000 ++fsubs 0x3fc99999a0000000 0x4008000000000000 = 0xc006666660000000 ++fsubs 0x3fc99999a0000000 0xc008000000000000 = 0x40099999a0000000 ++fsubs 0x3fc99999a0000000 0x4014000000000000 = 0xc013333340000000 ++fsubs 0x3fc99999a0000000 0xc014000000000000 = 0x4014ccccc0000000 ++fsubs 0x3fc99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0x3fc99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0xbfc99999a0000000 0x0 = 0xbfc99999a0000000 ++fsubs 0xbfc99999a0000000 0x8000000000000000 = 0xbfc99999a0000000 ++fsubs 0xbfc99999a0000000 0x3ff0000000000000 = 0xbff3333340000000 ++fsubs 0xbfc99999a0000000 0xbff0000000000000 = 0x3fe99999a0000000 ++fsubs 0xbfc99999a0000000 0x3fb99999a0000000 = 0xbfd3333340000000 ++fsubs 0xbfc99999a0000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fsubs 0xbfc99999a0000000 0x3fc99999a0000000 = 0xbfd99999a0000000 ++fsubs 0xbfc99999a0000000 0xbfc99999a0000000 = 0x0 ++fsubs 0xbfc99999a0000000 0x4008000000000000 = 0xc0099999a0000000 ++fsubs 0xbfc99999a0000000 0xc008000000000000 = 0x4006666660000000 ++fsubs 0xbfc99999a0000000 0x4014000000000000 = 0xc014ccccc0000000 ++fsubs 0xbfc99999a0000000 0xc014000000000000 = 0x4013333340000000 ++fsubs 0xbfc99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0xbfc99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0x4008000000000000 0x0 = 0x4008000000000000 ++fsubs 0x4008000000000000 0x8000000000000000 = 0x4008000000000000 ++fsubs 0x4008000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fsubs 0x4008000000000000 0xbff0000000000000 = 0x4010000000000000 ++fsubs 0x4008000000000000 0x3fb99999a0000000 = 0x4007333340000000 ++fsubs 0x4008000000000000 0xbfb99999a0000000 = 0x4008ccccc0000000 ++fsubs 0x4008000000000000 0x3fc99999a0000000 = 0x4006666660000000 ++fsubs 0x4008000000000000 0xbfc99999a0000000 = 0x40099999a0000000 ++fsubs 0x4008000000000000 0x4008000000000000 = 0x0 ++fsubs 0x4008000000000000 0xc008000000000000 = 0x4018000000000000 ++fsubs 0x4008000000000000 0x4014000000000000 = 0xc000000000000000 ++fsubs 0x4008000000000000 0xc014000000000000 = 0x4020000000000000 ++fsubs 0x4008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0x4008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0xc008000000000000 0x0 = 0xc008000000000000 ++fsubs 0xc008000000000000 0x8000000000000000 = 0xc008000000000000 ++fsubs 0xc008000000000000 0x3ff0000000000000 = 0xc010000000000000 ++fsubs 0xc008000000000000 0xbff0000000000000 = 0xc000000000000000 ++fsubs 0xc008000000000000 0x3fb99999a0000000 = 0xc008ccccc0000000 ++fsubs 0xc008000000000000 0xbfb99999a0000000 = 0xc007333340000000 ++fsubs 0xc008000000000000 0x3fc99999a0000000 = 0xc0099999a0000000 ++fsubs 0xc008000000000000 0xbfc99999a0000000 = 0xc006666660000000 ++fsubs 0xc008000000000000 0x4008000000000000 = 0xc018000000000000 ++fsubs 0xc008000000000000 0xc008000000000000 = 0x0 ++fsubs 0xc008000000000000 0x4014000000000000 = 0xc020000000000000 ++fsubs 0xc008000000000000 0xc014000000000000 = 0x4000000000000000 ++fsubs 0xc008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubs 0xc008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubs 0x4014000000000000 0x0 = 0x4014000000000000 ++fsubs 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fsubs 0x4014000000000000 0x3ff0000000000000 = 0x4010000000000000 ++fsubs 0x4014000000000000 0xbff0000000000000 = 0x4018000000000000 ++fsubs 0x4014000000000000 0x3fb99999a0000000 = 0x40139999a0000000 ++fsubs 0x4014000000000000 0xbfb99999a0000000 = 0x4014666660000000 ++fsubs 0x4014000000000000 0x3fc99999a0000000 = 0x4013333340000000 ++fsubs 0x4014000000000000 0xbfc99999a0000000 = 0x4014ccccc0000000 ++fsubs 0x4014000000000000 0x4008000000000000 = 0x4000000000000000 ++fsubs 0x4014000000000000 0xc008000000000000 = 0x4020000000000000 ++fsubs 0x4014000000000000 0x4014000000000000 = 0x0 ++fsubs 0x4014000000000000 0xc014000000000000 = 0x4024000000000000 ++fsubs 0x4014000000000000 0x4197d78400000000 = 0xc197d783e0000000 ++fsubs 0x4014000000000000 0xc197d78400000000 = 0x4197d78420000000 ++fsubs 0xc014000000000000 0x0 = 0xc014000000000000 ++fsubs 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fsubs 0xc014000000000000 0x3ff0000000000000 = 0xc018000000000000 ++fsubs 0xc014000000000000 0xbff0000000000000 = 0xc010000000000000 ++fsubs 0xc014000000000000 0x3fb99999a0000000 = 0xc014666660000000 ++fsubs 0xc014000000000000 0xbfb99999a0000000 = 0xc0139999a0000000 ++fsubs 0xc014000000000000 0x3fc99999a0000000 = 0xc014ccccc0000000 ++fsubs 0xc014000000000000 0xbfc99999a0000000 = 0xc013333340000000 ++fsubs 0xc014000000000000 0x4008000000000000 = 0xc020000000000000 ++fsubs 0xc014000000000000 0xc008000000000000 = 0xc000000000000000 ++fsubs 0xc014000000000000 0x4014000000000000 = 0xc024000000000000 ++fsubs 0xc014000000000000 0xc014000000000000 = 0x0 ++fsubs 0xc014000000000000 0x4197d78400000000 = 0xc197d78420000000 ++fsubs 0xc014000000000000 0xc197d78400000000 = 0x4197d783e0000000 ++fsubs 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0x3fb99999a0000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0xbfb99999a0000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0x3fc99999a0000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0xbfc99999a0000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0x4008000000000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0xc008000000000000 = 0x4197d78400000000 ++fsubs 0x4197d78400000000 0x4014000000000000 = 0x4197d783e0000000 ++fsubs 0x4197d78400000000 0xc014000000000000 = 0x4197d78420000000 ++fsubs 0x4197d78400000000 0x4197d78400000000 = 0x0 ++fsubs 0x4197d78400000000 0xc197d78400000000 = 0x41a7d78400000000 ++fsubs 0xc197d78400000000 0x0 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0x3fb99999a0000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0xbfb99999a0000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0x3fc99999a0000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0xbfc99999a0000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0x4008000000000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0xc008000000000000 = 0xc197d78400000000 ++fsubs 0xc197d78400000000 0x4014000000000000 = 0xc197d78420000000 ++fsubs 0xc197d78400000000 0xc014000000000000 = 0xc197d783e0000000 ++fsubs 0xc197d78400000000 0x4197d78400000000 = 0xc1a7d78400000000 ++fsubs 0xc197d78400000000 0xc197d78400000000 = 0x0 ++=== Running test on fsubd=== ++fsubd 0x0 0x0 = 0x0 ++fsubd 0x0 0x8000000000000000 = 0x0 ++fsubd 0x0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x0 0x123456789abcdef0 = 0x923456789abcdef0 ++fsubd 0x0 0x3ff0000000000000 = 0xbff0000000000000 ++fsubd 0x0 0xbff0000000000000 = 0x3ff0000000000000 ++fsubd 0x0 0x3fb999999999999a = 0xbfb999999999999a ++fsubd 0x0 0xbfb999999999999a = 0x3fb999999999999a ++fsubd 0x0 0x3fc999999999999a = 0xbfc999999999999a ++fsubd 0x0 0xbfc999999999999a = 0x3fc999999999999a ++fsubd 0x0 0x4008000000000000 = 0xc008000000000000 ++fsubd 0x0 0xc008000000000000 = 0x4008000000000000 ++fsubd 0x0 0x4014000000000000 = 0xc014000000000000 ++fsubd 0x0 0xc014000000000000 = 0x4014000000000000 ++fsubd 0x0 0x4197d78400000000 = 0xc197d78400000000 ++fsubd 0x0 0xc197d78400000000 = 0x4197d78400000000 ++fsubd 0x8000000000000000 0x0 = 0x8000000000000000 ++fsubd 0x8000000000000000 0x8000000000000000 = 0x0 ++fsubd 0x8000000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x8000000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fsubd 0x8000000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fsubd 0x8000000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fsubd 0x8000000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fsubd 0x8000000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fsubd 0x8000000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fsubd 0x8000000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fsubd 0x8000000000000000 0x4008000000000000 = 0xc008000000000000 ++fsubd 0x8000000000000000 0xc008000000000000 = 0x4008000000000000 ++fsubd 0x8000000000000000 0x4014000000000000 = 0xc014000000000000 ++fsubd 0x8000000000000000 0xc014000000000000 = 0x4014000000000000 ++fsubd 0x8000000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fsubd 0x8000000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fsubd 0xf0debc9a78563412 0x0 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0x8000000000000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0xf0debc9a78563412 = 0x0 ++fsubd 0xf0debc9a78563412 0x123456789abcdef0 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0xbff0000000000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0x3fb999999999999a = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0xbfb999999999999a = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0x3fc999999999999a = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0xbfc999999999999a = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0x4008000000000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0xc008000000000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0x4014000000000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0xc014000000000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0x4197d78400000000 = 0xf0debc9a78563412 ++fsubd 0xf0debc9a78563412 0xc197d78400000000 = 0xf0debc9a78563412 ++fsubd 0x123456789abcdef0 0x0 = 0x123456789abcdef0 ++fsubd 0x123456789abcdef0 0x8000000000000000 = 0x123456789abcdef0 ++fsubd 0x123456789abcdef0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x123456789abcdef0 0x123456789abcdef0 = 0x0 ++fsubd 0x123456789abcdef0 0x3ff0000000000000 = 0xbff0000000000000 ++fsubd 0x123456789abcdef0 0xbff0000000000000 = 0x3ff0000000000000 ++fsubd 0x123456789abcdef0 0x3fb999999999999a = 0xbfb999999999999a ++fsubd 0x123456789abcdef0 0xbfb999999999999a = 0x3fb999999999999a ++fsubd 0x123456789abcdef0 0x3fc999999999999a = 0xbfc999999999999a ++fsubd 0x123456789abcdef0 0xbfc999999999999a = 0x3fc999999999999a ++fsubd 0x123456789abcdef0 0x4008000000000000 = 0xc008000000000000 ++fsubd 0x123456789abcdef0 0xc008000000000000 = 0x4008000000000000 ++fsubd 0x123456789abcdef0 0x4014000000000000 = 0xc014000000000000 ++fsubd 0x123456789abcdef0 0xc014000000000000 = 0x4014000000000000 ++fsubd 0x123456789abcdef0 0x4197d78400000000 = 0xc197d78400000000 ++fsubd 0x123456789abcdef0 0xc197d78400000000 = 0x4197d78400000000 ++fsubd 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++fsubd 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++fsubd 0x3ff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x3ff0000000000000 0x123456789abcdef0 = 0x3ff0000000000000 ++fsubd 0x3ff0000000000000 0x3ff0000000000000 = 0x0 ++fsubd 0x3ff0000000000000 0xbff0000000000000 = 0x4000000000000000 ++fsubd 0x3ff0000000000000 0x3fb999999999999a = 0x3feccccccccccccd ++fsubd 0x3ff0000000000000 0xbfb999999999999a = 0x3ff199999999999a ++fsubd 0x3ff0000000000000 0x3fc999999999999a = 0x3fe999999999999a ++fsubd 0x3ff0000000000000 0xbfc999999999999a = 0x3ff3333333333333 ++fsubd 0x3ff0000000000000 0x4008000000000000 = 0xc000000000000000 ++fsubd 0x3ff0000000000000 0xc008000000000000 = 0x4010000000000000 ++fsubd 0x3ff0000000000000 0x4014000000000000 = 0xc010000000000000 ++fsubd 0x3ff0000000000000 0xc014000000000000 = 0x4018000000000000 ++fsubd 0x3ff0000000000000 0x4197d78400000000 = 0xc197d783fc000000 ++fsubd 0x3ff0000000000000 0xc197d78400000000 = 0x4197d78404000000 ++fsubd 0xbff0000000000000 0x0 = 0xbff0000000000000 ++fsubd 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++fsubd 0xbff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0xbff0000000000000 0x123456789abcdef0 = 0xbff0000000000000 ++fsubd 0xbff0000000000000 0x3ff0000000000000 = 0xc000000000000000 ++fsubd 0xbff0000000000000 0xbff0000000000000 = 0x0 ++fsubd 0xbff0000000000000 0x3fb999999999999a = 0xbff199999999999a ++fsubd 0xbff0000000000000 0xbfb999999999999a = 0xbfeccccccccccccd ++fsubd 0xbff0000000000000 0x3fc999999999999a = 0xbff3333333333333 ++fsubd 0xbff0000000000000 0xbfc999999999999a = 0xbfe999999999999a ++fsubd 0xbff0000000000000 0x4008000000000000 = 0xc010000000000000 ++fsubd 0xbff0000000000000 0xc008000000000000 = 0x4000000000000000 ++fsubd 0xbff0000000000000 0x4014000000000000 = 0xc018000000000000 ++fsubd 0xbff0000000000000 0xc014000000000000 = 0x4010000000000000 ++fsubd 0xbff0000000000000 0x4197d78400000000 = 0xc197d78404000000 ++fsubd 0xbff0000000000000 0xc197d78400000000 = 0x4197d783fc000000 ++fsubd 0x3fb999999999999a 0x0 = 0x3fb999999999999a ++fsubd 0x3fb999999999999a 0x8000000000000000 = 0x3fb999999999999a ++fsubd 0x3fb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x3fb999999999999a 0x123456789abcdef0 = 0x3fb999999999999a ++fsubd 0x3fb999999999999a 0x3ff0000000000000 = 0xbfeccccccccccccd ++fsubd 0x3fb999999999999a 0xbff0000000000000 = 0x3ff199999999999a ++fsubd 0x3fb999999999999a 0x3fb999999999999a = 0x0 ++fsubd 0x3fb999999999999a 0xbfb999999999999a = 0x3fc999999999999a ++fsubd 0x3fb999999999999a 0x3fc999999999999a = 0xbfb999999999999a ++fsubd 0x3fb999999999999a 0xbfc999999999999a = 0x3fd3333333333334 ++fsubd 0x3fb999999999999a 0x4008000000000000 = 0xc007333333333333 ++fsubd 0x3fb999999999999a 0xc008000000000000 = 0x4008cccccccccccd ++fsubd 0x3fb999999999999a 0x4014000000000000 = 0xc01399999999999a ++fsubd 0x3fb999999999999a 0xc014000000000000 = 0x4014666666666666 ++fsubd 0x3fb999999999999a 0x4197d78400000000 = 0xc197d783ff99999a ++fsubd 0x3fb999999999999a 0xc197d78400000000 = 0x4197d78400666666 ++fsubd 0xbfb999999999999a 0x0 = 0xbfb999999999999a ++fsubd 0xbfb999999999999a 0x8000000000000000 = 0xbfb999999999999a ++fsubd 0xbfb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0xbfb999999999999a 0x123456789abcdef0 = 0xbfb999999999999a ++fsubd 0xbfb999999999999a 0x3ff0000000000000 = 0xbff199999999999a ++fsubd 0xbfb999999999999a 0xbff0000000000000 = 0x3feccccccccccccd ++fsubd 0xbfb999999999999a 0x3fb999999999999a = 0xbfc999999999999a ++fsubd 0xbfb999999999999a 0xbfb999999999999a = 0x0 ++fsubd 0xbfb999999999999a 0x3fc999999999999a = 0xbfd3333333333334 ++fsubd 0xbfb999999999999a 0xbfc999999999999a = 0x3fb999999999999a ++fsubd 0xbfb999999999999a 0x4008000000000000 = 0xc008cccccccccccd ++fsubd 0xbfb999999999999a 0xc008000000000000 = 0x4007333333333333 ++fsubd 0xbfb999999999999a 0x4014000000000000 = 0xc014666666666666 ++fsubd 0xbfb999999999999a 0xc014000000000000 = 0x401399999999999a ++fsubd 0xbfb999999999999a 0x4197d78400000000 = 0xc197d78400666666 ++fsubd 0xbfb999999999999a 0xc197d78400000000 = 0x4197d783ff99999a ++fsubd 0x3fc999999999999a 0x0 = 0x3fc999999999999a ++fsubd 0x3fc999999999999a 0x8000000000000000 = 0x3fc999999999999a ++fsubd 0x3fc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x3fc999999999999a 0x123456789abcdef0 = 0x3fc999999999999a ++fsubd 0x3fc999999999999a 0x3ff0000000000000 = 0xbfe999999999999a ++fsubd 0x3fc999999999999a 0xbff0000000000000 = 0x3ff3333333333333 ++fsubd 0x3fc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fsubd 0x3fc999999999999a 0xbfb999999999999a = 0x3fd3333333333334 ++fsubd 0x3fc999999999999a 0x3fc999999999999a = 0x0 ++fsubd 0x3fc999999999999a 0xbfc999999999999a = 0x3fd999999999999a ++fsubd 0x3fc999999999999a 0x4008000000000000 = 0xc006666666666666 ++fsubd 0x3fc999999999999a 0xc008000000000000 = 0x400999999999999a ++fsubd 0x3fc999999999999a 0x4014000000000000 = 0xc013333333333333 ++fsubd 0x3fc999999999999a 0xc014000000000000 = 0x4014cccccccccccd ++fsubd 0x3fc999999999999a 0x4197d78400000000 = 0xc197d783ff333333 ++fsubd 0x3fc999999999999a 0xc197d78400000000 = 0x4197d78400cccccd ++fsubd 0xbfc999999999999a 0x0 = 0xbfc999999999999a ++fsubd 0xbfc999999999999a 0x8000000000000000 = 0xbfc999999999999a ++fsubd 0xbfc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0xbfc999999999999a 0x123456789abcdef0 = 0xbfc999999999999a ++fsubd 0xbfc999999999999a 0x3ff0000000000000 = 0xbff3333333333333 ++fsubd 0xbfc999999999999a 0xbff0000000000000 = 0x3fe999999999999a ++fsubd 0xbfc999999999999a 0x3fb999999999999a = 0xbfd3333333333334 ++fsubd 0xbfc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fsubd 0xbfc999999999999a 0x3fc999999999999a = 0xbfd999999999999a ++fsubd 0xbfc999999999999a 0xbfc999999999999a = 0x0 ++fsubd 0xbfc999999999999a 0x4008000000000000 = 0xc00999999999999a ++fsubd 0xbfc999999999999a 0xc008000000000000 = 0x4006666666666666 ++fsubd 0xbfc999999999999a 0x4014000000000000 = 0xc014cccccccccccd ++fsubd 0xbfc999999999999a 0xc014000000000000 = 0x4013333333333333 ++fsubd 0xbfc999999999999a 0x4197d78400000000 = 0xc197d78400cccccd ++fsubd 0xbfc999999999999a 0xc197d78400000000 = 0x4197d783ff333333 ++fsubd 0x4008000000000000 0x0 = 0x4008000000000000 ++fsubd 0x4008000000000000 0x8000000000000000 = 0x4008000000000000 ++fsubd 0x4008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x4008000000000000 0x123456789abcdef0 = 0x4008000000000000 ++fsubd 0x4008000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fsubd 0x4008000000000000 0xbff0000000000000 = 0x4010000000000000 ++fsubd 0x4008000000000000 0x3fb999999999999a = 0x4007333333333333 ++fsubd 0x4008000000000000 0xbfb999999999999a = 0x4008cccccccccccd ++fsubd 0x4008000000000000 0x3fc999999999999a = 0x4006666666666666 ++fsubd 0x4008000000000000 0xbfc999999999999a = 0x400999999999999a ++fsubd 0x4008000000000000 0x4008000000000000 = 0x0 ++fsubd 0x4008000000000000 0xc008000000000000 = 0x4018000000000000 ++fsubd 0x4008000000000000 0x4014000000000000 = 0xc000000000000000 ++fsubd 0x4008000000000000 0xc014000000000000 = 0x4020000000000000 ++fsubd 0x4008000000000000 0x4197d78400000000 = 0xc197d783f4000000 ++fsubd 0x4008000000000000 0xc197d78400000000 = 0x4197d7840c000000 ++fsubd 0xc008000000000000 0x0 = 0xc008000000000000 ++fsubd 0xc008000000000000 0x8000000000000000 = 0xc008000000000000 ++fsubd 0xc008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0xc008000000000000 0x123456789abcdef0 = 0xc008000000000000 ++fsubd 0xc008000000000000 0x3ff0000000000000 = 0xc010000000000000 ++fsubd 0xc008000000000000 0xbff0000000000000 = 0xc000000000000000 ++fsubd 0xc008000000000000 0x3fb999999999999a = 0xc008cccccccccccd ++fsubd 0xc008000000000000 0xbfb999999999999a = 0xc007333333333333 ++fsubd 0xc008000000000000 0x3fc999999999999a = 0xc00999999999999a ++fsubd 0xc008000000000000 0xbfc999999999999a = 0xc006666666666666 ++fsubd 0xc008000000000000 0x4008000000000000 = 0xc018000000000000 ++fsubd 0xc008000000000000 0xc008000000000000 = 0x0 ++fsubd 0xc008000000000000 0x4014000000000000 = 0xc020000000000000 ++fsubd 0xc008000000000000 0xc014000000000000 = 0x4000000000000000 ++fsubd 0xc008000000000000 0x4197d78400000000 = 0xc197d7840c000000 ++fsubd 0xc008000000000000 0xc197d78400000000 = 0x4197d783f4000000 ++fsubd 0x4014000000000000 0x0 = 0x4014000000000000 ++fsubd 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fsubd 0x4014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x4014000000000000 0x123456789abcdef0 = 0x4014000000000000 ++fsubd 0x4014000000000000 0x3ff0000000000000 = 0x4010000000000000 ++fsubd 0x4014000000000000 0xbff0000000000000 = 0x4018000000000000 ++fsubd 0x4014000000000000 0x3fb999999999999a = 0x401399999999999a ++fsubd 0x4014000000000000 0xbfb999999999999a = 0x4014666666666666 ++fsubd 0x4014000000000000 0x3fc999999999999a = 0x4013333333333333 ++fsubd 0x4014000000000000 0xbfc999999999999a = 0x4014cccccccccccd ++fsubd 0x4014000000000000 0x4008000000000000 = 0x4000000000000000 ++fsubd 0x4014000000000000 0xc008000000000000 = 0x4020000000000000 ++fsubd 0x4014000000000000 0x4014000000000000 = 0x0 ++fsubd 0x4014000000000000 0xc014000000000000 = 0x4024000000000000 ++fsubd 0x4014000000000000 0x4197d78400000000 = 0xc197d783ec000000 ++fsubd 0x4014000000000000 0xc197d78400000000 = 0x4197d78414000000 ++fsubd 0xc014000000000000 0x0 = 0xc014000000000000 ++fsubd 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fsubd 0xc014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0xc014000000000000 0x123456789abcdef0 = 0xc014000000000000 ++fsubd 0xc014000000000000 0x3ff0000000000000 = 0xc018000000000000 ++fsubd 0xc014000000000000 0xbff0000000000000 = 0xc010000000000000 ++fsubd 0xc014000000000000 0x3fb999999999999a = 0xc014666666666666 ++fsubd 0xc014000000000000 0xbfb999999999999a = 0xc01399999999999a ++fsubd 0xc014000000000000 0x3fc999999999999a = 0xc014cccccccccccd ++fsubd 0xc014000000000000 0xbfc999999999999a = 0xc013333333333333 ++fsubd 0xc014000000000000 0x4008000000000000 = 0xc020000000000000 ++fsubd 0xc014000000000000 0xc008000000000000 = 0xc000000000000000 ++fsubd 0xc014000000000000 0x4014000000000000 = 0xc024000000000000 ++fsubd 0xc014000000000000 0xc014000000000000 = 0x0 ++fsubd 0xc014000000000000 0x4197d78400000000 = 0xc197d78414000000 ++fsubd 0xc014000000000000 0xc197d78400000000 = 0x4197d783ec000000 ++fsubd 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fsubd 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fsubd 0x4197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0x4197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fsubd 0x4197d78400000000 0x3ff0000000000000 = 0x4197d783fc000000 ++fsubd 0x4197d78400000000 0xbff0000000000000 = 0x4197d78404000000 ++fsubd 0x4197d78400000000 0x3fb999999999999a = 0x4197d783ff99999a ++fsubd 0x4197d78400000000 0xbfb999999999999a = 0x4197d78400666666 ++fsubd 0x4197d78400000000 0x3fc999999999999a = 0x4197d783ff333333 ++fsubd 0x4197d78400000000 0xbfc999999999999a = 0x4197d78400cccccd ++fsubd 0x4197d78400000000 0x4008000000000000 = 0x4197d783f4000000 ++fsubd 0x4197d78400000000 0xc008000000000000 = 0x4197d7840c000000 ++fsubd 0x4197d78400000000 0x4014000000000000 = 0x4197d783ec000000 ++fsubd 0x4197d78400000000 0xc014000000000000 = 0x4197d78414000000 ++fsubd 0x4197d78400000000 0x4197d78400000000 = 0x0 ++fsubd 0x4197d78400000000 0xc197d78400000000 = 0x41a7d78400000000 ++fsubd 0xc197d78400000000 0x0 = 0xc197d78400000000 ++fsubd 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fsubd 0xc197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fsubd 0xc197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fsubd 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78404000000 ++fsubd 0xc197d78400000000 0xbff0000000000000 = 0xc197d783fc000000 ++fsubd 0xc197d78400000000 0x3fb999999999999a = 0xc197d78400666666 ++fsubd 0xc197d78400000000 0xbfb999999999999a = 0xc197d783ff99999a ++fsubd 0xc197d78400000000 0x3fc999999999999a = 0xc197d78400cccccd ++fsubd 0xc197d78400000000 0xbfc999999999999a = 0xc197d783ff333333 ++fsubd 0xc197d78400000000 0x4008000000000000 = 0xc197d7840c000000 ++fsubd 0xc197d78400000000 0xc008000000000000 = 0xc197d783f4000000 ++fsubd 0xc197d78400000000 0x4014000000000000 = 0xc197d78414000000 ++fsubd 0xc197d78400000000 0xc014000000000000 = 0xc197d783ec000000 ++fsubd 0xc197d78400000000 0x4197d78400000000 = 0xc1a7d78400000000 ++fsubd 0xc197d78400000000 0xc197d78400000000 = 0x0 ++=== Running test on fmuls=== ++fmuls 0x0 0x0 = 0x0 ++fmuls 0x0 0x8000000000000000 = 0x8000000000000000 ++fmuls 0x0 0x3ff0000000000000 = 0x0 ++fmuls 0x0 0xbff0000000000000 = 0x8000000000000000 ++fmuls 0x0 0x3fb99999a0000000 = 0x0 ++fmuls 0x0 0xbfb99999a0000000 = 0x8000000000000000 ++fmuls 0x0 0x3fc99999a0000000 = 0x0 ++fmuls 0x0 0xbfc99999a0000000 = 0x8000000000000000 ++fmuls 0x0 0x4008000000000000 = 0x0 ++fmuls 0x0 0xc008000000000000 = 0x8000000000000000 ++fmuls 0x0 0x4014000000000000 = 0x0 ++fmuls 0x0 0xc014000000000000 = 0x8000000000000000 ++fmuls 0x0 0x4197d78400000000 = 0x0 ++fmuls 0x0 0xc197d78400000000 = 0x8000000000000000 ++fmuls 0x8000000000000000 0x0 = 0x8000000000000000 ++fmuls 0x8000000000000000 0x8000000000000000 = 0x0 ++fmuls 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fmuls 0x8000000000000000 0xbff0000000000000 = 0x0 ++fmuls 0x8000000000000000 0x3fb99999a0000000 = 0x8000000000000000 ++fmuls 0x8000000000000000 0xbfb99999a0000000 = 0x0 ++fmuls 0x8000000000000000 0x3fc99999a0000000 = 0x8000000000000000 ++fmuls 0x8000000000000000 0xbfc99999a0000000 = 0x0 ++fmuls 0x8000000000000000 0x4008000000000000 = 0x8000000000000000 ++fmuls 0x8000000000000000 0xc008000000000000 = 0x0 ++fmuls 0x8000000000000000 0x4014000000000000 = 0x8000000000000000 ++fmuls 0x8000000000000000 0xc014000000000000 = 0x0 ++fmuls 0x8000000000000000 0x4197d78400000000 = 0x8000000000000000 ++fmuls 0x8000000000000000 0xc197d78400000000 = 0x0 ++fmuls 0x3ff0000000000000 0x0 = 0x0 ++fmuls 0x3ff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fmuls 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fmuls 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmuls 0x3ff0000000000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fmuls 0x3ff0000000000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fmuls 0x3ff0000000000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fmuls 0x3ff0000000000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fmuls 0x3ff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fmuls 0x3ff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fmuls 0x3ff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fmuls 0x3ff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fmuls 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmuls 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fmuls 0xbff0000000000000 0x0 = 0x8000000000000000 ++fmuls 0xbff0000000000000 0x8000000000000000 = 0x0 ++fmuls 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fmuls 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmuls 0xbff0000000000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fmuls 0xbff0000000000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fmuls 0xbff0000000000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fmuls 0xbff0000000000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fmuls 0xbff0000000000000 0x4008000000000000 = 0xc008000000000000 ++fmuls 0xbff0000000000000 0xc008000000000000 = 0x4008000000000000 ++fmuls 0xbff0000000000000 0x4014000000000000 = 0xc014000000000000 ++fmuls 0xbff0000000000000 0xc014000000000000 = 0x4014000000000000 ++fmuls 0xbff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmuls 0xbff0000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fmuls 0x3fb99999a0000000 0x0 = 0x0 ++fmuls 0x3fb99999a0000000 0x8000000000000000 = 0x8000000000000000 ++fmuls 0x3fb99999a0000000 0x3ff0000000000000 = 0x3fb99999a0000000 ++fmuls 0x3fb99999a0000000 0xbff0000000000000 = 0xbfb99999a0000000 ++fmuls 0x3fb99999a0000000 0x3fb99999a0000000 = 0x3f847ae160000000 ++fmuls 0x3fb99999a0000000 0xbfb99999a0000000 = 0xbf847ae160000000 ++fmuls 0x3fb99999a0000000 0x3fc99999a0000000 = 0x3f947ae160000000 ++fmuls 0x3fb99999a0000000 0xbfc99999a0000000 = 0xbf947ae160000000 ++fmuls 0x3fb99999a0000000 0x4008000000000000 = 0x3fd3333340000000 ++fmuls 0x3fb99999a0000000 0xc008000000000000 = 0xbfd3333340000000 ++fmuls 0x3fb99999a0000000 0x4014000000000000 = 0x3fe0000000000000 ++fmuls 0x3fb99999a0000000 0xc014000000000000 = 0xbfe0000000000000 ++fmuls 0x3fb99999a0000000 0x4197d78400000000 = 0x416312d000000000 ++fmuls 0x3fb99999a0000000 0xc197d78400000000 = 0xc16312d000000000 ++fmuls 0xbfb99999a0000000 0x0 = 0x8000000000000000 ++fmuls 0xbfb99999a0000000 0x8000000000000000 = 0x0 ++fmuls 0xbfb99999a0000000 0x3ff0000000000000 = 0xbfb99999a0000000 ++fmuls 0xbfb99999a0000000 0xbff0000000000000 = 0x3fb99999a0000000 ++fmuls 0xbfb99999a0000000 0x3fb99999a0000000 = 0xbf847ae160000000 ++fmuls 0xbfb99999a0000000 0xbfb99999a0000000 = 0x3f847ae160000000 ++fmuls 0xbfb99999a0000000 0x3fc99999a0000000 = 0xbf947ae160000000 ++fmuls 0xbfb99999a0000000 0xbfc99999a0000000 = 0x3f947ae160000000 ++fmuls 0xbfb99999a0000000 0x4008000000000000 = 0xbfd3333340000000 ++fmuls 0xbfb99999a0000000 0xc008000000000000 = 0x3fd3333340000000 ++fmuls 0xbfb99999a0000000 0x4014000000000000 = 0xbfe0000000000000 ++fmuls 0xbfb99999a0000000 0xc014000000000000 = 0x3fe0000000000000 ++fmuls 0xbfb99999a0000000 0x4197d78400000000 = 0xc16312d000000000 ++fmuls 0xbfb99999a0000000 0xc197d78400000000 = 0x416312d000000000 ++fmuls 0x3fc99999a0000000 0x0 = 0x0 ++fmuls 0x3fc99999a0000000 0x8000000000000000 = 0x8000000000000000 ++fmuls 0x3fc99999a0000000 0x3ff0000000000000 = 0x3fc99999a0000000 ++fmuls 0x3fc99999a0000000 0xbff0000000000000 = 0xbfc99999a0000000 ++fmuls 0x3fc99999a0000000 0x3fb99999a0000000 = 0x3f947ae160000000 ++fmuls 0x3fc99999a0000000 0xbfb99999a0000000 = 0xbf947ae160000000 ++fmuls 0x3fc99999a0000000 0x3fc99999a0000000 = 0x3fa47ae160000000 ++fmuls 0x3fc99999a0000000 0xbfc99999a0000000 = 0xbfa47ae160000000 ++fmuls 0x3fc99999a0000000 0x4008000000000000 = 0x3fe3333340000000 ++fmuls 0x3fc99999a0000000 0xc008000000000000 = 0xbfe3333340000000 ++fmuls 0x3fc99999a0000000 0x4014000000000000 = 0x3ff0000000000000 ++fmuls 0x3fc99999a0000000 0xc014000000000000 = 0xbff0000000000000 ++fmuls 0x3fc99999a0000000 0x4197d78400000000 = 0x417312d000000000 ++fmuls 0x3fc99999a0000000 0xc197d78400000000 = 0xc17312d000000000 ++fmuls 0xbfc99999a0000000 0x0 = 0x8000000000000000 ++fmuls 0xbfc99999a0000000 0x8000000000000000 = 0x0 ++fmuls 0xbfc99999a0000000 0x3ff0000000000000 = 0xbfc99999a0000000 ++fmuls 0xbfc99999a0000000 0xbff0000000000000 = 0x3fc99999a0000000 ++fmuls 0xbfc99999a0000000 0x3fb99999a0000000 = 0xbf947ae160000000 ++fmuls 0xbfc99999a0000000 0xbfb99999a0000000 = 0x3f947ae160000000 ++fmuls 0xbfc99999a0000000 0x3fc99999a0000000 = 0xbfa47ae160000000 ++fmuls 0xbfc99999a0000000 0xbfc99999a0000000 = 0x3fa47ae160000000 ++fmuls 0xbfc99999a0000000 0x4008000000000000 = 0xbfe3333340000000 ++fmuls 0xbfc99999a0000000 0xc008000000000000 = 0x3fe3333340000000 ++fmuls 0xbfc99999a0000000 0x4014000000000000 = 0xbff0000000000000 ++fmuls 0xbfc99999a0000000 0xc014000000000000 = 0x3ff0000000000000 ++fmuls 0xbfc99999a0000000 0x4197d78400000000 = 0xc17312d000000000 ++fmuls 0xbfc99999a0000000 0xc197d78400000000 = 0x417312d000000000 ++fmuls 0x4008000000000000 0x0 = 0x0 ++fmuls 0x4008000000000000 0x8000000000000000 = 0x8000000000000000 ++fmuls 0x4008000000000000 0x3ff0000000000000 = 0x4008000000000000 ++fmuls 0x4008000000000000 0xbff0000000000000 = 0xc008000000000000 ++fmuls 0x4008000000000000 0x3fb99999a0000000 = 0x3fd3333340000000 ++fmuls 0x4008000000000000 0xbfb99999a0000000 = 0xbfd3333340000000 ++fmuls 0x4008000000000000 0x3fc99999a0000000 = 0x3fe3333340000000 ++fmuls 0x4008000000000000 0xbfc99999a0000000 = 0xbfe3333340000000 ++fmuls 0x4008000000000000 0x4008000000000000 = 0x4022000000000000 ++fmuls 0x4008000000000000 0xc008000000000000 = 0xc022000000000000 ++fmuls 0x4008000000000000 0x4014000000000000 = 0x402e000000000000 ++fmuls 0x4008000000000000 0xc014000000000000 = 0xc02e000000000000 ++fmuls 0x4008000000000000 0x4197d78400000000 = 0x41b1e1a300000000 ++fmuls 0x4008000000000000 0xc197d78400000000 = 0xc1b1e1a300000000 ++fmuls 0xc008000000000000 0x0 = 0x8000000000000000 ++fmuls 0xc008000000000000 0x8000000000000000 = 0x0 ++fmuls 0xc008000000000000 0x3ff0000000000000 = 0xc008000000000000 ++fmuls 0xc008000000000000 0xbff0000000000000 = 0x4008000000000000 ++fmuls 0xc008000000000000 0x3fb99999a0000000 = 0xbfd3333340000000 ++fmuls 0xc008000000000000 0xbfb99999a0000000 = 0x3fd3333340000000 ++fmuls 0xc008000000000000 0x3fc99999a0000000 = 0xbfe3333340000000 ++fmuls 0xc008000000000000 0xbfc99999a0000000 = 0x3fe3333340000000 ++fmuls 0xc008000000000000 0x4008000000000000 = 0xc022000000000000 ++fmuls 0xc008000000000000 0xc008000000000000 = 0x4022000000000000 ++fmuls 0xc008000000000000 0x4014000000000000 = 0xc02e000000000000 ++fmuls 0xc008000000000000 0xc014000000000000 = 0x402e000000000000 ++fmuls 0xc008000000000000 0x4197d78400000000 = 0xc1b1e1a300000000 ++fmuls 0xc008000000000000 0xc197d78400000000 = 0x41b1e1a300000000 ++fmuls 0x4014000000000000 0x0 = 0x0 ++fmuls 0x4014000000000000 0x8000000000000000 = 0x8000000000000000 ++fmuls 0x4014000000000000 0x3ff0000000000000 = 0x4014000000000000 ++fmuls 0x4014000000000000 0xbff0000000000000 = 0xc014000000000000 ++fmuls 0x4014000000000000 0x3fb99999a0000000 = 0x3fe0000000000000 ++fmuls 0x4014000000000000 0xbfb99999a0000000 = 0xbfe0000000000000 ++fmuls 0x4014000000000000 0x3fc99999a0000000 = 0x3ff0000000000000 ++fmuls 0x4014000000000000 0xbfc99999a0000000 = 0xbff0000000000000 ++fmuls 0x4014000000000000 0x4008000000000000 = 0x402e000000000000 ++fmuls 0x4014000000000000 0xc008000000000000 = 0xc02e000000000000 ++fmuls 0x4014000000000000 0x4014000000000000 = 0x4039000000000000 ++fmuls 0x4014000000000000 0xc014000000000000 = 0xc039000000000000 ++fmuls 0x4014000000000000 0x4197d78400000000 = 0x41bdcd6500000000 ++fmuls 0x4014000000000000 0xc197d78400000000 = 0xc1bdcd6500000000 ++fmuls 0xc014000000000000 0x0 = 0x8000000000000000 ++fmuls 0xc014000000000000 0x8000000000000000 = 0x0 ++fmuls 0xc014000000000000 0x3ff0000000000000 = 0xc014000000000000 ++fmuls 0xc014000000000000 0xbff0000000000000 = 0x4014000000000000 ++fmuls 0xc014000000000000 0x3fb99999a0000000 = 0xbfe0000000000000 ++fmuls 0xc014000000000000 0xbfb99999a0000000 = 0x3fe0000000000000 ++fmuls 0xc014000000000000 0x3fc99999a0000000 = 0xbff0000000000000 ++fmuls 0xc014000000000000 0xbfc99999a0000000 = 0x3ff0000000000000 ++fmuls 0xc014000000000000 0x4008000000000000 = 0xc02e000000000000 ++fmuls 0xc014000000000000 0xc008000000000000 = 0x402e000000000000 ++fmuls 0xc014000000000000 0x4014000000000000 = 0xc039000000000000 ++fmuls 0xc014000000000000 0xc014000000000000 = 0x4039000000000000 ++fmuls 0xc014000000000000 0x4197d78400000000 = 0xc1bdcd6500000000 ++fmuls 0xc014000000000000 0xc197d78400000000 = 0x41bdcd6500000000 ++fmuls 0x4197d78400000000 0x0 = 0x0 ++fmuls 0x4197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fmuls 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fmuls 0x4197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fmuls 0x4197d78400000000 0x3fb99999a0000000 = 0x416312d000000000 ++fmuls 0x4197d78400000000 0xbfb99999a0000000 = 0xc16312d000000000 ++fmuls 0x4197d78400000000 0x3fc99999a0000000 = 0x417312d000000000 ++fmuls 0x4197d78400000000 0xbfc99999a0000000 = 0xc17312d000000000 ++fmuls 0x4197d78400000000 0x4008000000000000 = 0x41b1e1a300000000 ++fmuls 0x4197d78400000000 0xc008000000000000 = 0xc1b1e1a300000000 ++fmuls 0x4197d78400000000 0x4014000000000000 = 0x41bdcd6500000000 ++fmuls 0x4197d78400000000 0xc014000000000000 = 0xc1bdcd6500000000 ++fmuls 0x4197d78400000000 0x4197d78400000000 = 0x4341c37940000000 ++fmuls 0x4197d78400000000 0xc197d78400000000 = 0xc341c37940000000 ++fmuls 0xc197d78400000000 0x0 = 0x8000000000000000 ++fmuls 0xc197d78400000000 0x8000000000000000 = 0x0 ++fmuls 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fmuls 0xc197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fmuls 0xc197d78400000000 0x3fb99999a0000000 = 0xc16312d000000000 ++fmuls 0xc197d78400000000 0xbfb99999a0000000 = 0x416312d000000000 ++fmuls 0xc197d78400000000 0x3fc99999a0000000 = 0xc17312d000000000 ++fmuls 0xc197d78400000000 0xbfc99999a0000000 = 0x417312d000000000 ++fmuls 0xc197d78400000000 0x4008000000000000 = 0xc1b1e1a300000000 ++fmuls 0xc197d78400000000 0xc008000000000000 = 0x41b1e1a300000000 ++fmuls 0xc197d78400000000 0x4014000000000000 = 0xc1bdcd6500000000 ++fmuls 0xc197d78400000000 0xc014000000000000 = 0x41bdcd6500000000 ++fmuls 0xc197d78400000000 0x4197d78400000000 = 0xc341c37940000000 ++fmuls 0xc197d78400000000 0xc197d78400000000 = 0x4341c37940000000 ++=== Running test on fmuld=== ++fmuld 0x0 0x0 = 0x0 ++fmuld 0x0 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x0 0xf0debc9a78563412 = 0x8000000000000000 ++fmuld 0x0 0x123456789abcdef0 = 0x0 ++fmuld 0x0 0x3ff0000000000000 = 0x0 ++fmuld 0x0 0xbff0000000000000 = 0x8000000000000000 ++fmuld 0x0 0x3fb999999999999a = 0x0 ++fmuld 0x0 0xbfb999999999999a = 0x8000000000000000 ++fmuld 0x0 0x3fc999999999999a = 0x0 ++fmuld 0x0 0xbfc999999999999a = 0x8000000000000000 ++fmuld 0x0 0x4008000000000000 = 0x0 ++fmuld 0x0 0xc008000000000000 = 0x8000000000000000 ++fmuld 0x0 0x4014000000000000 = 0x0 ++fmuld 0x0 0xc014000000000000 = 0x8000000000000000 ++fmuld 0x0 0x4197d78400000000 = 0x0 ++fmuld 0x0 0xc197d78400000000 = 0x8000000000000000 ++fmuld 0x8000000000000000 0x0 = 0x8000000000000000 ++fmuld 0x8000000000000000 0x8000000000000000 = 0x0 ++fmuld 0x8000000000000000 0xf0debc9a78563412 = 0x0 ++fmuld 0x8000000000000000 0x123456789abcdef0 = 0x8000000000000000 ++fmuld 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fmuld 0x8000000000000000 0xbff0000000000000 = 0x0 ++fmuld 0x8000000000000000 0x3fb999999999999a = 0x8000000000000000 ++fmuld 0x8000000000000000 0xbfb999999999999a = 0x0 ++fmuld 0x8000000000000000 0x3fc999999999999a = 0x8000000000000000 ++fmuld 0x8000000000000000 0xbfc999999999999a = 0x0 ++fmuld 0x8000000000000000 0x4008000000000000 = 0x8000000000000000 ++fmuld 0x8000000000000000 0xc008000000000000 = 0x0 ++fmuld 0x8000000000000000 0x4014000000000000 = 0x8000000000000000 ++fmuld 0x8000000000000000 0xc014000000000000 = 0x0 ++fmuld 0x8000000000000000 0x4197d78400000000 = 0x8000000000000000 ++fmuld 0x8000000000000000 0xc197d78400000000 = 0x0 ++fmuld 0xf0debc9a78563412 0x0 = 0x8000000000000000 ++fmuld 0xf0debc9a78563412 0x8000000000000000 = 0x0 ++fmuld 0xf0debc9a78563412 0xf0debc9a78563412 = 0x7ff0000000000000 ++fmuld 0xf0debc9a78563412 0x123456789abcdef0 = 0xc32388ef423d9d0c ++fmuld 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0debc9a78563412 ++fmuld 0xf0debc9a78563412 0xbff0000000000000 = 0x70debc9a78563412 ++fmuld 0xf0debc9a78563412 0x3fb999999999999a = 0xf0a896e1f9de900f ++fmuld 0xf0debc9a78563412 0xbfb999999999999a = 0x70a896e1f9de900f ++fmuld 0xf0debc9a78563412 0x3fc999999999999a = 0xf0b896e1f9de900f ++fmuld 0xf0debc9a78563412 0xbfc999999999999a = 0x70b896e1f9de900f ++fmuld 0xf0debc9a78563412 0x4008000000000000 = 0xf0f70d73da40a70e ++fmuld 0xf0debc9a78563412 0xc008000000000000 = 0x70f70d73da40a70e ++fmuld 0xf0debc9a78563412 0x4014000000000000 = 0xf10335e08b35e08b ++fmuld 0xf0debc9a78563412 0xc014000000000000 = 0x710335e08b35e08b ++fmuld 0xf0debc9a78563412 0x4197d78400000000 = 0xf286e690fe53a8fe ++fmuld 0xf0debc9a78563412 0xc197d78400000000 = 0x7286e690fe53a8fe ++fmuld 0x123456789abcdef0 0x0 = 0x0 ++fmuld 0x123456789abcdef0 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x123456789abcdef0 0xf0debc9a78563412 = 0xc32388ef423d9d0c ++fmuld 0x123456789abcdef0 0x123456789abcdef0 = 0x0 ++fmuld 0x123456789abcdef0 0x3ff0000000000000 = 0x123456789abcdef0 ++fmuld 0x123456789abcdef0 0xbff0000000000000 = 0x923456789abcdef0 ++fmuld 0x123456789abcdef0 0x3fb999999999999a = 0x1200452d489718c0 ++fmuld 0x123456789abcdef0 0xbfb999999999999a = 0x9200452d489718c0 ++fmuld 0x123456789abcdef0 0x3fc999999999999a = 0x1210452d489718c0 ++fmuld 0x123456789abcdef0 0xbfc999999999999a = 0x9210452d489718c0 ++fmuld 0x123456789abcdef0 0x4008000000000000 = 0x124e81b4e81b4e68 ++fmuld 0x123456789abcdef0 0xc008000000000000 = 0x924e81b4e81b4e68 ++fmuld 0x123456789abcdef0 0x4014000000000000 = 0x12596c16c16c16ac ++fmuld 0x123456789abcdef0 0xc014000000000000 = 0x92596c16c16c16ac ++fmuld 0x123456789abcdef0 0x4197d78400000000 = 0x13de4e3f1c71c703 ++fmuld 0x123456789abcdef0 0xc197d78400000000 = 0x93de4e3f1c71c703 ++fmuld 0x3ff0000000000000 0x0 = 0x0 ++fmuld 0x3ff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmuld 0x3ff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fmuld 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fmuld 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmuld 0x3ff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fmuld 0x3ff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fmuld 0x3ff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fmuld 0x3ff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fmuld 0x3ff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fmuld 0x3ff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fmuld 0x3ff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fmuld 0x3ff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fmuld 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmuld 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fmuld 0xbff0000000000000 0x0 = 0x8000000000000000 ++fmuld 0xbff0000000000000 0x8000000000000000 = 0x0 ++fmuld 0xbff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmuld 0xbff0000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fmuld 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fmuld 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmuld 0xbff0000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fmuld 0xbff0000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fmuld 0xbff0000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fmuld 0xbff0000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fmuld 0xbff0000000000000 0x4008000000000000 = 0xc008000000000000 ++fmuld 0xbff0000000000000 0xc008000000000000 = 0x4008000000000000 ++fmuld 0xbff0000000000000 0x4014000000000000 = 0xc014000000000000 ++fmuld 0xbff0000000000000 0xc014000000000000 = 0x4014000000000000 ++fmuld 0xbff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmuld 0xbff0000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fmuld 0x3fb999999999999a 0x0 = 0x0 ++fmuld 0x3fb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0a896e1f9de900f ++fmuld 0x3fb999999999999a 0x123456789abcdef0 = 0x1200452d489718c0 ++fmuld 0x3fb999999999999a 0x3ff0000000000000 = 0x3fb999999999999a ++fmuld 0x3fb999999999999a 0xbff0000000000000 = 0xbfb999999999999a ++fmuld 0x3fb999999999999a 0x3fb999999999999a = 0x3f847ae147ae147c ++fmuld 0x3fb999999999999a 0xbfb999999999999a = 0xbf847ae147ae147c ++fmuld 0x3fb999999999999a 0x3fc999999999999a = 0x3f947ae147ae147c ++fmuld 0x3fb999999999999a 0xbfc999999999999a = 0xbf947ae147ae147c ++fmuld 0x3fb999999999999a 0x4008000000000000 = 0x3fd3333333333334 ++fmuld 0x3fb999999999999a 0xc008000000000000 = 0xbfd3333333333334 ++fmuld 0x3fb999999999999a 0x4014000000000000 = 0x3fe0000000000000 ++fmuld 0x3fb999999999999a 0xc014000000000000 = 0xbfe0000000000000 ++fmuld 0x3fb999999999999a 0x4197d78400000000 = 0x416312d000000000 ++fmuld 0x3fb999999999999a 0xc197d78400000000 = 0xc16312d000000000 ++fmuld 0xbfb999999999999a 0x0 = 0x8000000000000000 ++fmuld 0xbfb999999999999a 0x8000000000000000 = 0x0 ++fmuld 0xbfb999999999999a 0xf0debc9a78563412 = 0x70a896e1f9de900f ++fmuld 0xbfb999999999999a 0x123456789abcdef0 = 0x9200452d489718c0 ++fmuld 0xbfb999999999999a 0x3ff0000000000000 = 0xbfb999999999999a ++fmuld 0xbfb999999999999a 0xbff0000000000000 = 0x3fb999999999999a ++fmuld 0xbfb999999999999a 0x3fb999999999999a = 0xbf847ae147ae147c ++fmuld 0xbfb999999999999a 0xbfb999999999999a = 0x3f847ae147ae147c ++fmuld 0xbfb999999999999a 0x3fc999999999999a = 0xbf947ae147ae147c ++fmuld 0xbfb999999999999a 0xbfc999999999999a = 0x3f947ae147ae147c ++fmuld 0xbfb999999999999a 0x4008000000000000 = 0xbfd3333333333334 ++fmuld 0xbfb999999999999a 0xc008000000000000 = 0x3fd3333333333334 ++fmuld 0xbfb999999999999a 0x4014000000000000 = 0xbfe0000000000000 ++fmuld 0xbfb999999999999a 0xc014000000000000 = 0x3fe0000000000000 ++fmuld 0xbfb999999999999a 0x4197d78400000000 = 0xc16312d000000000 ++fmuld 0xbfb999999999999a 0xc197d78400000000 = 0x416312d000000000 ++fmuld 0x3fc999999999999a 0x0 = 0x0 ++fmuld 0x3fc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0b896e1f9de900f ++fmuld 0x3fc999999999999a 0x123456789abcdef0 = 0x1210452d489718c0 ++fmuld 0x3fc999999999999a 0x3ff0000000000000 = 0x3fc999999999999a ++fmuld 0x3fc999999999999a 0xbff0000000000000 = 0xbfc999999999999a ++fmuld 0x3fc999999999999a 0x3fb999999999999a = 0x3f947ae147ae147c ++fmuld 0x3fc999999999999a 0xbfb999999999999a = 0xbf947ae147ae147c ++fmuld 0x3fc999999999999a 0x3fc999999999999a = 0x3fa47ae147ae147c ++fmuld 0x3fc999999999999a 0xbfc999999999999a = 0xbfa47ae147ae147c ++fmuld 0x3fc999999999999a 0x4008000000000000 = 0x3fe3333333333334 ++fmuld 0x3fc999999999999a 0xc008000000000000 = 0xbfe3333333333334 ++fmuld 0x3fc999999999999a 0x4014000000000000 = 0x3ff0000000000000 ++fmuld 0x3fc999999999999a 0xc014000000000000 = 0xbff0000000000000 ++fmuld 0x3fc999999999999a 0x4197d78400000000 = 0x417312d000000000 ++fmuld 0x3fc999999999999a 0xc197d78400000000 = 0xc17312d000000000 ++fmuld 0xbfc999999999999a 0x0 = 0x8000000000000000 ++fmuld 0xbfc999999999999a 0x8000000000000000 = 0x0 ++fmuld 0xbfc999999999999a 0xf0debc9a78563412 = 0x70b896e1f9de900f ++fmuld 0xbfc999999999999a 0x123456789abcdef0 = 0x9210452d489718c0 ++fmuld 0xbfc999999999999a 0x3ff0000000000000 = 0xbfc999999999999a ++fmuld 0xbfc999999999999a 0xbff0000000000000 = 0x3fc999999999999a ++fmuld 0xbfc999999999999a 0x3fb999999999999a = 0xbf947ae147ae147c ++fmuld 0xbfc999999999999a 0xbfb999999999999a = 0x3f947ae147ae147c ++fmuld 0xbfc999999999999a 0x3fc999999999999a = 0xbfa47ae147ae147c ++fmuld 0xbfc999999999999a 0xbfc999999999999a = 0x3fa47ae147ae147c ++fmuld 0xbfc999999999999a 0x4008000000000000 = 0xbfe3333333333334 ++fmuld 0xbfc999999999999a 0xc008000000000000 = 0x3fe3333333333334 ++fmuld 0xbfc999999999999a 0x4014000000000000 = 0xbff0000000000000 ++fmuld 0xbfc999999999999a 0xc014000000000000 = 0x3ff0000000000000 ++fmuld 0xbfc999999999999a 0x4197d78400000000 = 0xc17312d000000000 ++fmuld 0xbfc999999999999a 0xc197d78400000000 = 0x417312d000000000 ++fmuld 0x4008000000000000 0x0 = 0x0 ++fmuld 0x4008000000000000 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x4008000000000000 0xf0debc9a78563412 = 0xf0f70d73da40a70e ++fmuld 0x4008000000000000 0x123456789abcdef0 = 0x124e81b4e81b4e68 ++fmuld 0x4008000000000000 0x3ff0000000000000 = 0x4008000000000000 ++fmuld 0x4008000000000000 0xbff0000000000000 = 0xc008000000000000 ++fmuld 0x4008000000000000 0x3fb999999999999a = 0x3fd3333333333334 ++fmuld 0x4008000000000000 0xbfb999999999999a = 0xbfd3333333333334 ++fmuld 0x4008000000000000 0x3fc999999999999a = 0x3fe3333333333334 ++fmuld 0x4008000000000000 0xbfc999999999999a = 0xbfe3333333333334 ++fmuld 0x4008000000000000 0x4008000000000000 = 0x4022000000000000 ++fmuld 0x4008000000000000 0xc008000000000000 = 0xc022000000000000 ++fmuld 0x4008000000000000 0x4014000000000000 = 0x402e000000000000 ++fmuld 0x4008000000000000 0xc014000000000000 = 0xc02e000000000000 ++fmuld 0x4008000000000000 0x4197d78400000000 = 0x41b1e1a300000000 ++fmuld 0x4008000000000000 0xc197d78400000000 = 0xc1b1e1a300000000 ++fmuld 0xc008000000000000 0x0 = 0x8000000000000000 ++fmuld 0xc008000000000000 0x8000000000000000 = 0x0 ++fmuld 0xc008000000000000 0xf0debc9a78563412 = 0x70f70d73da40a70e ++fmuld 0xc008000000000000 0x123456789abcdef0 = 0x924e81b4e81b4e68 ++fmuld 0xc008000000000000 0x3ff0000000000000 = 0xc008000000000000 ++fmuld 0xc008000000000000 0xbff0000000000000 = 0x4008000000000000 ++fmuld 0xc008000000000000 0x3fb999999999999a = 0xbfd3333333333334 ++fmuld 0xc008000000000000 0xbfb999999999999a = 0x3fd3333333333334 ++fmuld 0xc008000000000000 0x3fc999999999999a = 0xbfe3333333333334 ++fmuld 0xc008000000000000 0xbfc999999999999a = 0x3fe3333333333334 ++fmuld 0xc008000000000000 0x4008000000000000 = 0xc022000000000000 ++fmuld 0xc008000000000000 0xc008000000000000 = 0x4022000000000000 ++fmuld 0xc008000000000000 0x4014000000000000 = 0xc02e000000000000 ++fmuld 0xc008000000000000 0xc014000000000000 = 0x402e000000000000 ++fmuld 0xc008000000000000 0x4197d78400000000 = 0xc1b1e1a300000000 ++fmuld 0xc008000000000000 0xc197d78400000000 = 0x41b1e1a300000000 ++fmuld 0x4014000000000000 0x0 = 0x0 ++fmuld 0x4014000000000000 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x4014000000000000 0xf0debc9a78563412 = 0xf10335e08b35e08b ++fmuld 0x4014000000000000 0x123456789abcdef0 = 0x12596c16c16c16ac ++fmuld 0x4014000000000000 0x3ff0000000000000 = 0x4014000000000000 ++fmuld 0x4014000000000000 0xbff0000000000000 = 0xc014000000000000 ++fmuld 0x4014000000000000 0x3fb999999999999a = 0x3fe0000000000000 ++fmuld 0x4014000000000000 0xbfb999999999999a = 0xbfe0000000000000 ++fmuld 0x4014000000000000 0x3fc999999999999a = 0x3ff0000000000000 ++fmuld 0x4014000000000000 0xbfc999999999999a = 0xbff0000000000000 ++fmuld 0x4014000000000000 0x4008000000000000 = 0x402e000000000000 ++fmuld 0x4014000000000000 0xc008000000000000 = 0xc02e000000000000 ++fmuld 0x4014000000000000 0x4014000000000000 = 0x4039000000000000 ++fmuld 0x4014000000000000 0xc014000000000000 = 0xc039000000000000 ++fmuld 0x4014000000000000 0x4197d78400000000 = 0x41bdcd6500000000 ++fmuld 0x4014000000000000 0xc197d78400000000 = 0xc1bdcd6500000000 ++fmuld 0xc014000000000000 0x0 = 0x8000000000000000 ++fmuld 0xc014000000000000 0x8000000000000000 = 0x0 ++fmuld 0xc014000000000000 0xf0debc9a78563412 = 0x710335e08b35e08b ++fmuld 0xc014000000000000 0x123456789abcdef0 = 0x92596c16c16c16ac ++fmuld 0xc014000000000000 0x3ff0000000000000 = 0xc014000000000000 ++fmuld 0xc014000000000000 0xbff0000000000000 = 0x4014000000000000 ++fmuld 0xc014000000000000 0x3fb999999999999a = 0xbfe0000000000000 ++fmuld 0xc014000000000000 0xbfb999999999999a = 0x3fe0000000000000 ++fmuld 0xc014000000000000 0x3fc999999999999a = 0xbff0000000000000 ++fmuld 0xc014000000000000 0xbfc999999999999a = 0x3ff0000000000000 ++fmuld 0xc014000000000000 0x4008000000000000 = 0xc02e000000000000 ++fmuld 0xc014000000000000 0xc008000000000000 = 0x402e000000000000 ++fmuld 0xc014000000000000 0x4014000000000000 = 0xc039000000000000 ++fmuld 0xc014000000000000 0xc014000000000000 = 0x4039000000000000 ++fmuld 0xc014000000000000 0x4197d78400000000 = 0xc1bdcd6500000000 ++fmuld 0xc014000000000000 0xc197d78400000000 = 0x41bdcd6500000000 ++fmuld 0x4197d78400000000 0x0 = 0x0 ++fmuld 0x4197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fmuld 0x4197d78400000000 0xf0debc9a78563412 = 0xf286e690fe53a8fe ++fmuld 0x4197d78400000000 0x123456789abcdef0 = 0x13de4e3f1c71c703 ++fmuld 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fmuld 0x4197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fmuld 0x4197d78400000000 0x3fb999999999999a = 0x416312d000000000 ++fmuld 0x4197d78400000000 0xbfb999999999999a = 0xc16312d000000000 ++fmuld 0x4197d78400000000 0x3fc999999999999a = 0x417312d000000000 ++fmuld 0x4197d78400000000 0xbfc999999999999a = 0xc17312d000000000 ++fmuld 0x4197d78400000000 0x4008000000000000 = 0x41b1e1a300000000 ++fmuld 0x4197d78400000000 0xc008000000000000 = 0xc1b1e1a300000000 ++fmuld 0x4197d78400000000 0x4014000000000000 = 0x41bdcd6500000000 ++fmuld 0x4197d78400000000 0xc014000000000000 = 0xc1bdcd6500000000 ++fmuld 0x4197d78400000000 0x4197d78400000000 = 0x4341c37937e08000 ++fmuld 0x4197d78400000000 0xc197d78400000000 = 0xc341c37937e08000 ++fmuld 0xc197d78400000000 0x0 = 0x8000000000000000 ++fmuld 0xc197d78400000000 0x8000000000000000 = 0x0 ++fmuld 0xc197d78400000000 0xf0debc9a78563412 = 0x7286e690fe53a8fe ++fmuld 0xc197d78400000000 0x123456789abcdef0 = 0x93de4e3f1c71c703 ++fmuld 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fmuld 0xc197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fmuld 0xc197d78400000000 0x3fb999999999999a = 0xc16312d000000000 ++fmuld 0xc197d78400000000 0xbfb999999999999a = 0x416312d000000000 ++fmuld 0xc197d78400000000 0x3fc999999999999a = 0xc17312d000000000 ++fmuld 0xc197d78400000000 0xbfc999999999999a = 0x417312d000000000 ++fmuld 0xc197d78400000000 0x4008000000000000 = 0xc1b1e1a300000000 ++fmuld 0xc197d78400000000 0xc008000000000000 = 0x41b1e1a300000000 ++fmuld 0xc197d78400000000 0x4014000000000000 = 0xc1bdcd6500000000 ++fmuld 0xc197d78400000000 0xc014000000000000 = 0x41bdcd6500000000 ++fmuld 0xc197d78400000000 0x4197d78400000000 = 0xc341c37937e08000 ++fmuld 0xc197d78400000000 0xc197d78400000000 = 0x4341c37937e08000 ++=== Running test on fdivs=== ++fdivs 0x0 0x0 = 0xfff8000000000000 ++fdivs 0x0 0x8000000000000000 = 0xfff8000000000000 ++fdivs 0x0 0x3ff0000000000000 = 0x0 ++fdivs 0x0 0xbff0000000000000 = 0x8000000000000000 ++fdivs 0x0 0x3fb99999a0000000 = 0x0 ++fdivs 0x0 0xbfb99999a0000000 = 0x8000000000000000 ++fdivs 0x0 0x3fc99999a0000000 = 0x0 ++fdivs 0x0 0xbfc99999a0000000 = 0x8000000000000000 ++fdivs 0x0 0x4008000000000000 = 0x0 ++fdivs 0x0 0xc008000000000000 = 0x8000000000000000 ++fdivs 0x0 0x4014000000000000 = 0x0 ++fdivs 0x0 0xc014000000000000 = 0x8000000000000000 ++fdivs 0x0 0x4197d78400000000 = 0x0 ++fdivs 0x0 0xc197d78400000000 = 0x8000000000000000 ++fdivs 0x8000000000000000 0x0 = 0xfff8000000000000 ++fdivs 0x8000000000000000 0x8000000000000000 = 0xfff8000000000000 ++fdivs 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fdivs 0x8000000000000000 0xbff0000000000000 = 0x0 ++fdivs 0x8000000000000000 0x3fb99999a0000000 = 0x8000000000000000 ++fdivs 0x8000000000000000 0xbfb99999a0000000 = 0x0 ++fdivs 0x8000000000000000 0x3fc99999a0000000 = 0x8000000000000000 ++fdivs 0x8000000000000000 0xbfc99999a0000000 = 0x0 ++fdivs 0x8000000000000000 0x4008000000000000 = 0x8000000000000000 ++fdivs 0x8000000000000000 0xc008000000000000 = 0x0 ++fdivs 0x8000000000000000 0x4014000000000000 = 0x8000000000000000 ++fdivs 0x8000000000000000 0xc014000000000000 = 0x0 ++fdivs 0x8000000000000000 0x4197d78400000000 = 0x8000000000000000 ++fdivs 0x8000000000000000 0xc197d78400000000 = 0x0 ++fdivs 0x3ff0000000000000 0x0 = 0x7ff0000000000000 ++fdivs 0x3ff0000000000000 0x8000000000000000 = 0xfff0000000000000 ++fdivs 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fdivs 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fdivs 0x3ff0000000000000 0x3fb99999a0000000 = 0x4024000000000000 ++fdivs 0x3ff0000000000000 0xbfb99999a0000000 = 0xc024000000000000 ++fdivs 0x3ff0000000000000 0x3fc99999a0000000 = 0x4014000000000000 ++fdivs 0x3ff0000000000000 0xbfc99999a0000000 = 0xc014000000000000 ++fdivs 0x3ff0000000000000 0x4008000000000000 = 0x3fd5555560000000 ++fdivs 0x3ff0000000000000 0xc008000000000000 = 0xbfd5555560000000 ++fdivs 0x3ff0000000000000 0x4014000000000000 = 0x3fc99999a0000000 ++fdivs 0x3ff0000000000000 0xc014000000000000 = 0xbfc99999a0000000 ++fdivs 0x3ff0000000000000 0x4197d78400000000 = 0x3e45798ee0000000 ++fdivs 0x3ff0000000000000 0xc197d78400000000 = 0xbe45798ee0000000 ++fdivs 0xbff0000000000000 0x0 = 0xfff0000000000000 ++fdivs 0xbff0000000000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivs 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fdivs 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fdivs 0xbff0000000000000 0x3fb99999a0000000 = 0xc024000000000000 ++fdivs 0xbff0000000000000 0xbfb99999a0000000 = 0x4024000000000000 ++fdivs 0xbff0000000000000 0x3fc99999a0000000 = 0xc014000000000000 ++fdivs 0xbff0000000000000 0xbfc99999a0000000 = 0x4014000000000000 ++fdivs 0xbff0000000000000 0x4008000000000000 = 0xbfd5555560000000 ++fdivs 0xbff0000000000000 0xc008000000000000 = 0x3fd5555560000000 ++fdivs 0xbff0000000000000 0x4014000000000000 = 0xbfc99999a0000000 ++fdivs 0xbff0000000000000 0xc014000000000000 = 0x3fc99999a0000000 ++fdivs 0xbff0000000000000 0x4197d78400000000 = 0xbe45798ee0000000 ++fdivs 0xbff0000000000000 0xc197d78400000000 = 0x3e45798ee0000000 ++fdivs 0x3fb99999a0000000 0x0 = 0x7ff0000000000000 ++fdivs 0x3fb99999a0000000 0x8000000000000000 = 0xfff0000000000000 ++fdivs 0x3fb99999a0000000 0x3ff0000000000000 = 0x3fb99999a0000000 ++fdivs 0x3fb99999a0000000 0xbff0000000000000 = 0xbfb99999a0000000 ++fdivs 0x3fb99999a0000000 0x3fb99999a0000000 = 0x3ff0000000000000 ++fdivs 0x3fb99999a0000000 0xbfb99999a0000000 = 0xbff0000000000000 ++fdivs 0x3fb99999a0000000 0x3fc99999a0000000 = 0x3fe0000000000000 ++fdivs 0x3fb99999a0000000 0xbfc99999a0000000 = 0xbfe0000000000000 ++fdivs 0x3fb99999a0000000 0x4008000000000000 = 0x3fa1111120000000 ++fdivs 0x3fb99999a0000000 0xc008000000000000 = 0xbfa1111120000000 ++fdivs 0x3fb99999a0000000 0x4014000000000000 = 0x3f947ae140000000 ++fdivs 0x3fb99999a0000000 0xc014000000000000 = 0xbf947ae140000000 ++fdivs 0x3fb99999a0000000 0x4197d78400000000 = 0x3e112e0be0000000 ++fdivs 0x3fb99999a0000000 0xc197d78400000000 = 0xbe112e0be0000000 ++fdivs 0xbfb99999a0000000 0x0 = 0xfff0000000000000 ++fdivs 0xbfb99999a0000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivs 0xbfb99999a0000000 0x3ff0000000000000 = 0xbfb99999a0000000 ++fdivs 0xbfb99999a0000000 0xbff0000000000000 = 0x3fb99999a0000000 ++fdivs 0xbfb99999a0000000 0x3fb99999a0000000 = 0xbff0000000000000 ++fdivs 0xbfb99999a0000000 0xbfb99999a0000000 = 0x3ff0000000000000 ++fdivs 0xbfb99999a0000000 0x3fc99999a0000000 = 0xbfe0000000000000 ++fdivs 0xbfb99999a0000000 0xbfc99999a0000000 = 0x3fe0000000000000 ++fdivs 0xbfb99999a0000000 0x4008000000000000 = 0xbfa1111120000000 ++fdivs 0xbfb99999a0000000 0xc008000000000000 = 0x3fa1111120000000 ++fdivs 0xbfb99999a0000000 0x4014000000000000 = 0xbf947ae140000000 ++fdivs 0xbfb99999a0000000 0xc014000000000000 = 0x3f947ae140000000 ++fdivs 0xbfb99999a0000000 0x4197d78400000000 = 0xbe112e0be0000000 ++fdivs 0xbfb99999a0000000 0xc197d78400000000 = 0x3e112e0be0000000 ++fdivs 0x3fc99999a0000000 0x0 = 0x7ff0000000000000 ++fdivs 0x3fc99999a0000000 0x8000000000000000 = 0xfff0000000000000 ++fdivs 0x3fc99999a0000000 0x3ff0000000000000 = 0x3fc99999a0000000 ++fdivs 0x3fc99999a0000000 0xbff0000000000000 = 0xbfc99999a0000000 ++fdivs 0x3fc99999a0000000 0x3fb99999a0000000 = 0x4000000000000000 ++fdivs 0x3fc99999a0000000 0xbfb99999a0000000 = 0xc000000000000000 ++fdivs 0x3fc99999a0000000 0x3fc99999a0000000 = 0x3ff0000000000000 ++fdivs 0x3fc99999a0000000 0xbfc99999a0000000 = 0xbff0000000000000 ++fdivs 0x3fc99999a0000000 0x4008000000000000 = 0x3fb1111120000000 ++fdivs 0x3fc99999a0000000 0xc008000000000000 = 0xbfb1111120000000 ++fdivs 0x3fc99999a0000000 0x4014000000000000 = 0x3fa47ae140000000 ++fdivs 0x3fc99999a0000000 0xc014000000000000 = 0xbfa47ae140000000 ++fdivs 0x3fc99999a0000000 0x4197d78400000000 = 0x3e212e0be0000000 ++fdivs 0x3fc99999a0000000 0xc197d78400000000 = 0xbe212e0be0000000 ++fdivs 0xbfc99999a0000000 0x0 = 0xfff0000000000000 ++fdivs 0xbfc99999a0000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivs 0xbfc99999a0000000 0x3ff0000000000000 = 0xbfc99999a0000000 ++fdivs 0xbfc99999a0000000 0xbff0000000000000 = 0x3fc99999a0000000 ++fdivs 0xbfc99999a0000000 0x3fb99999a0000000 = 0xc000000000000000 ++fdivs 0xbfc99999a0000000 0xbfb99999a0000000 = 0x4000000000000000 ++fdivs 0xbfc99999a0000000 0x3fc99999a0000000 = 0xbff0000000000000 ++fdivs 0xbfc99999a0000000 0xbfc99999a0000000 = 0x3ff0000000000000 ++fdivs 0xbfc99999a0000000 0x4008000000000000 = 0xbfb1111120000000 ++fdivs 0xbfc99999a0000000 0xc008000000000000 = 0x3fb1111120000000 ++fdivs 0xbfc99999a0000000 0x4014000000000000 = 0xbfa47ae140000000 ++fdivs 0xbfc99999a0000000 0xc014000000000000 = 0x3fa47ae140000000 ++fdivs 0xbfc99999a0000000 0x4197d78400000000 = 0xbe212e0be0000000 ++fdivs 0xbfc99999a0000000 0xc197d78400000000 = 0x3e212e0be0000000 ++fdivs 0x4008000000000000 0x0 = 0x7ff0000000000000 ++fdivs 0x4008000000000000 0x8000000000000000 = 0xfff0000000000000 ++fdivs 0x4008000000000000 0x3ff0000000000000 = 0x4008000000000000 ++fdivs 0x4008000000000000 0xbff0000000000000 = 0xc008000000000000 ++fdivs 0x4008000000000000 0x3fb99999a0000000 = 0x403e000000000000 ++fdivs 0x4008000000000000 0xbfb99999a0000000 = 0xc03e000000000000 ++fdivs 0x4008000000000000 0x3fc99999a0000000 = 0x402e000000000000 ++fdivs 0x4008000000000000 0xbfc99999a0000000 = 0xc02e000000000000 ++fdivs 0x4008000000000000 0x4008000000000000 = 0x3ff0000000000000 ++fdivs 0x4008000000000000 0xc008000000000000 = 0xbff0000000000000 ++fdivs 0x4008000000000000 0x4014000000000000 = 0x3fe3333340000000 ++fdivs 0x4008000000000000 0xc014000000000000 = 0xbfe3333340000000 ++fdivs 0x4008000000000000 0x4197d78400000000 = 0x3e601b2b20000000 ++fdivs 0x4008000000000000 0xc197d78400000000 = 0xbe601b2b20000000 ++fdivs 0xc008000000000000 0x0 = 0xfff0000000000000 ++fdivs 0xc008000000000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivs 0xc008000000000000 0x3ff0000000000000 = 0xc008000000000000 ++fdivs 0xc008000000000000 0xbff0000000000000 = 0x4008000000000000 ++fdivs 0xc008000000000000 0x3fb99999a0000000 = 0xc03e000000000000 ++fdivs 0xc008000000000000 0xbfb99999a0000000 = 0x403e000000000000 ++fdivs 0xc008000000000000 0x3fc99999a0000000 = 0xc02e000000000000 ++fdivs 0xc008000000000000 0xbfc99999a0000000 = 0x402e000000000000 ++fdivs 0xc008000000000000 0x4008000000000000 = 0xbff0000000000000 ++fdivs 0xc008000000000000 0xc008000000000000 = 0x3ff0000000000000 ++fdivs 0xc008000000000000 0x4014000000000000 = 0xbfe3333340000000 ++fdivs 0xc008000000000000 0xc014000000000000 = 0x3fe3333340000000 ++fdivs 0xc008000000000000 0x4197d78400000000 = 0xbe601b2b20000000 ++fdivs 0xc008000000000000 0xc197d78400000000 = 0x3e601b2b20000000 ++fdivs 0x4014000000000000 0x0 = 0x7ff0000000000000 ++fdivs 0x4014000000000000 0x8000000000000000 = 0xfff0000000000000 ++fdivs 0x4014000000000000 0x3ff0000000000000 = 0x4014000000000000 ++fdivs 0x4014000000000000 0xbff0000000000000 = 0xc014000000000000 ++fdivs 0x4014000000000000 0x3fb99999a0000000 = 0x4049000000000000 ++fdivs 0x4014000000000000 0xbfb99999a0000000 = 0xc049000000000000 ++fdivs 0x4014000000000000 0x3fc99999a0000000 = 0x4039000000000000 ++fdivs 0x4014000000000000 0xbfc99999a0000000 = 0xc039000000000000 ++fdivs 0x4014000000000000 0x4008000000000000 = 0x3ffaaaaaa0000000 ++fdivs 0x4014000000000000 0xc008000000000000 = 0xbffaaaaaa0000000 ++fdivs 0x4014000000000000 0x4014000000000000 = 0x3ff0000000000000 ++fdivs 0x4014000000000000 0xc014000000000000 = 0xbff0000000000000 ++fdivs 0x4014000000000000 0x4197d78400000000 = 0x3e6ad7f2a0000000 ++fdivs 0x4014000000000000 0xc197d78400000000 = 0xbe6ad7f2a0000000 ++fdivs 0xc014000000000000 0x0 = 0xfff0000000000000 ++fdivs 0xc014000000000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivs 0xc014000000000000 0x3ff0000000000000 = 0xc014000000000000 ++fdivs 0xc014000000000000 0xbff0000000000000 = 0x4014000000000000 ++fdivs 0xc014000000000000 0x3fb99999a0000000 = 0xc049000000000000 ++fdivs 0xc014000000000000 0xbfb99999a0000000 = 0x4049000000000000 ++fdivs 0xc014000000000000 0x3fc99999a0000000 = 0xc039000000000000 ++fdivs 0xc014000000000000 0xbfc99999a0000000 = 0x4039000000000000 ++fdivs 0xc014000000000000 0x4008000000000000 = 0xbffaaaaaa0000000 ++fdivs 0xc014000000000000 0xc008000000000000 = 0x3ffaaaaaa0000000 ++fdivs 0xc014000000000000 0x4014000000000000 = 0xbff0000000000000 ++fdivs 0xc014000000000000 0xc014000000000000 = 0x3ff0000000000000 ++fdivs 0xc014000000000000 0x4197d78400000000 = 0xbe6ad7f2a0000000 ++fdivs 0xc014000000000000 0xc197d78400000000 = 0x3e6ad7f2a0000000 ++fdivs 0x4197d78400000000 0x0 = 0x7ff0000000000000 ++fdivs 0x4197d78400000000 0x8000000000000000 = 0xfff0000000000000 ++fdivs 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fdivs 0x4197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fdivs 0x4197d78400000000 0x3fb99999a0000000 = 0x41cdcd6500000000 ++fdivs 0x4197d78400000000 0xbfb99999a0000000 = 0xc1cdcd6500000000 ++fdivs 0x4197d78400000000 0x3fc99999a0000000 = 0x41bdcd6500000000 ++fdivs 0x4197d78400000000 0xbfc99999a0000000 = 0xc1bdcd6500000000 ++fdivs 0x4197d78400000000 0x4008000000000000 = 0x417fca0560000000 ++fdivs 0x4197d78400000000 0xc008000000000000 = 0xc17fca0560000000 ++fdivs 0x4197d78400000000 0x4014000000000000 = 0x417312d000000000 ++fdivs 0x4197d78400000000 0xc014000000000000 = 0xc17312d000000000 ++fdivs 0x4197d78400000000 0x4197d78400000000 = 0x3ff0000000000000 ++fdivs 0x4197d78400000000 0xc197d78400000000 = 0xbff0000000000000 ++fdivs 0xc197d78400000000 0x0 = 0xfff0000000000000 ++fdivs 0xc197d78400000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivs 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fdivs 0xc197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fdivs 0xc197d78400000000 0x3fb99999a0000000 = 0xc1cdcd6500000000 ++fdivs 0xc197d78400000000 0xbfb99999a0000000 = 0x41cdcd6500000000 ++fdivs 0xc197d78400000000 0x3fc99999a0000000 = 0xc1bdcd6500000000 ++fdivs 0xc197d78400000000 0xbfc99999a0000000 = 0x41bdcd6500000000 ++fdivs 0xc197d78400000000 0x4008000000000000 = 0xc17fca0560000000 ++fdivs 0xc197d78400000000 0xc008000000000000 = 0x417fca0560000000 ++fdivs 0xc197d78400000000 0x4014000000000000 = 0xc17312d000000000 ++fdivs 0xc197d78400000000 0xc014000000000000 = 0x417312d000000000 ++fdivs 0xc197d78400000000 0x4197d78400000000 = 0xbff0000000000000 ++fdivs 0xc197d78400000000 0xc197d78400000000 = 0x3ff0000000000000 ++=== Running test on fdivd=== ++fdivd 0x0 0x0 = 0xfff8000000000000 ++fdivd 0x0 0x8000000000000000 = 0xfff8000000000000 ++fdivd 0x0 0xf0debc9a78563412 = 0x8000000000000000 ++fdivd 0x0 0x123456789abcdef0 = 0x0 ++fdivd 0x0 0x3ff0000000000000 = 0x0 ++fdivd 0x0 0xbff0000000000000 = 0x8000000000000000 ++fdivd 0x0 0x3fb999999999999a = 0x0 ++fdivd 0x0 0xbfb999999999999a = 0x8000000000000000 ++fdivd 0x0 0x3fc999999999999a = 0x0 ++fdivd 0x0 0xbfc999999999999a = 0x8000000000000000 ++fdivd 0x0 0x4008000000000000 = 0x0 ++fdivd 0x0 0xc008000000000000 = 0x8000000000000000 ++fdivd 0x0 0x4014000000000000 = 0x0 ++fdivd 0x0 0xc014000000000000 = 0x8000000000000000 ++fdivd 0x0 0x4197d78400000000 = 0x0 ++fdivd 0x0 0xc197d78400000000 = 0x8000000000000000 ++fdivd 0x8000000000000000 0x0 = 0xfff8000000000000 ++fdivd 0x8000000000000000 0x8000000000000000 = 0xfff8000000000000 ++fdivd 0x8000000000000000 0xf0debc9a78563412 = 0x0 ++fdivd 0x8000000000000000 0x123456789abcdef0 = 0x8000000000000000 ++fdivd 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fdivd 0x8000000000000000 0xbff0000000000000 = 0x0 ++fdivd 0x8000000000000000 0x3fb999999999999a = 0x8000000000000000 ++fdivd 0x8000000000000000 0xbfb999999999999a = 0x0 ++fdivd 0x8000000000000000 0x3fc999999999999a = 0x8000000000000000 ++fdivd 0x8000000000000000 0xbfc999999999999a = 0x0 ++fdivd 0x8000000000000000 0x4008000000000000 = 0x8000000000000000 ++fdivd 0x8000000000000000 0xc008000000000000 = 0x0 ++fdivd 0x8000000000000000 0x4014000000000000 = 0x8000000000000000 ++fdivd 0x8000000000000000 0xc014000000000000 = 0x0 ++fdivd 0x8000000000000000 0x4197d78400000000 = 0x8000000000000000 ++fdivd 0x8000000000000000 0xc197d78400000000 = 0x0 ++fdivd 0xf0debc9a78563412 0x0 = 0xfff0000000000000 ++fdivd 0xf0debc9a78563412 0x8000000000000000 = 0x7ff0000000000000 ++fdivd 0xf0debc9a78563412 0xf0debc9a78563412 = 0x3ff0000000000000 ++fdivd 0xf0debc9a78563412 0x123456789abcdef0 = 0xfff0000000000000 ++fdivd 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0debc9a78563412 ++fdivd 0xf0debc9a78563412 0xbff0000000000000 = 0x70debc9a78563412 ++fdivd 0xf0debc9a78563412 0x3fb999999999999a = 0xf11335e08b35e08b ++fdivd 0xf0debc9a78563412 0xbfb999999999999a = 0x711335e08b35e08b ++fdivd 0xf0debc9a78563412 0x3fc999999999999a = 0xf10335e08b35e08b ++fdivd 0xf0debc9a78563412 0xbfc999999999999a = 0x710335e08b35e08b ++fdivd 0xf0debc9a78563412 0x4008000000000000 = 0xf0c47dbc5039780c ++fdivd 0xf0debc9a78563412 0xc008000000000000 = 0x70c47dbc5039780c ++fdivd 0xf0debc9a78563412 0x4014000000000000 = 0xf0b896e1f9de900e ++fdivd 0xf0debc9a78563412 0xc014000000000000 = 0x70b896e1f9de900e ++fdivd 0xf0debc9a78563412 0x4197d78400000000 = 0xef34a087c53fb2aa ++fdivd 0xf0debc9a78563412 0xc197d78400000000 = 0x6f34a087c53fb2aa ++fdivd 0x123456789abcdef0 0x0 = 0x7ff0000000000000 ++fdivd 0x123456789abcdef0 0x8000000000000000 = 0xfff0000000000000 ++fdivd 0x123456789abcdef0 0xf0debc9a78563412 = 0x8000000000000000 ++fdivd 0x123456789abcdef0 0x123456789abcdef0 = 0x3ff0000000000000 ++fdivd 0x123456789abcdef0 0x3ff0000000000000 = 0x123456789abcdef0 ++fdivd 0x123456789abcdef0 0xbff0000000000000 = 0x923456789abcdef0 ++fdivd 0x123456789abcdef0 0x3fb999999999999a = 0x12696c16c16c16ac ++fdivd 0x123456789abcdef0 0xbfb999999999999a = 0x92696c16c16c16ac ++fdivd 0x123456789abcdef0 0x3fc999999999999a = 0x12596c16c16c16ac ++fdivd 0x123456789abcdef0 0xbfc999999999999a = 0x92596c16c16c16ac ++fdivd 0x123456789abcdef0 0x4008000000000000 = 0x121b1df623a67e95 ++fdivd 0x123456789abcdef0 0xc008000000000000 = 0x921b1df623a67e95 ++fdivd 0x123456789abcdef0 0x4014000000000000 = 0x1210452d489718c0 ++fdivd 0x123456789abcdef0 0xc014000000000000 = 0x9210452d489718c0 ++fdivd 0x123456789abcdef0 0x4197d78400000000 = 0x108b4c01da1b936f ++fdivd 0x123456789abcdef0 0xc197d78400000000 = 0x908b4c01da1b936f ++fdivd 0x3ff0000000000000 0x0 = 0x7ff0000000000000 ++fdivd 0x3ff0000000000000 0x8000000000000000 = 0xfff0000000000000 ++fdivd 0x3ff0000000000000 0xf0debc9a78563412 = 0x8f00a85812f3e03a ++fdivd 0x3ff0000000000000 0x123456789abcdef0 = 0x6da92cc157b86456 ++fdivd 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fdivd 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fdivd 0x3ff0000000000000 0x3fb999999999999a = 0x4024000000000000 ++fdivd 0x3ff0000000000000 0xbfb999999999999a = 0xc024000000000000 ++fdivd 0x3ff0000000000000 0x3fc999999999999a = 0x4014000000000000 ++fdivd 0x3ff0000000000000 0xbfc999999999999a = 0xc014000000000000 ++fdivd 0x3ff0000000000000 0x4008000000000000 = 0x3fd5555555555555 ++fdivd 0x3ff0000000000000 0xc008000000000000 = 0xbfd5555555555555 ++fdivd 0x3ff0000000000000 0x4014000000000000 = 0x3fc999999999999a ++fdivd 0x3ff0000000000000 0xc014000000000000 = 0xbfc999999999999a ++fdivd 0x3ff0000000000000 0x4197d78400000000 = 0x3e45798ee2308c3a ++fdivd 0x3ff0000000000000 0xc197d78400000000 = 0xbe45798ee2308c3a ++fdivd 0xbff0000000000000 0x0 = 0xfff0000000000000 ++fdivd 0xbff0000000000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivd 0xbff0000000000000 0xf0debc9a78563412 = 0xf00a85812f3e03a ++fdivd 0xbff0000000000000 0x123456789abcdef0 = 0xeda92cc157b86456 ++fdivd 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fdivd 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fdivd 0xbff0000000000000 0x3fb999999999999a = 0xc024000000000000 ++fdivd 0xbff0000000000000 0xbfb999999999999a = 0x4024000000000000 ++fdivd 0xbff0000000000000 0x3fc999999999999a = 0xc014000000000000 ++fdivd 0xbff0000000000000 0xbfc999999999999a = 0x4014000000000000 ++fdivd 0xbff0000000000000 0x4008000000000000 = 0xbfd5555555555555 ++fdivd 0xbff0000000000000 0xc008000000000000 = 0x3fd5555555555555 ++fdivd 0xbff0000000000000 0x4014000000000000 = 0xbfc999999999999a ++fdivd 0xbff0000000000000 0xc014000000000000 = 0x3fc999999999999a ++fdivd 0xbff0000000000000 0x4197d78400000000 = 0xbe45798ee2308c3a ++fdivd 0xbff0000000000000 0xc197d78400000000 = 0x3e45798ee2308c3a ++fdivd 0x3fb999999999999a 0x0 = 0x7ff0000000000000 ++fdivd 0x3fb999999999999a 0x8000000000000000 = 0xfff0000000000000 ++fdivd 0x3fb999999999999a 0xf0debc9a78563412 = 0x8ecaa6f351863390 ++fdivd 0x3fb999999999999a 0x123456789abcdef0 = 0x6d7423cddfc6b6ab ++fdivd 0x3fb999999999999a 0x3ff0000000000000 = 0x3fb999999999999a ++fdivd 0x3fb999999999999a 0xbff0000000000000 = 0xbfb999999999999a ++fdivd 0x3fb999999999999a 0x3fb999999999999a = 0x3ff0000000000000 ++fdivd 0x3fb999999999999a 0xbfb999999999999a = 0xbff0000000000000 ++fdivd 0x3fb999999999999a 0x3fc999999999999a = 0x3fe0000000000000 ++fdivd 0x3fb999999999999a 0xbfc999999999999a = 0xbfe0000000000000 ++fdivd 0x3fb999999999999a 0x4008000000000000 = 0x3fa1111111111111 ++fdivd 0x3fb999999999999a 0xc008000000000000 = 0xbfa1111111111111 ++fdivd 0x3fb999999999999a 0x4014000000000000 = 0x3f947ae147ae147b ++fdivd 0x3fb999999999999a 0xc014000000000000 = 0xbf947ae147ae147b ++fdivd 0x3fb999999999999a 0x4197d78400000000 = 0x3e112e0be826d695 ++fdivd 0x3fb999999999999a 0xc197d78400000000 = 0xbe112e0be826d695 ++fdivd 0xbfb999999999999a 0x0 = 0xfff0000000000000 ++fdivd 0xbfb999999999999a 0x8000000000000000 = 0x7ff0000000000000 ++fdivd 0xbfb999999999999a 0xf0debc9a78563412 = 0xecaa6f351863390 ++fdivd 0xbfb999999999999a 0x123456789abcdef0 = 0xed7423cddfc6b6ab ++fdivd 0xbfb999999999999a 0x3ff0000000000000 = 0xbfb999999999999a ++fdivd 0xbfb999999999999a 0xbff0000000000000 = 0x3fb999999999999a ++fdivd 0xbfb999999999999a 0x3fb999999999999a = 0xbff0000000000000 ++fdivd 0xbfb999999999999a 0xbfb999999999999a = 0x3ff0000000000000 ++fdivd 0xbfb999999999999a 0x3fc999999999999a = 0xbfe0000000000000 ++fdivd 0xbfb999999999999a 0xbfc999999999999a = 0x3fe0000000000000 ++fdivd 0xbfb999999999999a 0x4008000000000000 = 0xbfa1111111111111 ++fdivd 0xbfb999999999999a 0xc008000000000000 = 0x3fa1111111111111 ++fdivd 0xbfb999999999999a 0x4014000000000000 = 0xbf947ae147ae147b ++fdivd 0xbfb999999999999a 0xc014000000000000 = 0x3f947ae147ae147b ++fdivd 0xbfb999999999999a 0x4197d78400000000 = 0xbe112e0be826d695 ++fdivd 0xbfb999999999999a 0xc197d78400000000 = 0x3e112e0be826d695 ++fdivd 0x3fc999999999999a 0x0 = 0x7ff0000000000000 ++fdivd 0x3fc999999999999a 0x8000000000000000 = 0xfff0000000000000 ++fdivd 0x3fc999999999999a 0xf0debc9a78563412 = 0x8edaa6f351863390 ++fdivd 0x3fc999999999999a 0x123456789abcdef0 = 0x6d8423cddfc6b6ab ++fdivd 0x3fc999999999999a 0x3ff0000000000000 = 0x3fc999999999999a ++fdivd 0x3fc999999999999a 0xbff0000000000000 = 0xbfc999999999999a ++fdivd 0x3fc999999999999a 0x3fb999999999999a = 0x4000000000000000 ++fdivd 0x3fc999999999999a 0xbfb999999999999a = 0xc000000000000000 ++fdivd 0x3fc999999999999a 0x3fc999999999999a = 0x3ff0000000000000 ++fdivd 0x3fc999999999999a 0xbfc999999999999a = 0xbff0000000000000 ++fdivd 0x3fc999999999999a 0x4008000000000000 = 0x3fb1111111111111 ++fdivd 0x3fc999999999999a 0xc008000000000000 = 0xbfb1111111111111 ++fdivd 0x3fc999999999999a 0x4014000000000000 = 0x3fa47ae147ae147b ++fdivd 0x3fc999999999999a 0xc014000000000000 = 0xbfa47ae147ae147b ++fdivd 0x3fc999999999999a 0x4197d78400000000 = 0x3e212e0be826d695 ++fdivd 0x3fc999999999999a 0xc197d78400000000 = 0xbe212e0be826d695 ++fdivd 0xbfc999999999999a 0x0 = 0xfff0000000000000 ++fdivd 0xbfc999999999999a 0x8000000000000000 = 0x7ff0000000000000 ++fdivd 0xbfc999999999999a 0xf0debc9a78563412 = 0xedaa6f351863390 ++fdivd 0xbfc999999999999a 0x123456789abcdef0 = 0xed8423cddfc6b6ab ++fdivd 0xbfc999999999999a 0x3ff0000000000000 = 0xbfc999999999999a ++fdivd 0xbfc999999999999a 0xbff0000000000000 = 0x3fc999999999999a ++fdivd 0xbfc999999999999a 0x3fb999999999999a = 0xc000000000000000 ++fdivd 0xbfc999999999999a 0xbfb999999999999a = 0x4000000000000000 ++fdivd 0xbfc999999999999a 0x3fc999999999999a = 0xbff0000000000000 ++fdivd 0xbfc999999999999a 0xbfc999999999999a = 0x3ff0000000000000 ++fdivd 0xbfc999999999999a 0x4008000000000000 = 0xbfb1111111111111 ++fdivd 0xbfc999999999999a 0xc008000000000000 = 0x3fb1111111111111 ++fdivd 0xbfc999999999999a 0x4014000000000000 = 0xbfa47ae147ae147b ++fdivd 0xbfc999999999999a 0xc014000000000000 = 0x3fa47ae147ae147b ++fdivd 0xbfc999999999999a 0x4197d78400000000 = 0xbe212e0be826d695 ++fdivd 0xbfc999999999999a 0xc197d78400000000 = 0x3e212e0be826d695 ++fdivd 0x4008000000000000 0x0 = 0x7ff0000000000000 ++fdivd 0x4008000000000000 0x8000000000000000 = 0xfff0000000000000 ++fdivd 0x4008000000000000 0xf0debc9a78563412 = 0x8f18fc841c6dd057 ++fdivd 0x4008000000000000 0x123456789abcdef0 = 0x6dc2e19101ca4b40 ++fdivd 0x4008000000000000 0x3ff0000000000000 = 0x4008000000000000 ++fdivd 0x4008000000000000 0xbff0000000000000 = 0xc008000000000000 ++fdivd 0x4008000000000000 0x3fb999999999999a = 0x403e000000000000 ++fdivd 0x4008000000000000 0xbfb999999999999a = 0xc03e000000000000 ++fdivd 0x4008000000000000 0x3fc999999999999a = 0x402e000000000000 ++fdivd 0x4008000000000000 0xbfc999999999999a = 0xc02e000000000000 ++fdivd 0x4008000000000000 0x4008000000000000 = 0x3ff0000000000000 ++fdivd 0x4008000000000000 0xc008000000000000 = 0xbff0000000000000 ++fdivd 0x4008000000000000 0x4014000000000000 = 0x3fe3333333333333 ++fdivd 0x4008000000000000 0xc014000000000000 = 0xbfe3333333333333 ++fdivd 0x4008000000000000 0x4197d78400000000 = 0x3e601b2b29a4692b ++fdivd 0x4008000000000000 0xc197d78400000000 = 0xbe601b2b29a4692b ++fdivd 0xc008000000000000 0x0 = 0xfff0000000000000 ++fdivd 0xc008000000000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivd 0xc008000000000000 0xf0debc9a78563412 = 0xf18fc841c6dd057 ++fdivd 0xc008000000000000 0x123456789abcdef0 = 0xedc2e19101ca4b40 ++fdivd 0xc008000000000000 0x3ff0000000000000 = 0xc008000000000000 ++fdivd 0xc008000000000000 0xbff0000000000000 = 0x4008000000000000 ++fdivd 0xc008000000000000 0x3fb999999999999a = 0xc03e000000000000 ++fdivd 0xc008000000000000 0xbfb999999999999a = 0x403e000000000000 ++fdivd 0xc008000000000000 0x3fc999999999999a = 0xc02e000000000000 ++fdivd 0xc008000000000000 0xbfc999999999999a = 0x402e000000000000 ++fdivd 0xc008000000000000 0x4008000000000000 = 0xbff0000000000000 ++fdivd 0xc008000000000000 0xc008000000000000 = 0x3ff0000000000000 ++fdivd 0xc008000000000000 0x4014000000000000 = 0xbfe3333333333333 ++fdivd 0xc008000000000000 0xc014000000000000 = 0x3fe3333333333333 ++fdivd 0xc008000000000000 0x4197d78400000000 = 0xbe601b2b29a4692b ++fdivd 0xc008000000000000 0xc197d78400000000 = 0x3e601b2b29a4692b ++fdivd 0x4014000000000000 0x0 = 0x7ff0000000000000 ++fdivd 0x4014000000000000 0x8000000000000000 = 0xfff0000000000000 ++fdivd 0x4014000000000000 0xf0debc9a78563412 = 0x8f24d26e17b0d848 ++fdivd 0x4014000000000000 0x123456789abcdef0 = 0x6dcf77f1ada67d6b ++fdivd 0x4014000000000000 0x3ff0000000000000 = 0x4014000000000000 ++fdivd 0x4014000000000000 0xbff0000000000000 = 0xc014000000000000 ++fdivd 0x4014000000000000 0x3fb999999999999a = 0x4049000000000000 ++fdivd 0x4014000000000000 0xbfb999999999999a = 0xc049000000000000 ++fdivd 0x4014000000000000 0x3fc999999999999a = 0x4039000000000000 ++fdivd 0x4014000000000000 0xbfc999999999999a = 0xc039000000000000 ++fdivd 0x4014000000000000 0x4008000000000000 = 0x3ffaaaaaaaaaaaab ++fdivd 0x4014000000000000 0xc008000000000000 = 0xbffaaaaaaaaaaaab ++fdivd 0x4014000000000000 0x4014000000000000 = 0x3ff0000000000000 ++fdivd 0x4014000000000000 0xc014000000000000 = 0xbff0000000000000 ++fdivd 0x4014000000000000 0x4197d78400000000 = 0x3e6ad7f29abcaf48 ++fdivd 0x4014000000000000 0xc197d78400000000 = 0xbe6ad7f29abcaf48 ++fdivd 0xc014000000000000 0x0 = 0xfff0000000000000 ++fdivd 0xc014000000000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivd 0xc014000000000000 0xf0debc9a78563412 = 0xf24d26e17b0d848 ++fdivd 0xc014000000000000 0x123456789abcdef0 = 0xedcf77f1ada67d6b ++fdivd 0xc014000000000000 0x3ff0000000000000 = 0xc014000000000000 ++fdivd 0xc014000000000000 0xbff0000000000000 = 0x4014000000000000 ++fdivd 0xc014000000000000 0x3fb999999999999a = 0xc049000000000000 ++fdivd 0xc014000000000000 0xbfb999999999999a = 0x4049000000000000 ++fdivd 0xc014000000000000 0x3fc999999999999a = 0xc039000000000000 ++fdivd 0xc014000000000000 0xbfc999999999999a = 0x4039000000000000 ++fdivd 0xc014000000000000 0x4008000000000000 = 0xbffaaaaaaaaaaaab ++fdivd 0xc014000000000000 0xc008000000000000 = 0x3ffaaaaaaaaaaaab ++fdivd 0xc014000000000000 0x4014000000000000 = 0xbff0000000000000 ++fdivd 0xc014000000000000 0xc014000000000000 = 0x3ff0000000000000 ++fdivd 0xc014000000000000 0x4197d78400000000 = 0xbe6ad7f29abcaf48 ++fdivd 0xc014000000000000 0xc197d78400000000 = 0x3e6ad7f29abcaf48 ++fdivd 0x4197d78400000000 0x0 = 0x7ff0000000000000 ++fdivd 0x4197d78400000000 0x8000000000000000 = 0xfff0000000000000 ++fdivd 0x4197d78400000000 0xf0debc9a78563412 = 0x90a8d25e2793dbc4 ++fdivd 0x4197d78400000000 0x123456789abcdef0 = 0x6f52c1b782af70d8 ++fdivd 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fdivd 0x4197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fdivd 0x4197d78400000000 0x3fb999999999999a = 0x41cdcd6500000000 ++fdivd 0x4197d78400000000 0xbfb999999999999a = 0xc1cdcd6500000000 ++fdivd 0x4197d78400000000 0x3fc999999999999a = 0x41bdcd6500000000 ++fdivd 0x4197d78400000000 0xbfc999999999999a = 0xc1bdcd6500000000 ++fdivd 0x4197d78400000000 0x4008000000000000 = 0x417fca0555555555 ++fdivd 0x4197d78400000000 0xc008000000000000 = 0xc17fca0555555555 ++fdivd 0x4197d78400000000 0x4014000000000000 = 0x417312d000000000 ++fdivd 0x4197d78400000000 0xc014000000000000 = 0xc17312d000000000 ++fdivd 0x4197d78400000000 0x4197d78400000000 = 0x3ff0000000000000 ++fdivd 0x4197d78400000000 0xc197d78400000000 = 0xbff0000000000000 ++fdivd 0xc197d78400000000 0x0 = 0xfff0000000000000 ++fdivd 0xc197d78400000000 0x8000000000000000 = 0x7ff0000000000000 ++fdivd 0xc197d78400000000 0xf0debc9a78563412 = 0x10a8d25e2793dbc4 ++fdivd 0xc197d78400000000 0x123456789abcdef0 = 0xef52c1b782af70d8 ++fdivd 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fdivd 0xc197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fdivd 0xc197d78400000000 0x3fb999999999999a = 0xc1cdcd6500000000 ++fdivd 0xc197d78400000000 0xbfb999999999999a = 0x41cdcd6500000000 ++fdivd 0xc197d78400000000 0x3fc999999999999a = 0xc1bdcd6500000000 ++fdivd 0xc197d78400000000 0xbfc999999999999a = 0x41bdcd6500000000 ++fdivd 0xc197d78400000000 0x4008000000000000 = 0xc17fca0555555555 ++fdivd 0xc197d78400000000 0xc008000000000000 = 0x417fca0555555555 ++fdivd 0xc197d78400000000 0x4014000000000000 = 0xc17312d000000000 ++fdivd 0xc197d78400000000 0xc014000000000000 = 0x417312d000000000 ++fdivd 0xc197d78400000000 0x4197d78400000000 = 0xbff0000000000000 ++fdivd 0xc197d78400000000 0xc197d78400000000 = 0x3ff0000000000000 ++=== Running test on fcmpeq=== ++fcmpeq 0x0 0x0 = 0x4000000000000000 ++fcmpeq 0x0 0x8000000000000000 = 0x4000000000000000 ++fcmpeq 0x0 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x0 0x123456789abcdef0 = 0x0 ++fcmpeq 0x0 0x3ff0000000000000 = 0x0 ++fcmpeq 0x0 0xbff0000000000000 = 0x0 ++fcmpeq 0x0 0x3fb999999999999a = 0x0 ++fcmpeq 0x0 0xbfb999999999999a = 0x0 ++fcmpeq 0x0 0x3fc999999999999a = 0x0 ++fcmpeq 0x0 0xbfc999999999999a = 0x0 ++fcmpeq 0x0 0x4008000000000000 = 0x0 ++fcmpeq 0x0 0xc008000000000000 = 0x0 ++fcmpeq 0x0 0x4014000000000000 = 0x0 ++fcmpeq 0x0 0xc014000000000000 = 0x0 ++fcmpeq 0x0 0x4197d78400000000 = 0x0 ++fcmpeq 0x0 0xc197d78400000000 = 0x0 ++fcmpeq 0x8000000000000000 0x0 = 0x4000000000000000 ++fcmpeq 0x8000000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmpeq 0x8000000000000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x8000000000000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0x8000000000000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0x8000000000000000 0xbff0000000000000 = 0x0 ++fcmpeq 0x8000000000000000 0x3fb999999999999a = 0x0 ++fcmpeq 0x8000000000000000 0xbfb999999999999a = 0x0 ++fcmpeq 0x8000000000000000 0x3fc999999999999a = 0x0 ++fcmpeq 0x8000000000000000 0xbfc999999999999a = 0x0 ++fcmpeq 0x8000000000000000 0x4008000000000000 = 0x0 ++fcmpeq 0x8000000000000000 0xc008000000000000 = 0x0 ++fcmpeq 0x8000000000000000 0x4014000000000000 = 0x0 ++fcmpeq 0x8000000000000000 0xc014000000000000 = 0x0 ++fcmpeq 0x8000000000000000 0x4197d78400000000 = 0x0 ++fcmpeq 0x8000000000000000 0xc197d78400000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0x0 = 0x0 ++fcmpeq 0xf0debc9a78563412 0x8000000000000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0xf0debc9a78563412 = 0x4000000000000000 ++fcmpeq 0xf0debc9a78563412 0x123456789abcdef0 = 0x0 ++fcmpeq 0xf0debc9a78563412 0x3ff0000000000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0xbff0000000000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0x3fb999999999999a = 0x0 ++fcmpeq 0xf0debc9a78563412 0xbfb999999999999a = 0x0 ++fcmpeq 0xf0debc9a78563412 0x3fc999999999999a = 0x0 ++fcmpeq 0xf0debc9a78563412 0xbfc999999999999a = 0x0 ++fcmpeq 0xf0debc9a78563412 0x4008000000000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0xc008000000000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0x4014000000000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0xc014000000000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0x4197d78400000000 = 0x0 ++fcmpeq 0xf0debc9a78563412 0xc197d78400000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0x0 = 0x0 ++fcmpeq 0x123456789abcdef0 0x8000000000000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x123456789abcdef0 0x123456789abcdef0 = 0x4000000000000000 ++fcmpeq 0x123456789abcdef0 0x3ff0000000000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0xbff0000000000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0x3fb999999999999a = 0x0 ++fcmpeq 0x123456789abcdef0 0xbfb999999999999a = 0x0 ++fcmpeq 0x123456789abcdef0 0x3fc999999999999a = 0x0 ++fcmpeq 0x123456789abcdef0 0xbfc999999999999a = 0x0 ++fcmpeq 0x123456789abcdef0 0x4008000000000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0xc008000000000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0x4014000000000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0xc014000000000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0x4197d78400000000 = 0x0 ++fcmpeq 0x123456789abcdef0 0xc197d78400000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0x0 = 0x0 ++fcmpeq 0x3ff0000000000000 0x8000000000000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x3ff0000000000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0x3ff0000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmpeq 0x3ff0000000000000 0xbff0000000000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0x3fb999999999999a = 0x0 ++fcmpeq 0x3ff0000000000000 0xbfb999999999999a = 0x0 ++fcmpeq 0x3ff0000000000000 0x3fc999999999999a = 0x0 ++fcmpeq 0x3ff0000000000000 0xbfc999999999999a = 0x0 ++fcmpeq 0x3ff0000000000000 0x4008000000000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0xc008000000000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0x4014000000000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0xc014000000000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0x4197d78400000000 = 0x0 ++fcmpeq 0x3ff0000000000000 0xc197d78400000000 = 0x0 ++fcmpeq 0xbff0000000000000 0x0 = 0x0 ++fcmpeq 0xbff0000000000000 0x8000000000000000 = 0x0 ++fcmpeq 0xbff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0xbff0000000000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0xbff0000000000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0xbff0000000000000 0xbff0000000000000 = 0x4000000000000000 ++fcmpeq 0xbff0000000000000 0x3fb999999999999a = 0x0 ++fcmpeq 0xbff0000000000000 0xbfb999999999999a = 0x0 ++fcmpeq 0xbff0000000000000 0x3fc999999999999a = 0x0 ++fcmpeq 0xbff0000000000000 0xbfc999999999999a = 0x0 ++fcmpeq 0xbff0000000000000 0x4008000000000000 = 0x0 ++fcmpeq 0xbff0000000000000 0xc008000000000000 = 0x0 ++fcmpeq 0xbff0000000000000 0x4014000000000000 = 0x0 ++fcmpeq 0xbff0000000000000 0xc014000000000000 = 0x0 ++fcmpeq 0xbff0000000000000 0x4197d78400000000 = 0x0 ++fcmpeq 0xbff0000000000000 0xc197d78400000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0x0 = 0x0 ++fcmpeq 0x3fb999999999999a 0x8000000000000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x3fb999999999999a 0x123456789abcdef0 = 0x0 ++fcmpeq 0x3fb999999999999a 0x3ff0000000000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0xbff0000000000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0x3fb999999999999a = 0x4000000000000000 ++fcmpeq 0x3fb999999999999a 0xbfb999999999999a = 0x0 ++fcmpeq 0x3fb999999999999a 0x3fc999999999999a = 0x0 ++fcmpeq 0x3fb999999999999a 0xbfc999999999999a = 0x0 ++fcmpeq 0x3fb999999999999a 0x4008000000000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0xc008000000000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0x4014000000000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0xc014000000000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0x4197d78400000000 = 0x0 ++fcmpeq 0x3fb999999999999a 0xc197d78400000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0x0 = 0x0 ++fcmpeq 0xbfb999999999999a 0x8000000000000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpeq 0xbfb999999999999a 0x123456789abcdef0 = 0x0 ++fcmpeq 0xbfb999999999999a 0x3ff0000000000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0xbff0000000000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0x3fb999999999999a = 0x0 ++fcmpeq 0xbfb999999999999a 0xbfb999999999999a = 0x4000000000000000 ++fcmpeq 0xbfb999999999999a 0x3fc999999999999a = 0x0 ++fcmpeq 0xbfb999999999999a 0xbfc999999999999a = 0x0 ++fcmpeq 0xbfb999999999999a 0x4008000000000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0xc008000000000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0x4014000000000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0xc014000000000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0x4197d78400000000 = 0x0 ++fcmpeq 0xbfb999999999999a 0xc197d78400000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0x0 = 0x0 ++fcmpeq 0x3fc999999999999a 0x8000000000000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x3fc999999999999a 0x123456789abcdef0 = 0x0 ++fcmpeq 0x3fc999999999999a 0x3ff0000000000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0xbff0000000000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0x3fb999999999999a = 0x0 ++fcmpeq 0x3fc999999999999a 0xbfb999999999999a = 0x0 ++fcmpeq 0x3fc999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmpeq 0x3fc999999999999a 0xbfc999999999999a = 0x0 ++fcmpeq 0x3fc999999999999a 0x4008000000000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0xc008000000000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0x4014000000000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0xc014000000000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0x4197d78400000000 = 0x0 ++fcmpeq 0x3fc999999999999a 0xc197d78400000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0x0 = 0x0 ++fcmpeq 0xbfc999999999999a 0x8000000000000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpeq 0xbfc999999999999a 0x123456789abcdef0 = 0x0 ++fcmpeq 0xbfc999999999999a 0x3ff0000000000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0xbff0000000000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0x3fb999999999999a = 0x0 ++fcmpeq 0xbfc999999999999a 0xbfb999999999999a = 0x0 ++fcmpeq 0xbfc999999999999a 0x3fc999999999999a = 0x0 ++fcmpeq 0xbfc999999999999a 0xbfc999999999999a = 0x4000000000000000 ++fcmpeq 0xbfc999999999999a 0x4008000000000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0xc008000000000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0x4014000000000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0xc014000000000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0x4197d78400000000 = 0x0 ++fcmpeq 0xbfc999999999999a 0xc197d78400000000 = 0x0 ++fcmpeq 0x4008000000000000 0x0 = 0x0 ++fcmpeq 0x4008000000000000 0x8000000000000000 = 0x0 ++fcmpeq 0x4008000000000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x4008000000000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0x4008000000000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0x4008000000000000 0xbff0000000000000 = 0x0 ++fcmpeq 0x4008000000000000 0x3fb999999999999a = 0x0 ++fcmpeq 0x4008000000000000 0xbfb999999999999a = 0x0 ++fcmpeq 0x4008000000000000 0x3fc999999999999a = 0x0 ++fcmpeq 0x4008000000000000 0xbfc999999999999a = 0x0 ++fcmpeq 0x4008000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmpeq 0x4008000000000000 0xc008000000000000 = 0x0 ++fcmpeq 0x4008000000000000 0x4014000000000000 = 0x0 ++fcmpeq 0x4008000000000000 0xc014000000000000 = 0x0 ++fcmpeq 0x4008000000000000 0x4197d78400000000 = 0x0 ++fcmpeq 0x4008000000000000 0xc197d78400000000 = 0x0 ++fcmpeq 0xc008000000000000 0x0 = 0x0 ++fcmpeq 0xc008000000000000 0x8000000000000000 = 0x0 ++fcmpeq 0xc008000000000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0xc008000000000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0xc008000000000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0xc008000000000000 0xbff0000000000000 = 0x0 ++fcmpeq 0xc008000000000000 0x3fb999999999999a = 0x0 ++fcmpeq 0xc008000000000000 0xbfb999999999999a = 0x0 ++fcmpeq 0xc008000000000000 0x3fc999999999999a = 0x0 ++fcmpeq 0xc008000000000000 0xbfc999999999999a = 0x0 ++fcmpeq 0xc008000000000000 0x4008000000000000 = 0x0 ++fcmpeq 0xc008000000000000 0xc008000000000000 = 0x4000000000000000 ++fcmpeq 0xc008000000000000 0x4014000000000000 = 0x0 ++fcmpeq 0xc008000000000000 0xc014000000000000 = 0x0 ++fcmpeq 0xc008000000000000 0x4197d78400000000 = 0x0 ++fcmpeq 0xc008000000000000 0xc197d78400000000 = 0x0 ++fcmpeq 0x4014000000000000 0x0 = 0x0 ++fcmpeq 0x4014000000000000 0x8000000000000000 = 0x0 ++fcmpeq 0x4014000000000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x4014000000000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0x4014000000000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0x4014000000000000 0xbff0000000000000 = 0x0 ++fcmpeq 0x4014000000000000 0x3fb999999999999a = 0x0 ++fcmpeq 0x4014000000000000 0xbfb999999999999a = 0x0 ++fcmpeq 0x4014000000000000 0x3fc999999999999a = 0x0 ++fcmpeq 0x4014000000000000 0xbfc999999999999a = 0x0 ++fcmpeq 0x4014000000000000 0x4008000000000000 = 0x0 ++fcmpeq 0x4014000000000000 0xc008000000000000 = 0x0 ++fcmpeq 0x4014000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmpeq 0x4014000000000000 0xc014000000000000 = 0x0 ++fcmpeq 0x4014000000000000 0x4197d78400000000 = 0x0 ++fcmpeq 0x4014000000000000 0xc197d78400000000 = 0x0 ++fcmpeq 0xc014000000000000 0x0 = 0x0 ++fcmpeq 0xc014000000000000 0x8000000000000000 = 0x0 ++fcmpeq 0xc014000000000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0xc014000000000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0xc014000000000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0xc014000000000000 0xbff0000000000000 = 0x0 ++fcmpeq 0xc014000000000000 0x3fb999999999999a = 0x0 ++fcmpeq 0xc014000000000000 0xbfb999999999999a = 0x0 ++fcmpeq 0xc014000000000000 0x3fc999999999999a = 0x0 ++fcmpeq 0xc014000000000000 0xbfc999999999999a = 0x0 ++fcmpeq 0xc014000000000000 0x4008000000000000 = 0x0 ++fcmpeq 0xc014000000000000 0xc008000000000000 = 0x0 ++fcmpeq 0xc014000000000000 0x4014000000000000 = 0x0 ++fcmpeq 0xc014000000000000 0xc014000000000000 = 0x4000000000000000 ++fcmpeq 0xc014000000000000 0x4197d78400000000 = 0x0 ++fcmpeq 0xc014000000000000 0xc197d78400000000 = 0x0 ++fcmpeq 0x4197d78400000000 0x0 = 0x0 ++fcmpeq 0x4197d78400000000 0x8000000000000000 = 0x0 ++fcmpeq 0x4197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0x4197d78400000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0x4197d78400000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0x4197d78400000000 0xbff0000000000000 = 0x0 ++fcmpeq 0x4197d78400000000 0x3fb999999999999a = 0x0 ++fcmpeq 0x4197d78400000000 0xbfb999999999999a = 0x0 ++fcmpeq 0x4197d78400000000 0x3fc999999999999a = 0x0 ++fcmpeq 0x4197d78400000000 0xbfc999999999999a = 0x0 ++fcmpeq 0x4197d78400000000 0x4008000000000000 = 0x0 ++fcmpeq 0x4197d78400000000 0xc008000000000000 = 0x0 ++fcmpeq 0x4197d78400000000 0x4014000000000000 = 0x0 ++fcmpeq 0x4197d78400000000 0xc014000000000000 = 0x0 ++fcmpeq 0x4197d78400000000 0x4197d78400000000 = 0x4000000000000000 ++fcmpeq 0x4197d78400000000 0xc197d78400000000 = 0x0 ++fcmpeq 0xc197d78400000000 0x0 = 0x0 ++fcmpeq 0xc197d78400000000 0x8000000000000000 = 0x0 ++fcmpeq 0xc197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmpeq 0xc197d78400000000 0x123456789abcdef0 = 0x0 ++fcmpeq 0xc197d78400000000 0x3ff0000000000000 = 0x0 ++fcmpeq 0xc197d78400000000 0xbff0000000000000 = 0x0 ++fcmpeq 0xc197d78400000000 0x3fb999999999999a = 0x0 ++fcmpeq 0xc197d78400000000 0xbfb999999999999a = 0x0 ++fcmpeq 0xc197d78400000000 0x3fc999999999999a = 0x0 ++fcmpeq 0xc197d78400000000 0xbfc999999999999a = 0x0 ++fcmpeq 0xc197d78400000000 0x4008000000000000 = 0x0 ++fcmpeq 0xc197d78400000000 0xc008000000000000 = 0x0 ++fcmpeq 0xc197d78400000000 0x4014000000000000 = 0x0 ++fcmpeq 0xc197d78400000000 0xc014000000000000 = 0x0 ++fcmpeq 0xc197d78400000000 0x4197d78400000000 = 0x0 ++fcmpeq 0xc197d78400000000 0xc197d78400000000 = 0x4000000000000000 ++=== Running test on fcmple=== ++fcmple 0x0 0x0 = 0x4000000000000000 ++fcmple 0x0 0x8000000000000000 = 0x4000000000000000 ++fcmple 0x0 0xf0debc9a78563412 = 0x0 ++fcmple 0x0 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0x0 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0x0 0xbff0000000000000 = 0x0 ++fcmple 0x0 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0x0 0xbfb999999999999a = 0x0 ++fcmple 0x0 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0x0 0xbfc999999999999a = 0x0 ++fcmple 0x0 0x4008000000000000 = 0x4000000000000000 ++fcmple 0x0 0xc008000000000000 = 0x0 ++fcmple 0x0 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x0 0xc014000000000000 = 0x0 ++fcmple 0x0 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x0 0xc197d78400000000 = 0x0 ++fcmple 0x8000000000000000 0x0 = 0x4000000000000000 ++fcmple 0x8000000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmple 0x8000000000000000 0xf0debc9a78563412 = 0x0 ++fcmple 0x8000000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0x8000000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0x8000000000000000 0xbff0000000000000 = 0x0 ++fcmple 0x8000000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0x8000000000000000 0xbfb999999999999a = 0x0 ++fcmple 0x8000000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0x8000000000000000 0xbfc999999999999a = 0x0 ++fcmple 0x8000000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmple 0x8000000000000000 0xc008000000000000 = 0x0 ++fcmple 0x8000000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x8000000000000000 0xc014000000000000 = 0x0 ++fcmple 0x8000000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x8000000000000000 0xc197d78400000000 = 0x0 ++fcmple 0xf0debc9a78563412 0x0 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x8000000000000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0xf0debc9a78563412 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0xbff0000000000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0xbfb999999999999a = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0xbfc999999999999a = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x4008000000000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0xc008000000000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x4014000000000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0xc014000000000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0xf0debc9a78563412 0xc197d78400000000 = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0x0 = 0x0 ++fcmple 0x123456789abcdef0 0x8000000000000000 = 0x0 ++fcmple 0x123456789abcdef0 0xf0debc9a78563412 = 0x0 ++fcmple 0x123456789abcdef0 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0xbff0000000000000 = 0x0 ++fcmple 0x123456789abcdef0 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0xbfb999999999999a = 0x0 ++fcmple 0x123456789abcdef0 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0xbfc999999999999a = 0x0 ++fcmple 0x123456789abcdef0 0x4008000000000000 = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0xc008000000000000 = 0x0 ++fcmple 0x123456789abcdef0 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0xc014000000000000 = 0x0 ++fcmple 0x123456789abcdef0 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x123456789abcdef0 0xc197d78400000000 = 0x0 ++fcmple 0x3ff0000000000000 0x0 = 0x0 ++fcmple 0x3ff0000000000000 0x8000000000000000 = 0x0 ++fcmple 0x3ff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmple 0x3ff0000000000000 0x123456789abcdef0 = 0x0 ++fcmple 0x3ff0000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0x3ff0000000000000 0xbff0000000000000 = 0x0 ++fcmple 0x3ff0000000000000 0x3fb999999999999a = 0x0 ++fcmple 0x3ff0000000000000 0xbfb999999999999a = 0x0 ++fcmple 0x3ff0000000000000 0x3fc999999999999a = 0x0 ++fcmple 0x3ff0000000000000 0xbfc999999999999a = 0x0 ++fcmple 0x3ff0000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmple 0x3ff0000000000000 0xc008000000000000 = 0x0 ++fcmple 0x3ff0000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x3ff0000000000000 0xc014000000000000 = 0x0 ++fcmple 0x3ff0000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x3ff0000000000000 0xc197d78400000000 = 0x0 ++fcmple 0xbff0000000000000 0x0 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmple 0xbff0000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0xbff0000000000000 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0xbff0000000000000 0xbfb999999999999a = 0x4000000000000000 ++fcmple 0xbff0000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0xbff0000000000000 0xbfc999999999999a = 0x4000000000000000 ++fcmple 0xbff0000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0xc008000000000000 = 0x0 ++fcmple 0xbff0000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0xc014000000000000 = 0x0 ++fcmple 0xbff0000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0xbff0000000000000 0xc197d78400000000 = 0x0 ++fcmple 0x3fb999999999999a 0x0 = 0x0 ++fcmple 0x3fb999999999999a 0x8000000000000000 = 0x0 ++fcmple 0x3fb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmple 0x3fb999999999999a 0x123456789abcdef0 = 0x0 ++fcmple 0x3fb999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0x3fb999999999999a 0xbff0000000000000 = 0x0 ++fcmple 0x3fb999999999999a 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0x3fb999999999999a 0xbfb999999999999a = 0x0 ++fcmple 0x3fb999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0x3fb999999999999a 0xbfc999999999999a = 0x0 ++fcmple 0x3fb999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmple 0x3fb999999999999a 0xc008000000000000 = 0x0 ++fcmple 0x3fb999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x3fb999999999999a 0xc014000000000000 = 0x0 ++fcmple 0x3fb999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x3fb999999999999a 0xc197d78400000000 = 0x0 ++fcmple 0xbfb999999999999a 0x0 = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0x8000000000000000 = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmple 0xbfb999999999999a 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0xbff0000000000000 = 0x0 ++fcmple 0xbfb999999999999a 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0xbfb999999999999a = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0xbfc999999999999a = 0x0 ++fcmple 0xbfb999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0xc008000000000000 = 0x0 ++fcmple 0xbfb999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0xc014000000000000 = 0x0 ++fcmple 0xbfb999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0xbfb999999999999a 0xc197d78400000000 = 0x0 ++fcmple 0x3fc999999999999a 0x0 = 0x0 ++fcmple 0x3fc999999999999a 0x8000000000000000 = 0x0 ++fcmple 0x3fc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmple 0x3fc999999999999a 0x123456789abcdef0 = 0x0 ++fcmple 0x3fc999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0x3fc999999999999a 0xbff0000000000000 = 0x0 ++fcmple 0x3fc999999999999a 0x3fb999999999999a = 0x0 ++fcmple 0x3fc999999999999a 0xbfb999999999999a = 0x0 ++fcmple 0x3fc999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0x3fc999999999999a 0xbfc999999999999a = 0x0 ++fcmple 0x3fc999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmple 0x3fc999999999999a 0xc008000000000000 = 0x0 ++fcmple 0x3fc999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x3fc999999999999a 0xc014000000000000 = 0x0 ++fcmple 0x3fc999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x3fc999999999999a 0xc197d78400000000 = 0x0 ++fcmple 0xbfc999999999999a 0x0 = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0x8000000000000000 = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmple 0xbfc999999999999a 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0xbff0000000000000 = 0x0 ++fcmple 0xbfc999999999999a 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0xbfb999999999999a = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0xbfc999999999999a = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0xc008000000000000 = 0x0 ++fcmple 0xbfc999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0xc014000000000000 = 0x0 ++fcmple 0xbfc999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0xbfc999999999999a 0xc197d78400000000 = 0x0 ++fcmple 0x4008000000000000 0x0 = 0x0 ++fcmple 0x4008000000000000 0x8000000000000000 = 0x0 ++fcmple 0x4008000000000000 0xf0debc9a78563412 = 0x0 ++fcmple 0x4008000000000000 0x123456789abcdef0 = 0x0 ++fcmple 0x4008000000000000 0x3ff0000000000000 = 0x0 ++fcmple 0x4008000000000000 0xbff0000000000000 = 0x0 ++fcmple 0x4008000000000000 0x3fb999999999999a = 0x0 ++fcmple 0x4008000000000000 0xbfb999999999999a = 0x0 ++fcmple 0x4008000000000000 0x3fc999999999999a = 0x0 ++fcmple 0x4008000000000000 0xbfc999999999999a = 0x0 ++fcmple 0x4008000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmple 0x4008000000000000 0xc008000000000000 = 0x0 ++fcmple 0x4008000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x4008000000000000 0xc014000000000000 = 0x0 ++fcmple 0x4008000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x4008000000000000 0xc197d78400000000 = 0x0 ++fcmple 0xc008000000000000 0x0 = 0x4000000000000000 ++fcmple 0xc008000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmple 0xc008000000000000 0xf0debc9a78563412 = 0x0 ++fcmple 0xc008000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0xc008000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0xc008000000000000 0xbff0000000000000 = 0x4000000000000000 ++fcmple 0xc008000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0xc008000000000000 0xbfb999999999999a = 0x4000000000000000 ++fcmple 0xc008000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0xc008000000000000 0xbfc999999999999a = 0x4000000000000000 ++fcmple 0xc008000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmple 0xc008000000000000 0xc008000000000000 = 0x4000000000000000 ++fcmple 0xc008000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0xc008000000000000 0xc014000000000000 = 0x0 ++fcmple 0xc008000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0xc008000000000000 0xc197d78400000000 = 0x0 ++fcmple 0x4014000000000000 0x0 = 0x0 ++fcmple 0x4014000000000000 0x8000000000000000 = 0x0 ++fcmple 0x4014000000000000 0xf0debc9a78563412 = 0x0 ++fcmple 0x4014000000000000 0x123456789abcdef0 = 0x0 ++fcmple 0x4014000000000000 0x3ff0000000000000 = 0x0 ++fcmple 0x4014000000000000 0xbff0000000000000 = 0x0 ++fcmple 0x4014000000000000 0x3fb999999999999a = 0x0 ++fcmple 0x4014000000000000 0xbfb999999999999a = 0x0 ++fcmple 0x4014000000000000 0x3fc999999999999a = 0x0 ++fcmple 0x4014000000000000 0xbfc999999999999a = 0x0 ++fcmple 0x4014000000000000 0x4008000000000000 = 0x0 ++fcmple 0x4014000000000000 0xc008000000000000 = 0x0 ++fcmple 0x4014000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0x4014000000000000 0xc014000000000000 = 0x0 ++fcmple 0x4014000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x4014000000000000 0xc197d78400000000 = 0x0 ++fcmple 0xc014000000000000 0x0 = 0x4000000000000000 ++fcmple 0xc014000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0xf0debc9a78563412 = 0x0 ++fcmple 0xc014000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0xc014000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0xbff0000000000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0xc014000000000000 0xbfb999999999999a = 0x4000000000000000 ++fcmple 0xc014000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0xc014000000000000 0xbfc999999999999a = 0x4000000000000000 ++fcmple 0xc014000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0xc008000000000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0xc014000000000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0xc014000000000000 0xc197d78400000000 = 0x0 ++fcmple 0x4197d78400000000 0x0 = 0x0 ++fcmple 0x4197d78400000000 0x8000000000000000 = 0x0 ++fcmple 0x4197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmple 0x4197d78400000000 0x123456789abcdef0 = 0x0 ++fcmple 0x4197d78400000000 0x3ff0000000000000 = 0x0 ++fcmple 0x4197d78400000000 0xbff0000000000000 = 0x0 ++fcmple 0x4197d78400000000 0x3fb999999999999a = 0x0 ++fcmple 0x4197d78400000000 0xbfb999999999999a = 0x0 ++fcmple 0x4197d78400000000 0x3fc999999999999a = 0x0 ++fcmple 0x4197d78400000000 0xbfc999999999999a = 0x0 ++fcmple 0x4197d78400000000 0x4008000000000000 = 0x0 ++fcmple 0x4197d78400000000 0xc008000000000000 = 0x0 ++fcmple 0x4197d78400000000 0x4014000000000000 = 0x0 ++fcmple 0x4197d78400000000 0xc014000000000000 = 0x0 ++fcmple 0x4197d78400000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0x4197d78400000000 0xc197d78400000000 = 0x0 ++fcmple 0xc197d78400000000 0x0 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0x8000000000000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmple 0xc197d78400000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0xbff0000000000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0x3fb999999999999a = 0x4000000000000000 ++fcmple 0xc197d78400000000 0xbfb999999999999a = 0x4000000000000000 ++fcmple 0xc197d78400000000 0x3fc999999999999a = 0x4000000000000000 ++fcmple 0xc197d78400000000 0xbfc999999999999a = 0x4000000000000000 ++fcmple 0xc197d78400000000 0x4008000000000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0xc008000000000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0x4014000000000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0xc014000000000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0x4197d78400000000 = 0x4000000000000000 ++fcmple 0xc197d78400000000 0xc197d78400000000 = 0x4000000000000000 ++=== Running test on fcmplt=== ++fcmplt 0x0 0x0 = 0x0 ++fcmplt 0x0 0x8000000000000000 = 0x0 ++fcmplt 0x0 0xf0debc9a78563412 = 0x0 ++fcmplt 0x0 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0x0 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0x0 0xbff0000000000000 = 0x0 ++fcmplt 0x0 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0x0 0xbfb999999999999a = 0x0 ++fcmplt 0x0 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0x0 0xbfc999999999999a = 0x0 ++fcmplt 0x0 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0x0 0xc008000000000000 = 0x0 ++fcmplt 0x0 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0x0 0xc014000000000000 = 0x0 ++fcmplt 0x0 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x0 0xc197d78400000000 = 0x0 ++fcmplt 0x8000000000000000 0x0 = 0x0 ++fcmplt 0x8000000000000000 0x8000000000000000 = 0x0 ++fcmplt 0x8000000000000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0x8000000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0x8000000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0x8000000000000000 0xbff0000000000000 = 0x0 ++fcmplt 0x8000000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0x8000000000000000 0xbfb999999999999a = 0x0 ++fcmplt 0x8000000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0x8000000000000000 0xbfc999999999999a = 0x0 ++fcmplt 0x8000000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0x8000000000000000 0xc008000000000000 = 0x0 ++fcmplt 0x8000000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0x8000000000000000 0xc014000000000000 = 0x0 ++fcmplt 0x8000000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x8000000000000000 0xc197d78400000000 = 0x0 ++fcmplt 0xf0debc9a78563412 0x0 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0x8000000000000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0xf0debc9a78563412 = 0x0 ++fcmplt 0xf0debc9a78563412 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0xbff0000000000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0xbfb999999999999a = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0xbfc999999999999a = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0xc008000000000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0xc014000000000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0xf0debc9a78563412 0xc197d78400000000 = 0x4000000000000000 ++fcmplt 0x123456789abcdef0 0x0 = 0x0 ++fcmplt 0x123456789abcdef0 0x8000000000000000 = 0x0 ++fcmplt 0x123456789abcdef0 0xf0debc9a78563412 = 0x0 ++fcmplt 0x123456789abcdef0 0x123456789abcdef0 = 0x0 ++fcmplt 0x123456789abcdef0 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0x123456789abcdef0 0xbff0000000000000 = 0x0 ++fcmplt 0x123456789abcdef0 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0x123456789abcdef0 0xbfb999999999999a = 0x0 ++fcmplt 0x123456789abcdef0 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0x123456789abcdef0 0xbfc999999999999a = 0x0 ++fcmplt 0x123456789abcdef0 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0x123456789abcdef0 0xc008000000000000 = 0x0 ++fcmplt 0x123456789abcdef0 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0x123456789abcdef0 0xc014000000000000 = 0x0 ++fcmplt 0x123456789abcdef0 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x123456789abcdef0 0xc197d78400000000 = 0x0 ++fcmplt 0x3ff0000000000000 0x0 = 0x0 ++fcmplt 0x3ff0000000000000 0x8000000000000000 = 0x0 ++fcmplt 0x3ff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0x3ff0000000000000 0x123456789abcdef0 = 0x0 ++fcmplt 0x3ff0000000000000 0x3ff0000000000000 = 0x0 ++fcmplt 0x3ff0000000000000 0xbff0000000000000 = 0x0 ++fcmplt 0x3ff0000000000000 0x3fb999999999999a = 0x0 ++fcmplt 0x3ff0000000000000 0xbfb999999999999a = 0x0 ++fcmplt 0x3ff0000000000000 0x3fc999999999999a = 0x0 ++fcmplt 0x3ff0000000000000 0xbfc999999999999a = 0x0 ++fcmplt 0x3ff0000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0x3ff0000000000000 0xc008000000000000 = 0x0 ++fcmplt 0x3ff0000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0x3ff0000000000000 0xc014000000000000 = 0x0 ++fcmplt 0x3ff0000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x3ff0000000000000 0xc197d78400000000 = 0x0 ++fcmplt 0xbff0000000000000 0x0 = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0xbff0000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0xbff0000000000000 = 0x0 ++fcmplt 0xbff0000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0xbfb999999999999a = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0xbfc999999999999a = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0xc008000000000000 = 0x0 ++fcmplt 0xbff0000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0xc014000000000000 = 0x0 ++fcmplt 0xbff0000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0xbff0000000000000 0xc197d78400000000 = 0x0 ++fcmplt 0x3fb999999999999a 0x0 = 0x0 ++fcmplt 0x3fb999999999999a 0x8000000000000000 = 0x0 ++fcmplt 0x3fb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmplt 0x3fb999999999999a 0x123456789abcdef0 = 0x0 ++fcmplt 0x3fb999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0x3fb999999999999a 0xbff0000000000000 = 0x0 ++fcmplt 0x3fb999999999999a 0x3fb999999999999a = 0x0 ++fcmplt 0x3fb999999999999a 0xbfb999999999999a = 0x0 ++fcmplt 0x3fb999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0x3fb999999999999a 0xbfc999999999999a = 0x0 ++fcmplt 0x3fb999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0x3fb999999999999a 0xc008000000000000 = 0x0 ++fcmplt 0x3fb999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0x3fb999999999999a 0xc014000000000000 = 0x0 ++fcmplt 0x3fb999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x3fb999999999999a 0xc197d78400000000 = 0x0 ++fcmplt 0xbfb999999999999a 0x0 = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0x8000000000000000 = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmplt 0xbfb999999999999a 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0xbff0000000000000 = 0x0 ++fcmplt 0xbfb999999999999a 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0xbfb999999999999a = 0x0 ++fcmplt 0xbfb999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0xbfc999999999999a = 0x0 ++fcmplt 0xbfb999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0xc008000000000000 = 0x0 ++fcmplt 0xbfb999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0xc014000000000000 = 0x0 ++fcmplt 0xbfb999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0xbfb999999999999a 0xc197d78400000000 = 0x0 ++fcmplt 0x3fc999999999999a 0x0 = 0x0 ++fcmplt 0x3fc999999999999a 0x8000000000000000 = 0x0 ++fcmplt 0x3fc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmplt 0x3fc999999999999a 0x123456789abcdef0 = 0x0 ++fcmplt 0x3fc999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0x3fc999999999999a 0xbff0000000000000 = 0x0 ++fcmplt 0x3fc999999999999a 0x3fb999999999999a = 0x0 ++fcmplt 0x3fc999999999999a 0xbfb999999999999a = 0x0 ++fcmplt 0x3fc999999999999a 0x3fc999999999999a = 0x0 ++fcmplt 0x3fc999999999999a 0xbfc999999999999a = 0x0 ++fcmplt 0x3fc999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0x3fc999999999999a 0xc008000000000000 = 0x0 ++fcmplt 0x3fc999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0x3fc999999999999a 0xc014000000000000 = 0x0 ++fcmplt 0x3fc999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x3fc999999999999a 0xc197d78400000000 = 0x0 ++fcmplt 0xbfc999999999999a 0x0 = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0x8000000000000000 = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmplt 0xbfc999999999999a 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0xbff0000000000000 = 0x0 ++fcmplt 0xbfc999999999999a 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0xbfb999999999999a = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0xbfc999999999999a = 0x0 ++fcmplt 0xbfc999999999999a 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0xc008000000000000 = 0x0 ++fcmplt 0xbfc999999999999a 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0xc014000000000000 = 0x0 ++fcmplt 0xbfc999999999999a 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0xbfc999999999999a 0xc197d78400000000 = 0x0 ++fcmplt 0x4008000000000000 0x0 = 0x0 ++fcmplt 0x4008000000000000 0x8000000000000000 = 0x0 ++fcmplt 0x4008000000000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0x4008000000000000 0x123456789abcdef0 = 0x0 ++fcmplt 0x4008000000000000 0x3ff0000000000000 = 0x0 ++fcmplt 0x4008000000000000 0xbff0000000000000 = 0x0 ++fcmplt 0x4008000000000000 0x3fb999999999999a = 0x0 ++fcmplt 0x4008000000000000 0xbfb999999999999a = 0x0 ++fcmplt 0x4008000000000000 0x3fc999999999999a = 0x0 ++fcmplt 0x4008000000000000 0xbfc999999999999a = 0x0 ++fcmplt 0x4008000000000000 0x4008000000000000 = 0x0 ++fcmplt 0x4008000000000000 0xc008000000000000 = 0x0 ++fcmplt 0x4008000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0x4008000000000000 0xc014000000000000 = 0x0 ++fcmplt 0x4008000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x4008000000000000 0xc197d78400000000 = 0x0 ++fcmplt 0xc008000000000000 0x0 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0xc008000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0xbff0000000000000 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0xc008000000000000 0xbfb999999999999a = 0x4000000000000000 ++fcmplt 0xc008000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0xc008000000000000 0xbfc999999999999a = 0x4000000000000000 ++fcmplt 0xc008000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0xc008000000000000 = 0x0 ++fcmplt 0xc008000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0xc014000000000000 = 0x0 ++fcmplt 0xc008000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0xc008000000000000 0xc197d78400000000 = 0x0 ++fcmplt 0x4014000000000000 0x0 = 0x0 ++fcmplt 0x4014000000000000 0x8000000000000000 = 0x0 ++fcmplt 0x4014000000000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0x4014000000000000 0x123456789abcdef0 = 0x0 ++fcmplt 0x4014000000000000 0x3ff0000000000000 = 0x0 ++fcmplt 0x4014000000000000 0xbff0000000000000 = 0x0 ++fcmplt 0x4014000000000000 0x3fb999999999999a = 0x0 ++fcmplt 0x4014000000000000 0xbfb999999999999a = 0x0 ++fcmplt 0x4014000000000000 0x3fc999999999999a = 0x0 ++fcmplt 0x4014000000000000 0xbfc999999999999a = 0x0 ++fcmplt 0x4014000000000000 0x4008000000000000 = 0x0 ++fcmplt 0x4014000000000000 0xc008000000000000 = 0x0 ++fcmplt 0x4014000000000000 0x4014000000000000 = 0x0 ++fcmplt 0x4014000000000000 0xc014000000000000 = 0x0 ++fcmplt 0x4014000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0x4014000000000000 0xc197d78400000000 = 0x0 ++fcmplt 0xc014000000000000 0x0 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0x8000000000000000 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0xc014000000000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0xbff0000000000000 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0xc014000000000000 0xbfb999999999999a = 0x4000000000000000 ++fcmplt 0xc014000000000000 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0xc014000000000000 0xbfc999999999999a = 0x4000000000000000 ++fcmplt 0xc014000000000000 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0xc008000000000000 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0xc014000000000000 = 0x0 ++fcmplt 0xc014000000000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0xc014000000000000 0xc197d78400000000 = 0x0 ++fcmplt 0x4197d78400000000 0x0 = 0x0 ++fcmplt 0x4197d78400000000 0x8000000000000000 = 0x0 ++fcmplt 0x4197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0x4197d78400000000 0x123456789abcdef0 = 0x0 ++fcmplt 0x4197d78400000000 0x3ff0000000000000 = 0x0 ++fcmplt 0x4197d78400000000 0xbff0000000000000 = 0x0 ++fcmplt 0x4197d78400000000 0x3fb999999999999a = 0x0 ++fcmplt 0x4197d78400000000 0xbfb999999999999a = 0x0 ++fcmplt 0x4197d78400000000 0x3fc999999999999a = 0x0 ++fcmplt 0x4197d78400000000 0xbfc999999999999a = 0x0 ++fcmplt 0x4197d78400000000 0x4008000000000000 = 0x0 ++fcmplt 0x4197d78400000000 0xc008000000000000 = 0x0 ++fcmplt 0x4197d78400000000 0x4014000000000000 = 0x0 ++fcmplt 0x4197d78400000000 0xc014000000000000 = 0x0 ++fcmplt 0x4197d78400000000 0x4197d78400000000 = 0x0 ++fcmplt 0x4197d78400000000 0xc197d78400000000 = 0x0 ++fcmplt 0xc197d78400000000 0x0 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0x8000000000000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmplt 0xc197d78400000000 0x123456789abcdef0 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0x3ff0000000000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0xbff0000000000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0x3fb999999999999a = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0xbfb999999999999a = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0x3fc999999999999a = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0xbfc999999999999a = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0x4008000000000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0xc008000000000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0x4014000000000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0xc014000000000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0x4197d78400000000 = 0x4000000000000000 ++fcmplt 0xc197d78400000000 0xc197d78400000000 = 0x0 ++=== Running test on fcmpun=== ++fcmpun 0x0 0x0 = 0x0 ++fcmpun 0x0 0x8000000000000000 = 0x0 ++fcmpun 0x0 0xf0debc9a78563412 = 0x0 ++fcmpun 0x0 0x123456789abcdef0 = 0x0 ++fcmpun 0x0 0x3ff0000000000000 = 0x0 ++fcmpun 0x0 0xbff0000000000000 = 0x0 ++fcmpun 0x0 0x3fb999999999999a = 0x0 ++fcmpun 0x0 0xbfb999999999999a = 0x0 ++fcmpun 0x0 0x3fc999999999999a = 0x0 ++fcmpun 0x0 0xbfc999999999999a = 0x0 ++fcmpun 0x0 0x4008000000000000 = 0x0 ++fcmpun 0x0 0xc008000000000000 = 0x0 ++fcmpun 0x0 0x4014000000000000 = 0x0 ++fcmpun 0x0 0xc014000000000000 = 0x0 ++fcmpun 0x0 0x4197d78400000000 = 0x0 ++fcmpun 0x0 0xc197d78400000000 = 0x0 ++fcmpun 0x8000000000000000 0x0 = 0x0 ++fcmpun 0x8000000000000000 0x8000000000000000 = 0x0 ++fcmpun 0x8000000000000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0x8000000000000000 0x123456789abcdef0 = 0x0 ++fcmpun 0x8000000000000000 0x3ff0000000000000 = 0x0 ++fcmpun 0x8000000000000000 0xbff0000000000000 = 0x0 ++fcmpun 0x8000000000000000 0x3fb999999999999a = 0x0 ++fcmpun 0x8000000000000000 0xbfb999999999999a = 0x0 ++fcmpun 0x8000000000000000 0x3fc999999999999a = 0x0 ++fcmpun 0x8000000000000000 0xbfc999999999999a = 0x0 ++fcmpun 0x8000000000000000 0x4008000000000000 = 0x0 ++fcmpun 0x8000000000000000 0xc008000000000000 = 0x0 ++fcmpun 0x8000000000000000 0x4014000000000000 = 0x0 ++fcmpun 0x8000000000000000 0xc014000000000000 = 0x0 ++fcmpun 0x8000000000000000 0x4197d78400000000 = 0x0 ++fcmpun 0x8000000000000000 0xc197d78400000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0x0 = 0x0 ++fcmpun 0xf0debc9a78563412 0x8000000000000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0xf0debc9a78563412 = 0x0 ++fcmpun 0xf0debc9a78563412 0x123456789abcdef0 = 0x0 ++fcmpun 0xf0debc9a78563412 0x3ff0000000000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0xbff0000000000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0x3fb999999999999a = 0x0 ++fcmpun 0xf0debc9a78563412 0xbfb999999999999a = 0x0 ++fcmpun 0xf0debc9a78563412 0x3fc999999999999a = 0x0 ++fcmpun 0xf0debc9a78563412 0xbfc999999999999a = 0x0 ++fcmpun 0xf0debc9a78563412 0x4008000000000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0xc008000000000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0x4014000000000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0xc014000000000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0x4197d78400000000 = 0x0 ++fcmpun 0xf0debc9a78563412 0xc197d78400000000 = 0x0 ++fcmpun 0x123456789abcdef0 0x0 = 0x0 ++fcmpun 0x123456789abcdef0 0x8000000000000000 = 0x0 ++fcmpun 0x123456789abcdef0 0xf0debc9a78563412 = 0x0 ++fcmpun 0x123456789abcdef0 0x123456789abcdef0 = 0x0 ++fcmpun 0x123456789abcdef0 0x3ff0000000000000 = 0x0 ++fcmpun 0x123456789abcdef0 0xbff0000000000000 = 0x0 ++fcmpun 0x123456789abcdef0 0x3fb999999999999a = 0x0 ++fcmpun 0x123456789abcdef0 0xbfb999999999999a = 0x0 ++fcmpun 0x123456789abcdef0 0x3fc999999999999a = 0x0 ++fcmpun 0x123456789abcdef0 0xbfc999999999999a = 0x0 ++fcmpun 0x123456789abcdef0 0x4008000000000000 = 0x0 ++fcmpun 0x123456789abcdef0 0xc008000000000000 = 0x0 ++fcmpun 0x123456789abcdef0 0x4014000000000000 = 0x0 ++fcmpun 0x123456789abcdef0 0xc014000000000000 = 0x0 ++fcmpun 0x123456789abcdef0 0x4197d78400000000 = 0x0 ++fcmpun 0x123456789abcdef0 0xc197d78400000000 = 0x0 ++fcmpun 0x3ff0000000000000 0x0 = 0x0 ++fcmpun 0x3ff0000000000000 0x8000000000000000 = 0x0 ++fcmpun 0x3ff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0x3ff0000000000000 0x123456789abcdef0 = 0x0 ++fcmpun 0x3ff0000000000000 0x3ff0000000000000 = 0x0 ++fcmpun 0x3ff0000000000000 0xbff0000000000000 = 0x0 ++fcmpun 0x3ff0000000000000 0x3fb999999999999a = 0x0 ++fcmpun 0x3ff0000000000000 0xbfb999999999999a = 0x0 ++fcmpun 0x3ff0000000000000 0x3fc999999999999a = 0x0 ++fcmpun 0x3ff0000000000000 0xbfc999999999999a = 0x0 ++fcmpun 0x3ff0000000000000 0x4008000000000000 = 0x0 ++fcmpun 0x3ff0000000000000 0xc008000000000000 = 0x0 ++fcmpun 0x3ff0000000000000 0x4014000000000000 = 0x0 ++fcmpun 0x3ff0000000000000 0xc014000000000000 = 0x0 ++fcmpun 0x3ff0000000000000 0x4197d78400000000 = 0x0 ++fcmpun 0x3ff0000000000000 0xc197d78400000000 = 0x0 ++fcmpun 0xbff0000000000000 0x0 = 0x0 ++fcmpun 0xbff0000000000000 0x8000000000000000 = 0x0 ++fcmpun 0xbff0000000000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0xbff0000000000000 0x123456789abcdef0 = 0x0 ++fcmpun 0xbff0000000000000 0x3ff0000000000000 = 0x0 ++fcmpun 0xbff0000000000000 0xbff0000000000000 = 0x0 ++fcmpun 0xbff0000000000000 0x3fb999999999999a = 0x0 ++fcmpun 0xbff0000000000000 0xbfb999999999999a = 0x0 ++fcmpun 0xbff0000000000000 0x3fc999999999999a = 0x0 ++fcmpun 0xbff0000000000000 0xbfc999999999999a = 0x0 ++fcmpun 0xbff0000000000000 0x4008000000000000 = 0x0 ++fcmpun 0xbff0000000000000 0xc008000000000000 = 0x0 ++fcmpun 0xbff0000000000000 0x4014000000000000 = 0x0 ++fcmpun 0xbff0000000000000 0xc014000000000000 = 0x0 ++fcmpun 0xbff0000000000000 0x4197d78400000000 = 0x0 ++fcmpun 0xbff0000000000000 0xc197d78400000000 = 0x0 ++fcmpun 0x3fb999999999999a 0x0 = 0x0 ++fcmpun 0x3fb999999999999a 0x8000000000000000 = 0x0 ++fcmpun 0x3fb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpun 0x3fb999999999999a 0x123456789abcdef0 = 0x0 ++fcmpun 0x3fb999999999999a 0x3ff0000000000000 = 0x0 ++fcmpun 0x3fb999999999999a 0xbff0000000000000 = 0x0 ++fcmpun 0x3fb999999999999a 0x3fb999999999999a = 0x0 ++fcmpun 0x3fb999999999999a 0xbfb999999999999a = 0x0 ++fcmpun 0x3fb999999999999a 0x3fc999999999999a = 0x0 ++fcmpun 0x3fb999999999999a 0xbfc999999999999a = 0x0 ++fcmpun 0x3fb999999999999a 0x4008000000000000 = 0x0 ++fcmpun 0x3fb999999999999a 0xc008000000000000 = 0x0 ++fcmpun 0x3fb999999999999a 0x4014000000000000 = 0x0 ++fcmpun 0x3fb999999999999a 0xc014000000000000 = 0x0 ++fcmpun 0x3fb999999999999a 0x4197d78400000000 = 0x0 ++fcmpun 0x3fb999999999999a 0xc197d78400000000 = 0x0 ++fcmpun 0xbfb999999999999a 0x0 = 0x0 ++fcmpun 0xbfb999999999999a 0x8000000000000000 = 0x0 ++fcmpun 0xbfb999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpun 0xbfb999999999999a 0x123456789abcdef0 = 0x0 ++fcmpun 0xbfb999999999999a 0x3ff0000000000000 = 0x0 ++fcmpun 0xbfb999999999999a 0xbff0000000000000 = 0x0 ++fcmpun 0xbfb999999999999a 0x3fb999999999999a = 0x0 ++fcmpun 0xbfb999999999999a 0xbfb999999999999a = 0x0 ++fcmpun 0xbfb999999999999a 0x3fc999999999999a = 0x0 ++fcmpun 0xbfb999999999999a 0xbfc999999999999a = 0x0 ++fcmpun 0xbfb999999999999a 0x4008000000000000 = 0x0 ++fcmpun 0xbfb999999999999a 0xc008000000000000 = 0x0 ++fcmpun 0xbfb999999999999a 0x4014000000000000 = 0x0 ++fcmpun 0xbfb999999999999a 0xc014000000000000 = 0x0 ++fcmpun 0xbfb999999999999a 0x4197d78400000000 = 0x0 ++fcmpun 0xbfb999999999999a 0xc197d78400000000 = 0x0 ++fcmpun 0x3fc999999999999a 0x0 = 0x0 ++fcmpun 0x3fc999999999999a 0x8000000000000000 = 0x0 ++fcmpun 0x3fc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpun 0x3fc999999999999a 0x123456789abcdef0 = 0x0 ++fcmpun 0x3fc999999999999a 0x3ff0000000000000 = 0x0 ++fcmpun 0x3fc999999999999a 0xbff0000000000000 = 0x0 ++fcmpun 0x3fc999999999999a 0x3fb999999999999a = 0x0 ++fcmpun 0x3fc999999999999a 0xbfb999999999999a = 0x0 ++fcmpun 0x3fc999999999999a 0x3fc999999999999a = 0x0 ++fcmpun 0x3fc999999999999a 0xbfc999999999999a = 0x0 ++fcmpun 0x3fc999999999999a 0x4008000000000000 = 0x0 ++fcmpun 0x3fc999999999999a 0xc008000000000000 = 0x0 ++fcmpun 0x3fc999999999999a 0x4014000000000000 = 0x0 ++fcmpun 0x3fc999999999999a 0xc014000000000000 = 0x0 ++fcmpun 0x3fc999999999999a 0x4197d78400000000 = 0x0 ++fcmpun 0x3fc999999999999a 0xc197d78400000000 = 0x0 ++fcmpun 0xbfc999999999999a 0x0 = 0x0 ++fcmpun 0xbfc999999999999a 0x8000000000000000 = 0x0 ++fcmpun 0xbfc999999999999a 0xf0debc9a78563412 = 0x0 ++fcmpun 0xbfc999999999999a 0x123456789abcdef0 = 0x0 ++fcmpun 0xbfc999999999999a 0x3ff0000000000000 = 0x0 ++fcmpun 0xbfc999999999999a 0xbff0000000000000 = 0x0 ++fcmpun 0xbfc999999999999a 0x3fb999999999999a = 0x0 ++fcmpun 0xbfc999999999999a 0xbfb999999999999a = 0x0 ++fcmpun 0xbfc999999999999a 0x3fc999999999999a = 0x0 ++fcmpun 0xbfc999999999999a 0xbfc999999999999a = 0x0 ++fcmpun 0xbfc999999999999a 0x4008000000000000 = 0x0 ++fcmpun 0xbfc999999999999a 0xc008000000000000 = 0x0 ++fcmpun 0xbfc999999999999a 0x4014000000000000 = 0x0 ++fcmpun 0xbfc999999999999a 0xc014000000000000 = 0x0 ++fcmpun 0xbfc999999999999a 0x4197d78400000000 = 0x0 ++fcmpun 0xbfc999999999999a 0xc197d78400000000 = 0x0 ++fcmpun 0x4008000000000000 0x0 = 0x0 ++fcmpun 0x4008000000000000 0x8000000000000000 = 0x0 ++fcmpun 0x4008000000000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0x4008000000000000 0x123456789abcdef0 = 0x0 ++fcmpun 0x4008000000000000 0x3ff0000000000000 = 0x0 ++fcmpun 0x4008000000000000 0xbff0000000000000 = 0x0 ++fcmpun 0x4008000000000000 0x3fb999999999999a = 0x0 ++fcmpun 0x4008000000000000 0xbfb999999999999a = 0x0 ++fcmpun 0x4008000000000000 0x3fc999999999999a = 0x0 ++fcmpun 0x4008000000000000 0xbfc999999999999a = 0x0 ++fcmpun 0x4008000000000000 0x4008000000000000 = 0x0 ++fcmpun 0x4008000000000000 0xc008000000000000 = 0x0 ++fcmpun 0x4008000000000000 0x4014000000000000 = 0x0 ++fcmpun 0x4008000000000000 0xc014000000000000 = 0x0 ++fcmpun 0x4008000000000000 0x4197d78400000000 = 0x0 ++fcmpun 0x4008000000000000 0xc197d78400000000 = 0x0 ++fcmpun 0xc008000000000000 0x0 = 0x0 ++fcmpun 0xc008000000000000 0x8000000000000000 = 0x0 ++fcmpun 0xc008000000000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0xc008000000000000 0x123456789abcdef0 = 0x0 ++fcmpun 0xc008000000000000 0x3ff0000000000000 = 0x0 ++fcmpun 0xc008000000000000 0xbff0000000000000 = 0x0 ++fcmpun 0xc008000000000000 0x3fb999999999999a = 0x0 ++fcmpun 0xc008000000000000 0xbfb999999999999a = 0x0 ++fcmpun 0xc008000000000000 0x3fc999999999999a = 0x0 ++fcmpun 0xc008000000000000 0xbfc999999999999a = 0x0 ++fcmpun 0xc008000000000000 0x4008000000000000 = 0x0 ++fcmpun 0xc008000000000000 0xc008000000000000 = 0x0 ++fcmpun 0xc008000000000000 0x4014000000000000 = 0x0 ++fcmpun 0xc008000000000000 0xc014000000000000 = 0x0 ++fcmpun 0xc008000000000000 0x4197d78400000000 = 0x0 ++fcmpun 0xc008000000000000 0xc197d78400000000 = 0x0 ++fcmpun 0x4014000000000000 0x0 = 0x0 ++fcmpun 0x4014000000000000 0x8000000000000000 = 0x0 ++fcmpun 0x4014000000000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0x4014000000000000 0x123456789abcdef0 = 0x0 ++fcmpun 0x4014000000000000 0x3ff0000000000000 = 0x0 ++fcmpun 0x4014000000000000 0xbff0000000000000 = 0x0 ++fcmpun 0x4014000000000000 0x3fb999999999999a = 0x0 ++fcmpun 0x4014000000000000 0xbfb999999999999a = 0x0 ++fcmpun 0x4014000000000000 0x3fc999999999999a = 0x0 ++fcmpun 0x4014000000000000 0xbfc999999999999a = 0x0 ++fcmpun 0x4014000000000000 0x4008000000000000 = 0x0 ++fcmpun 0x4014000000000000 0xc008000000000000 = 0x0 ++fcmpun 0x4014000000000000 0x4014000000000000 = 0x0 ++fcmpun 0x4014000000000000 0xc014000000000000 = 0x0 ++fcmpun 0x4014000000000000 0x4197d78400000000 = 0x0 ++fcmpun 0x4014000000000000 0xc197d78400000000 = 0x0 ++fcmpun 0xc014000000000000 0x0 = 0x0 ++fcmpun 0xc014000000000000 0x8000000000000000 = 0x0 ++fcmpun 0xc014000000000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0xc014000000000000 0x123456789abcdef0 = 0x0 ++fcmpun 0xc014000000000000 0x3ff0000000000000 = 0x0 ++fcmpun 0xc014000000000000 0xbff0000000000000 = 0x0 ++fcmpun 0xc014000000000000 0x3fb999999999999a = 0x0 ++fcmpun 0xc014000000000000 0xbfb999999999999a = 0x0 ++fcmpun 0xc014000000000000 0x3fc999999999999a = 0x0 ++fcmpun 0xc014000000000000 0xbfc999999999999a = 0x0 ++fcmpun 0xc014000000000000 0x4008000000000000 = 0x0 ++fcmpun 0xc014000000000000 0xc008000000000000 = 0x0 ++fcmpun 0xc014000000000000 0x4014000000000000 = 0x0 ++fcmpun 0xc014000000000000 0xc014000000000000 = 0x0 ++fcmpun 0xc014000000000000 0x4197d78400000000 = 0x0 ++fcmpun 0xc014000000000000 0xc197d78400000000 = 0x0 ++fcmpun 0x4197d78400000000 0x0 = 0x0 ++fcmpun 0x4197d78400000000 0x8000000000000000 = 0x0 ++fcmpun 0x4197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0x4197d78400000000 0x123456789abcdef0 = 0x0 ++fcmpun 0x4197d78400000000 0x3ff0000000000000 = 0x0 ++fcmpun 0x4197d78400000000 0xbff0000000000000 = 0x0 ++fcmpun 0x4197d78400000000 0x3fb999999999999a = 0x0 ++fcmpun 0x4197d78400000000 0xbfb999999999999a = 0x0 ++fcmpun 0x4197d78400000000 0x3fc999999999999a = 0x0 ++fcmpun 0x4197d78400000000 0xbfc999999999999a = 0x0 ++fcmpun 0x4197d78400000000 0x4008000000000000 = 0x0 ++fcmpun 0x4197d78400000000 0xc008000000000000 = 0x0 ++fcmpun 0x4197d78400000000 0x4014000000000000 = 0x0 ++fcmpun 0x4197d78400000000 0xc014000000000000 = 0x0 ++fcmpun 0x4197d78400000000 0x4197d78400000000 = 0x0 ++fcmpun 0x4197d78400000000 0xc197d78400000000 = 0x0 ++fcmpun 0xc197d78400000000 0x0 = 0x0 ++fcmpun 0xc197d78400000000 0x8000000000000000 = 0x0 ++fcmpun 0xc197d78400000000 0xf0debc9a78563412 = 0x0 ++fcmpun 0xc197d78400000000 0x123456789abcdef0 = 0x0 ++fcmpun 0xc197d78400000000 0x3ff0000000000000 = 0x0 ++fcmpun 0xc197d78400000000 0xbff0000000000000 = 0x0 ++fcmpun 0xc197d78400000000 0x3fb999999999999a = 0x0 ++fcmpun 0xc197d78400000000 0xbfb999999999999a = 0x0 ++fcmpun 0xc197d78400000000 0x3fc999999999999a = 0x0 ++fcmpun 0xc197d78400000000 0xbfc999999999999a = 0x0 ++fcmpun 0xc197d78400000000 0x4008000000000000 = 0x0 ++fcmpun 0xc197d78400000000 0xc008000000000000 = 0x0 ++fcmpun 0xc197d78400000000 0x4014000000000000 = 0x0 ++fcmpun 0xc197d78400000000 0xc014000000000000 = 0x0 ++fcmpun 0xc197d78400000000 0x4197d78400000000 = 0x0 ++fcmpun 0xc197d78400000000 0xc197d78400000000 = 0x0 ++=== Running test on fcpys=== ++fcpys 0x0 0x0 = 0x0 ++fcpys 0x0 0x8000000000000000 = 0x0 ++fcpys 0x0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x0 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x0 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x0 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x0 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x0 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x0 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x0 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x0 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x0 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x0 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x0 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0x8000000000000000 0x0 = 0x8000000000000000 ++fcpys 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpys 0x8000000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0x8000000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0x8000000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0x8000000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0x8000000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0x8000000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0x8000000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0x8000000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpys 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpys 0x8000000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpys 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpys 0x8000000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpys 0xf0debc9a78563412 0x0 = 0x8000000000000000 ++fcpys 0xf0debc9a78563412 0x8000000000000000 = 0x8000000000000000 ++fcpys 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0xf0debc9a78563412 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0xf0debc9a78563412 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0xf0debc9a78563412 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0xf0debc9a78563412 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0xf0debc9a78563412 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0xf0debc9a78563412 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0xf0debc9a78563412 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0xf0debc9a78563412 0x4008000000000000 = 0xc008000000000000 ++fcpys 0xf0debc9a78563412 0xc008000000000000 = 0xc008000000000000 ++fcpys 0xf0debc9a78563412 0x4014000000000000 = 0xc014000000000000 ++fcpys 0xf0debc9a78563412 0xc014000000000000 = 0xc014000000000000 ++fcpys 0xf0debc9a78563412 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0xf0debc9a78563412 0xc197d78400000000 = 0xc197d78400000000 ++fcpys 0x123456789abcdef0 0x0 = 0x0 ++fcpys 0x123456789abcdef0 0x8000000000000000 = 0x0 ++fcpys 0x123456789abcdef0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x123456789abcdef0 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x123456789abcdef0 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x123456789abcdef0 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x123456789abcdef0 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x123456789abcdef0 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x123456789abcdef0 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x123456789abcdef0 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x123456789abcdef0 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x123456789abcdef0 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x123456789abcdef0 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x123456789abcdef0 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x123456789abcdef0 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0x3ff0000000000000 0x0 = 0x0 ++fcpys 0x3ff0000000000000 0x8000000000000000 = 0x0 ++fcpys 0x3ff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x3ff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x3ff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x3ff0000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x3ff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x3ff0000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x3ff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x3ff0000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x3ff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x3ff0000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x3ff0000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0xbff0000000000000 0x0 = 0x8000000000000000 ++fcpys 0xbff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpys 0xbff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0xbff0000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0xbff0000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0xbff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0xbff0000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0xbff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0xbff0000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpys 0xbff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpys 0xbff0000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpys 0xbff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpys 0xbff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0xbff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpys 0x3fb999999999999a 0x0 = 0x0 ++fcpys 0x3fb999999999999a 0x8000000000000000 = 0x0 ++fcpys 0x3fb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x3fb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x3fb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x3fb999999999999a 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x3fb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x3fb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x3fb999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x3fb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x3fb999999999999a 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x3fb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x3fb999999999999a 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x3fb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x3fb999999999999a 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0xbfb999999999999a 0x0 = 0x8000000000000000 ++fcpys 0xbfb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fcpys 0xbfb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0xbfb999999999999a 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0xbfb999999999999a 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0xbfb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0xbfb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0xbfb999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0xbfb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0xbfb999999999999a 0x4008000000000000 = 0xc008000000000000 ++fcpys 0xbfb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fcpys 0xbfb999999999999a 0x4014000000000000 = 0xc014000000000000 ++fcpys 0xbfb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fcpys 0xbfb999999999999a 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0xbfb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fcpys 0x3fc999999999999a 0x0 = 0x0 ++fcpys 0x3fc999999999999a 0x8000000000000000 = 0x0 ++fcpys 0x3fc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x3fc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x3fc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x3fc999999999999a 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x3fc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x3fc999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x3fc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x3fc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x3fc999999999999a 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x3fc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x3fc999999999999a 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x3fc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x3fc999999999999a 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0xbfc999999999999a 0x0 = 0x8000000000000000 ++fcpys 0xbfc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fcpys 0xbfc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0xbfc999999999999a 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0xbfc999999999999a 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0xbfc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0xbfc999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0xbfc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0xbfc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0xbfc999999999999a 0x4008000000000000 = 0xc008000000000000 ++fcpys 0xbfc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fcpys 0xbfc999999999999a 0x4014000000000000 = 0xc014000000000000 ++fcpys 0xbfc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fcpys 0xbfc999999999999a 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0xbfc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fcpys 0x4008000000000000 0x0 = 0x0 ++fcpys 0x4008000000000000 0x8000000000000000 = 0x0 ++fcpys 0x4008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x4008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x4008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x4008000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x4008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x4008000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x4008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x4008000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x4008000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x4008000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x4008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x4008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0xc008000000000000 0x0 = 0x8000000000000000 ++fcpys 0xc008000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpys 0xc008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0xc008000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0xc008000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0xc008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0xc008000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0xc008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0xc008000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0xc008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0xc008000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpys 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpys 0xc008000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpys 0xc008000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpys 0xc008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0xc008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpys 0x4014000000000000 0x0 = 0x0 ++fcpys 0x4014000000000000 0x8000000000000000 = 0x0 ++fcpys 0x4014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x4014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x4014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x4014000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x4014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x4014000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x4014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x4014000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x4014000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x4014000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x4014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x4014000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0xc014000000000000 0x0 = 0x8000000000000000 ++fcpys 0xc014000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpys 0xc014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0xc014000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0xc014000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0xc014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0xc014000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0xc014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0xc014000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0xc014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0xc014000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpys 0xc014000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpys 0xc014000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpys 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpys 0xc014000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0xc014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpys 0x4197d78400000000 0x0 = 0x0 ++fcpys 0x4197d78400000000 0x8000000000000000 = 0x0 ++fcpys 0x4197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpys 0x4197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpys 0x4197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpys 0x4197d78400000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpys 0x4197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpys 0x4197d78400000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpys 0x4197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpys 0x4197d78400000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpys 0x4197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fcpys 0x4197d78400000000 0xc008000000000000 = 0x4008000000000000 ++fcpys 0x4197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fcpys 0x4197d78400000000 0xc014000000000000 = 0x4014000000000000 ++fcpys 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpys 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpys 0xc197d78400000000 0x0 = 0x8000000000000000 ++fcpys 0xc197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fcpys 0xc197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpys 0xc197d78400000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpys 0xc197d78400000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpys 0xc197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpys 0xc197d78400000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpys 0xc197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpys 0xc197d78400000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpys 0xc197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpys 0xc197d78400000000 0x4008000000000000 = 0xc008000000000000 ++fcpys 0xc197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fcpys 0xc197d78400000000 0x4014000000000000 = 0xc014000000000000 ++fcpys 0xc197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fcpys 0xc197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpys 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++=== Running test on fcpyse=== ++fcpyse 0x0 0x0 = 0x0 ++fcpyse 0x0 0x8000000000000000 = 0x0 ++fcpyse 0x0 0xf0debc9a78563412 = 0xebc9a78563412 ++fcpyse 0x0 0x123456789abcdef0 = 0x456789abcdef0 ++fcpyse 0x0 0x3ff0000000000000 = 0x0 ++fcpyse 0x0 0xbff0000000000000 = 0x0 ++fcpyse 0x0 0x3fb999999999999a = 0x999999999999a ++fcpyse 0x0 0xbfb999999999999a = 0x999999999999a ++fcpyse 0x0 0x3fc999999999999a = 0x999999999999a ++fcpyse 0x0 0xbfc999999999999a = 0x999999999999a ++fcpyse 0x0 0x4008000000000000 = 0x8000000000000 ++fcpyse 0x0 0xc008000000000000 = 0x8000000000000 ++fcpyse 0x0 0x4014000000000000 = 0x4000000000000 ++fcpyse 0x0 0xc014000000000000 = 0x4000000000000 ++fcpyse 0x0 0x4197d78400000000 = 0x7d78400000000 ++fcpyse 0x0 0xc197d78400000000 = 0x7d78400000000 ++fcpyse 0x8000000000000000 0x0 = 0x8000000000000000 ++fcpyse 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpyse 0x8000000000000000 0xf0debc9a78563412 = 0x800ebc9a78563412 ++fcpyse 0x8000000000000000 0x123456789abcdef0 = 0x800456789abcdef0 ++fcpyse 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fcpyse 0x8000000000000000 0xbff0000000000000 = 0x8000000000000000 ++fcpyse 0x8000000000000000 0x3fb999999999999a = 0x800999999999999a ++fcpyse 0x8000000000000000 0xbfb999999999999a = 0x800999999999999a ++fcpyse 0x8000000000000000 0x3fc999999999999a = 0x800999999999999a ++fcpyse 0x8000000000000000 0xbfc999999999999a = 0x800999999999999a ++fcpyse 0x8000000000000000 0x4008000000000000 = 0x8008000000000000 ++fcpyse 0x8000000000000000 0xc008000000000000 = 0x8008000000000000 ++fcpyse 0x8000000000000000 0x4014000000000000 = 0x8004000000000000 ++fcpyse 0x8000000000000000 0xc014000000000000 = 0x8004000000000000 ++fcpyse 0x8000000000000000 0x4197d78400000000 = 0x8007d78400000000 ++fcpyse 0x8000000000000000 0xc197d78400000000 = 0x8007d78400000000 ++fcpyse 0xf0debc9a78563412 0x0 = 0xf0d0000000000000 ++fcpyse 0xf0debc9a78563412 0x8000000000000000 = 0xf0d0000000000000 ++fcpyse 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpyse 0xf0debc9a78563412 0x123456789abcdef0 = 0xf0d456789abcdef0 ++fcpyse 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0d0000000000000 ++fcpyse 0xf0debc9a78563412 0xbff0000000000000 = 0xf0d0000000000000 ++fcpyse 0xf0debc9a78563412 0x3fb999999999999a = 0xf0d999999999999a ++fcpyse 0xf0debc9a78563412 0xbfb999999999999a = 0xf0d999999999999a ++fcpyse 0xf0debc9a78563412 0x3fc999999999999a = 0xf0d999999999999a ++fcpyse 0xf0debc9a78563412 0xbfc999999999999a = 0xf0d999999999999a ++fcpyse 0xf0debc9a78563412 0x4008000000000000 = 0xf0d8000000000000 ++fcpyse 0xf0debc9a78563412 0xc008000000000000 = 0xf0d8000000000000 ++fcpyse 0xf0debc9a78563412 0x4014000000000000 = 0xf0d4000000000000 ++fcpyse 0xf0debc9a78563412 0xc014000000000000 = 0xf0d4000000000000 ++fcpyse 0xf0debc9a78563412 0x4197d78400000000 = 0xf0d7d78400000000 ++fcpyse 0xf0debc9a78563412 0xc197d78400000000 = 0xf0d7d78400000000 ++fcpyse 0x123456789abcdef0 0x0 = 0x1230000000000000 ++fcpyse 0x123456789abcdef0 0x8000000000000000 = 0x1230000000000000 ++fcpyse 0x123456789abcdef0 0xf0debc9a78563412 = 0x123ebc9a78563412 ++fcpyse 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpyse 0x123456789abcdef0 0x3ff0000000000000 = 0x1230000000000000 ++fcpyse 0x123456789abcdef0 0xbff0000000000000 = 0x1230000000000000 ++fcpyse 0x123456789abcdef0 0x3fb999999999999a = 0x123999999999999a ++fcpyse 0x123456789abcdef0 0xbfb999999999999a = 0x123999999999999a ++fcpyse 0x123456789abcdef0 0x3fc999999999999a = 0x123999999999999a ++fcpyse 0x123456789abcdef0 0xbfc999999999999a = 0x123999999999999a ++fcpyse 0x123456789abcdef0 0x4008000000000000 = 0x1238000000000000 ++fcpyse 0x123456789abcdef0 0xc008000000000000 = 0x1238000000000000 ++fcpyse 0x123456789abcdef0 0x4014000000000000 = 0x1234000000000000 ++fcpyse 0x123456789abcdef0 0xc014000000000000 = 0x1234000000000000 ++fcpyse 0x123456789abcdef0 0x4197d78400000000 = 0x1237d78400000000 ++fcpyse 0x123456789abcdef0 0xc197d78400000000 = 0x1237d78400000000 ++fcpyse 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++fcpyse 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++fcpyse 0x3ff0000000000000 0xf0debc9a78563412 = 0x3ffebc9a78563412 ++fcpyse 0x3ff0000000000000 0x123456789abcdef0 = 0x3ff456789abcdef0 ++fcpyse 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpyse 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpyse 0x3ff0000000000000 0x3fb999999999999a = 0x3ff999999999999a ++fcpyse 0x3ff0000000000000 0xbfb999999999999a = 0x3ff999999999999a ++fcpyse 0x3ff0000000000000 0x3fc999999999999a = 0x3ff999999999999a ++fcpyse 0x3ff0000000000000 0xbfc999999999999a = 0x3ff999999999999a ++fcpyse 0x3ff0000000000000 0x4008000000000000 = 0x3ff8000000000000 ++fcpyse 0x3ff0000000000000 0xc008000000000000 = 0x3ff8000000000000 ++fcpyse 0x3ff0000000000000 0x4014000000000000 = 0x3ff4000000000000 ++fcpyse 0x3ff0000000000000 0xc014000000000000 = 0x3ff4000000000000 ++fcpyse 0x3ff0000000000000 0x4197d78400000000 = 0x3ff7d78400000000 ++fcpyse 0x3ff0000000000000 0xc197d78400000000 = 0x3ff7d78400000000 ++fcpyse 0xbff0000000000000 0x0 = 0xbff0000000000000 ++fcpyse 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++fcpyse 0xbff0000000000000 0xf0debc9a78563412 = 0xbffebc9a78563412 ++fcpyse 0xbff0000000000000 0x123456789abcdef0 = 0xbff456789abcdef0 ++fcpyse 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpyse 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpyse 0xbff0000000000000 0x3fb999999999999a = 0xbff999999999999a ++fcpyse 0xbff0000000000000 0xbfb999999999999a = 0xbff999999999999a ++fcpyse 0xbff0000000000000 0x3fc999999999999a = 0xbff999999999999a ++fcpyse 0xbff0000000000000 0xbfc999999999999a = 0xbff999999999999a ++fcpyse 0xbff0000000000000 0x4008000000000000 = 0xbff8000000000000 ++fcpyse 0xbff0000000000000 0xc008000000000000 = 0xbff8000000000000 ++fcpyse 0xbff0000000000000 0x4014000000000000 = 0xbff4000000000000 ++fcpyse 0xbff0000000000000 0xc014000000000000 = 0xbff4000000000000 ++fcpyse 0xbff0000000000000 0x4197d78400000000 = 0xbff7d78400000000 ++fcpyse 0xbff0000000000000 0xc197d78400000000 = 0xbff7d78400000000 ++fcpyse 0x3fb999999999999a 0x0 = 0x3fb0000000000000 ++fcpyse 0x3fb999999999999a 0x8000000000000000 = 0x3fb0000000000000 ++fcpyse 0x3fb999999999999a 0xf0debc9a78563412 = 0x3fbebc9a78563412 ++fcpyse 0x3fb999999999999a 0x123456789abcdef0 = 0x3fb456789abcdef0 ++fcpyse 0x3fb999999999999a 0x3ff0000000000000 = 0x3fb0000000000000 ++fcpyse 0x3fb999999999999a 0xbff0000000000000 = 0x3fb0000000000000 ++fcpyse 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fcpyse 0x3fb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fcpyse 0x3fb999999999999a 0x3fc999999999999a = 0x3fb999999999999a ++fcpyse 0x3fb999999999999a 0xbfc999999999999a = 0x3fb999999999999a ++fcpyse 0x3fb999999999999a 0x4008000000000000 = 0x3fb8000000000000 ++fcpyse 0x3fb999999999999a 0xc008000000000000 = 0x3fb8000000000000 ++fcpyse 0x3fb999999999999a 0x4014000000000000 = 0x3fb4000000000000 ++fcpyse 0x3fb999999999999a 0xc014000000000000 = 0x3fb4000000000000 ++fcpyse 0x3fb999999999999a 0x4197d78400000000 = 0x3fb7d78400000000 ++fcpyse 0x3fb999999999999a 0xc197d78400000000 = 0x3fb7d78400000000 ++fcpyse 0xbfb999999999999a 0x0 = 0xbfb0000000000000 ++fcpyse 0xbfb999999999999a 0x8000000000000000 = 0xbfb0000000000000 ++fcpyse 0xbfb999999999999a 0xf0debc9a78563412 = 0xbfbebc9a78563412 ++fcpyse 0xbfb999999999999a 0x123456789abcdef0 = 0xbfb456789abcdef0 ++fcpyse 0xbfb999999999999a 0x3ff0000000000000 = 0xbfb0000000000000 ++fcpyse 0xbfb999999999999a 0xbff0000000000000 = 0xbfb0000000000000 ++fcpyse 0xbfb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fcpyse 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fcpyse 0xbfb999999999999a 0x3fc999999999999a = 0xbfb999999999999a ++fcpyse 0xbfb999999999999a 0xbfc999999999999a = 0xbfb999999999999a ++fcpyse 0xbfb999999999999a 0x4008000000000000 = 0xbfb8000000000000 ++fcpyse 0xbfb999999999999a 0xc008000000000000 = 0xbfb8000000000000 ++fcpyse 0xbfb999999999999a 0x4014000000000000 = 0xbfb4000000000000 ++fcpyse 0xbfb999999999999a 0xc014000000000000 = 0xbfb4000000000000 ++fcpyse 0xbfb999999999999a 0x4197d78400000000 = 0xbfb7d78400000000 ++fcpyse 0xbfb999999999999a 0xc197d78400000000 = 0xbfb7d78400000000 ++fcpyse 0x3fc999999999999a 0x0 = 0x3fc0000000000000 ++fcpyse 0x3fc999999999999a 0x8000000000000000 = 0x3fc0000000000000 ++fcpyse 0x3fc999999999999a 0xf0debc9a78563412 = 0x3fcebc9a78563412 ++fcpyse 0x3fc999999999999a 0x123456789abcdef0 = 0x3fc456789abcdef0 ++fcpyse 0x3fc999999999999a 0x3ff0000000000000 = 0x3fc0000000000000 ++fcpyse 0x3fc999999999999a 0xbff0000000000000 = 0x3fc0000000000000 ++fcpyse 0x3fc999999999999a 0x3fb999999999999a = 0x3fc999999999999a ++fcpyse 0x3fc999999999999a 0xbfb999999999999a = 0x3fc999999999999a ++fcpyse 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fcpyse 0x3fc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fcpyse 0x3fc999999999999a 0x4008000000000000 = 0x3fc8000000000000 ++fcpyse 0x3fc999999999999a 0xc008000000000000 = 0x3fc8000000000000 ++fcpyse 0x3fc999999999999a 0x4014000000000000 = 0x3fc4000000000000 ++fcpyse 0x3fc999999999999a 0xc014000000000000 = 0x3fc4000000000000 ++fcpyse 0x3fc999999999999a 0x4197d78400000000 = 0x3fc7d78400000000 ++fcpyse 0x3fc999999999999a 0xc197d78400000000 = 0x3fc7d78400000000 ++fcpyse 0xbfc999999999999a 0x0 = 0xbfc0000000000000 ++fcpyse 0xbfc999999999999a 0x8000000000000000 = 0xbfc0000000000000 ++fcpyse 0xbfc999999999999a 0xf0debc9a78563412 = 0xbfcebc9a78563412 ++fcpyse 0xbfc999999999999a 0x123456789abcdef0 = 0xbfc456789abcdef0 ++fcpyse 0xbfc999999999999a 0x3ff0000000000000 = 0xbfc0000000000000 ++fcpyse 0xbfc999999999999a 0xbff0000000000000 = 0xbfc0000000000000 ++fcpyse 0xbfc999999999999a 0x3fb999999999999a = 0xbfc999999999999a ++fcpyse 0xbfc999999999999a 0xbfb999999999999a = 0xbfc999999999999a ++fcpyse 0xbfc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fcpyse 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fcpyse 0xbfc999999999999a 0x4008000000000000 = 0xbfc8000000000000 ++fcpyse 0xbfc999999999999a 0xc008000000000000 = 0xbfc8000000000000 ++fcpyse 0xbfc999999999999a 0x4014000000000000 = 0xbfc4000000000000 ++fcpyse 0xbfc999999999999a 0xc014000000000000 = 0xbfc4000000000000 ++fcpyse 0xbfc999999999999a 0x4197d78400000000 = 0xbfc7d78400000000 ++fcpyse 0xbfc999999999999a 0xc197d78400000000 = 0xbfc7d78400000000 ++fcpyse 0x4008000000000000 0x0 = 0x4000000000000000 ++fcpyse 0x4008000000000000 0x8000000000000000 = 0x4000000000000000 ++fcpyse 0x4008000000000000 0xf0debc9a78563412 = 0x400ebc9a78563412 ++fcpyse 0x4008000000000000 0x123456789abcdef0 = 0x400456789abcdef0 ++fcpyse 0x4008000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fcpyse 0x4008000000000000 0xbff0000000000000 = 0x4000000000000000 ++fcpyse 0x4008000000000000 0x3fb999999999999a = 0x400999999999999a ++fcpyse 0x4008000000000000 0xbfb999999999999a = 0x400999999999999a ++fcpyse 0x4008000000000000 0x3fc999999999999a = 0x400999999999999a ++fcpyse 0x4008000000000000 0xbfc999999999999a = 0x400999999999999a ++fcpyse 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpyse 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpyse 0x4008000000000000 0x4014000000000000 = 0x4004000000000000 ++fcpyse 0x4008000000000000 0xc014000000000000 = 0x4004000000000000 ++fcpyse 0x4008000000000000 0x4197d78400000000 = 0x4007d78400000000 ++fcpyse 0x4008000000000000 0xc197d78400000000 = 0x4007d78400000000 ++fcpyse 0xc008000000000000 0x0 = 0xc000000000000000 ++fcpyse 0xc008000000000000 0x8000000000000000 = 0xc000000000000000 ++fcpyse 0xc008000000000000 0xf0debc9a78563412 = 0xc00ebc9a78563412 ++fcpyse 0xc008000000000000 0x123456789abcdef0 = 0xc00456789abcdef0 ++fcpyse 0xc008000000000000 0x3ff0000000000000 = 0xc000000000000000 ++fcpyse 0xc008000000000000 0xbff0000000000000 = 0xc000000000000000 ++fcpyse 0xc008000000000000 0x3fb999999999999a = 0xc00999999999999a ++fcpyse 0xc008000000000000 0xbfb999999999999a = 0xc00999999999999a ++fcpyse 0xc008000000000000 0x3fc999999999999a = 0xc00999999999999a ++fcpyse 0xc008000000000000 0xbfc999999999999a = 0xc00999999999999a ++fcpyse 0xc008000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpyse 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpyse 0xc008000000000000 0x4014000000000000 = 0xc004000000000000 ++fcpyse 0xc008000000000000 0xc014000000000000 = 0xc004000000000000 ++fcpyse 0xc008000000000000 0x4197d78400000000 = 0xc007d78400000000 ++fcpyse 0xc008000000000000 0xc197d78400000000 = 0xc007d78400000000 ++fcpyse 0x4014000000000000 0x0 = 0x4010000000000000 ++fcpyse 0x4014000000000000 0x8000000000000000 = 0x4010000000000000 ++fcpyse 0x4014000000000000 0xf0debc9a78563412 = 0x401ebc9a78563412 ++fcpyse 0x4014000000000000 0x123456789abcdef0 = 0x401456789abcdef0 ++fcpyse 0x4014000000000000 0x3ff0000000000000 = 0x4010000000000000 ++fcpyse 0x4014000000000000 0xbff0000000000000 = 0x4010000000000000 ++fcpyse 0x4014000000000000 0x3fb999999999999a = 0x401999999999999a ++fcpyse 0x4014000000000000 0xbfb999999999999a = 0x401999999999999a ++fcpyse 0x4014000000000000 0x3fc999999999999a = 0x401999999999999a ++fcpyse 0x4014000000000000 0xbfc999999999999a = 0x401999999999999a ++fcpyse 0x4014000000000000 0x4008000000000000 = 0x4018000000000000 ++fcpyse 0x4014000000000000 0xc008000000000000 = 0x4018000000000000 ++fcpyse 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpyse 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpyse 0x4014000000000000 0x4197d78400000000 = 0x4017d78400000000 ++fcpyse 0x4014000000000000 0xc197d78400000000 = 0x4017d78400000000 ++fcpyse 0xc014000000000000 0x0 = 0xc010000000000000 ++fcpyse 0xc014000000000000 0x8000000000000000 = 0xc010000000000000 ++fcpyse 0xc014000000000000 0xf0debc9a78563412 = 0xc01ebc9a78563412 ++fcpyse 0xc014000000000000 0x123456789abcdef0 = 0xc01456789abcdef0 ++fcpyse 0xc014000000000000 0x3ff0000000000000 = 0xc010000000000000 ++fcpyse 0xc014000000000000 0xbff0000000000000 = 0xc010000000000000 ++fcpyse 0xc014000000000000 0x3fb999999999999a = 0xc01999999999999a ++fcpyse 0xc014000000000000 0xbfb999999999999a = 0xc01999999999999a ++fcpyse 0xc014000000000000 0x3fc999999999999a = 0xc01999999999999a ++fcpyse 0xc014000000000000 0xbfc999999999999a = 0xc01999999999999a ++fcpyse 0xc014000000000000 0x4008000000000000 = 0xc018000000000000 ++fcpyse 0xc014000000000000 0xc008000000000000 = 0xc018000000000000 ++fcpyse 0xc014000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpyse 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpyse 0xc014000000000000 0x4197d78400000000 = 0xc017d78400000000 ++fcpyse 0xc014000000000000 0xc197d78400000000 = 0xc017d78400000000 ++fcpyse 0x4197d78400000000 0x0 = 0x4190000000000000 ++fcpyse 0x4197d78400000000 0x8000000000000000 = 0x4190000000000000 ++fcpyse 0x4197d78400000000 0xf0debc9a78563412 = 0x419ebc9a78563412 ++fcpyse 0x4197d78400000000 0x123456789abcdef0 = 0x419456789abcdef0 ++fcpyse 0x4197d78400000000 0x3ff0000000000000 = 0x4190000000000000 ++fcpyse 0x4197d78400000000 0xbff0000000000000 = 0x4190000000000000 ++fcpyse 0x4197d78400000000 0x3fb999999999999a = 0x419999999999999a ++fcpyse 0x4197d78400000000 0xbfb999999999999a = 0x419999999999999a ++fcpyse 0x4197d78400000000 0x3fc999999999999a = 0x419999999999999a ++fcpyse 0x4197d78400000000 0xbfc999999999999a = 0x419999999999999a ++fcpyse 0x4197d78400000000 0x4008000000000000 = 0x4198000000000000 ++fcpyse 0x4197d78400000000 0xc008000000000000 = 0x4198000000000000 ++fcpyse 0x4197d78400000000 0x4014000000000000 = 0x4194000000000000 ++fcpyse 0x4197d78400000000 0xc014000000000000 = 0x4194000000000000 ++fcpyse 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpyse 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpyse 0xc197d78400000000 0x0 = 0xc190000000000000 ++fcpyse 0xc197d78400000000 0x8000000000000000 = 0xc190000000000000 ++fcpyse 0xc197d78400000000 0xf0debc9a78563412 = 0xc19ebc9a78563412 ++fcpyse 0xc197d78400000000 0x123456789abcdef0 = 0xc19456789abcdef0 ++fcpyse 0xc197d78400000000 0x3ff0000000000000 = 0xc190000000000000 ++fcpyse 0xc197d78400000000 0xbff0000000000000 = 0xc190000000000000 ++fcpyse 0xc197d78400000000 0x3fb999999999999a = 0xc19999999999999a ++fcpyse 0xc197d78400000000 0xbfb999999999999a = 0xc19999999999999a ++fcpyse 0xc197d78400000000 0x3fc999999999999a = 0xc19999999999999a ++fcpyse 0xc197d78400000000 0xbfc999999999999a = 0xc19999999999999a ++fcpyse 0xc197d78400000000 0x4008000000000000 = 0xc198000000000000 ++fcpyse 0xc197d78400000000 0xc008000000000000 = 0xc198000000000000 ++fcpyse 0xc197d78400000000 0x4014000000000000 = 0xc194000000000000 ++fcpyse 0xc197d78400000000 0xc014000000000000 = 0xc194000000000000 ++fcpyse 0xc197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpyse 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++=== Running test on fcpysn=== ++fcpysn 0x0 0x0 = 0x8000000000000000 ++fcpysn 0x0 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x0 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x0 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x0 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x0 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x0 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x0 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x0 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x0 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x0 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x0 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x0 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0x8000000000000000 0x0 = 0x0 ++fcpysn 0x8000000000000000 0x8000000000000000 = 0x0 ++fcpysn 0x8000000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0x8000000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0x8000000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0x8000000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0x8000000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0x8000000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0x8000000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0x8000000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0x8000000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0x8000000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpysn 0xf0debc9a78563412 0x0 = 0x0 ++fcpysn 0xf0debc9a78563412 0x8000000000000000 = 0x0 ++fcpysn 0xf0debc9a78563412 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0xf0debc9a78563412 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0xf0debc9a78563412 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xf0debc9a78563412 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xf0debc9a78563412 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0xf0debc9a78563412 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0xf0debc9a78563412 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0xf0debc9a78563412 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0xf0debc9a78563412 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0xf0debc9a78563412 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0xf0debc9a78563412 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0xf0debc9a78563412 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0xf0debc9a78563412 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0xf0debc9a78563412 0xc197d78400000000 = 0x4197d78400000000 ++fcpysn 0x123456789abcdef0 0x0 = 0x8000000000000000 ++fcpysn 0x123456789abcdef0 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x123456789abcdef0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x123456789abcdef0 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x123456789abcdef0 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x123456789abcdef0 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x123456789abcdef0 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x123456789abcdef0 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x123456789abcdef0 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x123456789abcdef0 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x123456789abcdef0 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x123456789abcdef0 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x123456789abcdef0 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x123456789abcdef0 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x123456789abcdef0 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x123456789abcdef0 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0x3ff0000000000000 0x0 = 0x8000000000000000 ++fcpysn 0x3ff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x3ff0000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x3ff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x3ff0000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x3ff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x3ff0000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x3ff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x3ff0000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x3ff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x3ff0000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x3ff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x3ff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0xbff0000000000000 0x0 = 0x0 ++fcpysn 0xbff0000000000000 0x8000000000000000 = 0x0 ++fcpysn 0xbff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0xbff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0xbff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xbff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0xbff0000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0xbff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0xbff0000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0xbff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0xbff0000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0xbff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0xbff0000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0xbff0000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpysn 0x3fb999999999999a 0x0 = 0x8000000000000000 ++fcpysn 0x3fb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x3fb999999999999a 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x3fb999999999999a 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x3fb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x3fb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x3fb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x3fb999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x3fb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x3fb999999999999a 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x3fb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x3fb999999999999a 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x3fb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x3fb999999999999a 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x3fb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0xbfb999999999999a 0x0 = 0x0 ++fcpysn 0xbfb999999999999a 0x8000000000000000 = 0x0 ++fcpysn 0xbfb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0xbfb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0xbfb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xbfb999999999999a 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xbfb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0xbfb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0xbfb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0xbfb999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0xbfb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0xbfb999999999999a 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0xbfb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0xbfb999999999999a 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0xbfb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0xbfb999999999999a 0xc197d78400000000 = 0x4197d78400000000 ++fcpysn 0x3fc999999999999a 0x0 = 0x8000000000000000 ++fcpysn 0x3fc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x3fc999999999999a 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x3fc999999999999a 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x3fc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x3fc999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x3fc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x3fc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x3fc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x3fc999999999999a 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x3fc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x3fc999999999999a 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x3fc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x3fc999999999999a 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x3fc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0xbfc999999999999a 0x0 = 0x0 ++fcpysn 0xbfc999999999999a 0x8000000000000000 = 0x0 ++fcpysn 0xbfc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0xbfc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0xbfc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xbfc999999999999a 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xbfc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0xbfc999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0xbfc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0xbfc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0xbfc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0xbfc999999999999a 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0xbfc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0xbfc999999999999a 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0xbfc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0xbfc999999999999a 0xc197d78400000000 = 0x4197d78400000000 ++fcpysn 0x4008000000000000 0x0 = 0x8000000000000000 ++fcpysn 0x4008000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x4008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x4008000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x4008000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x4008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x4008000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x4008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x4008000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x4008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x4008000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x4008000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x4008000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x4008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x4008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0xc008000000000000 0x0 = 0x0 ++fcpysn 0xc008000000000000 0x8000000000000000 = 0x0 ++fcpysn 0xc008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0xc008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0xc008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xc008000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xc008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0xc008000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0xc008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0xc008000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0xc008000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0xc008000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0xc008000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0xc008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpysn 0x4014000000000000 0x0 = 0x8000000000000000 ++fcpysn 0x4014000000000000 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x4014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x4014000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x4014000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x4014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x4014000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x4014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x4014000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x4014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x4014000000000000 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x4014000000000000 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x4014000000000000 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x4014000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x4014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0xc014000000000000 0x0 = 0x0 ++fcpysn 0xc014000000000000 0x8000000000000000 = 0x0 ++fcpysn 0xc014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0xc014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0xc014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xc014000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xc014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0xc014000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0xc014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0xc014000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0xc014000000000000 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0xc014000000000000 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0xc014000000000000 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0xc014000000000000 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0xc014000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fcpysn 0x4197d78400000000 0x0 = 0x8000000000000000 ++fcpysn 0x4197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fcpysn 0x4197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fcpysn 0x4197d78400000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fcpysn 0x4197d78400000000 0x3ff0000000000000 = 0xbff0000000000000 ++fcpysn 0x4197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fcpysn 0x4197d78400000000 0x3fb999999999999a = 0xbfb999999999999a ++fcpysn 0x4197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fcpysn 0x4197d78400000000 0x3fc999999999999a = 0xbfc999999999999a ++fcpysn 0x4197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fcpysn 0x4197d78400000000 0x4008000000000000 = 0xc008000000000000 ++fcpysn 0x4197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fcpysn 0x4197d78400000000 0x4014000000000000 = 0xc014000000000000 ++fcpysn 0x4197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fcpysn 0x4197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++fcpysn 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fcpysn 0xc197d78400000000 0x0 = 0x0 ++fcpysn 0xc197d78400000000 0x8000000000000000 = 0x0 ++fcpysn 0xc197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fcpysn 0xc197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fcpysn 0xc197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xc197d78400000000 0xbff0000000000000 = 0x3ff0000000000000 ++fcpysn 0xc197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fcpysn 0xc197d78400000000 0xbfb999999999999a = 0x3fb999999999999a ++fcpysn 0xc197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fcpysn 0xc197d78400000000 0xbfc999999999999a = 0x3fc999999999999a ++fcpysn 0xc197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fcpysn 0xc197d78400000000 0xc008000000000000 = 0x4008000000000000 ++fcpysn 0xc197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fcpysn 0xc197d78400000000 0xc014000000000000 = 0x4014000000000000 ++fcpysn 0xc197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fcpysn 0xc197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++=== Running test on fmas=== ++fmas 0x0 0x0 0x0 = 0x0 ++fmas 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fmas 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fmas 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmas 0x0 0x3fb99999a0000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fmas 0x0 0xbfb99999a0000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fmas 0x0 0x3fc99999a0000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fmas 0x0 0xbfc99999a0000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fmas 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fmas 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fmas 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fmas 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fmas 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0x8000000000000000 0x0 0x8000000000000000 = 0x8000000000000000 ++fmas 0x8000000000000000 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fmas 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmas 0x8000000000000000 0xbff0000000000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fmas 0x8000000000000000 0x3fb99999a0000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fmas 0x8000000000000000 0xbfb99999a0000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fmas 0x8000000000000000 0x3fc99999a0000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fmas 0x8000000000000000 0xbfc99999a0000000 0x4008000000000000 = 0x4008000000000000 ++fmas 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fmas 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fmas 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fmas 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fmas 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fmas 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmas 0x3ff0000000000000 0x3ff0000000000000 0x3fb99999a0000000 = 0x3ff19999a0000000 ++fmas 0x3ff0000000000000 0xbff0000000000000 0xbfb99999a0000000 = 0xbff19999a0000000 ++fmas 0x3ff0000000000000 0x3fb99999a0000000 0x3fc99999a0000000 = 0x3fd3333340000000 ++fmas 0x3ff0000000000000 0xbfb99999a0000000 0xbfc99999a0000000 = 0xbfd3333340000000 ++fmas 0x3ff0000000000000 0x3fc99999a0000000 0x4008000000000000 = 0x40099999a0000000 ++fmas 0x3ff0000000000000 0xbfc99999a0000000 0xc008000000000000 = 0xc0099999a0000000 ++fmas 0x3ff0000000000000 0x4008000000000000 0x4014000000000000 = 0x4020000000000000 ++fmas 0x3ff0000000000000 0xc008000000000000 0xc014000000000000 = 0xc020000000000000 ++fmas 0x3ff0000000000000 0x4014000000000000 0x4197d78400000000 = 0x4197d78420000000 ++fmas 0x3ff0000000000000 0xc014000000000000 0xc197d78400000000 = 0xc197d78420000000 ++fmas 0x3ff0000000000000 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fmas 0x3ff0000000000000 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fmas 0xbff0000000000000 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fmas 0xbff0000000000000 0x8000000000000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fmas 0xbff0000000000000 0x3ff0000000000000 0xbfb99999a0000000 = 0xbff19999a0000000 ++fmas 0xbff0000000000000 0xbff0000000000000 0x3fc99999a0000000 = 0x3ff3333340000000 ++fmas 0xbff0000000000000 0x3fb99999a0000000 0xbfc99999a0000000 = 0xbfd3333340000000 ++fmas 0xbff0000000000000 0xbfb99999a0000000 0x4008000000000000 = 0x4008ccccc0000000 ++fmas 0xbff0000000000000 0x3fc99999a0000000 0xc008000000000000 = 0xc0099999a0000000 ++fmas 0xbff0000000000000 0xbfc99999a0000000 0x4014000000000000 = 0x4014ccccc0000000 ++fmas 0xbff0000000000000 0x4008000000000000 0xc014000000000000 = 0xc020000000000000 ++fmas 0xbff0000000000000 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0xbff0000000000000 0x4014000000000000 0xc197d78400000000 = 0xc197d78420000000 ++fmas 0xbff0000000000000 0xc014000000000000 0x0 = 0x4014000000000000 ++fmas 0xbff0000000000000 0x4197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fmas 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fmas 0x3fb99999a0000000 0x0 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fmas 0x3fb99999a0000000 0x8000000000000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fmas 0x3fb99999a0000000 0x3ff0000000000000 0x3fc99999a0000000 = 0x3fd3333340000000 ++fmas 0x3fb99999a0000000 0xbff0000000000000 0xbfc99999a0000000 = 0xbfd3333340000000 ++fmas 0x3fb99999a0000000 0x3fb99999a0000000 0x4008000000000000 = 0x4008147ae0000000 ++fmas 0x3fb99999a0000000 0xbfb99999a0000000 0xc008000000000000 = 0xc008147ae0000000 ++fmas 0x3fb99999a0000000 0x3fc99999a0000000 0x4014000000000000 = 0x4014147ae0000000 ++fmas 0x3fb99999a0000000 0xbfc99999a0000000 0xc014000000000000 = 0xc014147ae0000000 ++fmas 0x3fb99999a0000000 0x4008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0x3fb99999a0000000 0xc008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0x3fb99999a0000000 0x4014000000000000 0x0 = 0x3fe0000000000000 ++fmas 0x3fb99999a0000000 0xc014000000000000 0x8000000000000000 = 0xbfe0000000000000 ++fmas 0x3fb99999a0000000 0x4197d78400000000 0x3ff0000000000000 = 0x416312d020000000 ++fmas 0x3fb99999a0000000 0xc197d78400000000 0xbff0000000000000 = 0xc16312d020000000 ++fmas 0xbfb99999a0000000 0x0 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fmas 0xbfb99999a0000000 0x8000000000000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fmas 0xbfb99999a0000000 0x3ff0000000000000 0xbfc99999a0000000 = 0xbfd3333340000000 ++fmas 0xbfb99999a0000000 0xbff0000000000000 0x4008000000000000 = 0x4008ccccc0000000 ++fmas 0xbfb99999a0000000 0x3fb99999a0000000 0xc008000000000000 = 0xc008147ae0000000 ++fmas 0xbfb99999a0000000 0xbfb99999a0000000 0x4014000000000000 = 0x40140a3d80000000 ++fmas 0xbfb99999a0000000 0x3fc99999a0000000 0xc014000000000000 = 0xc014147ae0000000 ++fmas 0xbfb99999a0000000 0xbfc99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0xbfb99999a0000000 0x4008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0xbfb99999a0000000 0xc008000000000000 0x0 = 0x3fd3333340000000 ++fmas 0xbfb99999a0000000 0x4014000000000000 0x8000000000000000 = 0xbfe0000000000000 ++fmas 0xbfb99999a0000000 0xc014000000000000 0x3ff0000000000000 = 0x3ff8000000000000 ++fmas 0xbfb99999a0000000 0x4197d78400000000 0xbff0000000000000 = 0xc16312d020000000 ++fmas 0xbfb99999a0000000 0xc197d78400000000 0x3fb99999a0000000 = 0x416312d000000000 ++fmas 0x3fc99999a0000000 0x0 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fmas 0x3fc99999a0000000 0x8000000000000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fmas 0x3fc99999a0000000 0x3ff0000000000000 0x4008000000000000 = 0x40099999a0000000 ++fmas 0x3fc99999a0000000 0xbff0000000000000 0xc008000000000000 = 0xc0099999a0000000 ++fmas 0x3fc99999a0000000 0x3fb99999a0000000 0x4014000000000000 = 0x4014147ae0000000 ++fmas 0x3fc99999a0000000 0xbfb99999a0000000 0xc014000000000000 = 0xc014147ae0000000 ++fmas 0x3fc99999a0000000 0x3fc99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0x3fc99999a0000000 0xbfc99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0x3fc99999a0000000 0x4008000000000000 0x0 = 0x3fe3333340000000 ++fmas 0x3fc99999a0000000 0xc008000000000000 0x8000000000000000 = 0xbfe3333340000000 ++fmas 0x3fc99999a0000000 0x4014000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fmas 0x3fc99999a0000000 0xc014000000000000 0xbff0000000000000 = 0xc000000000000000 ++fmas 0x3fc99999a0000000 0x4197d78400000000 0x3fb99999a0000000 = 0x417312d000000000 ++fmas 0x3fc99999a0000000 0xc197d78400000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmas 0xbfc99999a0000000 0x0 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fmas 0xbfc99999a0000000 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fmas 0xbfc99999a0000000 0x3ff0000000000000 0xc008000000000000 = 0xc0099999a0000000 ++fmas 0xbfc99999a0000000 0xbff0000000000000 0x4014000000000000 = 0x4014ccccc0000000 ++fmas 0xbfc99999a0000000 0x3fb99999a0000000 0xc014000000000000 = 0xc014147ae0000000 ++fmas 0xbfc99999a0000000 0xbfb99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0xbfc99999a0000000 0x3fc99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0xbfc99999a0000000 0xbfc99999a0000000 0x0 = 0x3fa47ae160000000 ++fmas 0xbfc99999a0000000 0x4008000000000000 0x8000000000000000 = 0xbfe3333340000000 ++fmas 0xbfc99999a0000000 0xc008000000000000 0x3ff0000000000000 = 0x3ff99999a0000000 ++fmas 0xbfc99999a0000000 0x4014000000000000 0xbff0000000000000 = 0xc000000000000000 ++fmas 0xbfc99999a0000000 0xc014000000000000 0x3fb99999a0000000 = 0x3ff19999a0000000 ++fmas 0xbfc99999a0000000 0x4197d78400000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmas 0xbfc99999a0000000 0xc197d78400000000 0x3fc99999a0000000 = 0x417312d000000000 ++fmas 0x4008000000000000 0x0 0x4008000000000000 = 0x4008000000000000 ++fmas 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fmas 0x4008000000000000 0x3ff0000000000000 0x4014000000000000 = 0x4020000000000000 ++fmas 0x4008000000000000 0xbff0000000000000 0xc014000000000000 = 0xc020000000000000 ++fmas 0x4008000000000000 0x3fb99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0x4008000000000000 0xbfb99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0x4008000000000000 0x3fc99999a0000000 0x0 = 0x3fe3333340000000 ++fmas 0x4008000000000000 0xbfc99999a0000000 0x8000000000000000 = 0xbfe3333340000000 ++fmas 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x4024000000000000 ++fmas 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xc024000000000000 ++fmas 0x4008000000000000 0x4014000000000000 0x3fb99999a0000000 = 0x402e333340000000 ++fmas 0x4008000000000000 0xc014000000000000 0xbfb99999a0000000 = 0xc02e333340000000 ++fmas 0x4008000000000000 0x4197d78400000000 0x3fc99999a0000000 = 0x41b1e1a300000000 ++fmas 0x4008000000000000 0xc197d78400000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmas 0xc008000000000000 0x0 0xc008000000000000 = 0xc008000000000000 ++fmas 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fmas 0xc008000000000000 0x3ff0000000000000 0xc014000000000000 = 0xc020000000000000 ++fmas 0xc008000000000000 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0xc008000000000000 0x3fb99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0xc008000000000000 0xbfb99999a0000000 0x0 = 0x3fd3333340000000 ++fmas 0xc008000000000000 0x3fc99999a0000000 0x8000000000000000 = 0xbfe3333340000000 ++fmas 0xc008000000000000 0xbfc99999a0000000 0x3ff0000000000000 = 0x3ff99999a0000000 ++fmas 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0xc024000000000000 ++fmas 0xc008000000000000 0xc008000000000000 0x3fb99999a0000000 = 0x4022333340000000 ++fmas 0xc008000000000000 0x4014000000000000 0xbfb99999a0000000 = 0xc02e333340000000 ++fmas 0xc008000000000000 0xc014000000000000 0x3fc99999a0000000 = 0x402e666660000000 ++fmas 0xc008000000000000 0x4197d78400000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmas 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0x41b1e1a300000000 ++fmas 0x4014000000000000 0x0 0x4014000000000000 = 0x4014000000000000 ++fmas 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fmas 0x4014000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78420000000 ++fmas 0x4014000000000000 0xbff0000000000000 0xc197d78400000000 = 0xc197d78420000000 ++fmas 0x4014000000000000 0x3fb99999a0000000 0x0 = 0x3fe0000000000000 ++fmas 0x4014000000000000 0xbfb99999a0000000 0x8000000000000000 = 0xbfe0000000000000 ++fmas 0x4014000000000000 0x3fc99999a0000000 0x3ff0000000000000 = 0x4000000000000000 ++fmas 0x4014000000000000 0xbfc99999a0000000 0xbff0000000000000 = 0xc000000000000000 ++fmas 0x4014000000000000 0x4008000000000000 0x3fb99999a0000000 = 0x402e333340000000 ++fmas 0x4014000000000000 0xc008000000000000 0xbfb99999a0000000 = 0xc02e333340000000 ++fmas 0x4014000000000000 0x4014000000000000 0x3fc99999a0000000 = 0x4039333340000000 ++fmas 0x4014000000000000 0xc014000000000000 0xbfc99999a0000000 = 0xc039333340000000 ++fmas 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x41bdcd6500000000 ++fmas 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmas 0xc014000000000000 0x0 0xc014000000000000 = 0xc014000000000000 ++fmas 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0xc014000000000000 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78420000000 ++fmas 0xc014000000000000 0xbff0000000000000 0x0 = 0x4014000000000000 ++fmas 0xc014000000000000 0x3fb99999a0000000 0x8000000000000000 = 0xbfe0000000000000 ++fmas 0xc014000000000000 0xbfb99999a0000000 0x3ff0000000000000 = 0x3ff8000000000000 ++fmas 0xc014000000000000 0x3fc99999a0000000 0xbff0000000000000 = 0xc000000000000000 ++fmas 0xc014000000000000 0xbfc99999a0000000 0x3fb99999a0000000 = 0x3ff19999a0000000 ++fmas 0xc014000000000000 0x4008000000000000 0xbfb99999a0000000 = 0xc02e333340000000 ++fmas 0xc014000000000000 0xc008000000000000 0x3fc99999a0000000 = 0x402e666660000000 ++fmas 0xc014000000000000 0x4014000000000000 0xbfc99999a0000000 = 0xc039333340000000 ++fmas 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0x403c000000000000 ++fmas 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmas 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0x41bdcd6500000000 ++fmas 0x4197d78400000000 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fmas 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0x4197d78400000000 0x3ff0000000000000 0x0 = 0x4197d78400000000 ++fmas 0x4197d78400000000 0xbff0000000000000 0x8000000000000000 = 0xc197d78400000000 ++fmas 0x4197d78400000000 0x3fb99999a0000000 0x3ff0000000000000 = 0x416312d020000000 ++fmas 0x4197d78400000000 0xbfb99999a0000000 0xbff0000000000000 = 0xc16312d020000000 ++fmas 0x4197d78400000000 0x3fc99999a0000000 0x3fb99999a0000000 = 0x417312d000000000 ++fmas 0x4197d78400000000 0xbfc99999a0000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmas 0x4197d78400000000 0x4008000000000000 0x3fc99999a0000000 = 0x41b1e1a300000000 ++fmas 0x4197d78400000000 0xc008000000000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmas 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x41bdcd6500000000 ++fmas 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmas 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4341c37940000000 ++fmas 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc341c37940000000 ++fmas 0xc197d78400000000 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fmas 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fmas 0xc197d78400000000 0x3ff0000000000000 0x8000000000000000 = 0xc197d78400000000 ++fmas 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0x4197d78400000000 ++fmas 0xc197d78400000000 0x3fb99999a0000000 0xbff0000000000000 = 0xc16312d020000000 ++fmas 0xc197d78400000000 0xbfb99999a0000000 0x3fb99999a0000000 = 0x416312d000000000 ++fmas 0xc197d78400000000 0x3fc99999a0000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmas 0xc197d78400000000 0xbfc99999a0000000 0x3fc99999a0000000 = 0x417312d000000000 ++fmas 0xc197d78400000000 0x4008000000000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmas 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0x41b1e1a300000000 ++fmas 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmas 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0x41bdcd6500000000 ++fmas 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0xc341c37940000000 ++fmas 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0x4341c37940000000 ++=== Running test on fmad=== ++fmad 0x0 0x0 0x0 = 0x0 ++fmad 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fmad 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fmad 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fmad 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmad 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fmad 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fmad 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fmad 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fmad 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fmad 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fmad 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fmad 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fmad 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fmad 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fmad 0x8000000000000000 0x0 0x8000000000000000 = 0x8000000000000000 ++fmad 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0x123456789abcdef0 ++fmad 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x3ff0000000000000 ++fmad 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmad 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fmad 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fmad 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fmad 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fmad 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fmad 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fmad 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fmad 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fmad 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmad 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fmad 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fmad 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fmad 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0x7ff0000000000000 ++fmad 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0xc32388ef423d9d0e ++fmad 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0xf0debc9a78563412 ++fmad 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0x70debc9a78563412 ++fmad 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0xf0a896e1f9de900f ++fmad 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0x70a896e1f9de900f ++fmad 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0xf0b896e1f9de900f ++fmad 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0x70b896e1f9de900f ++fmad 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0xf0f70d73da40a70d ++fmad 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0x70f70d73da40a70d ++fmad 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0xf10335e08b35e08b ++fmad 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0x710335e08b35e08b ++fmad 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0xf286e690fe53a8fe ++fmad 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0x7286e690fe53a8fe ++fmad 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x123456789abcdef0 ++fmad 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fmad 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xc32388ef423d9d0e ++fmad 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x3fb999999999999a ++fmad 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fmad 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fmad 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fmad 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fmad 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fmad 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fmad 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0xc014000000000000 ++fmad 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmad 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fmad 0x123456789abcdef0 0xc014000000000000 0x0 = 0x92596c16c16c16ac ++fmad 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x13de4e3f1c71c703 ++fmad 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fmad 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fmad 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0xf0debc9a78563412 ++fmad 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0xbfb999999999999a ++fmad 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3ff3333333333333 ++fmad 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbff3333333333333 ++fmad 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x4008cccccccccccd ++fmad 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xc008cccccccccccd ++fmad 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x4014cccccccccccd ++fmad 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xc014cccccccccccd ++fmad 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4197d7840c000000 ++fmad 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc197d7840c000000 ++fmad 0x3ff0000000000000 0x4014000000000000 0x0 = 0x4014000000000000 ++fmad 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fmad 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmad 0xbff0000000000000 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fmad 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fmad 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0x70debc9a78563412 ++fmad 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x3fc999999999999a ++fmad 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0xbff3333333333333 ++fmad 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0x4010000000000000 ++fmad 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0xc008cccccccccccd ++fmad 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0x4014666666666666 ++fmad 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0xc014cccccccccccd ++fmad 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0x4197d78400cccccd ++fmad 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0xc197d7840c000000 ++fmad 0xbff0000000000000 0xc008000000000000 0x0 = 0x4008000000000000 ++fmad 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0xc014000000000000 ++fmad 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmad 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0x4197d78404000000 ++fmad 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x3fb999999999999a ++fmad 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fmad 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0xf0a896e1f9de900f ++fmad 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0xbfc999999999999a ++fmad 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x4008cccccccccccd ++fmad 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xc008cccccccccccd ++fmad 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x40140a3d70a3d70a ++fmad 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xc0140a3d70a3d70a ++fmad 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x4197d78400147ae1 ++fmad 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xc197d78400147ae1 ++fmad 0x3fb999999999999a 0x4008000000000000 0x0 = 0x3fd3333333333334 ++fmad 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0xbfd3333333333334 ++fmad 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0xbfe0000000000000 ++fmad 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x416312d020000000 ++fmad 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xc16312d020000000 ++fmad 0xbfb999999999999a 0x0 0xbfb999999999999a = 0xbfb999999999999a ++fmad 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fmad 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0x70a896e1f9de900f ++fmad 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x4008000000000000 ++fmad 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0xc008cccccccccccd ++fmad 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0x4014666666666666 ++fmad 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0xc0140a3d70a3d70a ++fmad 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0x4197d784000a3d71 ++fmad 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0xc197d78400147ae1 ++fmad 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0x3f947ae147ae147c ++fmad 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0xbfd3333333333334 ++fmad 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0xbfe0000000000000 ++fmad 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0x3ff8000000000000 ++fmad 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0xc16312d020000000 ++fmad 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0x416312d003333333 ++fmad 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x3fc999999999999a ++fmad 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fmad 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0xf0b896e1f9de900f ++fmad 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0xc008000000000000 ++fmad 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x4014cccccccccccd ++fmad 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xc014cccccccccccd ++fmad 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x4197d78400147ae1 ++fmad 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xc197d78400147ae1 ++fmad 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x3fa47ae147ae147c ++fmad 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0xbfa47ae147ae147c ++fmad 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0xbfe3333333333333 ++fmad 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x4000000000000000 ++fmad 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xc000000000000000 ++fmad 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x417312d00199999a ++fmad 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xc17312d00199999a ++fmad 0xbfc999999999999a 0x0 0xbfc999999999999a = 0xbfc999999999999a ++fmad 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fmad 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0x70b896e1f9de900f ++fmad 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x4014000000000000 ++fmad 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0xc014cccccccccccd ++fmad 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400cccccd ++fmad 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0xc197d78400147ae1 ++fmad 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0x3f947ae147ae147c ++fmad 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0xbfa47ae147ae147c ++fmad 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0xbfe3333333333333 ++fmad 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0x3ff999999999999a ++fmad 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0xc000000000000000 ++fmad 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0x3ff199999999999a ++fmad 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0xc17312d00199999a ++fmad 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0x417312d003333333 ++fmad 0x4008000000000000 0x0 0x4008000000000000 = 0x4008000000000000 ++fmad 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fmad 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0xf0f70d73da40a70d ++fmad 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0xc014000000000000 ++fmad 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x4197d7840c000000 ++fmad 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xc197d7840c000000 ++fmad 0x4008000000000000 0x3fb999999999999a 0x0 = 0x3fd3333333333334 ++fmad 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0xbfd3333333333334 ++fmad 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0xbfe3333333333333 ++fmad 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x4024000000000000 ++fmad 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xc024000000000000 ++fmad 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x402e333333333333 ++fmad 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xc02e333333333333 ++fmad 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x41b1e1a300333333 ++fmad 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xc1b1e1a300333333 ++fmad 0xc008000000000000 0x0 0xc008000000000000 = 0xc008000000000000 ++fmad 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fmad 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0x70f70d73da40a70d ++fmad 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x4197d78400000000 ++fmad 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0xc197d7840c000000 ++fmad 0xc008000000000000 0xbff0000000000000 0x0 = 0x4008000000000000 ++fmad 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0xbfd3333333333334 ++fmad 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0xbfe3333333333333 ++fmad 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0x3ff999999999999a ++fmad 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0xc024000000000000 ++fmad 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0x4022333333333333 ++fmad 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0xc02e333333333333 ++fmad 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0x402e666666666666 ++fmad 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0xc1b1e1a300333333 ++fmad 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0x41b1e1a303000000 ++fmad 0x4014000000000000 0x0 0x4014000000000000 = 0x4014000000000000 ++fmad 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fmad 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0xf10335e08b35e08b ++fmad 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0xc197d78400000000 ++fmad 0x4014000000000000 0x3ff0000000000000 0x0 = 0x4014000000000000 ++fmad 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0xc014000000000000 ++fmad 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0xbfe0000000000000 ++fmad 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x4000000000000000 ++fmad 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xc000000000000000 ++fmad 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x402e333333333333 ++fmad 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xc02e333333333333 ++fmad 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x4039333333333333 ++fmad 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xc039333333333333 ++fmad 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x41bdcd6503000000 ++fmad 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc1bdcd6503000000 ++fmad 0xc014000000000000 0x0 0xc014000000000000 = 0xc014000000000000 ++fmad 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fmad 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0x710335e08b35e08b ++fmad 0xc014000000000000 0x123456789abcdef0 0x0 = 0x92596c16c16c16ac ++fmad 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0xc014000000000000 ++fmad 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0xbfe0000000000000 ++fmad 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0x3ff8000000000000 ++fmad 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0xc000000000000000 ++fmad 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0x3ff199999999999a ++fmad 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0xc02e333333333333 ++fmad 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0x402e666666666666 ++fmad 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0xc039333333333333 ++fmad 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0x403c000000000000 ++fmad 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0xc1bdcd6503000000 ++fmad 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0x41bdcd6505000000 ++fmad 0x4197d78400000000 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fmad 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fmad 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0xf286e690fe53a8fe ++fmad 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x13de4e3f1c71c703 ++fmad 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmad 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x416312d020000000 ++fmad 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xc16312d020000000 ++fmad 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x417312d00199999a ++fmad 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xc17312d00199999a ++fmad 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x41b1e1a300333333 ++fmad 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xc1b1e1a300333333 ++fmad 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x41bdcd6503000000 ++fmad 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc1bdcd6503000000 ++fmad 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4341c37937e08002 ++fmad 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc341c37937e08002 ++fmad 0xc197d78400000000 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fmad 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fmad 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0x7286e690fe53a8fe ++fmad 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fmad 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmad 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0x4197d78404000000 ++fmad 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0xc16312d020000000 ++fmad 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0x416312d003333333 ++fmad 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0xc17312d00199999a ++fmad 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0x417312d003333333 ++fmad 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0xc1b1e1a300333333 ++fmad 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0x41b1e1a303000000 ++fmad 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0xc1bdcd6503000000 ++fmad 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0x41bdcd6505000000 ++fmad 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0xc341c37937e08002 ++fmad 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0x4341c3793adb7080 ++=== Running test on fmss=== ++fmss 0x0 0x0 0x0 = 0x0 ++fmss 0x0 0x8000000000000000 0x8000000000000000 = 0x0 ++fmss 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fmss 0x0 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmss 0x0 0x3fb99999a0000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fmss 0x0 0xbfb99999a0000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fmss 0x0 0x3fc99999a0000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fmss 0x0 0xbfc99999a0000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fmss 0x0 0x4008000000000000 0x4008000000000000 = 0xc008000000000000 ++fmss 0x0 0xc008000000000000 0xc008000000000000 = 0x4008000000000000 ++fmss 0x0 0x4014000000000000 0x4014000000000000 = 0xc014000000000000 ++fmss 0x0 0xc014000000000000 0xc014000000000000 = 0x4014000000000000 ++fmss 0x0 0x4197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0x0 0xc197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fmss 0x8000000000000000 0x8000000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fmss 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmss 0x8000000000000000 0xbff0000000000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fmss 0x8000000000000000 0x3fb99999a0000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fmss 0x8000000000000000 0xbfb99999a0000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fmss 0x8000000000000000 0x3fc99999a0000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fmss 0x8000000000000000 0xbfc99999a0000000 0x4008000000000000 = 0xc008000000000000 ++fmss 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fmss 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0xc014000000000000 ++fmss 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fmss 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fmss 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0xbff0000000000000 ++fmss 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmss 0x3ff0000000000000 0x3ff0000000000000 0x3fb99999a0000000 = 0x3fecccccc0000000 ++fmss 0x3ff0000000000000 0xbff0000000000000 0xbfb99999a0000000 = 0xbfecccccc0000000 ++fmss 0x3ff0000000000000 0x3fb99999a0000000 0x3fc99999a0000000 = 0xbfb99999a0000000 ++fmss 0x3ff0000000000000 0xbfb99999a0000000 0xbfc99999a0000000 = 0x3fb99999a0000000 ++fmss 0x3ff0000000000000 0x3fc99999a0000000 0x4008000000000000 = 0xc006666660000000 ++fmss 0x3ff0000000000000 0xbfc99999a0000000 0xc008000000000000 = 0x4006666660000000 ++fmss 0x3ff0000000000000 0x4008000000000000 0x4014000000000000 = 0xc000000000000000 ++fmss 0x3ff0000000000000 0xc008000000000000 0xc014000000000000 = 0x4000000000000000 ++fmss 0x3ff0000000000000 0x4014000000000000 0x4197d78400000000 = 0xc197d783e0000000 ++fmss 0x3ff0000000000000 0xc014000000000000 0xc197d78400000000 = 0x4197d783e0000000 ++fmss 0x3ff0000000000000 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fmss 0x3ff0000000000000 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fmss 0xbff0000000000000 0x0 0xbff0000000000000 = 0x3ff0000000000000 ++fmss 0xbff0000000000000 0x8000000000000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fmss 0xbff0000000000000 0x3ff0000000000000 0xbfb99999a0000000 = 0xbfecccccc0000000 ++fmss 0xbff0000000000000 0xbff0000000000000 0x3fc99999a0000000 = 0x3fe99999a0000000 ++fmss 0xbff0000000000000 0x3fb99999a0000000 0xbfc99999a0000000 = 0x3fb99999a0000000 ++fmss 0xbff0000000000000 0xbfb99999a0000000 0x4008000000000000 = 0xc007333340000000 ++fmss 0xbff0000000000000 0x3fc99999a0000000 0xc008000000000000 = 0x4006666660000000 ++fmss 0xbff0000000000000 0xbfc99999a0000000 0x4014000000000000 = 0xc013333340000000 ++fmss 0xbff0000000000000 0x4008000000000000 0xc014000000000000 = 0x4000000000000000 ++fmss 0xbff0000000000000 0xc008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0xbff0000000000000 0x4014000000000000 0xc197d78400000000 = 0x4197d783e0000000 ++fmss 0xbff0000000000000 0xc014000000000000 0x0 = 0x4014000000000000 ++fmss 0xbff0000000000000 0x4197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fmss 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fmss 0x3fb99999a0000000 0x0 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fmss 0x3fb99999a0000000 0x8000000000000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fmss 0x3fb99999a0000000 0x3ff0000000000000 0x3fc99999a0000000 = 0xbfb99999a0000000 ++fmss 0x3fb99999a0000000 0xbff0000000000000 0xbfc99999a0000000 = 0x3fb99999a0000000 ++fmss 0x3fb99999a0000000 0x3fb99999a0000000 0x4008000000000000 = 0xc007eb8520000000 ++fmss 0x3fb99999a0000000 0xbfb99999a0000000 0xc008000000000000 = 0x4007eb8520000000 ++fmss 0x3fb99999a0000000 0x3fc99999a0000000 0x4014000000000000 = 0xc013eb8520000000 ++fmss 0x3fb99999a0000000 0xbfc99999a0000000 0xc014000000000000 = 0x4013eb8520000000 ++fmss 0x3fb99999a0000000 0x4008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0x3fb99999a0000000 0xc008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0x3fb99999a0000000 0x4014000000000000 0x0 = 0x3fe0000000000000 ++fmss 0x3fb99999a0000000 0xc014000000000000 0x8000000000000000 = 0xbfe0000000000000 ++fmss 0x3fb99999a0000000 0x4197d78400000000 0x3ff0000000000000 = 0x416312cfe0000000 ++fmss 0x3fb99999a0000000 0xc197d78400000000 0xbff0000000000000 = 0xc16312cfe0000000 ++fmss 0xbfb99999a0000000 0x0 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fmss 0xbfb99999a0000000 0x8000000000000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fmss 0xbfb99999a0000000 0x3ff0000000000000 0xbfc99999a0000000 = 0x3fb99999a0000000 ++fmss 0xbfb99999a0000000 0xbff0000000000000 0x4008000000000000 = 0xc007333340000000 ++fmss 0xbfb99999a0000000 0x3fb99999a0000000 0xc008000000000000 = 0x4007eb8520000000 ++fmss 0xbfb99999a0000000 0xbfb99999a0000000 0x4014000000000000 = 0xc013f5c280000000 ++fmss 0xbfb99999a0000000 0x3fc99999a0000000 0xc014000000000000 = 0x4013eb8520000000 ++fmss 0xbfb99999a0000000 0xbfc99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0xbfb99999a0000000 0x4008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0xbfb99999a0000000 0xc008000000000000 0x0 = 0x3fd3333340000000 ++fmss 0xbfb99999a0000000 0x4014000000000000 0x8000000000000000 = 0xbfe0000000000000 ++fmss 0xbfb99999a0000000 0xc014000000000000 0x3ff0000000000000 = 0xbfe0000000000000 ++fmss 0xbfb99999a0000000 0x4197d78400000000 0xbff0000000000000 = 0xc16312cfe0000000 ++fmss 0xbfb99999a0000000 0xc197d78400000000 0x3fb99999a0000000 = 0x416312d000000000 ++fmss 0x3fc99999a0000000 0x0 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fmss 0x3fc99999a0000000 0x8000000000000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fmss 0x3fc99999a0000000 0x3ff0000000000000 0x4008000000000000 = 0xc006666660000000 ++fmss 0x3fc99999a0000000 0xbff0000000000000 0xc008000000000000 = 0x4006666660000000 ++fmss 0x3fc99999a0000000 0x3fb99999a0000000 0x4014000000000000 = 0xc013eb8520000000 ++fmss 0x3fc99999a0000000 0xbfb99999a0000000 0xc014000000000000 = 0x4013eb8520000000 ++fmss 0x3fc99999a0000000 0x3fc99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0x3fc99999a0000000 0xbfc99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0x3fc99999a0000000 0x4008000000000000 0x0 = 0x3fe3333340000000 ++fmss 0x3fc99999a0000000 0xc008000000000000 0x8000000000000000 = 0xbfe3333340000000 ++fmss 0x3fc99999a0000000 0x4014000000000000 0x3ff0000000000000 = 0x3e50000000000000 ++fmss 0x3fc99999a0000000 0xc014000000000000 0xbff0000000000000 = 0xbe50000000000000 ++fmss 0x3fc99999a0000000 0x4197d78400000000 0x3fb99999a0000000 = 0x417312d000000000 ++fmss 0x3fc99999a0000000 0xc197d78400000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmss 0xbfc99999a0000000 0x0 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fmss 0xbfc99999a0000000 0x8000000000000000 0x4008000000000000 = 0xc008000000000000 ++fmss 0xbfc99999a0000000 0x3ff0000000000000 0xc008000000000000 = 0x4006666660000000 ++fmss 0xbfc99999a0000000 0xbff0000000000000 0x4014000000000000 = 0xc013333340000000 ++fmss 0xbfc99999a0000000 0x3fb99999a0000000 0xc014000000000000 = 0x4013eb8520000000 ++fmss 0xbfc99999a0000000 0xbfb99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0xbfc99999a0000000 0x3fc99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0xbfc99999a0000000 0xbfc99999a0000000 0x0 = 0x3fa47ae160000000 ++fmss 0xbfc99999a0000000 0x4008000000000000 0x8000000000000000 = 0xbfe3333340000000 ++fmss 0xbfc99999a0000000 0xc008000000000000 0x3ff0000000000000 = 0xbfd9999980000000 ++fmss 0xbfc99999a0000000 0x4014000000000000 0xbff0000000000000 = 0xbe50000000000000 ++fmss 0xbfc99999a0000000 0xc014000000000000 0x3fb99999a0000000 = 0x3feccccce0000000 ++fmss 0xbfc99999a0000000 0x4197d78400000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmss 0xbfc99999a0000000 0xc197d78400000000 0x3fc99999a0000000 = 0x417312d000000000 ++fmss 0x4008000000000000 0x0 0x4008000000000000 = 0xc008000000000000 ++fmss 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0x4008000000000000 ++fmss 0x4008000000000000 0x3ff0000000000000 0x4014000000000000 = 0xc000000000000000 ++fmss 0x4008000000000000 0xbff0000000000000 0xc014000000000000 = 0x4000000000000000 ++fmss 0x4008000000000000 0x3fb99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0x4008000000000000 0xbfb99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0x4008000000000000 0x3fc99999a0000000 0x0 = 0x3fe3333340000000 ++fmss 0x4008000000000000 0xbfc99999a0000000 0x8000000000000000 = 0xbfe3333340000000 ++fmss 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x4020000000000000 ++fmss 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xc020000000000000 ++fmss 0x4008000000000000 0x4014000000000000 0x3fb99999a0000000 = 0x402dccccc0000000 ++fmss 0x4008000000000000 0xc014000000000000 0xbfb99999a0000000 = 0xc02dccccc0000000 ++fmss 0x4008000000000000 0x4197d78400000000 0x3fc99999a0000000 = 0x41b1e1a300000000 ++fmss 0x4008000000000000 0xc197d78400000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmss 0xc008000000000000 0x0 0xc008000000000000 = 0x4008000000000000 ++fmss 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0xc014000000000000 ++fmss 0xc008000000000000 0x3ff0000000000000 0xc014000000000000 = 0x4000000000000000 ++fmss 0xc008000000000000 0xbff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0xc008000000000000 0x3fb99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0xc008000000000000 0xbfb99999a0000000 0x0 = 0x3fd3333340000000 ++fmss 0xc008000000000000 0x3fc99999a0000000 0x8000000000000000 = 0xbfe3333340000000 ++fmss 0xc008000000000000 0xbfc99999a0000000 0x3ff0000000000000 = 0xbfd9999980000000 ++fmss 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0xc020000000000000 ++fmss 0xc008000000000000 0xc008000000000000 0x3fb99999a0000000 = 0x4021ccccc0000000 ++fmss 0xc008000000000000 0x4014000000000000 0xbfb99999a0000000 = 0xc02dccccc0000000 ++fmss 0xc008000000000000 0xc014000000000000 0x3fc99999a0000000 = 0x402d9999a0000000 ++fmss 0xc008000000000000 0x4197d78400000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmss 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0x41b1e1a300000000 ++fmss 0x4014000000000000 0x0 0x4014000000000000 = 0xc014000000000000 ++fmss 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0x4014000000000000 ++fmss 0x4014000000000000 0x3ff0000000000000 0x4197d78400000000 = 0xc197d783e0000000 ++fmss 0x4014000000000000 0xbff0000000000000 0xc197d78400000000 = 0x4197d783e0000000 ++fmss 0x4014000000000000 0x3fb99999a0000000 0x0 = 0x3fe0000000000000 ++fmss 0x4014000000000000 0xbfb99999a0000000 0x8000000000000000 = 0xbfe0000000000000 ++fmss 0x4014000000000000 0x3fc99999a0000000 0x3ff0000000000000 = 0x3e50000000000000 ++fmss 0x4014000000000000 0xbfc99999a0000000 0xbff0000000000000 = 0xbe50000000000000 ++fmss 0x4014000000000000 0x4008000000000000 0x3fb99999a0000000 = 0x402dccccc0000000 ++fmss 0x4014000000000000 0xc008000000000000 0xbfb99999a0000000 = 0xc02dccccc0000000 ++fmss 0x4014000000000000 0x4014000000000000 0x3fc99999a0000000 = 0x4038ccccc0000000 ++fmss 0x4014000000000000 0xc014000000000000 0xbfc99999a0000000 = 0xc038ccccc0000000 ++fmss 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x41bdcd6500000000 ++fmss 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmss 0xc014000000000000 0x0 0xc014000000000000 = 0x4014000000000000 ++fmss 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0xc014000000000000 0x3ff0000000000000 0xc197d78400000000 = 0x4197d783e0000000 ++fmss 0xc014000000000000 0xbff0000000000000 0x0 = 0x4014000000000000 ++fmss 0xc014000000000000 0x3fb99999a0000000 0x8000000000000000 = 0xbfe0000000000000 ++fmss 0xc014000000000000 0xbfb99999a0000000 0x3ff0000000000000 = 0xbfe0000000000000 ++fmss 0xc014000000000000 0x3fc99999a0000000 0xbff0000000000000 = 0xbe50000000000000 ++fmss 0xc014000000000000 0xbfc99999a0000000 0x3fb99999a0000000 = 0x3feccccce0000000 ++fmss 0xc014000000000000 0x4008000000000000 0xbfb99999a0000000 = 0xc02dccccc0000000 ++fmss 0xc014000000000000 0xc008000000000000 0x3fc99999a0000000 = 0x402d9999a0000000 ++fmss 0xc014000000000000 0x4014000000000000 0xbfc99999a0000000 = 0xc038ccccc0000000 ++fmss 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0x4036000000000000 ++fmss 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmss 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0x41bdcd6500000000 ++fmss 0x4197d78400000000 0x0 0x4197d78400000000 = 0xc197d78400000000 ++fmss 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0x4197d78400000000 0x3ff0000000000000 0x0 = 0x4197d78400000000 ++fmss 0x4197d78400000000 0xbff0000000000000 0x8000000000000000 = 0xc197d78400000000 ++fmss 0x4197d78400000000 0x3fb99999a0000000 0x3ff0000000000000 = 0x416312cfe0000000 ++fmss 0x4197d78400000000 0xbfb99999a0000000 0xbff0000000000000 = 0xc16312cfe0000000 ++fmss 0x4197d78400000000 0x3fc99999a0000000 0x3fb99999a0000000 = 0x417312d000000000 ++fmss 0x4197d78400000000 0xbfc99999a0000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmss 0x4197d78400000000 0x4008000000000000 0x3fc99999a0000000 = 0x41b1e1a300000000 ++fmss 0x4197d78400000000 0xc008000000000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmss 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x41bdcd6500000000 ++fmss 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmss 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4341c37940000000 ++fmss 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc341c37940000000 ++fmss 0xc197d78400000000 0x0 0xc197d78400000000 = 0x4197d78400000000 ++fmss 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fmss 0xc197d78400000000 0x3ff0000000000000 0x8000000000000000 = 0xc197d78400000000 ++fmss 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0x4197d78400000000 ++fmss 0xc197d78400000000 0x3fb99999a0000000 0xbff0000000000000 = 0xc16312cfe0000000 ++fmss 0xc197d78400000000 0xbfb99999a0000000 0x3fb99999a0000000 = 0x416312d000000000 ++fmss 0xc197d78400000000 0x3fc99999a0000000 0xbfb99999a0000000 = 0xc17312d000000000 ++fmss 0xc197d78400000000 0xbfc99999a0000000 0x3fc99999a0000000 = 0x417312d000000000 ++fmss 0xc197d78400000000 0x4008000000000000 0xbfc99999a0000000 = 0xc1b1e1a300000000 ++fmss 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0x41b1e1a300000000 ++fmss 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0xc1bdcd6500000000 ++fmss 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0x41bdcd6500000000 ++fmss 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0xc341c37940000000 ++fmss 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0x4341c37940000000 ++=== Running test on fmsd=== ++fmsd 0x0 0x0 0x0 = 0x0 ++fmsd 0x0 0x8000000000000000 0x8000000000000000 = 0x0 ++fmsd 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x923456789abcdef0 ++fmsd 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fmsd 0x0 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmsd 0x0 0x3fb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fmsd 0x0 0xbfb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fmsd 0x0 0x3fc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fmsd 0x0 0xbfc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fmsd 0x0 0x4008000000000000 0x4008000000000000 = 0xc008000000000000 ++fmsd 0x0 0xc008000000000000 0xc008000000000000 = 0x4008000000000000 ++fmsd 0x0 0x4014000000000000 0x4014000000000000 = 0xc014000000000000 ++fmsd 0x0 0xc014000000000000 0xc014000000000000 = 0x4014000000000000 ++fmsd 0x0 0x4197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++fmsd 0x0 0xc197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fmsd 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fmsd 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0x923456789abcdef0 ++fmsd 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0xbff0000000000000 ++fmsd 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmsd 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fmsd 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fmsd 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fmsd 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fmsd 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0xc008000000000000 ++fmsd 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fmsd 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0xc014000000000000 ++fmsd 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fmsd 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmsd 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fmsd 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fmsd 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fmsd 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0x7ff0000000000000 ++fmsd 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0xc32388ef423d9d0a ++fmsd 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0xf0debc9a78563412 ++fmsd 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0x70debc9a78563412 ++fmsd 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0xf0a896e1f9de900f ++fmsd 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0x70a896e1f9de900f ++fmsd 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0xf0b896e1f9de900f ++fmsd 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0x70b896e1f9de900f ++fmsd 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0xf0f70d73da40a70e ++fmsd 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0x70f70d73da40a70e ++fmsd 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0xf10335e08b35e08b ++fmsd 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0x710335e08b35e08b ++fmsd 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0xf286e690fe53a8fe ++fmsd 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0x7286e690fe53a8fe ++fmsd 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x923456789abcdef0 ++fmsd 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fmsd 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xc32388ef423d9d0a ++fmsd 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0xbfb999999999999a ++fmsd 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fmsd 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fmsd 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fmsd 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0xc008000000000000 ++fmsd 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0x4008000000000000 ++fmsd 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0xc014000000000000 ++fmsd 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0x4014000000000000 ++fmsd 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmsd 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fmsd 0x123456789abcdef0 0xc014000000000000 0x0 = 0x92596c16c16c16ac ++fmsd 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x13de4e3f1c71c703 ++fmsd 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0xbff0000000000000 ++fmsd 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fmsd 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0xf0debc9a78563412 ++fmsd 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0x3fb999999999999a ++fmsd 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3fe999999999999a ++fmsd 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbfe999999999999a ++fmsd 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0xc007333333333333 ++fmsd 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0x4007333333333333 ++fmsd 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0xc013333333333333 ++fmsd 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0x4013333333333333 ++fmsd 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0xc197d783f4000000 ++fmsd 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0x4197d783f4000000 ++fmsd 0x3ff0000000000000 0x4014000000000000 0x0 = 0x4014000000000000 ++fmsd 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fmsd 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmsd 0xbff0000000000000 0x0 0xbff0000000000000 = 0x3ff0000000000000 ++fmsd 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fmsd 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0x70debc9a78563412 ++fmsd 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0xbfc999999999999a ++fmsd 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0xbfe999999999999a ++fmsd 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0xc000000000000000 ++fmsd 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0x4007333333333333 ++fmsd 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0xc01399999999999a ++fmsd 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0x4013333333333333 ++fmsd 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0xc197d783ff333333 ++fmsd 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0x4197d783f4000000 ++fmsd 0xbff0000000000000 0xc008000000000000 0x0 = 0x4008000000000000 ++fmsd 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0xc014000000000000 ++fmsd 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmsd 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0x4197d783fc000000 ++fmsd 0x3fb999999999999a 0x0 0x3fb999999999999a = 0xbfb999999999999a ++fmsd 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fmsd 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0xf0a896e1f9de900f ++fmsd 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0x3fc999999999999a ++fmsd 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0xc007333333333333 ++fmsd 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0x4007333333333333 ++fmsd 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0xc013f5c28f5c28f6 ++fmsd 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0x4013f5c28f5c28f6 ++fmsd 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0xc197d783ffeb851f ++fmsd 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0x4197d783ffeb851f ++fmsd 0x3fb999999999999a 0x4008000000000000 0x0 = 0x3fd3333333333334 ++fmsd 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0xbfd3333333333334 ++fmsd 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0xbfe0000000000000 ++fmsd 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x416312cfe0000000 ++fmsd 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xc16312cfe0000000 ++fmsd 0xbfb999999999999a 0x0 0xbfb999999999999a = 0x3fb999999999999a ++fmsd 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fmsd 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0x70a896e1f9de900f ++fmsd 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0xc008000000000000 ++fmsd 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0x4007333333333333 ++fmsd 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0xc01399999999999a ++fmsd 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0x4013f5c28f5c28f6 ++fmsd 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0xc197d783fff5c28f ++fmsd 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0x4197d783ffeb851f ++fmsd 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0x3f947ae147ae147c ++fmsd 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0xbfd3333333333334 ++fmsd 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0xbfe0000000000000 ++fmsd 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0xbfe0000000000000 ++fmsd 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0xc16312cfe0000000 ++fmsd 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0x416312cffccccccd ++fmsd 0x3fc999999999999a 0x0 0x3fc999999999999a = 0xbfc999999999999a ++fmsd 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fmsd 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0xf0b896e1f9de900f ++fmsd 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0x4008000000000000 ++fmsd 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0xc013333333333333 ++fmsd 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0x4013333333333333 ++fmsd 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0xc197d783ffeb851f ++fmsd 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0x4197d783ffeb851f ++fmsd 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x3fa47ae147ae147c ++fmsd 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0xbfa47ae147ae147c ++fmsd 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0xbfe3333333333334 ++fmsd 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x3c90000000000000 ++fmsd 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xbc90000000000000 ++fmsd 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x417312cffe666667 ++fmsd 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xc17312cffe666667 ++fmsd 0xbfc999999999999a 0x0 0xbfc999999999999a = 0x3fc999999999999a ++fmsd 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0xc008000000000000 ++fmsd 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0x70b896e1f9de900f ++fmsd 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0xc014000000000000 ++fmsd 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0x4013333333333333 ++fmsd 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0xc197d783ff333333 ++fmsd 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0x4197d783ffeb851f ++fmsd 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0x3f947ae147ae147c ++fmsd 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0xbfa47ae147ae147c ++fmsd 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0xbfe3333333333334 ++fmsd 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0xbfd9999999999999 ++fmsd 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0xbc90000000000000 ++fmsd 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0x3feccccccccccccd ++fmsd 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0xc17312cffe666667 ++fmsd 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0x417312cffccccccd ++fmsd 0x4008000000000000 0x0 0x4008000000000000 = 0xc008000000000000 ++fmsd 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0x4008000000000000 ++fmsd 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0xf0f70d73da40a70e ++fmsd 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0x4014000000000000 ++fmsd 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0xc197d783f4000000 ++fmsd 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0x4197d783f4000000 ++fmsd 0x4008000000000000 0x3fb999999999999a 0x0 = 0x3fd3333333333334 ++fmsd 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0xbfd3333333333334 ++fmsd 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0xbfe3333333333334 ++fmsd 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x4020000000000000 ++fmsd 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xc020000000000000 ++fmsd 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x402dcccccccccccd ++fmsd 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xc02dcccccccccccd ++fmsd 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x41b1e1a2ffcccccd ++fmsd 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xc1b1e1a2ffcccccd ++fmsd 0xc008000000000000 0x0 0xc008000000000000 = 0x4008000000000000 ++fmsd 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0xc014000000000000 ++fmsd 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0x70f70d73da40a70e ++fmsd 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0xc197d78400000000 ++fmsd 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0x4197d783f4000000 ++fmsd 0xc008000000000000 0xbff0000000000000 0x0 = 0x4008000000000000 ++fmsd 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0xbfd3333333333334 ++fmsd 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0xbfe3333333333334 ++fmsd 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0xbfd9999999999999 ++fmsd 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0xc020000000000000 ++fmsd 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0x4021cccccccccccd ++fmsd 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0xc02dcccccccccccd ++fmsd 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0x402d99999999999a ++fmsd 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0xc1b1e1a2ffcccccd ++fmsd 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0x41b1e1a2fd000000 ++fmsd 0x4014000000000000 0x0 0x4014000000000000 = 0xc014000000000000 ++fmsd 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0x4014000000000000 ++fmsd 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0xf10335e08b35e08b ++fmsd 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0x4197d78400000000 ++fmsd 0x4014000000000000 0x3ff0000000000000 0x0 = 0x4014000000000000 ++fmsd 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0xc014000000000000 ++fmsd 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0xbfe0000000000000 ++fmsd 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x3c90000000000000 ++fmsd 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xbc90000000000000 ++fmsd 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x402dcccccccccccd ++fmsd 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xc02dcccccccccccd ++fmsd 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x4038cccccccccccd ++fmsd 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xc038cccccccccccd ++fmsd 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x41bdcd64fd000000 ++fmsd 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc1bdcd64fd000000 ++fmsd 0xc014000000000000 0x0 0xc014000000000000 = 0x4014000000000000 ++fmsd 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fmsd 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0x710335e08b35e08b ++fmsd 0xc014000000000000 0x123456789abcdef0 0x0 = 0x92596c16c16c16ac ++fmsd 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0xc014000000000000 ++fmsd 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0xbfe0000000000000 ++fmsd 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0xbfe0000000000000 ++fmsd 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0xbc90000000000000 ++fmsd 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0x3feccccccccccccd ++fmsd 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0xc02dcccccccccccd ++fmsd 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0x402d99999999999a ++fmsd 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0xc038cccccccccccd ++fmsd 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0x4036000000000000 ++fmsd 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0xc1bdcd64fd000000 ++fmsd 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0x41bdcd64fb000000 ++fmsd 0x4197d78400000000 0x0 0x4197d78400000000 = 0xc197d78400000000 ++fmsd 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fmsd 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0xf286e690fe53a8fe ++fmsd 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x13de4e3f1c71c703 ++fmsd 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmsd 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x416312cfe0000000 ++fmsd 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xc16312cfe0000000 ++fmsd 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x417312cffe666667 ++fmsd 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xc17312cffe666667 ++fmsd 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x41b1e1a2ffcccccd ++fmsd 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xc1b1e1a2ffcccccd ++fmsd 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x41bdcd64fd000000 ++fmsd 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc1bdcd64fd000000 ++fmsd 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4341c37937e07ffe ++fmsd 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc341c37937e07ffe ++fmsd 0xc197d78400000000 0x0 0xc197d78400000000 = 0x4197d78400000000 ++fmsd 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fmsd 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0x7286e690fe53a8fe ++fmsd 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fmsd 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0xc197d78400000000 ++fmsd 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0x4197d783fc000000 ++fmsd 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0xc16312cfe0000000 ++fmsd 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0x416312cffccccccd ++fmsd 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0xc17312cffe666667 ++fmsd 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0x417312cffccccccd ++fmsd 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0xc1b1e1a2ffcccccd ++fmsd 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0x41b1e1a2fd000000 ++fmsd 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0xc1bdcd64fd000000 ++fmsd 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0x41bdcd64fb000000 ++fmsd 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0xc341c37937e07ffe ++fmsd 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0x4341c37934e58f80 ++=== Running test on fnmas=== ++fnmas 0x0 0x0 0x0 = 0x0 ++fnmas 0x0 0x8000000000000000 0x8000000000000000 = 0x0 ++fnmas 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fnmas 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fnmas 0x0 0x3fb99999a0000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fnmas 0x0 0xbfb99999a0000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fnmas 0x0 0x3fc99999a0000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fnmas 0x0 0xbfc99999a0000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fnmas 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fnmas 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fnmas 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fnmas 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fnmas 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fnmas 0x8000000000000000 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fnmas 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fnmas 0x8000000000000000 0xbff0000000000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fnmas 0x8000000000000000 0x3fb99999a0000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fnmas 0x8000000000000000 0xbfb99999a0000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fnmas 0x8000000000000000 0x3fc99999a0000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fnmas 0x8000000000000000 0xbfc99999a0000000 0x4008000000000000 = 0x4008000000000000 ++fnmas 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fnmas 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fnmas 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fnmas 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fnmas 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fnmas 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fnmas 0x3ff0000000000000 0x3ff0000000000000 0x3fb99999a0000000 = 0xbfecccccc0000000 ++fnmas 0x3ff0000000000000 0xbff0000000000000 0xbfb99999a0000000 = 0x3fecccccc0000000 ++fnmas 0x3ff0000000000000 0x3fb99999a0000000 0x3fc99999a0000000 = 0x3fb99999a0000000 ++fnmas 0x3ff0000000000000 0xbfb99999a0000000 0xbfc99999a0000000 = 0xbfb99999a0000000 ++fnmas 0x3ff0000000000000 0x3fc99999a0000000 0x4008000000000000 = 0x4006666660000000 ++fnmas 0x3ff0000000000000 0xbfc99999a0000000 0xc008000000000000 = 0xc006666660000000 ++fnmas 0x3ff0000000000000 0x4008000000000000 0x4014000000000000 = 0x4000000000000000 ++fnmas 0x3ff0000000000000 0xc008000000000000 0xc014000000000000 = 0xc000000000000000 ++fnmas 0x3ff0000000000000 0x4014000000000000 0x4197d78400000000 = 0x4197d783e0000000 ++fnmas 0x3ff0000000000000 0xc014000000000000 0xc197d78400000000 = 0xc197d783e0000000 ++fnmas 0x3ff0000000000000 0x4197d78400000000 0x0 = 0xc197d78400000000 ++fnmas 0x3ff0000000000000 0xc197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fnmas 0xbff0000000000000 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fnmas 0xbff0000000000000 0x8000000000000000 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fnmas 0xbff0000000000000 0x3ff0000000000000 0xbfb99999a0000000 = 0x3fecccccc0000000 ++fnmas 0xbff0000000000000 0xbff0000000000000 0x3fc99999a0000000 = 0xbfe99999a0000000 ++fnmas 0xbff0000000000000 0x3fb99999a0000000 0xbfc99999a0000000 = 0xbfb99999a0000000 ++fnmas 0xbff0000000000000 0xbfb99999a0000000 0x4008000000000000 = 0x4007333340000000 ++fnmas 0xbff0000000000000 0x3fc99999a0000000 0xc008000000000000 = 0xc006666660000000 ++fnmas 0xbff0000000000000 0xbfc99999a0000000 0x4014000000000000 = 0x4013333340000000 ++fnmas 0xbff0000000000000 0x4008000000000000 0xc014000000000000 = 0xc000000000000000 ++fnmas 0xbff0000000000000 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0xbff0000000000000 0x4014000000000000 0xc197d78400000000 = 0xc197d783e0000000 ++fnmas 0xbff0000000000000 0xc014000000000000 0x0 = 0xc014000000000000 ++fnmas 0xbff0000000000000 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fnmas 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fnmas 0x3fb99999a0000000 0x0 0x3fb99999a0000000 = 0x3fb99999a0000000 ++fnmas 0x3fb99999a0000000 0x8000000000000000 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fnmas 0x3fb99999a0000000 0x3ff0000000000000 0x3fc99999a0000000 = 0x3fb99999a0000000 ++fnmas 0x3fb99999a0000000 0xbff0000000000000 0xbfc99999a0000000 = 0xbfb99999a0000000 ++fnmas 0x3fb99999a0000000 0x3fb99999a0000000 0x4008000000000000 = 0x4007eb8520000000 ++fnmas 0x3fb99999a0000000 0xbfb99999a0000000 0xc008000000000000 = 0xc007eb8520000000 ++fnmas 0x3fb99999a0000000 0x3fc99999a0000000 0x4014000000000000 = 0x4013eb8520000000 ++fnmas 0x3fb99999a0000000 0xbfc99999a0000000 0xc014000000000000 = 0xc013eb8520000000 ++fnmas 0x3fb99999a0000000 0x4008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0x3fb99999a0000000 0xc008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0x3fb99999a0000000 0x4014000000000000 0x0 = 0xbfe0000000000000 ++fnmas 0x3fb99999a0000000 0xc014000000000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmas 0x3fb99999a0000000 0x4197d78400000000 0x3ff0000000000000 = 0xc16312cfe0000000 ++fnmas 0x3fb99999a0000000 0xc197d78400000000 0xbff0000000000000 = 0x416312cfe0000000 ++fnmas 0xbfb99999a0000000 0x0 0xbfb99999a0000000 = 0xbfb99999a0000000 ++fnmas 0xbfb99999a0000000 0x8000000000000000 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fnmas 0xbfb99999a0000000 0x3ff0000000000000 0xbfc99999a0000000 = 0xbfb99999a0000000 ++fnmas 0xbfb99999a0000000 0xbff0000000000000 0x4008000000000000 = 0x4007333340000000 ++fnmas 0xbfb99999a0000000 0x3fb99999a0000000 0xc008000000000000 = 0xc007eb8520000000 ++fnmas 0xbfb99999a0000000 0xbfb99999a0000000 0x4014000000000000 = 0x4013f5c280000000 ++fnmas 0xbfb99999a0000000 0x3fc99999a0000000 0xc014000000000000 = 0xc013eb8520000000 ++fnmas 0xbfb99999a0000000 0xbfc99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0xbfb99999a0000000 0x4008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0xbfb99999a0000000 0xc008000000000000 0x0 = 0xbfd3333340000000 ++fnmas 0xbfb99999a0000000 0x4014000000000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmas 0xbfb99999a0000000 0xc014000000000000 0x3ff0000000000000 = 0x3fe0000000000000 ++fnmas 0xbfb99999a0000000 0x4197d78400000000 0xbff0000000000000 = 0x416312cfe0000000 ++fnmas 0xbfb99999a0000000 0xc197d78400000000 0x3fb99999a0000000 = 0xc16312d000000000 ++fnmas 0x3fc99999a0000000 0x0 0x3fc99999a0000000 = 0x3fc99999a0000000 ++fnmas 0x3fc99999a0000000 0x8000000000000000 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fnmas 0x3fc99999a0000000 0x3ff0000000000000 0x4008000000000000 = 0x4006666660000000 ++fnmas 0x3fc99999a0000000 0xbff0000000000000 0xc008000000000000 = 0xc006666660000000 ++fnmas 0x3fc99999a0000000 0x3fb99999a0000000 0x4014000000000000 = 0x4013eb8520000000 ++fnmas 0x3fc99999a0000000 0xbfb99999a0000000 0xc014000000000000 = 0xc013eb8520000000 ++fnmas 0x3fc99999a0000000 0x3fc99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0x3fc99999a0000000 0xbfc99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0x3fc99999a0000000 0x4008000000000000 0x0 = 0xbfe3333340000000 ++fnmas 0x3fc99999a0000000 0xc008000000000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmas 0x3fc99999a0000000 0x4014000000000000 0x3ff0000000000000 = 0xbe50000000000000 ++fnmas 0x3fc99999a0000000 0xc014000000000000 0xbff0000000000000 = 0x3e50000000000000 ++fnmas 0x3fc99999a0000000 0x4197d78400000000 0x3fb99999a0000000 = 0xc17312d000000000 ++fnmas 0x3fc99999a0000000 0xc197d78400000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmas 0xbfc99999a0000000 0x0 0xbfc99999a0000000 = 0xbfc99999a0000000 ++fnmas 0xbfc99999a0000000 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fnmas 0xbfc99999a0000000 0x3ff0000000000000 0xc008000000000000 = 0xc006666660000000 ++fnmas 0xbfc99999a0000000 0xbff0000000000000 0x4014000000000000 = 0x4013333340000000 ++fnmas 0xbfc99999a0000000 0x3fb99999a0000000 0xc014000000000000 = 0xc013eb8520000000 ++fnmas 0xbfc99999a0000000 0xbfb99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0xbfc99999a0000000 0x3fc99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0xbfc99999a0000000 0xbfc99999a0000000 0x0 = 0xbfa47ae160000000 ++fnmas 0xbfc99999a0000000 0x4008000000000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmas 0xbfc99999a0000000 0xc008000000000000 0x3ff0000000000000 = 0x3fd9999980000000 ++fnmas 0xbfc99999a0000000 0x4014000000000000 0xbff0000000000000 = 0x3e50000000000000 ++fnmas 0xbfc99999a0000000 0xc014000000000000 0x3fb99999a0000000 = 0xbfeccccce0000000 ++fnmas 0xbfc99999a0000000 0x4197d78400000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmas 0xbfc99999a0000000 0xc197d78400000000 0x3fc99999a0000000 = 0xc17312d000000000 ++fnmas 0x4008000000000000 0x0 0x4008000000000000 = 0x4008000000000000 ++fnmas 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fnmas 0x4008000000000000 0x3ff0000000000000 0x4014000000000000 = 0x4000000000000000 ++fnmas 0x4008000000000000 0xbff0000000000000 0xc014000000000000 = 0xc000000000000000 ++fnmas 0x4008000000000000 0x3fb99999a0000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0x4008000000000000 0xbfb99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0x4008000000000000 0x3fc99999a0000000 0x0 = 0xbfe3333340000000 ++fnmas 0x4008000000000000 0xbfc99999a0000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmas 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0xc020000000000000 ++fnmas 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0x4020000000000000 ++fnmas 0x4008000000000000 0x4014000000000000 0x3fb99999a0000000 = 0xc02dccccc0000000 ++fnmas 0x4008000000000000 0xc014000000000000 0xbfb99999a0000000 = 0x402dccccc0000000 ++fnmas 0x4008000000000000 0x4197d78400000000 0x3fc99999a0000000 = 0xc1b1e1a300000000 ++fnmas 0x4008000000000000 0xc197d78400000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmas 0xc008000000000000 0x0 0xc008000000000000 = 0xc008000000000000 ++fnmas 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fnmas 0xc008000000000000 0x3ff0000000000000 0xc014000000000000 = 0xc000000000000000 ++fnmas 0xc008000000000000 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0xc008000000000000 0x3fb99999a0000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0xc008000000000000 0xbfb99999a0000000 0x0 = 0xbfd3333340000000 ++fnmas 0xc008000000000000 0x3fc99999a0000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmas 0xc008000000000000 0xbfc99999a0000000 0x3ff0000000000000 = 0x3fd9999980000000 ++fnmas 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0x4020000000000000 ++fnmas 0xc008000000000000 0xc008000000000000 0x3fb99999a0000000 = 0xc021ccccc0000000 ++fnmas 0xc008000000000000 0x4014000000000000 0xbfb99999a0000000 = 0x402dccccc0000000 ++fnmas 0xc008000000000000 0xc014000000000000 0x3fc99999a0000000 = 0xc02d9999a0000000 ++fnmas 0xc008000000000000 0x4197d78400000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmas 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0xc1b1e1a300000000 ++fnmas 0x4014000000000000 0x0 0x4014000000000000 = 0x4014000000000000 ++fnmas 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fnmas 0x4014000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x4197d783e0000000 ++fnmas 0x4014000000000000 0xbff0000000000000 0xc197d78400000000 = 0xc197d783e0000000 ++fnmas 0x4014000000000000 0x3fb99999a0000000 0x0 = 0xbfe0000000000000 ++fnmas 0x4014000000000000 0xbfb99999a0000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmas 0x4014000000000000 0x3fc99999a0000000 0x3ff0000000000000 = 0xbe50000000000000 ++fnmas 0x4014000000000000 0xbfc99999a0000000 0xbff0000000000000 = 0x3e50000000000000 ++fnmas 0x4014000000000000 0x4008000000000000 0x3fb99999a0000000 = 0xc02dccccc0000000 ++fnmas 0x4014000000000000 0xc008000000000000 0xbfb99999a0000000 = 0x402dccccc0000000 ++fnmas 0x4014000000000000 0x4014000000000000 0x3fc99999a0000000 = 0xc038ccccc0000000 ++fnmas 0x4014000000000000 0xc014000000000000 0xbfc99999a0000000 = 0x4038ccccc0000000 ++fnmas 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0xc1bdcd6500000000 ++fnmas 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmas 0xc014000000000000 0x0 0xc014000000000000 = 0xc014000000000000 ++fnmas 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0xc014000000000000 0x3ff0000000000000 0xc197d78400000000 = 0xc197d783e0000000 ++fnmas 0xc014000000000000 0xbff0000000000000 0x0 = 0xc014000000000000 ++fnmas 0xc014000000000000 0x3fb99999a0000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmas 0xc014000000000000 0xbfb99999a0000000 0x3ff0000000000000 = 0x3fe0000000000000 ++fnmas 0xc014000000000000 0x3fc99999a0000000 0xbff0000000000000 = 0x3e50000000000000 ++fnmas 0xc014000000000000 0xbfc99999a0000000 0x3fb99999a0000000 = 0xbfeccccce0000000 ++fnmas 0xc014000000000000 0x4008000000000000 0xbfb99999a0000000 = 0x402dccccc0000000 ++fnmas 0xc014000000000000 0xc008000000000000 0x3fc99999a0000000 = 0xc02d9999a0000000 ++fnmas 0xc014000000000000 0x4014000000000000 0xbfc99999a0000000 = 0x4038ccccc0000000 ++fnmas 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0xc036000000000000 ++fnmas 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmas 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0xc1bdcd6500000000 ++fnmas 0x4197d78400000000 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fnmas 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0x4197d78400000000 0x3ff0000000000000 0x0 = 0xc197d78400000000 ++fnmas 0x4197d78400000000 0xbff0000000000000 0x8000000000000000 = 0x4197d78400000000 ++fnmas 0x4197d78400000000 0x3fb99999a0000000 0x3ff0000000000000 = 0xc16312cfe0000000 ++fnmas 0x4197d78400000000 0xbfb99999a0000000 0xbff0000000000000 = 0x416312cfe0000000 ++fnmas 0x4197d78400000000 0x3fc99999a0000000 0x3fb99999a0000000 = 0xc17312d000000000 ++fnmas 0x4197d78400000000 0xbfc99999a0000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmas 0x4197d78400000000 0x4008000000000000 0x3fc99999a0000000 = 0xc1b1e1a300000000 ++fnmas 0x4197d78400000000 0xc008000000000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmas 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0xc1bdcd6500000000 ++fnmas 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmas 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0xc341c37940000000 ++fnmas 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0x4341c37940000000 ++fnmas 0xc197d78400000000 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fnmas 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fnmas 0xc197d78400000000 0x3ff0000000000000 0x8000000000000000 = 0x4197d78400000000 ++fnmas 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0xc197d78400000000 ++fnmas 0xc197d78400000000 0x3fb99999a0000000 0xbff0000000000000 = 0x416312cfe0000000 ++fnmas 0xc197d78400000000 0xbfb99999a0000000 0x3fb99999a0000000 = 0xc16312d000000000 ++fnmas 0xc197d78400000000 0x3fc99999a0000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmas 0xc197d78400000000 0xbfc99999a0000000 0x3fc99999a0000000 = 0xc17312d000000000 ++fnmas 0xc197d78400000000 0x4008000000000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmas 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0xc1b1e1a300000000 ++fnmas 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmas 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0xc1bdcd6500000000 ++fnmas 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0x4341c37940000000 ++fnmas 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0xc341c37940000000 ++=== Running test on fnmad=== ++fnmad 0x0 0x0 0x0 = 0x0 ++fnmad 0x0 0x8000000000000000 0x8000000000000000 = 0x0 ++fnmad 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fnmad 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fnmad 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fnmad 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fnmad 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fnmad 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fnmad 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fnmad 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fnmad 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fnmad 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fnmad 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fnmad 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmad 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmad 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fnmad 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0x123456789abcdef0 ++fnmad 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x3ff0000000000000 ++fnmad 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fnmad 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fnmad 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fnmad 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fnmad 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fnmad 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fnmad 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fnmad 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fnmad 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fnmad 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmad 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmad 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fnmad 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fnmad 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0xfff0000000000000 ++fnmad 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0x432388ef423d9d0a ++fnmad 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x70debc9a78563412 ++fnmad 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xf0debc9a78563412 ++fnmad 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x70a896e1f9de900f ++fnmad 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xf0a896e1f9de900f ++fnmad 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x70b896e1f9de900f ++fnmad 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xf0b896e1f9de900f ++fnmad 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x70f70d73da40a70e ++fnmad 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xf0f70d73da40a70e ++fnmad 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x710335e08b35e08b ++fnmad 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xf10335e08b35e08b ++fnmad 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x7286e690fe53a8fe ++fnmad 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0xf286e690fe53a8fe ++fnmad 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x123456789abcdef0 ++fnmad 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fnmad 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0x432388ef423d9d0a ++fnmad 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x3fb999999999999a ++fnmad 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fnmad 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fnmad 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fnmad 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fnmad 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fnmad 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fnmad 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0xc014000000000000 ++fnmad 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmad 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmad 0x123456789abcdef0 0xc014000000000000 0x0 = 0x12596c16c16c16ac ++fnmad 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x93de4e3f1c71c703 ++fnmad 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fnmad 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fnmad 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0x70debc9a78563412 ++fnmad 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0xbfb999999999999a ++fnmad 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0xbfe999999999999a ++fnmad 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0x3fe999999999999a ++fnmad 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x4007333333333333 ++fnmad 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xc007333333333333 ++fnmad 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x4013333333333333 ++fnmad 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xc013333333333333 ++fnmad 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4197d783f4000000 ++fnmad 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc197d783f4000000 ++fnmad 0x3ff0000000000000 0x4014000000000000 0x0 = 0xc014000000000000 ++fnmad 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmad 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmad 0xbff0000000000000 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fnmad 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fnmad 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xf0debc9a78563412 ++fnmad 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x3fc999999999999a ++fnmad 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0x3fe999999999999a ++fnmad 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0x4000000000000000 ++fnmad 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0xc007333333333333 ++fnmad 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0x401399999999999a ++fnmad 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0xc013333333333333 ++fnmad 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0x4197d783ff333333 ++fnmad 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0xc197d783f4000000 ++fnmad 0xbff0000000000000 0xc008000000000000 0x0 = 0xc008000000000000 ++fnmad 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmad 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmad 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0xc197d783fc000000 ++fnmad 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x3fb999999999999a ++fnmad 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fnmad 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0x70a896e1f9de900f ++fnmad 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0xbfc999999999999a ++fnmad 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x4007333333333333 ++fnmad 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xc007333333333333 ++fnmad 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x4013f5c28f5c28f6 ++fnmad 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xc013f5c28f5c28f6 ++fnmad 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x4197d783ffeb851f ++fnmad 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xc197d783ffeb851f ++fnmad 0x3fb999999999999a 0x4008000000000000 0x0 = 0xbfd3333333333334 ++fnmad 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0x3fd3333333333334 ++fnmad 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmad 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0xc16312cfe0000000 ++fnmad 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0x416312cfe0000000 ++fnmad 0xbfb999999999999a 0x0 0xbfb999999999999a = 0xbfb999999999999a ++fnmad 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fnmad 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xf0a896e1f9de900f ++fnmad 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x4008000000000000 ++fnmad 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0xc007333333333333 ++fnmad 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0x401399999999999a ++fnmad 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0xc013f5c28f5c28f6 ++fnmad 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0x4197d783fff5c28f ++fnmad 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0xc197d783ffeb851f ++fnmad 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0xbf947ae147ae147c ++fnmad 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x3fd3333333333334 ++fnmad 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmad 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0x3fe0000000000000 ++fnmad 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0x416312cfe0000000 ++fnmad 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0xc16312cffccccccd ++fnmad 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x3fc999999999999a ++fnmad 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fnmad 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0x70b896e1f9de900f ++fnmad 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0xc008000000000000 ++fnmad 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x4013333333333333 ++fnmad 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xc013333333333333 ++fnmad 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x4197d783ffeb851f ++fnmad 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xc197d783ffeb851f ++fnmad 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0xbfa47ae147ae147c ++fnmad 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0x3fa47ae147ae147c ++fnmad 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0x3fe3333333333334 ++fnmad 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0xbc90000000000000 ++fnmad 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0x3c90000000000000 ++fnmad 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0xc17312cffe666667 ++fnmad 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0x417312cffe666667 ++fnmad 0xbfc999999999999a 0x0 0xbfc999999999999a = 0xbfc999999999999a ++fnmad 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fnmad 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xf0b896e1f9de900f ++fnmad 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x4014000000000000 ++fnmad 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0xc013333333333333 ++fnmad 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0x4197d783ff333333 ++fnmad 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0xc197d783ffeb851f ++fnmad 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0xbf947ae147ae147c ++fnmad 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x3fa47ae147ae147c ++fnmad 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x3fe3333333333334 ++fnmad 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0x3fd9999999999999 ++fnmad 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0x3c90000000000000 ++fnmad 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0xbfeccccccccccccd ++fnmad 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0x417312cffe666667 ++fnmad 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0xc17312cffccccccd ++fnmad 0x4008000000000000 0x0 0x4008000000000000 = 0x4008000000000000 ++fnmad 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fnmad 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0x70f70d73da40a70e ++fnmad 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0xc014000000000000 ++fnmad 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x4197d783f4000000 ++fnmad 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xc197d783f4000000 ++fnmad 0x4008000000000000 0x3fb999999999999a 0x0 = 0xbfd3333333333334 ++fnmad 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0x3fd3333333333334 ++fnmad 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0x3fe3333333333334 ++fnmad 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0xc020000000000000 ++fnmad 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0x4020000000000000 ++fnmad 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0xc02dcccccccccccd ++fnmad 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0x402dcccccccccccd ++fnmad 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0xc1b1e1a2ffcccccd ++fnmad 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0x41b1e1a2ffcccccd ++fnmad 0xc008000000000000 0x0 0xc008000000000000 = 0xc008000000000000 ++fnmad 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fnmad 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xf0f70d73da40a70e ++fnmad 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x4197d78400000000 ++fnmad 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0xc197d783f4000000 ++fnmad 0xc008000000000000 0xbff0000000000000 0x0 = 0xc008000000000000 ++fnmad 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x3fd3333333333334 ++fnmad 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x3fe3333333333334 ++fnmad 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0x3fd9999999999999 ++fnmad 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0x4020000000000000 ++fnmad 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0xc021cccccccccccd ++fnmad 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0x402dcccccccccccd ++fnmad 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0xc02d99999999999a ++fnmad 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0x41b1e1a2ffcccccd ++fnmad 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0xc1b1e1a2fd000000 ++fnmad 0x4014000000000000 0x0 0x4014000000000000 = 0x4014000000000000 ++fnmad 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fnmad 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0x710335e08b35e08b ++fnmad 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0xc197d78400000000 ++fnmad 0x4014000000000000 0x3ff0000000000000 0x0 = 0xc014000000000000 ++fnmad 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmad 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmad 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0xbc90000000000000 ++fnmad 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0x3c90000000000000 ++fnmad 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0xc02dcccccccccccd ++fnmad 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0x402dcccccccccccd ++fnmad 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0xc038cccccccccccd ++fnmad 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0x4038cccccccccccd ++fnmad 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0xc1bdcd64fd000000 ++fnmad 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0x41bdcd64fd000000 ++fnmad 0xc014000000000000 0x0 0xc014000000000000 = 0xc014000000000000 ++fnmad 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fnmad 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xf10335e08b35e08b ++fnmad 0xc014000000000000 0x123456789abcdef0 0x0 = 0x12596c16c16c16ac ++fnmad 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmad 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmad 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0x3fe0000000000000 ++fnmad 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0x3c90000000000000 ++fnmad 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0xbfeccccccccccccd ++fnmad 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0x402dcccccccccccd ++fnmad 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0xc02d99999999999a ++fnmad 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0x4038cccccccccccd ++fnmad 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0xc036000000000000 ++fnmad 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0x41bdcd64fd000000 ++fnmad 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0xc1bdcd64fb000000 ++fnmad 0x4197d78400000000 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fnmad 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fnmad 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0x7286e690fe53a8fe ++fnmad 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x93de4e3f1c71c703 ++fnmad 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmad 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0xc16312cfe0000000 ++fnmad 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0x416312cfe0000000 ++fnmad 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0xc17312cffe666667 ++fnmad 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0x417312cffe666667 ++fnmad 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0xc1b1e1a2ffcccccd ++fnmad 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0x41b1e1a2ffcccccd ++fnmad 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0xc1bdcd64fd000000 ++fnmad 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0x41bdcd64fd000000 ++fnmad 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0xc341c37937e07ffe ++fnmad 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0x4341c37937e07ffe ++fnmad 0xc197d78400000000 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fnmad 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fnmad 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0xf286e690fe53a8fe ++fnmad 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fnmad 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmad 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0xc197d783fc000000 ++fnmad 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0x416312cfe0000000 ++fnmad 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0xc16312cffccccccd ++fnmad 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0x417312cffe666667 ++fnmad 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0xc17312cffccccccd ++fnmad 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0x41b1e1a2ffcccccd ++fnmad 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0xc1b1e1a2fd000000 ++fnmad 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0x41bdcd64fd000000 ++fnmad 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0xc1bdcd64fb000000 ++fnmad 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0x4341c37937e07ffe ++fnmad 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0xc341c37934e58f80 ++=== Running test on fnmss=== ++fnmss 0x0 0x0 0x0 = 0x8000000000000000 ++fnmss 0x0 0x8000000000000000 0x8000000000000000 = 0x0 ++fnmss 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fnmss 0x0 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fnmss 0x0 0x3fb99999a0000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fnmss 0x0 0xbfb99999a0000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fnmss 0x0 0x3fc99999a0000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fnmss 0x0 0xbfc99999a0000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fnmss 0x0 0x4008000000000000 0x4008000000000000 = 0xc008000000000000 ++fnmss 0x0 0xc008000000000000 0xc008000000000000 = 0x4008000000000000 ++fnmss 0x0 0x4014000000000000 0x4014000000000000 = 0xc014000000000000 ++fnmss 0x0 0xc014000000000000 0xc014000000000000 = 0x4014000000000000 ++fnmss 0x0 0x4197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0x0 0xc197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fnmss 0x8000000000000000 0x8000000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fnmss 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fnmss 0x8000000000000000 0xbff0000000000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fnmss 0x8000000000000000 0x3fb99999a0000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fnmss 0x8000000000000000 0xbfb99999a0000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fnmss 0x8000000000000000 0x3fc99999a0000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fnmss 0x8000000000000000 0xbfc99999a0000000 0x4008000000000000 = 0xc008000000000000 ++fnmss 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fnmss 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0xc014000000000000 ++fnmss 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fnmss 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0x8000000000000000 0xc197d78400000000 0x0 = 0x8000000000000000 ++fnmss 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0xbff0000000000000 ++fnmss 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fnmss 0x3ff0000000000000 0x3ff0000000000000 0x3fb99999a0000000 = 0xbff19999a0000000 ++fnmss 0x3ff0000000000000 0xbff0000000000000 0xbfb99999a0000000 = 0x3ff19999a0000000 ++fnmss 0x3ff0000000000000 0x3fb99999a0000000 0x3fc99999a0000000 = 0xbfd3333340000000 ++fnmss 0x3ff0000000000000 0xbfb99999a0000000 0xbfc99999a0000000 = 0x3fd3333340000000 ++fnmss 0x3ff0000000000000 0x3fc99999a0000000 0x4008000000000000 = 0xc0099999a0000000 ++fnmss 0x3ff0000000000000 0xbfc99999a0000000 0xc008000000000000 = 0x40099999a0000000 ++fnmss 0x3ff0000000000000 0x4008000000000000 0x4014000000000000 = 0xc020000000000000 ++fnmss 0x3ff0000000000000 0xc008000000000000 0xc014000000000000 = 0x4020000000000000 ++fnmss 0x3ff0000000000000 0x4014000000000000 0x4197d78400000000 = 0xc197d78420000000 ++fnmss 0x3ff0000000000000 0xc014000000000000 0xc197d78400000000 = 0x4197d78420000000 ++fnmss 0x3ff0000000000000 0x4197d78400000000 0x0 = 0xc197d78400000000 ++fnmss 0x3ff0000000000000 0xc197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fnmss 0xbff0000000000000 0x0 0xbff0000000000000 = 0x3ff0000000000000 ++fnmss 0xbff0000000000000 0x8000000000000000 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fnmss 0xbff0000000000000 0x3ff0000000000000 0xbfb99999a0000000 = 0x3ff19999a0000000 ++fnmss 0xbff0000000000000 0xbff0000000000000 0x3fc99999a0000000 = 0xbff3333340000000 ++fnmss 0xbff0000000000000 0x3fb99999a0000000 0xbfc99999a0000000 = 0x3fd3333340000000 ++fnmss 0xbff0000000000000 0xbfb99999a0000000 0x4008000000000000 = 0xc008ccccc0000000 ++fnmss 0xbff0000000000000 0x3fc99999a0000000 0xc008000000000000 = 0x40099999a0000000 ++fnmss 0xbff0000000000000 0xbfc99999a0000000 0x4014000000000000 = 0xc014ccccc0000000 ++fnmss 0xbff0000000000000 0x4008000000000000 0xc014000000000000 = 0x4020000000000000 ++fnmss 0xbff0000000000000 0xc008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0xbff0000000000000 0x4014000000000000 0xc197d78400000000 = 0x4197d78420000000 ++fnmss 0xbff0000000000000 0xc014000000000000 0x0 = 0xc014000000000000 ++fnmss 0xbff0000000000000 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fnmss 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fnmss 0x3fb99999a0000000 0x0 0x3fb99999a0000000 = 0xbfb99999a0000000 ++fnmss 0x3fb99999a0000000 0x8000000000000000 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fnmss 0x3fb99999a0000000 0x3ff0000000000000 0x3fc99999a0000000 = 0xbfd3333340000000 ++fnmss 0x3fb99999a0000000 0xbff0000000000000 0xbfc99999a0000000 = 0x3fd3333340000000 ++fnmss 0x3fb99999a0000000 0x3fb99999a0000000 0x4008000000000000 = 0xc008147ae0000000 ++fnmss 0x3fb99999a0000000 0xbfb99999a0000000 0xc008000000000000 = 0x4008147ae0000000 ++fnmss 0x3fb99999a0000000 0x3fc99999a0000000 0x4014000000000000 = 0xc014147ae0000000 ++fnmss 0x3fb99999a0000000 0xbfc99999a0000000 0xc014000000000000 = 0x4014147ae0000000 ++fnmss 0x3fb99999a0000000 0x4008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0x3fb99999a0000000 0xc008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0x3fb99999a0000000 0x4014000000000000 0x0 = 0xbfe0000000000000 ++fnmss 0x3fb99999a0000000 0xc014000000000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmss 0x3fb99999a0000000 0x4197d78400000000 0x3ff0000000000000 = 0xc16312d020000000 ++fnmss 0x3fb99999a0000000 0xc197d78400000000 0xbff0000000000000 = 0x416312d020000000 ++fnmss 0xbfb99999a0000000 0x0 0xbfb99999a0000000 = 0x3fb99999a0000000 ++fnmss 0xbfb99999a0000000 0x8000000000000000 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fnmss 0xbfb99999a0000000 0x3ff0000000000000 0xbfc99999a0000000 = 0x3fd3333340000000 ++fnmss 0xbfb99999a0000000 0xbff0000000000000 0x4008000000000000 = 0xc008ccccc0000000 ++fnmss 0xbfb99999a0000000 0x3fb99999a0000000 0xc008000000000000 = 0x4008147ae0000000 ++fnmss 0xbfb99999a0000000 0xbfb99999a0000000 0x4014000000000000 = 0xc0140a3d80000000 ++fnmss 0xbfb99999a0000000 0x3fc99999a0000000 0xc014000000000000 = 0x4014147ae0000000 ++fnmss 0xbfb99999a0000000 0xbfc99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0xbfb99999a0000000 0x4008000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0xbfb99999a0000000 0xc008000000000000 0x0 = 0xbfd3333340000000 ++fnmss 0xbfb99999a0000000 0x4014000000000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmss 0xbfb99999a0000000 0xc014000000000000 0x3ff0000000000000 = 0xbff8000000000000 ++fnmss 0xbfb99999a0000000 0x4197d78400000000 0xbff0000000000000 = 0x416312d020000000 ++fnmss 0xbfb99999a0000000 0xc197d78400000000 0x3fb99999a0000000 = 0xc16312d000000000 ++fnmss 0x3fc99999a0000000 0x0 0x3fc99999a0000000 = 0xbfc99999a0000000 ++fnmss 0x3fc99999a0000000 0x8000000000000000 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fnmss 0x3fc99999a0000000 0x3ff0000000000000 0x4008000000000000 = 0xc0099999a0000000 ++fnmss 0x3fc99999a0000000 0xbff0000000000000 0xc008000000000000 = 0x40099999a0000000 ++fnmss 0x3fc99999a0000000 0x3fb99999a0000000 0x4014000000000000 = 0xc014147ae0000000 ++fnmss 0x3fc99999a0000000 0xbfb99999a0000000 0xc014000000000000 = 0x4014147ae0000000 ++fnmss 0x3fc99999a0000000 0x3fc99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0x3fc99999a0000000 0xbfc99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0x3fc99999a0000000 0x4008000000000000 0x0 = 0xbfe3333340000000 ++fnmss 0x3fc99999a0000000 0xc008000000000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmss 0x3fc99999a0000000 0x4014000000000000 0x3ff0000000000000 = 0xc000000000000000 ++fnmss 0x3fc99999a0000000 0xc014000000000000 0xbff0000000000000 = 0x4000000000000000 ++fnmss 0x3fc99999a0000000 0x4197d78400000000 0x3fb99999a0000000 = 0xc17312d000000000 ++fnmss 0x3fc99999a0000000 0xc197d78400000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmss 0xbfc99999a0000000 0x0 0xbfc99999a0000000 = 0x3fc99999a0000000 ++fnmss 0xbfc99999a0000000 0x8000000000000000 0x4008000000000000 = 0xc008000000000000 ++fnmss 0xbfc99999a0000000 0x3ff0000000000000 0xc008000000000000 = 0x40099999a0000000 ++fnmss 0xbfc99999a0000000 0xbff0000000000000 0x4014000000000000 = 0xc014ccccc0000000 ++fnmss 0xbfc99999a0000000 0x3fb99999a0000000 0xc014000000000000 = 0x4014147ae0000000 ++fnmss 0xbfc99999a0000000 0xbfb99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0xbfc99999a0000000 0x3fc99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0xbfc99999a0000000 0xbfc99999a0000000 0x0 = 0xbfa47ae160000000 ++fnmss 0xbfc99999a0000000 0x4008000000000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmss 0xbfc99999a0000000 0xc008000000000000 0x3ff0000000000000 = 0xbff99999a0000000 ++fnmss 0xbfc99999a0000000 0x4014000000000000 0xbff0000000000000 = 0x4000000000000000 ++fnmss 0xbfc99999a0000000 0xc014000000000000 0x3fb99999a0000000 = 0xbff19999a0000000 ++fnmss 0xbfc99999a0000000 0x4197d78400000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmss 0xbfc99999a0000000 0xc197d78400000000 0x3fc99999a0000000 = 0xc17312d000000000 ++fnmss 0x4008000000000000 0x0 0x4008000000000000 = 0xc008000000000000 ++fnmss 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0x4008000000000000 ++fnmss 0x4008000000000000 0x3ff0000000000000 0x4014000000000000 = 0xc020000000000000 ++fnmss 0x4008000000000000 0xbff0000000000000 0xc014000000000000 = 0x4020000000000000 ++fnmss 0x4008000000000000 0x3fb99999a0000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0x4008000000000000 0xbfb99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0x4008000000000000 0x3fc99999a0000000 0x0 = 0xbfe3333340000000 ++fnmss 0x4008000000000000 0xbfc99999a0000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmss 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0xc024000000000000 ++fnmss 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0x4024000000000000 ++fnmss 0x4008000000000000 0x4014000000000000 0x3fb99999a0000000 = 0xc02e333340000000 ++fnmss 0x4008000000000000 0xc014000000000000 0xbfb99999a0000000 = 0x402e333340000000 ++fnmss 0x4008000000000000 0x4197d78400000000 0x3fc99999a0000000 = 0xc1b1e1a300000000 ++fnmss 0x4008000000000000 0xc197d78400000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmss 0xc008000000000000 0x0 0xc008000000000000 = 0x4008000000000000 ++fnmss 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0xc014000000000000 ++fnmss 0xc008000000000000 0x3ff0000000000000 0xc014000000000000 = 0x4020000000000000 ++fnmss 0xc008000000000000 0xbff0000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0xc008000000000000 0x3fb99999a0000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0xc008000000000000 0xbfb99999a0000000 0x0 = 0xbfd3333340000000 ++fnmss 0xc008000000000000 0x3fc99999a0000000 0x8000000000000000 = 0x3fe3333340000000 ++fnmss 0xc008000000000000 0xbfc99999a0000000 0x3ff0000000000000 = 0xbff99999a0000000 ++fnmss 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0x4024000000000000 ++fnmss 0xc008000000000000 0xc008000000000000 0x3fb99999a0000000 = 0xc022333340000000 ++fnmss 0xc008000000000000 0x4014000000000000 0xbfb99999a0000000 = 0x402e333340000000 ++fnmss 0xc008000000000000 0xc014000000000000 0x3fc99999a0000000 = 0xc02e666660000000 ++fnmss 0xc008000000000000 0x4197d78400000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmss 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0xc1b1e1a300000000 ++fnmss 0x4014000000000000 0x0 0x4014000000000000 = 0xc014000000000000 ++fnmss 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0x4014000000000000 ++fnmss 0x4014000000000000 0x3ff0000000000000 0x4197d78400000000 = 0xc197d78420000000 ++fnmss 0x4014000000000000 0xbff0000000000000 0xc197d78400000000 = 0x4197d78420000000 ++fnmss 0x4014000000000000 0x3fb99999a0000000 0x0 = 0xbfe0000000000000 ++fnmss 0x4014000000000000 0xbfb99999a0000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmss 0x4014000000000000 0x3fc99999a0000000 0x3ff0000000000000 = 0xc000000000000000 ++fnmss 0x4014000000000000 0xbfc99999a0000000 0xbff0000000000000 = 0x4000000000000000 ++fnmss 0x4014000000000000 0x4008000000000000 0x3fb99999a0000000 = 0xc02e333340000000 ++fnmss 0x4014000000000000 0xc008000000000000 0xbfb99999a0000000 = 0x402e333340000000 ++fnmss 0x4014000000000000 0x4014000000000000 0x3fc99999a0000000 = 0xc039333340000000 ++fnmss 0x4014000000000000 0xc014000000000000 0xbfc99999a0000000 = 0x4039333340000000 ++fnmss 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0xc1bdcd6500000000 ++fnmss 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmss 0xc014000000000000 0x0 0xc014000000000000 = 0x4014000000000000 ++fnmss 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0xc014000000000000 0x3ff0000000000000 0xc197d78400000000 = 0x4197d78420000000 ++fnmss 0xc014000000000000 0xbff0000000000000 0x0 = 0xc014000000000000 ++fnmss 0xc014000000000000 0x3fb99999a0000000 0x8000000000000000 = 0x3fe0000000000000 ++fnmss 0xc014000000000000 0xbfb99999a0000000 0x3ff0000000000000 = 0xbff8000000000000 ++fnmss 0xc014000000000000 0x3fc99999a0000000 0xbff0000000000000 = 0x4000000000000000 ++fnmss 0xc014000000000000 0xbfc99999a0000000 0x3fb99999a0000000 = 0xbff19999a0000000 ++fnmss 0xc014000000000000 0x4008000000000000 0xbfb99999a0000000 = 0x402e333340000000 ++fnmss 0xc014000000000000 0xc008000000000000 0x3fc99999a0000000 = 0xc02e666660000000 ++fnmss 0xc014000000000000 0x4014000000000000 0xbfc99999a0000000 = 0x4039333340000000 ++fnmss 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0xc03c000000000000 ++fnmss 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmss 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0xc1bdcd6500000000 ++fnmss 0x4197d78400000000 0x0 0x4197d78400000000 = 0xc197d78400000000 ++fnmss 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0x4197d78400000000 0x3ff0000000000000 0x0 = 0xc197d78400000000 ++fnmss 0x4197d78400000000 0xbff0000000000000 0x8000000000000000 = 0x4197d78400000000 ++fnmss 0x4197d78400000000 0x3fb99999a0000000 0x3ff0000000000000 = 0xc16312d020000000 ++fnmss 0x4197d78400000000 0xbfb99999a0000000 0xbff0000000000000 = 0x416312d020000000 ++fnmss 0x4197d78400000000 0x3fc99999a0000000 0x3fb99999a0000000 = 0xc17312d000000000 ++fnmss 0x4197d78400000000 0xbfc99999a0000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmss 0x4197d78400000000 0x4008000000000000 0x3fc99999a0000000 = 0xc1b1e1a300000000 ++fnmss 0x4197d78400000000 0xc008000000000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmss 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0xc1bdcd6500000000 ++fnmss 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmss 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0xc341c37940000000 ++fnmss 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0x4341c37940000000 ++fnmss 0xc197d78400000000 0x0 0xc197d78400000000 = 0x4197d78400000000 ++fnmss 0xc197d78400000000 0x8000000000000000 0x0 = 0x8000000000000000 ++fnmss 0xc197d78400000000 0x3ff0000000000000 0x8000000000000000 = 0x4197d78400000000 ++fnmss 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0xc197d78400000000 ++fnmss 0xc197d78400000000 0x3fb99999a0000000 0xbff0000000000000 = 0x416312d020000000 ++fnmss 0xc197d78400000000 0xbfb99999a0000000 0x3fb99999a0000000 = 0xc16312d000000000 ++fnmss 0xc197d78400000000 0x3fc99999a0000000 0xbfb99999a0000000 = 0x417312d000000000 ++fnmss 0xc197d78400000000 0xbfc99999a0000000 0x3fc99999a0000000 = 0xc17312d000000000 ++fnmss 0xc197d78400000000 0x4008000000000000 0xbfc99999a0000000 = 0x41b1e1a300000000 ++fnmss 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0xc1b1e1a300000000 ++fnmss 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0x41bdcd6500000000 ++fnmss 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0xc1bdcd6500000000 ++fnmss 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0x4341c37940000000 ++fnmss 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0xc341c37940000000 ++=== Running test on fnmsd=== ++fnmsd 0x0 0x0 0x0 = 0x8000000000000000 ++fnmsd 0x0 0x8000000000000000 0x8000000000000000 = 0x0 ++fnmsd 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x923456789abcdef0 ++fnmsd 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fnmsd 0x0 0xbff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fnmsd 0x0 0x3fb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fnmsd 0x0 0xbfb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fnmsd 0x0 0x3fc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fnmsd 0x0 0xbfc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fnmsd 0x0 0x4008000000000000 0x4008000000000000 = 0xc008000000000000 ++fnmsd 0x0 0xc008000000000000 0xc008000000000000 = 0x4008000000000000 ++fnmsd 0x0 0x4014000000000000 0x4014000000000000 = 0xc014000000000000 ++fnmsd 0x0 0xc014000000000000 0xc014000000000000 = 0x4014000000000000 ++fnmsd 0x0 0x4197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmsd 0x0 0xc197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmsd 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fnmsd 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0x923456789abcdef0 ++fnmsd 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0xbff0000000000000 ++fnmsd 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fnmsd 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fnmsd 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fnmsd 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fnmsd 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fnmsd 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0xc008000000000000 ++fnmsd 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fnmsd 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0xc014000000000000 ++fnmsd 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fnmsd 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmsd 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmsd 0x8000000000000000 0xc197d78400000000 0x0 = 0x8000000000000000 ++fnmsd 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x923456789abcdef0 ++fnmsd 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0xfff0000000000000 ++fnmsd 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0x432388ef423d9d0e ++fnmsd 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x70debc9a78563412 ++fnmsd 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xf0debc9a78563412 ++fnmsd 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x70a896e1f9de900f ++fnmsd 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xf0a896e1f9de900f ++fnmsd 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x70b896e1f9de900f ++fnmsd 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xf0b896e1f9de900f ++fnmsd 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x70f70d73da40a70d ++fnmsd 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xf0f70d73da40a70d ++fnmsd 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x710335e08b35e08b ++fnmsd 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xf10335e08b35e08b ++fnmsd 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x7286e690fe53a8fe ++fnmsd 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0xf286e690fe53a8fe ++fnmsd 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x923456789abcdef0 ++fnmsd 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fnmsd 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0x432388ef423d9d0e ++fnmsd 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0xbfb999999999999a ++fnmsd 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fnmsd 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fnmsd 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fnmsd 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0xc008000000000000 ++fnmsd 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0x4008000000000000 ++fnmsd 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0xc014000000000000 ++fnmsd 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0x4014000000000000 ++fnmsd 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmsd 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmsd 0x123456789abcdef0 0xc014000000000000 0x0 = 0x12596c16c16c16ac ++fnmsd 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x93de4e3f1c71c703 ++fnmsd 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0xbff0000000000000 ++fnmsd 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fnmsd 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0x70debc9a78563412 ++fnmsd 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0x3fb999999999999a ++fnmsd 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0xbff3333333333333 ++fnmsd 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0x3ff3333333333333 ++fnmsd 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0xc008cccccccccccd ++fnmsd 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0x4008cccccccccccd ++fnmsd 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0xc014cccccccccccd ++fnmsd 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0x4014cccccccccccd ++fnmsd 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0xc197d7840c000000 ++fnmsd 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0x4197d7840c000000 ++fnmsd 0x3ff0000000000000 0x4014000000000000 0x0 = 0xc014000000000000 ++fnmsd 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmsd 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmsd 0xbff0000000000000 0x0 0xbff0000000000000 = 0x3ff0000000000000 ++fnmsd 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0xbfb999999999999a ++fnmsd 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xf0debc9a78563412 ++fnmsd 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0xbfc999999999999a ++fnmsd 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0x3ff3333333333333 ++fnmsd 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0xc010000000000000 ++fnmsd 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0x4008cccccccccccd ++fnmsd 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0xc014666666666666 ++fnmsd 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0x4014cccccccccccd ++fnmsd 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0xc197d78400cccccd ++fnmsd 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0x4197d7840c000000 ++fnmsd 0xbff0000000000000 0xc008000000000000 0x0 = 0xc008000000000000 ++fnmsd 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmsd 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmsd 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78404000000 ++fnmsd 0x3fb999999999999a 0x0 0x3fb999999999999a = 0xbfb999999999999a ++fnmsd 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0x3fb999999999999a ++fnmsd 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0x70a896e1f9de900f ++fnmsd 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0x3fc999999999999a ++fnmsd 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0xc008cccccccccccd ++fnmsd 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0x4008cccccccccccd ++fnmsd 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0xc0140a3d70a3d70a ++fnmsd 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0x40140a3d70a3d70a ++fnmsd 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0xc197d78400147ae1 ++fnmsd 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0x4197d78400147ae1 ++fnmsd 0x3fb999999999999a 0x4008000000000000 0x0 = 0xbfd3333333333334 ++fnmsd 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0x3fd3333333333334 ++fnmsd 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmsd 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0xc16312d020000000 ++fnmsd 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0x416312d020000000 ++fnmsd 0xbfb999999999999a 0x0 0xbfb999999999999a = 0x3fb999999999999a ++fnmsd 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0xbfc999999999999a ++fnmsd 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xf0a896e1f9de900f ++fnmsd 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0xc008000000000000 ++fnmsd 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0x4008cccccccccccd ++fnmsd 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0xc014666666666666 ++fnmsd 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0x40140a3d70a3d70a ++fnmsd 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0xc197d784000a3d71 ++fnmsd 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0x4197d78400147ae1 ++fnmsd 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0xbf947ae147ae147c ++fnmsd 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x3fd3333333333334 ++fnmsd 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmsd 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0xbff8000000000000 ++fnmsd 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0x416312d020000000 ++fnmsd 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0xc16312d003333333 ++fnmsd 0x3fc999999999999a 0x0 0x3fc999999999999a = 0xbfc999999999999a ++fnmsd 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0x3fc999999999999a ++fnmsd 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0x70b896e1f9de900f ++fnmsd 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0x4008000000000000 ++fnmsd 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0xc014cccccccccccd ++fnmsd 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0x4014cccccccccccd ++fnmsd 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0xc197d78400147ae1 ++fnmsd 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0x4197d78400147ae1 ++fnmsd 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0xbfa47ae147ae147c ++fnmsd 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0x3fa47ae147ae147c ++fnmsd 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0x3fe3333333333333 ++fnmsd 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0xc000000000000000 ++fnmsd 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0x4000000000000000 ++fnmsd 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0xc17312d00199999a ++fnmsd 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0x417312d00199999a ++fnmsd 0xbfc999999999999a 0x0 0xbfc999999999999a = 0x3fc999999999999a ++fnmsd 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0xc008000000000000 ++fnmsd 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xf0b896e1f9de900f ++fnmsd 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0xc014000000000000 ++fnmsd 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0x4014cccccccccccd ++fnmsd 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0xc197d78400cccccd ++fnmsd 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0x4197d78400147ae1 ++fnmsd 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0xbf947ae147ae147c ++fnmsd 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x3fa47ae147ae147c ++fnmsd 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x3fe3333333333333 ++fnmsd 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0xbff999999999999a ++fnmsd 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0x4000000000000000 ++fnmsd 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0xbff199999999999a ++fnmsd 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0x417312d00199999a ++fnmsd 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0xc17312d003333333 ++fnmsd 0x4008000000000000 0x0 0x4008000000000000 = 0xc008000000000000 ++fnmsd 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0x4008000000000000 ++fnmsd 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0x70f70d73da40a70d ++fnmsd 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0x4014000000000000 ++fnmsd 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0xc197d7840c000000 ++fnmsd 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0x4197d7840c000000 ++fnmsd 0x4008000000000000 0x3fb999999999999a 0x0 = 0xbfd3333333333334 ++fnmsd 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0x3fd3333333333334 ++fnmsd 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0x3fe3333333333333 ++fnmsd 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0xc024000000000000 ++fnmsd 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0x4024000000000000 ++fnmsd 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0xc02e333333333333 ++fnmsd 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0x402e333333333333 ++fnmsd 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0xc1b1e1a300333333 ++fnmsd 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0x41b1e1a300333333 ++fnmsd 0xc008000000000000 0x0 0xc008000000000000 = 0x4008000000000000 ++fnmsd 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0xc014000000000000 ++fnmsd 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xf0f70d73da40a70d ++fnmsd 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0xc197d78400000000 ++fnmsd 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0x4197d7840c000000 ++fnmsd 0xc008000000000000 0xbff0000000000000 0x0 = 0xc008000000000000 ++fnmsd 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x3fd3333333333334 ++fnmsd 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x3fe3333333333333 ++fnmsd 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0xbff999999999999a ++fnmsd 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0x4024000000000000 ++fnmsd 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0xc022333333333333 ++fnmsd 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0x402e333333333333 ++fnmsd 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0xc02e666666666666 ++fnmsd 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0x41b1e1a300333333 ++fnmsd 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0xc1b1e1a303000000 ++fnmsd 0x4014000000000000 0x0 0x4014000000000000 = 0xc014000000000000 ++fnmsd 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0x4014000000000000 ++fnmsd 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0x710335e08b35e08b ++fnmsd 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0x4197d78400000000 ++fnmsd 0x4014000000000000 0x3ff0000000000000 0x0 = 0xc014000000000000 ++fnmsd 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmsd 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmsd 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0xc000000000000000 ++fnmsd 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0x4000000000000000 ++fnmsd 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0xc02e333333333333 ++fnmsd 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0x402e333333333333 ++fnmsd 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0xc039333333333333 ++fnmsd 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0x4039333333333333 ++fnmsd 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0xc1bdcd6503000000 ++fnmsd 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0x41bdcd6503000000 ++fnmsd 0xc014000000000000 0x0 0xc014000000000000 = 0x4014000000000000 ++fnmsd 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0xc197d78400000000 ++fnmsd 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xf10335e08b35e08b ++fnmsd 0xc014000000000000 0x123456789abcdef0 0x0 = 0x12596c16c16c16ac ++fnmsd 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x4014000000000000 ++fnmsd 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x3fe0000000000000 ++fnmsd 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0xbff8000000000000 ++fnmsd 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0x4000000000000000 ++fnmsd 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0xbff199999999999a ++fnmsd 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0x402e333333333333 ++fnmsd 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0xc02e666666666666 ++fnmsd 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0x4039333333333333 ++fnmsd 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0xc03c000000000000 ++fnmsd 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0x41bdcd6503000000 ++fnmsd 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0xc1bdcd6505000000 ++fnmsd 0x4197d78400000000 0x0 0x4197d78400000000 = 0xc197d78400000000 ++fnmsd 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0x4197d78400000000 ++fnmsd 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0x7286e690fe53a8fe ++fnmsd 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x93de4e3f1c71c703 ++fnmsd 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmsd 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0xc16312d020000000 ++fnmsd 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0x416312d020000000 ++fnmsd 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0xc17312d00199999a ++fnmsd 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0x417312d00199999a ++fnmsd 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0xc1b1e1a300333333 ++fnmsd 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0x41b1e1a300333333 ++fnmsd 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0xc1bdcd6503000000 ++fnmsd 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0x41bdcd6503000000 ++fnmsd 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0xc341c37937e08002 ++fnmsd 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0x4341c37937e08002 ++fnmsd 0xc197d78400000000 0x0 0xc197d78400000000 = 0x4197d78400000000 ++fnmsd 0xc197d78400000000 0x8000000000000000 0x0 = 0x8000000000000000 ++fnmsd 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0xf286e690fe53a8fe ++fnmsd 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0x70debc9a78563412 ++fnmsd 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x4197d78400000000 ++fnmsd 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0xc197d78404000000 ++fnmsd 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0x416312d020000000 ++fnmsd 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0xc16312d003333333 ++fnmsd 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0x417312d00199999a ++fnmsd 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0xc17312d003333333 ++fnmsd 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0x41b1e1a300333333 ++fnmsd 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0xc1b1e1a303000000 ++fnmsd 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0x41bdcd6503000000 ++fnmsd 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0xc1bdcd6505000000 ++fnmsd 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0x4341c37937e08002 ++fnmsd 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0xc341c3793adb7080 ++=== Running test on fseleq=== ++fseleq 0x0 0x0 0x0 = 0x0 ++fseleq 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fseleq 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0x8000000000000000 ++fseleq 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0xf0debc9a78563412 ++fseleq 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x123456789abcdef0 ++fseleq 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fseleq 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0xbff0000000000000 ++fseleq 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fseleq 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0xbfb999999999999a ++fseleq 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fseleq 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0xbfc999999999999a ++fseleq 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fseleq 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0xc008000000000000 ++fseleq 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fseleq 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0xc014000000000000 ++fseleq 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fseleq 0x8000000000000000 0xc197d78400000000 0x0 = 0xc197d78400000000 ++fseleq 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fseleq 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x0 ++fseleq 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fseleq 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x123456789abcdef0 0xc014000000000000 0x0 = 0x0 ++fseleq 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fseleq 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fseleq 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x3ff0000000000000 0x4014000000000000 0x0 = 0x0 ++fseleq 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xbff0000000000000 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fseleq 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0xbff0000000000000 0xc008000000000000 0x0 = 0x0 ++fseleq 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fseleq 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x3fb999999999999a 0x4008000000000000 0x0 = 0x0 ++fseleq 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xbfb999999999999a 0x0 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x4008000000000000 ++fseleq 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0x0 ++fseleq 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0xc008000000000000 ++fseleq 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x0 ++fseleq 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xbfc999999999999a 0x0 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x4014000000000000 ++fseleq 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0x0 ++fseleq 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fseleq 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x4008000000000000 0x0 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0xc014000000000000 ++fseleq 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x4008000000000000 0x3fb999999999999a 0x0 = 0x0 ++fseleq 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xc008000000000000 0x0 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0xc008000000000000 0xbff0000000000000 0x0 = 0x0 ++fseleq 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fseleq 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x4014000000000000 0x0 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x4014000000000000 0x3ff0000000000000 0x0 = 0x0 ++fseleq 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xc014000000000000 0x0 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0xc014000000000000 0x123456789abcdef0 0x0 = 0x0 ++fseleq 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fseleq 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x4197d78400000000 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fseleq 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0x0 ++fseleq 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x8000000000000000 ++fseleq 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xc197d78400000000 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fseleq 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fseleq 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0x8000000000000000 ++fseleq 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fseleq 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fseleq 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fseleq 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fseleq 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fseleq 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fseleq 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fseleq 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fseleq 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0x4008000000000000 ++fseleq 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0xc008000000000000 ++fseleq 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0x4014000000000000 ++fseleq 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fseleq 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++=== Running test on fselne=== ++fselne 0x0 0x0 0x0 = 0x0 ++fselne 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fselne 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselne 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fselne 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselne 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselne 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselne 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselne 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselne 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselne 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fselne 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fselne 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fselne 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fselne 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fselne 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fselne 0x8000000000000000 0x0 0x8000000000000000 = 0x8000000000000000 ++fselne 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselne 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0x123456789abcdef0 ++fselne 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x3ff0000000000000 ++fselne 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselne 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselne 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselne 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselne 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselne 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fselne 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fselne 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fselne 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fselne 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselne 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fselne 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fselne 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0x0 ++fselne 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x8000000000000000 ++fselne 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0debc9a78563412 ++fselne 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0x123456789abcdef0 ++fselne 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x3ff0000000000000 ++fselne 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xbff0000000000000 ++fselne 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x3fb999999999999a ++fselne 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xbfb999999999999a ++fselne 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x3fc999999999999a ++fselne 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xbfc999999999999a ++fselne 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x4008000000000000 ++fselne 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xc008000000000000 ++fselne 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x4014000000000000 ++fselne 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xc014000000000000 ++fselne 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fselne 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fselne 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x0 ++fselne 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fselne 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xf0debc9a78563412 ++fselne 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x123456789abcdef0 ++fselne 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0x3ff0000000000000 ++fselne 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0xbff0000000000000 ++fselne 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0x3fb999999999999a ++fselne 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0xbfb999999999999a ++fselne 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0x3fc999999999999a ++fselne 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0xbfc999999999999a ++fselne 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0x4008000000000000 ++fselne 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0xc008000000000000 ++fselne 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0x4014000000000000 ++fselne 0x123456789abcdef0 0xc014000000000000 0x0 = 0xc014000000000000 ++fselne 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fselne 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xc197d78400000000 ++fselne 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x0 ++fselne 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0x8000000000000000 ++fselne 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0xf0debc9a78563412 ++fselne 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0x123456789abcdef0 ++fselne 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3ff0000000000000 ++fselne 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbff0000000000000 ++fselne 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x3fb999999999999a ++fselne 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xbfb999999999999a ++fselne 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x3fc999999999999a ++fselne 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xbfc999999999999a ++fselne 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4008000000000000 ++fselne 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc008000000000000 ++fselne 0x3ff0000000000000 0x4014000000000000 0x0 = 0x4014000000000000 ++fselne 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fselne 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0x4197d78400000000 ++fselne 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fselne 0xbff0000000000000 0x0 0xbff0000000000000 = 0x0 ++fselne 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x8000000000000000 ++fselne 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xf0debc9a78563412 ++fselne 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x123456789abcdef0 ++fselne 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0x3ff0000000000000 ++fselne 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0xbff0000000000000 ++fselne 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0x3fb999999999999a ++fselne 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0xbfb999999999999a ++fselne 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0x3fc999999999999a ++fselne 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0xbfc999999999999a ++fselne 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0x4008000000000000 ++fselne 0xbff0000000000000 0xc008000000000000 0x0 = 0xc008000000000000 ++fselne 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fselne 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xc014000000000000 ++fselne 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fselne 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fselne 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x0 ++fselne 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0x8000000000000000 ++fselne 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0xf0debc9a78563412 ++fselne 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0x123456789abcdef0 ++fselne 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x3ff0000000000000 ++fselne 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xbff0000000000000 ++fselne 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x3fb999999999999a ++fselne 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xbfb999999999999a ++fselne 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x3fc999999999999a ++fselne 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xbfc999999999999a ++fselne 0x3fb999999999999a 0x4008000000000000 0x0 = 0x4008000000000000 ++fselne 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0xc008000000000000 ++fselne 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0x4014000000000000 ++fselne 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0xc014000000000000 ++fselne 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fselne 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fselne 0xbfb999999999999a 0x0 0xbfb999999999999a = 0x0 ++fselne 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x8000000000000000 ++fselne 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xf0debc9a78563412 ++fselne 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x123456789abcdef0 ++fselne 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0x3ff0000000000000 ++fselne 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0xbff0000000000000 ++fselne 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0x3fb999999999999a ++fselne 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0xbfb999999999999a ++fselne 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0x3fc999999999999a ++fselne 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0xbfc999999999999a ++fselne 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x4008000000000000 ++fselne 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xc008000000000000 ++fselne 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x4014000000000000 ++fselne 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0xc014000000000000 ++fselne 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fselne 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0xc197d78400000000 ++fselne 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x0 ++fselne 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0x8000000000000000 ++fselne 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0xf0debc9a78563412 ++fselne 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0x123456789abcdef0 ++fselne 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x3ff0000000000000 ++fselne 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xbff0000000000000 ++fselne 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x3fb999999999999a ++fselne 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xbfb999999999999a ++fselne 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x3fc999999999999a ++fselne 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0xbfc999999999999a ++fselne 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0x4008000000000000 ++fselne 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0xc008000000000000 ++fselne 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x4014000000000000 ++fselne 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xc014000000000000 ++fselne 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x4197d78400000000 ++fselne 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xc197d78400000000 ++fselne 0xbfc999999999999a 0x0 0xbfc999999999999a = 0x0 ++fselne 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x8000000000000000 ++fselne 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xf0debc9a78563412 ++fselne 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x123456789abcdef0 ++fselne 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0x3ff0000000000000 ++fselne 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0xbff0000000000000 ++fselne 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0x3fb999999999999a ++fselne 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0xbfb999999999999a ++fselne 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x3fc999999999999a ++fselne 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xbfc999999999999a ++fselne 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x4008000000000000 ++fselne 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0xc008000000000000 ++fselne 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0x4014000000000000 ++fselne 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0xc014000000000000 ++fselne 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0x4197d78400000000 ++fselne 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0xc197d78400000000 ++fselne 0x4008000000000000 0x0 0x4008000000000000 = 0x0 ++fselne 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0x8000000000000000 ++fselne 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0xf0debc9a78563412 ++fselne 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0x123456789abcdef0 ++fselne 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x3ff0000000000000 ++fselne 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xbff0000000000000 ++fselne 0x4008000000000000 0x3fb999999999999a 0x0 = 0x3fb999999999999a ++fselne 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0xbfb999999999999a ++fselne 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0x3fc999999999999a ++fselne 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0xbfc999999999999a ++fselne 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x4008000000000000 ++fselne 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xc008000000000000 ++fselne 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x4014000000000000 ++fselne 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xc014000000000000 ++fselne 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x4197d78400000000 ++fselne 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xc197d78400000000 ++fselne 0xc008000000000000 0x0 0xc008000000000000 = 0x0 ++fselne 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x8000000000000000 ++fselne 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xf0debc9a78563412 ++fselne 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x123456789abcdef0 ++fselne 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0x3ff0000000000000 ++fselne 0xc008000000000000 0xbff0000000000000 0x0 = 0xbff0000000000000 ++fselne 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x3fb999999999999a ++fselne 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xbfb999999999999a ++fselne 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x3fc999999999999a ++fselne 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0xbfc999999999999a ++fselne 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0x4008000000000000 ++fselne 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0xc008000000000000 ++fselne 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0x4014000000000000 ++fselne 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0xc014000000000000 ++fselne 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0x4197d78400000000 ++fselne 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0xc197d78400000000 ++fselne 0x4014000000000000 0x0 0x4014000000000000 = 0x0 ++fselne 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0x8000000000000000 ++fselne 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0xf0debc9a78563412 ++fselne 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0x123456789abcdef0 ++fselne 0x4014000000000000 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++fselne 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++fselne 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0x3fb999999999999a ++fselne 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0xbfb999999999999a ++fselne 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x3fc999999999999a ++fselne 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xbfc999999999999a ++fselne 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x4008000000000000 ++fselne 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xc008000000000000 ++fselne 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x4014000000000000 ++fselne 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xc014000000000000 ++fselne 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x4197d78400000000 ++fselne 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc197d78400000000 ++fselne 0xc014000000000000 0x0 0xc014000000000000 = 0x0 ++fselne 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x8000000000000000 ++fselne 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xf0debc9a78563412 ++fselne 0xc014000000000000 0x123456789abcdef0 0x0 = 0x123456789abcdef0 ++fselne 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++fselne 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xbff0000000000000 ++fselne 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x3fb999999999999a ++fselne 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0xbfb999999999999a ++fselne 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0x3fc999999999999a ++fselne 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0xbfc999999999999a ++fselne 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0x4008000000000000 ++fselne 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0xc008000000000000 ++fselne 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0x4014000000000000 ++fselne 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0xc014000000000000 ++fselne 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0x4197d78400000000 ++fselne 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0xc197d78400000000 ++fselne 0x4197d78400000000 0x0 0x4197d78400000000 = 0x0 ++fselne 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0x8000000000000000 ++fselne 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0xf0debc9a78563412 ++fselne 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x123456789abcdef0 ++fselne 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0x3ff0000000000000 ++fselne 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0xbff0000000000000 ++fselne 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x3fb999999999999a ++fselne 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xbfb999999999999a ++fselne 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x3fc999999999999a ++fselne 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xbfc999999999999a ++fselne 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x4008000000000000 ++fselne 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xc008000000000000 ++fselne 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x4014000000000000 ++fselne 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc014000000000000 ++fselne 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4197d78400000000 ++fselne 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc197d78400000000 ++fselne 0xc197d78400000000 0x0 0xc197d78400000000 = 0x0 ++fselne 0xc197d78400000000 0x8000000000000000 0x0 = 0x8000000000000000 ++fselne 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0xf0debc9a78563412 ++fselne 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0x123456789abcdef0 ++fselne 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x3ff0000000000000 ++fselne 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fselne 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0x3fb999999999999a ++fselne 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fselne 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0x3fc999999999999a ++fselne 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fselne 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0x4008000000000000 ++fselne 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0xc008000000000000 ++fselne 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0x4014000000000000 ++fselne 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0xc014000000000000 ++fselne 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0x4197d78400000000 ++fselne 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++=== Running test on fsellt=== ++fsellt 0x0 0x0 0x0 = 0x0 ++fsellt 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x8000000000000000 0x0 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fsellt 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0x0 ++fsellt 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x8000000000000000 ++fsellt 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0debc9a78563412 ++fsellt 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0x123456789abcdef0 ++fsellt 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x3ff0000000000000 ++fsellt 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xbff0000000000000 ++fsellt 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x3fb999999999999a ++fsellt 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xbfb999999999999a ++fsellt 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x3fc999999999999a ++fsellt 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xbfc999999999999a ++fsellt 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x4008000000000000 ++fsellt 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xc008000000000000 ++fsellt 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x4014000000000000 ++fsellt 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xc014000000000000 ++fsellt 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fsellt 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fsellt 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x123456789abcdef0 0xc014000000000000 0x0 = 0x0 ++fsellt 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x3ff0000000000000 0x4014000000000000 0x0 = 0x0 ++fsellt 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0xbff0000000000000 0x0 0xbff0000000000000 = 0x0 ++fsellt 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x8000000000000000 ++fsellt 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xf0debc9a78563412 ++fsellt 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x123456789abcdef0 ++fsellt 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0x3ff0000000000000 ++fsellt 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0xbff0000000000000 ++fsellt 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0x3fb999999999999a ++fsellt 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0xbfb999999999999a ++fsellt 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0x3fc999999999999a ++fsellt 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0xbfc999999999999a ++fsellt 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0x4008000000000000 ++fsellt 0xbff0000000000000 0xc008000000000000 0x0 = 0xc008000000000000 ++fsellt 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fsellt 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xc014000000000000 ++fsellt 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fsellt 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fsellt 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x3fb999999999999a 0x4008000000000000 0x0 = 0x0 ++fsellt 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0xbfb999999999999a 0x0 0xbfb999999999999a = 0x0 ++fsellt 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x8000000000000000 ++fsellt 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xf0debc9a78563412 ++fsellt 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x123456789abcdef0 ++fsellt 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0x3ff0000000000000 ++fsellt 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0xbff0000000000000 ++fsellt 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0x3fb999999999999a ++fsellt 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0xbfb999999999999a ++fsellt 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0x3fc999999999999a ++fsellt 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0xbfc999999999999a ++fsellt 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x4008000000000000 ++fsellt 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xc008000000000000 ++fsellt 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x4014000000000000 ++fsellt 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0xc014000000000000 ++fsellt 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fsellt 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0xc197d78400000000 ++fsellt 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x0 ++fsellt 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0xbfc999999999999a 0x0 0xbfc999999999999a = 0x0 ++fsellt 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x8000000000000000 ++fsellt 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xf0debc9a78563412 ++fsellt 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x123456789abcdef0 ++fsellt 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0x3ff0000000000000 ++fsellt 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0xbff0000000000000 ++fsellt 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0x3fb999999999999a ++fsellt 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0xbfb999999999999a ++fsellt 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x3fc999999999999a ++fsellt 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xbfc999999999999a ++fsellt 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x4008000000000000 ++fsellt 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0xc008000000000000 ++fsellt 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0x4014000000000000 ++fsellt 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0xc014000000000000 ++fsellt 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0x4197d78400000000 ++fsellt 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0xc197d78400000000 ++fsellt 0x4008000000000000 0x0 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x4008000000000000 0x3fb999999999999a 0x0 = 0x0 ++fsellt 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0xc008000000000000 0x0 0xc008000000000000 = 0x0 ++fsellt 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x8000000000000000 ++fsellt 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xf0debc9a78563412 ++fsellt 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x123456789abcdef0 ++fsellt 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0x3ff0000000000000 ++fsellt 0xc008000000000000 0xbff0000000000000 0x0 = 0xbff0000000000000 ++fsellt 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x3fb999999999999a ++fsellt 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xbfb999999999999a ++fsellt 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x3fc999999999999a ++fsellt 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0xbfc999999999999a ++fsellt 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0x4008000000000000 ++fsellt 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0xc008000000000000 ++fsellt 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0x4014000000000000 ++fsellt 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0xc014000000000000 ++fsellt 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0x4197d78400000000 ++fsellt 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0xc197d78400000000 ++fsellt 0x4014000000000000 0x0 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fsellt 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x4014000000000000 0x3ff0000000000000 0x0 = 0x0 ++fsellt 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fsellt 0xc014000000000000 0x0 0xc014000000000000 = 0x0 ++fsellt 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x8000000000000000 ++fsellt 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xf0debc9a78563412 ++fsellt 0xc014000000000000 0x123456789abcdef0 0x0 = 0x123456789abcdef0 ++fsellt 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++fsellt 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xbff0000000000000 ++fsellt 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x3fb999999999999a ++fsellt 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0xbfb999999999999a ++fsellt 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0x3fc999999999999a ++fsellt 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0xbfc999999999999a ++fsellt 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0x4008000000000000 ++fsellt 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0xc008000000000000 ++fsellt 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0x4014000000000000 ++fsellt 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0xc014000000000000 ++fsellt 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0x4197d78400000000 ++fsellt 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0xc197d78400000000 ++fsellt 0x4197d78400000000 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fsellt 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fsellt 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0x0 ++fsellt 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x8000000000000000 ++fsellt 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fsellt 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fsellt 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fsellt 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fsellt 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fsellt 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fsellt 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fsellt 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fsellt 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x4008000000000000 ++fsellt 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc008000000000000 ++fsellt 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fsellt 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fsellt 0xc197d78400000000 0x0 0xc197d78400000000 = 0x0 ++fsellt 0xc197d78400000000 0x8000000000000000 0x0 = 0x8000000000000000 ++fsellt 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0xf0debc9a78563412 ++fsellt 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0x123456789abcdef0 ++fsellt 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x3ff0000000000000 ++fsellt 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fsellt 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0x3fb999999999999a ++fsellt 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fsellt 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0x3fc999999999999a ++fsellt 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fsellt 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0x4008000000000000 ++fsellt 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0xc008000000000000 ++fsellt 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0x4014000000000000 ++fsellt 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0xc014000000000000 ++fsellt 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0x4197d78400000000 ++fsellt 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++=== Running test on fselle=== ++fselle 0x0 0x0 0x0 = 0x0 ++fselle 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fselle 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fselle 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fselle 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fselle 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fselle 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fselle 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0x8000000000000000 ++fselle 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0xf0debc9a78563412 ++fselle 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x123456789abcdef0 ++fselle 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fselle 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0xbff0000000000000 ++fselle 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fselle 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0xbfb999999999999a ++fselle 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fselle 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0xbfc999999999999a ++fselle 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fselle 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0xc008000000000000 ++fselle 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fselle 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0xc014000000000000 ++fselle 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fselle 0x8000000000000000 0xc197d78400000000 0x0 = 0xc197d78400000000 ++fselle 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0x0 ++fselle 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x8000000000000000 ++fselle 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0xf0debc9a78563412 ++fselle 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0x123456789abcdef0 ++fselle 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x3ff0000000000000 ++fselle 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xbff0000000000000 ++fselle 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x3fb999999999999a ++fselle 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xbfb999999999999a ++fselle 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x3fc999999999999a ++fselle 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xbfc999999999999a ++fselle 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x4008000000000000 ++fselle 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xc008000000000000 ++fselle 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x4014000000000000 ++fselle 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xc014000000000000 ++fselle 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x4197d78400000000 ++fselle 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0xc197d78400000000 ++fselle 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fselle 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fselle 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fselle 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0xc014000000000000 ++fselle 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x123456789abcdef0 0xc014000000000000 0x0 = 0x0 ++fselle 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fselle 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x4008000000000000 ++fselle 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fselle 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x4014000000000000 ++fselle 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fselle 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x3ff0000000000000 0x4014000000000000 0x0 = 0x0 ++fselle 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0x8000000000000000 ++fselle 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0xbff0000000000000 0x0 0xbff0000000000000 = 0x0 ++fselle 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x8000000000000000 ++fselle 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xf0debc9a78563412 ++fselle 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x123456789abcdef0 ++fselle 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0x3ff0000000000000 ++fselle 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0xbff0000000000000 ++fselle 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0x3fb999999999999a ++fselle 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0xbfb999999999999a ++fselle 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0x3fc999999999999a ++fselle 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0xbfc999999999999a ++fselle 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0x4008000000000000 ++fselle 0xbff0000000000000 0xc008000000000000 0x0 = 0xc008000000000000 ++fselle 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x4014000000000000 ++fselle 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xc014000000000000 ++fselle 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x4197d78400000000 ++fselle 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0xc197d78400000000 ++fselle 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fselle 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fselle 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fselle 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fselle 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x3fb999999999999a 0x4008000000000000 0x0 = 0x0 ++fselle 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0x8000000000000000 ++fselle 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0xbfb999999999999a 0x0 0xbfb999999999999a = 0x0 ++fselle 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x8000000000000000 ++fselle 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xf0debc9a78563412 ++fselle 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x123456789abcdef0 ++fselle 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0x3ff0000000000000 ++fselle 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0xbff0000000000000 ++fselle 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0x3fb999999999999a ++fselle 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0xbfb999999999999a ++fselle 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0x3fc999999999999a ++fselle 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0xbfc999999999999a ++fselle 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x4008000000000000 ++fselle 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xc008000000000000 ++fselle 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x4014000000000000 ++fselle 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0xc014000000000000 ++fselle 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0x4197d78400000000 ++fselle 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0xc197d78400000000 ++fselle 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0x4008000000000000 ++fselle 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0xc008000000000000 ++fselle 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fselle 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fselle 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x0 ++fselle 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fselle 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0xbfc999999999999a 0x0 0xbfc999999999999a = 0x0 ++fselle 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x8000000000000000 ++fselle 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xf0debc9a78563412 ++fselle 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x123456789abcdef0 ++fselle 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0x3ff0000000000000 ++fselle 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0xbff0000000000000 ++fselle 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0x3fb999999999999a ++fselle 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0xbfb999999999999a ++fselle 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x3fc999999999999a ++fselle 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xbfc999999999999a ++fselle 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x4008000000000000 ++fselle 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0xc008000000000000 ++fselle 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0x4014000000000000 ++fselle 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0xc014000000000000 ++fselle 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0x4197d78400000000 ++fselle 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0xc197d78400000000 ++fselle 0x4008000000000000 0x0 0x4008000000000000 = 0x4008000000000000 ++fselle 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0xc008000000000000 ++fselle 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0x4014000000000000 ++fselle 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0xc014000000000000 ++fselle 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x4008000000000000 0x3fb999999999999a 0x0 = 0x0 ++fselle 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fselle 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0xc008000000000000 0x0 0xc008000000000000 = 0x0 ++fselle 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x8000000000000000 ++fselle 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xf0debc9a78563412 ++fselle 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x123456789abcdef0 ++fselle 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0x3ff0000000000000 ++fselle 0xc008000000000000 0xbff0000000000000 0x0 = 0xbff0000000000000 ++fselle 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x3fb999999999999a ++fselle 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xbfb999999999999a ++fselle 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x3fc999999999999a ++fselle 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0xbfc999999999999a ++fselle 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0x4008000000000000 ++fselle 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0xc008000000000000 ++fselle 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0x4014000000000000 ++fselle 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0xc014000000000000 ++fselle 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0x4197d78400000000 ++fselle 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0xc197d78400000000 ++fselle 0x4014000000000000 0x0 0x4014000000000000 = 0x4014000000000000 ++fselle 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0xc014000000000000 ++fselle 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x4014000000000000 0x3ff0000000000000 0x0 = 0x0 ++fselle 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fselle 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fselle 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fselle 0xc014000000000000 0x0 0xc014000000000000 = 0x0 ++fselle 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x8000000000000000 ++fselle 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xf0debc9a78563412 ++fselle 0xc014000000000000 0x123456789abcdef0 0x0 = 0x123456789abcdef0 ++fselle 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x3ff0000000000000 ++fselle 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xbff0000000000000 ++fselle 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x3fb999999999999a ++fselle 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0xbfb999999999999a ++fselle 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0x3fc999999999999a ++fselle 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0xbfc999999999999a ++fselle 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0x4008000000000000 ++fselle 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0xc008000000000000 ++fselle 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0x4014000000000000 ++fselle 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0xc014000000000000 ++fselle 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0x4197d78400000000 ++fselle 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0xc197d78400000000 ++fselle 0x4197d78400000000 0x0 0x4197d78400000000 = 0x4197d78400000000 ++fselle 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselle 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0x0 ++fselle 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x8000000000000000 ++fselle 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselle 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselle 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fselle 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fselle 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselle 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselle 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselle 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselle 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x4008000000000000 ++fselle 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc008000000000000 ++fselle 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fselle 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fselle 0xc197d78400000000 0x0 0xc197d78400000000 = 0x0 ++fselle 0xc197d78400000000 0x8000000000000000 0x0 = 0x8000000000000000 ++fselle 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0xf0debc9a78563412 ++fselle 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0x123456789abcdef0 ++fselle 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x3ff0000000000000 ++fselle 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0xbff0000000000000 ++fselle 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0x3fb999999999999a ++fselle 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0xbfb999999999999a ++fselle 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0x3fc999999999999a ++fselle 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0xbfc999999999999a ++fselle 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0x4008000000000000 ++fselle 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0xc008000000000000 ++fselle 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0x4014000000000000 ++fselle 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0xc014000000000000 ++fselle 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0x4197d78400000000 ++fselle 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0xc197d78400000000 ++=== Running test on fselgt=== ++fselgt 0x0 0x0 0x0 = 0x0 ++fselgt 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fselgt 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fselgt 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fselgt 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fselgt 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fselgt 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0x8000000000000000 0x0 0x8000000000000000 = 0x8000000000000000 ++fselgt 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fselgt 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0xc008000000000000 ++fselgt 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0x4014000000000000 ++fselgt 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0xc014000000000000 ++fselgt 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0x8000000000000000 0xc197d78400000000 0x0 = 0x0 ++fselgt 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fselgt 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fselgt 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x4014000000000000 ++fselgt 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xc014000000000000 ++fselgt 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x0 ++fselgt 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fselgt 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x0 ++fselgt 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fselgt 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xf0debc9a78563412 ++fselgt 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x123456789abcdef0 ++fselgt 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0x3ff0000000000000 ++fselgt 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0xbff0000000000000 ++fselgt 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0x3fb999999999999a ++fselgt 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0xbfb999999999999a ++fselgt 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0x3fc999999999999a ++fselgt 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0xbfc999999999999a ++fselgt 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0x4008000000000000 ++fselgt 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0xc008000000000000 ++fselgt 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0x4014000000000000 ++fselgt 0x123456789abcdef0 0xc014000000000000 0x0 = 0xc014000000000000 ++fselgt 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fselgt 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xc197d78400000000 ++fselgt 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x0 ++fselgt 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0x8000000000000000 ++fselgt 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0xf0debc9a78563412 ++fselgt 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0x123456789abcdef0 ++fselgt 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3ff0000000000000 ++fselgt 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbff0000000000000 ++fselgt 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x3fb999999999999a ++fselgt 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xbfb999999999999a ++fselgt 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x3fc999999999999a ++fselgt 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xbfc999999999999a ++fselgt 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4008000000000000 ++fselgt 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc008000000000000 ++fselgt 0x3ff0000000000000 0x4014000000000000 0x0 = 0x4014000000000000 ++fselgt 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fselgt 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0x4197d78400000000 ++fselgt 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fselgt 0xbff0000000000000 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fselgt 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fselgt 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fselgt 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fselgt 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0xbff0000000000000 0xc008000000000000 0x0 = 0x0 ++fselgt 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x8000000000000000 ++fselgt 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x0 ++fselgt 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0x8000000000000000 ++fselgt 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0xf0debc9a78563412 ++fselgt 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0x123456789abcdef0 ++fselgt 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x3ff0000000000000 ++fselgt 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xbff0000000000000 ++fselgt 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x3fb999999999999a ++fselgt 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xbfb999999999999a ++fselgt 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x3fc999999999999a ++fselgt 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xbfc999999999999a ++fselgt 0x3fb999999999999a 0x4008000000000000 0x0 = 0x4008000000000000 ++fselgt 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0xc008000000000000 ++fselgt 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0x4014000000000000 ++fselgt 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0xc014000000000000 ++fselgt 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fselgt 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fselgt 0xbfb999999999999a 0x0 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x4008000000000000 ++fselgt 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fselgt 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fselgt 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fselgt 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0x0 ++fselgt 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x8000000000000000 ++fselgt 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x0 ++fselgt 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0x8000000000000000 ++fselgt 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0xf0debc9a78563412 ++fselgt 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0x123456789abcdef0 ++fselgt 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x3ff0000000000000 ++fselgt 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xbff0000000000000 ++fselgt 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x3fb999999999999a ++fselgt 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xbfb999999999999a ++fselgt 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x3fc999999999999a ++fselgt 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0xbfc999999999999a ++fselgt 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0x4008000000000000 ++fselgt 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0xc008000000000000 ++fselgt 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x4014000000000000 ++fselgt 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xc014000000000000 ++fselgt 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x4197d78400000000 ++fselgt 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xc197d78400000000 ++fselgt 0xbfc999999999999a 0x0 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fselgt 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xc008000000000000 ++fselgt 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x4014000000000000 ++fselgt 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fselgt 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0x0 ++fselgt 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fselgt 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0x4008000000000000 0x0 0x4008000000000000 = 0x0 ++fselgt 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0x8000000000000000 ++fselgt 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0xf0debc9a78563412 ++fselgt 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0x123456789abcdef0 ++fselgt 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x3ff0000000000000 ++fselgt 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xbff0000000000000 ++fselgt 0x4008000000000000 0x3fb999999999999a 0x0 = 0x3fb999999999999a ++fselgt 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0xbfb999999999999a ++fselgt 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0x3fc999999999999a ++fselgt 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0xbfc999999999999a ++fselgt 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x4008000000000000 ++fselgt 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xc008000000000000 ++fselgt 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x4014000000000000 ++fselgt 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xc014000000000000 ++fselgt 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x4197d78400000000 ++fselgt 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xc197d78400000000 ++fselgt 0xc008000000000000 0x0 0xc008000000000000 = 0xc008000000000000 ++fselgt 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fselgt 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xc014000000000000 ++fselgt 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0xc008000000000000 0xbff0000000000000 0x0 = 0x0 ++fselgt 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fselgt 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fselgt 0x4014000000000000 0x0 0x4014000000000000 = 0x0 ++fselgt 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0x8000000000000000 ++fselgt 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0xf0debc9a78563412 ++fselgt 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0x123456789abcdef0 ++fselgt 0x4014000000000000 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++fselgt 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++fselgt 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0x3fb999999999999a ++fselgt 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0xbfb999999999999a ++fselgt 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x3fc999999999999a ++fselgt 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xbfc999999999999a ++fselgt 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x4008000000000000 ++fselgt 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xc008000000000000 ++fselgt 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x4014000000000000 ++fselgt 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xc014000000000000 ++fselgt 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x4197d78400000000 ++fselgt 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc197d78400000000 ++fselgt 0xc014000000000000 0x0 0xc014000000000000 = 0xc014000000000000 ++fselgt 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselgt 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0xc014000000000000 0x123456789abcdef0 0x0 = 0x0 ++fselgt 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fselgt 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0x4008000000000000 ++fselgt 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fselgt 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fselgt 0x4197d78400000000 0x0 0x4197d78400000000 = 0x0 ++fselgt 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0x8000000000000000 ++fselgt 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0xf0debc9a78563412 ++fselgt 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x123456789abcdef0 ++fselgt 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0x3ff0000000000000 ++fselgt 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0xbff0000000000000 ++fselgt 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x3fb999999999999a ++fselgt 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xbfb999999999999a ++fselgt 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x3fc999999999999a ++fselgt 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xbfc999999999999a ++fselgt 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x4008000000000000 ++fselgt 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xc008000000000000 ++fselgt 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x4014000000000000 ++fselgt 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc014000000000000 ++fselgt 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4197d78400000000 ++fselgt 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc197d78400000000 ++fselgt 0xc197d78400000000 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fselgt 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fselgt 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0x8000000000000000 ++fselgt 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselgt 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselgt 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselgt 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fselgt 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselgt 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselgt 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselgt 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselgt 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0x4008000000000000 ++fselgt 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0xc008000000000000 ++fselgt 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0x4014000000000000 ++fselgt 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fselgt 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++=== Running test on fselge=== ++fselge 0x0 0x0 0x0 = 0x0 ++fselge 0x0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++fselge 0x0 0xf0debc9a78563412 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0x0 0x123456789abcdef0 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0x0 0x3ff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0x0 0xbff0000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0x0 0x3fb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0x0 0xbfb999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0x0 0x3fc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0x0 0xbfc999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0x0 0x4008000000000000 0x4008000000000000 = 0x4008000000000000 ++fselge 0x0 0xc008000000000000 0xc008000000000000 = 0xc008000000000000 ++fselge 0x0 0x4014000000000000 0x4014000000000000 = 0x4014000000000000 ++fselge 0x0 0xc014000000000000 0xc014000000000000 = 0xc014000000000000 ++fselge 0x0 0x4197d78400000000 0x4197d78400000000 = 0x4197d78400000000 ++fselge 0x0 0xc197d78400000000 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0x8000000000000000 0x0 0x8000000000000000 = 0x0 ++fselge 0x8000000000000000 0x8000000000000000 0xf0debc9a78563412 = 0x8000000000000000 ++fselge 0x8000000000000000 0xf0debc9a78563412 0x123456789abcdef0 = 0xf0debc9a78563412 ++fselge 0x8000000000000000 0x123456789abcdef0 0x3ff0000000000000 = 0x123456789abcdef0 ++fselge 0x8000000000000000 0x3ff0000000000000 0xbff0000000000000 = 0x3ff0000000000000 ++fselge 0x8000000000000000 0xbff0000000000000 0x3fb999999999999a = 0xbff0000000000000 ++fselge 0x8000000000000000 0x3fb999999999999a 0xbfb999999999999a = 0x3fb999999999999a ++fselge 0x8000000000000000 0xbfb999999999999a 0x3fc999999999999a = 0xbfb999999999999a ++fselge 0x8000000000000000 0x3fc999999999999a 0xbfc999999999999a = 0x3fc999999999999a ++fselge 0x8000000000000000 0xbfc999999999999a 0x4008000000000000 = 0xbfc999999999999a ++fselge 0x8000000000000000 0x4008000000000000 0xc008000000000000 = 0x4008000000000000 ++fselge 0x8000000000000000 0xc008000000000000 0x4014000000000000 = 0xc008000000000000 ++fselge 0x8000000000000000 0x4014000000000000 0xc014000000000000 = 0x4014000000000000 ++fselge 0x8000000000000000 0xc014000000000000 0x4197d78400000000 = 0xc014000000000000 ++fselge 0x8000000000000000 0x4197d78400000000 0xc197d78400000000 = 0x4197d78400000000 ++fselge 0x8000000000000000 0xc197d78400000000 0x0 = 0xc197d78400000000 ++fselge 0xf0debc9a78563412 0x0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0xf0debc9a78563412 0x8000000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0xf0debc9a78563412 0xf0debc9a78563412 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0xf0debc9a78563412 0x123456789abcdef0 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0xf0debc9a78563412 0x3ff0000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0xf0debc9a78563412 0xbff0000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0xf0debc9a78563412 0x3fb999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0xf0debc9a78563412 0xbfb999999999999a 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0xf0debc9a78563412 0x3fc999999999999a 0x4008000000000000 = 0x4008000000000000 ++fselge 0xf0debc9a78563412 0xbfc999999999999a 0xc008000000000000 = 0xc008000000000000 ++fselge 0xf0debc9a78563412 0x4008000000000000 0x4014000000000000 = 0x4014000000000000 ++fselge 0xf0debc9a78563412 0xc008000000000000 0xc014000000000000 = 0xc014000000000000 ++fselge 0xf0debc9a78563412 0x4014000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselge 0xf0debc9a78563412 0xc014000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0xf0debc9a78563412 0x4197d78400000000 0x0 = 0x0 ++fselge 0xf0debc9a78563412 0xc197d78400000000 0x8000000000000000 = 0x8000000000000000 ++fselge 0x123456789abcdef0 0x0 0x123456789abcdef0 = 0x0 ++fselge 0x123456789abcdef0 0x8000000000000000 0x3ff0000000000000 = 0x8000000000000000 ++fselge 0x123456789abcdef0 0xf0debc9a78563412 0xbff0000000000000 = 0xf0debc9a78563412 ++fselge 0x123456789abcdef0 0x123456789abcdef0 0x3fb999999999999a = 0x123456789abcdef0 ++fselge 0x123456789abcdef0 0x3ff0000000000000 0xbfb999999999999a = 0x3ff0000000000000 ++fselge 0x123456789abcdef0 0xbff0000000000000 0x3fc999999999999a = 0xbff0000000000000 ++fselge 0x123456789abcdef0 0x3fb999999999999a 0xbfc999999999999a = 0x3fb999999999999a ++fselge 0x123456789abcdef0 0xbfb999999999999a 0x4008000000000000 = 0xbfb999999999999a ++fselge 0x123456789abcdef0 0x3fc999999999999a 0xc008000000000000 = 0x3fc999999999999a ++fselge 0x123456789abcdef0 0xbfc999999999999a 0x4014000000000000 = 0xbfc999999999999a ++fselge 0x123456789abcdef0 0x4008000000000000 0xc014000000000000 = 0x4008000000000000 ++fselge 0x123456789abcdef0 0xc008000000000000 0x4197d78400000000 = 0xc008000000000000 ++fselge 0x123456789abcdef0 0x4014000000000000 0xc197d78400000000 = 0x4014000000000000 ++fselge 0x123456789abcdef0 0xc014000000000000 0x0 = 0xc014000000000000 ++fselge 0x123456789abcdef0 0x4197d78400000000 0x8000000000000000 = 0x4197d78400000000 ++fselge 0x123456789abcdef0 0xc197d78400000000 0xf0debc9a78563412 = 0xc197d78400000000 ++fselge 0x3ff0000000000000 0x0 0x3ff0000000000000 = 0x0 ++fselge 0x3ff0000000000000 0x8000000000000000 0xbff0000000000000 = 0x8000000000000000 ++fselge 0x3ff0000000000000 0xf0debc9a78563412 0x3fb999999999999a = 0xf0debc9a78563412 ++fselge 0x3ff0000000000000 0x123456789abcdef0 0xbfb999999999999a = 0x123456789abcdef0 ++fselge 0x3ff0000000000000 0x3ff0000000000000 0x3fc999999999999a = 0x3ff0000000000000 ++fselge 0x3ff0000000000000 0xbff0000000000000 0xbfc999999999999a = 0xbff0000000000000 ++fselge 0x3ff0000000000000 0x3fb999999999999a 0x4008000000000000 = 0x3fb999999999999a ++fselge 0x3ff0000000000000 0xbfb999999999999a 0xc008000000000000 = 0xbfb999999999999a ++fselge 0x3ff0000000000000 0x3fc999999999999a 0x4014000000000000 = 0x3fc999999999999a ++fselge 0x3ff0000000000000 0xbfc999999999999a 0xc014000000000000 = 0xbfc999999999999a ++fselge 0x3ff0000000000000 0x4008000000000000 0x4197d78400000000 = 0x4008000000000000 ++fselge 0x3ff0000000000000 0xc008000000000000 0xc197d78400000000 = 0xc008000000000000 ++fselge 0x3ff0000000000000 0x4014000000000000 0x0 = 0x4014000000000000 ++fselge 0x3ff0000000000000 0xc014000000000000 0x8000000000000000 = 0xc014000000000000 ++fselge 0x3ff0000000000000 0x4197d78400000000 0xf0debc9a78563412 = 0x4197d78400000000 ++fselge 0x3ff0000000000000 0xc197d78400000000 0x123456789abcdef0 = 0xc197d78400000000 ++fselge 0xbff0000000000000 0x0 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0xbff0000000000000 0x8000000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0xbff0000000000000 0xf0debc9a78563412 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0xbff0000000000000 0x123456789abcdef0 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0xbff0000000000000 0x3ff0000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0xbff0000000000000 0xbff0000000000000 0x4008000000000000 = 0x4008000000000000 ++fselge 0xbff0000000000000 0x3fb999999999999a 0xc008000000000000 = 0xc008000000000000 ++fselge 0xbff0000000000000 0xbfb999999999999a 0x4014000000000000 = 0x4014000000000000 ++fselge 0xbff0000000000000 0x3fc999999999999a 0xc014000000000000 = 0xc014000000000000 ++fselge 0xbff0000000000000 0xbfc999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fselge 0xbff0000000000000 0x4008000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0xbff0000000000000 0xc008000000000000 0x0 = 0x0 ++fselge 0xbff0000000000000 0x4014000000000000 0x8000000000000000 = 0x8000000000000000 ++fselge 0xbff0000000000000 0xc014000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0xbff0000000000000 0x4197d78400000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0xbff0000000000000 0xc197d78400000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0x3fb999999999999a 0x0 0x3fb999999999999a = 0x0 ++fselge 0x3fb999999999999a 0x8000000000000000 0xbfb999999999999a = 0x8000000000000000 ++fselge 0x3fb999999999999a 0xf0debc9a78563412 0x3fc999999999999a = 0xf0debc9a78563412 ++fselge 0x3fb999999999999a 0x123456789abcdef0 0xbfc999999999999a = 0x123456789abcdef0 ++fselge 0x3fb999999999999a 0x3ff0000000000000 0x4008000000000000 = 0x3ff0000000000000 ++fselge 0x3fb999999999999a 0xbff0000000000000 0xc008000000000000 = 0xbff0000000000000 ++fselge 0x3fb999999999999a 0x3fb999999999999a 0x4014000000000000 = 0x3fb999999999999a ++fselge 0x3fb999999999999a 0xbfb999999999999a 0xc014000000000000 = 0xbfb999999999999a ++fselge 0x3fb999999999999a 0x3fc999999999999a 0x4197d78400000000 = 0x3fc999999999999a ++fselge 0x3fb999999999999a 0xbfc999999999999a 0xc197d78400000000 = 0xbfc999999999999a ++fselge 0x3fb999999999999a 0x4008000000000000 0x0 = 0x4008000000000000 ++fselge 0x3fb999999999999a 0xc008000000000000 0x8000000000000000 = 0xc008000000000000 ++fselge 0x3fb999999999999a 0x4014000000000000 0xf0debc9a78563412 = 0x4014000000000000 ++fselge 0x3fb999999999999a 0xc014000000000000 0x123456789abcdef0 = 0xc014000000000000 ++fselge 0x3fb999999999999a 0x4197d78400000000 0x3ff0000000000000 = 0x4197d78400000000 ++fselge 0x3fb999999999999a 0xc197d78400000000 0xbff0000000000000 = 0xc197d78400000000 ++fselge 0xbfb999999999999a 0x0 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0xbfb999999999999a 0x8000000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0xbfb999999999999a 0xf0debc9a78563412 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0xbfb999999999999a 0x123456789abcdef0 0x4008000000000000 = 0x4008000000000000 ++fselge 0xbfb999999999999a 0x3ff0000000000000 0xc008000000000000 = 0xc008000000000000 ++fselge 0xbfb999999999999a 0xbff0000000000000 0x4014000000000000 = 0x4014000000000000 ++fselge 0xbfb999999999999a 0x3fb999999999999a 0xc014000000000000 = 0xc014000000000000 ++fselge 0xbfb999999999999a 0xbfb999999999999a 0x4197d78400000000 = 0x4197d78400000000 ++fselge 0xbfb999999999999a 0x3fc999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0xbfb999999999999a 0xbfc999999999999a 0x0 = 0x0 ++fselge 0xbfb999999999999a 0x4008000000000000 0x8000000000000000 = 0x8000000000000000 ++fselge 0xbfb999999999999a 0xc008000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0xbfb999999999999a 0x4014000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0xbfb999999999999a 0xc014000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0xbfb999999999999a 0x4197d78400000000 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0xbfb999999999999a 0xc197d78400000000 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0x3fc999999999999a 0x0 0x3fc999999999999a = 0x0 ++fselge 0x3fc999999999999a 0x8000000000000000 0xbfc999999999999a = 0x8000000000000000 ++fselge 0x3fc999999999999a 0xf0debc9a78563412 0x4008000000000000 = 0xf0debc9a78563412 ++fselge 0x3fc999999999999a 0x123456789abcdef0 0xc008000000000000 = 0x123456789abcdef0 ++fselge 0x3fc999999999999a 0x3ff0000000000000 0x4014000000000000 = 0x3ff0000000000000 ++fselge 0x3fc999999999999a 0xbff0000000000000 0xc014000000000000 = 0xbff0000000000000 ++fselge 0x3fc999999999999a 0x3fb999999999999a 0x4197d78400000000 = 0x3fb999999999999a ++fselge 0x3fc999999999999a 0xbfb999999999999a 0xc197d78400000000 = 0xbfb999999999999a ++fselge 0x3fc999999999999a 0x3fc999999999999a 0x0 = 0x3fc999999999999a ++fselge 0x3fc999999999999a 0xbfc999999999999a 0x8000000000000000 = 0xbfc999999999999a ++fselge 0x3fc999999999999a 0x4008000000000000 0xf0debc9a78563412 = 0x4008000000000000 ++fselge 0x3fc999999999999a 0xc008000000000000 0x123456789abcdef0 = 0xc008000000000000 ++fselge 0x3fc999999999999a 0x4014000000000000 0x3ff0000000000000 = 0x4014000000000000 ++fselge 0x3fc999999999999a 0xc014000000000000 0xbff0000000000000 = 0xc014000000000000 ++fselge 0x3fc999999999999a 0x4197d78400000000 0x3fb999999999999a = 0x4197d78400000000 ++fselge 0x3fc999999999999a 0xc197d78400000000 0xbfb999999999999a = 0xc197d78400000000 ++fselge 0xbfc999999999999a 0x0 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0xbfc999999999999a 0x8000000000000000 0x4008000000000000 = 0x4008000000000000 ++fselge 0xbfc999999999999a 0xf0debc9a78563412 0xc008000000000000 = 0xc008000000000000 ++fselge 0xbfc999999999999a 0x123456789abcdef0 0x4014000000000000 = 0x4014000000000000 ++fselge 0xbfc999999999999a 0x3ff0000000000000 0xc014000000000000 = 0xc014000000000000 ++fselge 0xbfc999999999999a 0xbff0000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselge 0xbfc999999999999a 0x3fb999999999999a 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0xbfc999999999999a 0xbfb999999999999a 0x0 = 0x0 ++fselge 0xbfc999999999999a 0x3fc999999999999a 0x8000000000000000 = 0x8000000000000000 ++fselge 0xbfc999999999999a 0xbfc999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0xbfc999999999999a 0x4008000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0xbfc999999999999a 0xc008000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0xbfc999999999999a 0x4014000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0xbfc999999999999a 0xc014000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0xbfc999999999999a 0x4197d78400000000 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0xbfc999999999999a 0xc197d78400000000 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0x4008000000000000 0x0 0x4008000000000000 = 0x0 ++fselge 0x4008000000000000 0x8000000000000000 0xc008000000000000 = 0x8000000000000000 ++fselge 0x4008000000000000 0xf0debc9a78563412 0x4014000000000000 = 0xf0debc9a78563412 ++fselge 0x4008000000000000 0x123456789abcdef0 0xc014000000000000 = 0x123456789abcdef0 ++fselge 0x4008000000000000 0x3ff0000000000000 0x4197d78400000000 = 0x3ff0000000000000 ++fselge 0x4008000000000000 0xbff0000000000000 0xc197d78400000000 = 0xbff0000000000000 ++fselge 0x4008000000000000 0x3fb999999999999a 0x0 = 0x3fb999999999999a ++fselge 0x4008000000000000 0xbfb999999999999a 0x8000000000000000 = 0xbfb999999999999a ++fselge 0x4008000000000000 0x3fc999999999999a 0xf0debc9a78563412 = 0x3fc999999999999a ++fselge 0x4008000000000000 0xbfc999999999999a 0x123456789abcdef0 = 0xbfc999999999999a ++fselge 0x4008000000000000 0x4008000000000000 0x3ff0000000000000 = 0x4008000000000000 ++fselge 0x4008000000000000 0xc008000000000000 0xbff0000000000000 = 0xc008000000000000 ++fselge 0x4008000000000000 0x4014000000000000 0x3fb999999999999a = 0x4014000000000000 ++fselge 0x4008000000000000 0xc014000000000000 0xbfb999999999999a = 0xc014000000000000 ++fselge 0x4008000000000000 0x4197d78400000000 0x3fc999999999999a = 0x4197d78400000000 ++fselge 0x4008000000000000 0xc197d78400000000 0xbfc999999999999a = 0xc197d78400000000 ++fselge 0xc008000000000000 0x0 0xc008000000000000 = 0xc008000000000000 ++fselge 0xc008000000000000 0x8000000000000000 0x4014000000000000 = 0x4014000000000000 ++fselge 0xc008000000000000 0xf0debc9a78563412 0xc014000000000000 = 0xc014000000000000 ++fselge 0xc008000000000000 0x123456789abcdef0 0x4197d78400000000 = 0x4197d78400000000 ++fselge 0xc008000000000000 0x3ff0000000000000 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0xc008000000000000 0xbff0000000000000 0x0 = 0x0 ++fselge 0xc008000000000000 0x3fb999999999999a 0x8000000000000000 = 0x8000000000000000 ++fselge 0xc008000000000000 0xbfb999999999999a 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0xc008000000000000 0x3fc999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0xc008000000000000 0xbfc999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0xc008000000000000 0x4008000000000000 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0xc008000000000000 0xc008000000000000 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0xc008000000000000 0x4014000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0xc008000000000000 0xc014000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0xc008000000000000 0x4197d78400000000 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0xc008000000000000 0xc197d78400000000 0x4008000000000000 = 0x4008000000000000 ++fselge 0x4014000000000000 0x0 0x4014000000000000 = 0x0 ++fselge 0x4014000000000000 0x8000000000000000 0xc014000000000000 = 0x8000000000000000 ++fselge 0x4014000000000000 0xf0debc9a78563412 0x4197d78400000000 = 0xf0debc9a78563412 ++fselge 0x4014000000000000 0x123456789abcdef0 0xc197d78400000000 = 0x123456789abcdef0 ++fselge 0x4014000000000000 0x3ff0000000000000 0x0 = 0x3ff0000000000000 ++fselge 0x4014000000000000 0xbff0000000000000 0x8000000000000000 = 0xbff0000000000000 ++fselge 0x4014000000000000 0x3fb999999999999a 0xf0debc9a78563412 = 0x3fb999999999999a ++fselge 0x4014000000000000 0xbfb999999999999a 0x123456789abcdef0 = 0xbfb999999999999a ++fselge 0x4014000000000000 0x3fc999999999999a 0x3ff0000000000000 = 0x3fc999999999999a ++fselge 0x4014000000000000 0xbfc999999999999a 0xbff0000000000000 = 0xbfc999999999999a ++fselge 0x4014000000000000 0x4008000000000000 0x3fb999999999999a = 0x4008000000000000 ++fselge 0x4014000000000000 0xc008000000000000 0xbfb999999999999a = 0xc008000000000000 ++fselge 0x4014000000000000 0x4014000000000000 0x3fc999999999999a = 0x4014000000000000 ++fselge 0x4014000000000000 0xc014000000000000 0xbfc999999999999a = 0xc014000000000000 ++fselge 0x4014000000000000 0x4197d78400000000 0x4008000000000000 = 0x4197d78400000000 ++fselge 0x4014000000000000 0xc197d78400000000 0xc008000000000000 = 0xc197d78400000000 ++fselge 0xc014000000000000 0x0 0xc014000000000000 = 0xc014000000000000 ++fselge 0xc014000000000000 0x8000000000000000 0x4197d78400000000 = 0x4197d78400000000 ++fselge 0xc014000000000000 0xf0debc9a78563412 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0xc014000000000000 0x123456789abcdef0 0x0 = 0x0 ++fselge 0xc014000000000000 0x3ff0000000000000 0x8000000000000000 = 0x8000000000000000 ++fselge 0xc014000000000000 0xbff0000000000000 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0xc014000000000000 0x3fb999999999999a 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0xc014000000000000 0xbfb999999999999a 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0xc014000000000000 0x3fc999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0xc014000000000000 0xbfc999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0xc014000000000000 0x4008000000000000 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0xc014000000000000 0xc008000000000000 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0xc014000000000000 0x4014000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0xc014000000000000 0xc014000000000000 0x4008000000000000 = 0x4008000000000000 ++fselge 0xc014000000000000 0x4197d78400000000 0xc008000000000000 = 0xc008000000000000 ++fselge 0xc014000000000000 0xc197d78400000000 0x4014000000000000 = 0x4014000000000000 ++fselge 0x4197d78400000000 0x0 0x4197d78400000000 = 0x0 ++fselge 0x4197d78400000000 0x8000000000000000 0xc197d78400000000 = 0x8000000000000000 ++fselge 0x4197d78400000000 0xf0debc9a78563412 0x0 = 0xf0debc9a78563412 ++fselge 0x4197d78400000000 0x123456789abcdef0 0x8000000000000000 = 0x123456789abcdef0 ++fselge 0x4197d78400000000 0x3ff0000000000000 0xf0debc9a78563412 = 0x3ff0000000000000 ++fselge 0x4197d78400000000 0xbff0000000000000 0x123456789abcdef0 = 0xbff0000000000000 ++fselge 0x4197d78400000000 0x3fb999999999999a 0x3ff0000000000000 = 0x3fb999999999999a ++fselge 0x4197d78400000000 0xbfb999999999999a 0xbff0000000000000 = 0xbfb999999999999a ++fselge 0x4197d78400000000 0x3fc999999999999a 0x3fb999999999999a = 0x3fc999999999999a ++fselge 0x4197d78400000000 0xbfc999999999999a 0xbfb999999999999a = 0xbfc999999999999a ++fselge 0x4197d78400000000 0x4008000000000000 0x3fc999999999999a = 0x4008000000000000 ++fselge 0x4197d78400000000 0xc008000000000000 0xbfc999999999999a = 0xc008000000000000 ++fselge 0x4197d78400000000 0x4014000000000000 0x4008000000000000 = 0x4014000000000000 ++fselge 0x4197d78400000000 0xc014000000000000 0xc008000000000000 = 0xc014000000000000 ++fselge 0x4197d78400000000 0x4197d78400000000 0x4014000000000000 = 0x4197d78400000000 ++fselge 0x4197d78400000000 0xc197d78400000000 0xc014000000000000 = 0xc197d78400000000 ++fselge 0xc197d78400000000 0x0 0xc197d78400000000 = 0xc197d78400000000 ++fselge 0xc197d78400000000 0x8000000000000000 0x0 = 0x0 ++fselge 0xc197d78400000000 0xf0debc9a78563412 0x8000000000000000 = 0x8000000000000000 ++fselge 0xc197d78400000000 0x123456789abcdef0 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fselge 0xc197d78400000000 0x3ff0000000000000 0x123456789abcdef0 = 0x123456789abcdef0 ++fselge 0xc197d78400000000 0xbff0000000000000 0x3ff0000000000000 = 0x3ff0000000000000 ++fselge 0xc197d78400000000 0x3fb999999999999a 0xbff0000000000000 = 0xbff0000000000000 ++fselge 0xc197d78400000000 0xbfb999999999999a 0x3fb999999999999a = 0x3fb999999999999a ++fselge 0xc197d78400000000 0x3fc999999999999a 0xbfb999999999999a = 0xbfb999999999999a ++fselge 0xc197d78400000000 0xbfc999999999999a 0x3fc999999999999a = 0x3fc999999999999a ++fselge 0xc197d78400000000 0x4008000000000000 0xbfc999999999999a = 0xbfc999999999999a ++fselge 0xc197d78400000000 0xc008000000000000 0x4008000000000000 = 0x4008000000000000 ++fselge 0xc197d78400000000 0x4014000000000000 0xc008000000000000 = 0xc008000000000000 ++fselge 0xc197d78400000000 0xc014000000000000 0x4014000000000000 = 0x4014000000000000 ++fselge 0xc197d78400000000 0x4197d78400000000 0xc014000000000000 = 0xc014000000000000 ++fselge 0xc197d78400000000 0xc197d78400000000 0x4197d78400000000 = 0x4197d78400000000 +diff --git a/none/tests/sw64/arith-fp.vgtest b/none/tests/sw64/arith-fp.vgtest +new file mode 100644 +index 000000000..084d562bc +--- /dev/null ++++ b/none/tests/sw64/arith-fp.vgtest +@@ -0,0 +1,2 @@ ++prog: arith-fp ++vgopts: -q +diff --git a/none/tests/sw64/arith-int-imm.c b/none/tests/sw64/arith-int-imm.c +new file mode 100644 +index 000000000..c22150755 +--- /dev/null ++++ b/none/tests/sw64/arith-int-imm.c +@@ -0,0 +1,232 @@ ++#include "common-sw64-standalone.h" ++ ++#define MK_FUNC(insn) \ ++ SINGLE_FUNC(insn, 0) \ ++ SINGLE_FUNC(insn, 1) \ ++ SINGLE_FUNC(insn, 2) \ ++ SINGLE_FUNC(insn, 3) \ ++ SINGLE_FUNC(insn, 15) \ ++ SINGLE_FUNC(insn, 127) \ ++ SINGLE_FUNC(insn, 128) \ ++ SINGLE_FUNC(insn, 255) \ ++ static void run_##insn(void) { \ ++ SINGLE_RUN(insn, 0); \ ++ SINGLE_RUN(insn, 1); \ ++ SINGLE_RUN(insn, 2); \ ++ SINGLE_RUN(insn, 3); \ ++ SINGLE_RUN(insn, 15); \ ++ SINGLE_RUN(insn, 127); \ ++ SINGLE_RUN(insn, 128); \ ++ SINGLE_RUN(insn, 255); \ ++ } ++ ++ ++/* 0-op instructions */ ++#define SINGLE_FUNC(insn, imm) \ ++ __attribute__((noinline)) static long test_##insn##imm(void) { \ ++ long r; \ ++ __asm__ volatile ( \ ++ " " STRINGIFY(insn) " " STRINGIFY(imm) ", %0\n" \ ++ : "=&r"(r) \ ++ ); \ ++ return r; \ ++ } ++#define SINGLE_RUN(insn, imm) \ ++ do { \ ++ my_printf("=== Running test on " STRINGIFY(insn) STRINGIFY(imm) " ===\n", 0); \ ++ long r = test_##insn##imm(); \ ++ my_printf(STRINGIFY(insn) STRINGIFY(imm) " = 0x%x\n", (void const *[]){ &r }); \ ++ } while (0) ++MK_FUNC(sextb) ++MK_FUNC(sexth) ++#undef SINGLE_RUN ++#undef SINGLE_FUNC ++ ++ ++/* 1-op instructions */ ++#define SINGLE_FUNC(insn, imm) \ ++ __attribute__((noinline)) static long test_##insn##imm(long a) { \ ++ long r; \ ++ __asm__ volatile ( \ ++ " " STRINGIFY(insn) " %1, " STRINGIFY(imm) ", %0\n" \ ++ : "=&r"(r) \ ++ : "r"(a) \ ++ ); \ ++ return r; \ ++ } ++#define SINGLE_RUN(insn, imm) \ ++ do { \ ++ my_printf("=== Running test on " STRINGIFY(insn) STRINGIFY(imm) " ===\n", 0); \ ++ for (int i = 0; i < num_i64; i++) { \ ++ long a = case_i64[i].l; \ ++ long r = test_##insn##imm(a); \ ++ my_printf(STRINGIFY(insn) STRINGIFY(imm) " 0x%x = 0x%x\n", \ ++ (void const *[]){ &a, &r }); \ ++ } \ ++ } while (0) ++MK_FUNC(addw) ++MK_FUNC(subw) ++MK_FUNC(s4addw) ++MK_FUNC(s4subw) ++MK_FUNC(s8addw) ++MK_FUNC(s8subw) ++MK_FUNC(addl) ++MK_FUNC(subl) ++MK_FUNC(s4addl) ++MK_FUNC(s4subl) ++MK_FUNC(s8addl) ++MK_FUNC(s8subl) ++MK_FUNC(mulw) ++MK_FUNC(mull) ++MK_FUNC(umulh) ++MK_FUNC(cmpeq) ++MK_FUNC(cmplt) ++MK_FUNC(cmple) ++MK_FUNC(cmpult) ++MK_FUNC(cmpule) ++MK_FUNC(and) ++MK_FUNC(bic) ++MK_FUNC(bis) ++MK_FUNC(ornot) ++MK_FUNC(xor) ++MK_FUNC(eqv) ++MK_FUNC(inslb) ++MK_FUNC(inslh) ++MK_FUNC(inslw) ++MK_FUNC(insll) ++MK_FUNC(inshb) ++MK_FUNC(inshh) ++MK_FUNC(inshw) ++MK_FUNC(inshl) ++MK_FUNC(sll) ++MK_FUNC(srl) ++MK_FUNC(sra) ++MK_FUNC(extlb) ++MK_FUNC(extlh) ++MK_FUNC(extlw) ++MK_FUNC(extll) ++MK_FUNC(exthb) ++MK_FUNC(exthh) ++MK_FUNC(exthw) ++MK_FUNC(exthl) ++MK_FUNC(masklb) ++MK_FUNC(masklh) ++MK_FUNC(masklw) ++MK_FUNC(maskll) ++MK_FUNC(maskhb) ++MK_FUNC(maskhh) ++MK_FUNC(maskhw) ++MK_FUNC(maskhl) ++MK_FUNC(zap) ++MK_FUNC(zapnot) ++MK_FUNC(cmpgeb) ++#undef SINGLE_RUN ++#undef SINGLE_FUNC ++ ++ ++/* 2-op instructions */ ++#define SINGLE_FUNC(insn, imm) \ ++ __attribute__((noinline)) static long test_##insn##imm(long a, long b) { \ ++ long r; \ ++ __asm__ volatile ( \ ++ " " STRINGIFY(insn) " %1, " STRINGIFY(imm) ", %2, %0\n" \ ++ : "=&r"(r) \ ++ : "r"(a), "r"(b) \ ++ ); \ ++ return r; \ ++ } ++#define SINGLE_RUN(insn, imm) \ ++ do { \ ++ my_printf("=== Running test on " STRINGIFY(insn) STRINGIFY(imm) " ===\n", 0); \ ++ for (int i = 0; i < num_i64; i++) { \ ++ for (int j = 0; j < num_i64; j++) { \ ++ long a = case_i64[i].l; \ ++ long b = case_i64[j].l; \ ++ long r = test_##insn##imm(a, b); \ ++ my_printf(STRINGIFY(insn) STRINGIFY(imm) " 0x%x 0x%x = 0x%x\n", \ ++ (void const *[]){ &a, &b, &r }); \ ++ } \ ++ } \ ++ } while (0) ++MK_FUNC(seleq) ++MK_FUNC(selge) ++MK_FUNC(selgt) ++MK_FUNC(selle) ++MK_FUNC(sellt) ++MK_FUNC(selne) ++MK_FUNC(sellbc) ++MK_FUNC(sellbs) ++#undef SINGLE_RUN ++#undef SINGLE_FUNC ++ ++ ++int main(void) ++{ ++ run_addw(); ++ run_subw(); ++ run_s4addw(); ++ run_s4subw(); ++ run_s8addw(); ++ run_s8subw(); ++ run_addl(); ++ run_subl(); ++ run_s4addl(); ++ run_s4subl(); ++ run_s8addl(); ++ run_s8subl(); ++ run_mulw(); ++ run_mull(); ++ run_umulh(); ++ run_cmpeq(); ++ run_cmplt(); ++ run_cmple(); ++ run_cmpult(); ++ run_cmpule(); ++ run_and(); ++ run_bic(); ++ run_bis(); ++ run_ornot(); ++ run_xor(); ++ run_eqv(); ++ run_inslb(); ++ run_inslh(); ++ run_inslw(); ++ run_insll(); ++ run_inshb(); ++ run_inshh(); ++ run_inshw(); ++ run_inshl(); ++ run_sll(); ++ run_srl(); ++ run_sra(); ++ run_extlb(); ++ run_extlh(); ++ run_extlw(); ++ run_extll(); ++ run_exthb(); ++ run_exthh(); ++ run_exthw(); ++ run_exthl(); ++ run_masklb(); ++ run_masklh(); ++ run_masklw(); ++ run_maskll(); ++ run_maskhb(); ++ run_maskhh(); ++ run_maskhw(); ++ run_maskhl(); ++ run_zap(); ++ run_zapnot(); ++ run_sextb(); ++ run_sexth(); ++ run_cmpgeb(); ++ run_seleq(); ++ run_selge(); ++ run_selgt(); ++ run_selle(); ++ run_sellt(); ++ run_selne(); ++ run_sellbc(); ++ run_sellbs(); ++ return 0; ++} +diff --git a/none/tests/sw64/arith-int-imm.stderr.exp b/none/tests/sw64/arith-int-imm.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/arith-int-imm.stdout.exp b/none/tests/sw64/arith-int-imm.stdout.exp +new file mode 100644 +index 000000000..ce10cbe34 +--- /dev/null ++++ b/none/tests/sw64/arith-int-imm.stdout.exp +@@ -0,0 +1,38176 @@ ++=== Running test on addw0 === ++addw0 0x0000000000000000 = 0x0000000000000000 ++addw0 0x0000000000000001 = 0x0000000000000001 ++addw0 0x0000000000000002 = 0x0000000000000002 ++addw0 0x0000000000000003 = 0x0000000000000003 ++addw0 0x000000000000000F = 0x000000000000000F ++addw0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++addw0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++addw0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++addw0 0x000000000000007F = 0x000000000000007F ++addw0 0x0000000000000080 = 0x0000000000000080 ++addw0 0x0000000000007FFF = 0x0000000000007FFF ++addw0 0x0000000000008000 = 0x0000000000008000 ++addw0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++addw0 0x0000000080000000 = 0xFFFFFFFF80000000 ++addw0 0x8000000000000000 = 0x0000000000000000 ++addw0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++addw0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++addw0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++addw0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++addw0 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++addw0 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on addw1 === ++addw1 0x0000000000000000 = 0x0000000000000001 ++addw1 0x0000000000000001 = 0x0000000000000002 ++addw1 0x0000000000000002 = 0x0000000000000003 ++addw1 0x0000000000000003 = 0x0000000000000004 ++addw1 0x000000000000000F = 0x0000000000000010 ++addw1 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++addw1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++addw1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++addw1 0x000000000000007F = 0x0000000000000080 ++addw1 0x0000000000000080 = 0x0000000000000081 ++addw1 0x0000000000007FFF = 0x0000000000008000 ++addw1 0x0000000000008000 = 0x0000000000008001 ++addw1 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++addw1 0x0000000080000000 = 0xFFFFFFFF80000001 ++addw1 0x8000000000000000 = 0x0000000000000001 ++addw1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000001 ++addw1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8001 ++addw1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF81 ++addw1 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++addw1 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF1 ++addw1 0xF0DEBC9A78563412 = 0x0000000078563413 ++=== Running test on addw2 === ++addw2 0x0000000000000000 = 0x0000000000000002 ++addw2 0x0000000000000001 = 0x0000000000000003 ++addw2 0x0000000000000002 = 0x0000000000000004 ++addw2 0x0000000000000003 = 0x0000000000000005 ++addw2 0x000000000000000F = 0x0000000000000011 ++addw2 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++addw2 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++addw2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++addw2 0x000000000000007F = 0x0000000000000081 ++addw2 0x0000000000000080 = 0x0000000000000082 ++addw2 0x0000000000007FFF = 0x0000000000008001 ++addw2 0x0000000000008000 = 0x0000000000008002 ++addw2 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++addw2 0x0000000080000000 = 0xFFFFFFFF80000002 ++addw2 0x8000000000000000 = 0x0000000000000002 ++addw2 0xFFFFFFFF80000000 = 0xFFFFFFFF80000002 ++addw2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8002 ++addw2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF82 ++addw2 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++addw2 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF2 ++addw2 0xF0DEBC9A78563412 = 0x0000000078563414 ++=== Running test on addw3 === ++addw3 0x0000000000000000 = 0x0000000000000003 ++addw3 0x0000000000000001 = 0x0000000000000004 ++addw3 0x0000000000000002 = 0x0000000000000005 ++addw3 0x0000000000000003 = 0x0000000000000006 ++addw3 0x000000000000000F = 0x0000000000000012 ++addw3 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++addw3 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++addw3 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++addw3 0x000000000000007F = 0x0000000000000082 ++addw3 0x0000000000000080 = 0x0000000000000083 ++addw3 0x0000000000007FFF = 0x0000000000008002 ++addw3 0x0000000000008000 = 0x0000000000008003 ++addw3 0x000000007FFFFFFF = 0xFFFFFFFF80000002 ++addw3 0x0000000080000000 = 0xFFFFFFFF80000003 ++addw3 0x8000000000000000 = 0x0000000000000003 ++addw3 0xFFFFFFFF80000000 = 0xFFFFFFFF80000003 ++addw3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8003 ++addw3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF83 ++addw3 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++addw3 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF3 ++addw3 0xF0DEBC9A78563412 = 0x0000000078563415 ++=== Running test on addw15 === ++addw15 0x0000000000000000 = 0x000000000000000F ++addw15 0x0000000000000001 = 0x0000000000000010 ++addw15 0x0000000000000002 = 0x0000000000000011 ++addw15 0x0000000000000003 = 0x0000000000000012 ++addw15 0x000000000000000F = 0x000000000000001E ++addw15 0xFFFFFFFFFFFFFFFF = 0x000000000000000E ++addw15 0xFFFFFFFFFFFFFFFE = 0x000000000000000D ++addw15 0xFFFFFFFFFFFFFFFD = 0x000000000000000C ++addw15 0x000000000000007F = 0x000000000000008E ++addw15 0x0000000000000080 = 0x000000000000008F ++addw15 0x0000000000007FFF = 0x000000000000800E ++addw15 0x0000000000008000 = 0x000000000000800F ++addw15 0x000000007FFFFFFF = 0xFFFFFFFF8000000E ++addw15 0x0000000080000000 = 0xFFFFFFFF8000000F ++addw15 0x8000000000000000 = 0x000000000000000F ++addw15 0xFFFFFFFF80000000 = 0xFFFFFFFF8000000F ++addw15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF800F ++addw15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF8F ++addw15 0x7FFFFFFFFFFFFFFF = 0x000000000000000E ++addw15 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEFF ++addw15 0xF0DEBC9A78563412 = 0x0000000078563421 ++=== Running test on addw127 === ++addw127 0x0000000000000000 = 0x000000000000007F ++addw127 0x0000000000000001 = 0x0000000000000080 ++addw127 0x0000000000000002 = 0x0000000000000081 ++addw127 0x0000000000000003 = 0x0000000000000082 ++addw127 0x000000000000000F = 0x000000000000008E ++addw127 0xFFFFFFFFFFFFFFFF = 0x000000000000007E ++addw127 0xFFFFFFFFFFFFFFFE = 0x000000000000007D ++addw127 0xFFFFFFFFFFFFFFFD = 0x000000000000007C ++addw127 0x000000000000007F = 0x00000000000000FE ++addw127 0x0000000000000080 = 0x00000000000000FF ++addw127 0x0000000000007FFF = 0x000000000000807E ++addw127 0x0000000000008000 = 0x000000000000807F ++addw127 0x000000007FFFFFFF = 0xFFFFFFFF8000007E ++addw127 0x0000000080000000 = 0xFFFFFFFF8000007F ++addw127 0x8000000000000000 = 0x000000000000007F ++addw127 0xFFFFFFFF80000000 = 0xFFFFFFFF8000007F ++addw127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF807F ++addw127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++addw127 0x7FFFFFFFFFFFFFFF = 0x000000000000007E ++addw127 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDF6F ++addw127 0xF0DEBC9A78563412 = 0x0000000078563491 ++=== Running test on addw128 === ++addw128 0x0000000000000000 = 0x0000000000000080 ++addw128 0x0000000000000001 = 0x0000000000000081 ++addw128 0x0000000000000002 = 0x0000000000000082 ++addw128 0x0000000000000003 = 0x0000000000000083 ++addw128 0x000000000000000F = 0x000000000000008F ++addw128 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++addw128 0xFFFFFFFFFFFFFFFE = 0x000000000000007E ++addw128 0xFFFFFFFFFFFFFFFD = 0x000000000000007D ++addw128 0x000000000000007F = 0x00000000000000FF ++addw128 0x0000000000000080 = 0x0000000000000100 ++addw128 0x0000000000007FFF = 0x000000000000807F ++addw128 0x0000000000008000 = 0x0000000000008080 ++addw128 0x000000007FFFFFFF = 0xFFFFFFFF8000007F ++addw128 0x0000000080000000 = 0xFFFFFFFF80000080 ++addw128 0x8000000000000000 = 0x0000000000000080 ++addw128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000080 ++addw128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8080 ++addw128 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++addw128 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++addw128 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDF70 ++addw128 0xF0DEBC9A78563412 = 0x0000000078563492 ++=== Running test on addw255 === ++addw255 0x0000000000000000 = 0x00000000000000FF ++addw255 0x0000000000000001 = 0x0000000000000100 ++addw255 0x0000000000000002 = 0x0000000000000101 ++addw255 0x0000000000000003 = 0x0000000000000102 ++addw255 0x000000000000000F = 0x000000000000010E ++addw255 0xFFFFFFFFFFFFFFFF = 0x00000000000000FE ++addw255 0xFFFFFFFFFFFFFFFE = 0x00000000000000FD ++addw255 0xFFFFFFFFFFFFFFFD = 0x00000000000000FC ++addw255 0x000000000000007F = 0x000000000000017E ++addw255 0x0000000000000080 = 0x000000000000017F ++addw255 0x0000000000007FFF = 0x00000000000080FE ++addw255 0x0000000000008000 = 0x00000000000080FF ++addw255 0x000000007FFFFFFF = 0xFFFFFFFF800000FE ++addw255 0x0000000080000000 = 0xFFFFFFFF800000FF ++addw255 0x8000000000000000 = 0x00000000000000FF ++addw255 0xFFFFFFFF80000000 = 0xFFFFFFFF800000FF ++addw255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF80FF ++addw255 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++addw255 0x7FFFFFFFFFFFFFFF = 0x00000000000000FE ++addw255 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDFEF ++addw255 0xF0DEBC9A78563412 = 0x0000000078563511 ++=== Running test on subw0 === ++subw0 0x0000000000000000 = 0x0000000000000000 ++subw0 0x0000000000000001 = 0x0000000000000001 ++subw0 0x0000000000000002 = 0x0000000000000002 ++subw0 0x0000000000000003 = 0x0000000000000003 ++subw0 0x000000000000000F = 0x000000000000000F ++subw0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++subw0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++subw0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++subw0 0x000000000000007F = 0x000000000000007F ++subw0 0x0000000000000080 = 0x0000000000000080 ++subw0 0x0000000000007FFF = 0x0000000000007FFF ++subw0 0x0000000000008000 = 0x0000000000008000 ++subw0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++subw0 0x0000000080000000 = 0xFFFFFFFF80000000 ++subw0 0x8000000000000000 = 0x0000000000000000 ++subw0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++subw0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++subw0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++subw0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++subw0 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++subw0 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on subw1 === ++subw1 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++subw1 0x0000000000000001 = 0x0000000000000000 ++subw1 0x0000000000000002 = 0x0000000000000001 ++subw1 0x0000000000000003 = 0x0000000000000002 ++subw1 0x000000000000000F = 0x000000000000000E ++subw1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++subw1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++subw1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++subw1 0x000000000000007F = 0x000000000000007E ++subw1 0x0000000000000080 = 0x000000000000007F ++subw1 0x0000000000007FFF = 0x0000000000007FFE ++subw1 0x0000000000008000 = 0x0000000000007FFF ++subw1 0x000000007FFFFFFF = 0x000000007FFFFFFE ++subw1 0x0000000080000000 = 0x000000007FFFFFFF ++subw1 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++subw1 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++subw1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFF ++subw1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7F ++subw1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++subw1 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEEF ++subw1 0xF0DEBC9A78563412 = 0x0000000078563411 ++=== Running test on subw2 === ++subw2 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++subw2 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++subw2 0x0000000000000002 = 0x0000000000000000 ++subw2 0x0000000000000003 = 0x0000000000000001 ++subw2 0x000000000000000F = 0x000000000000000D ++subw2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++subw2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++subw2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++subw2 0x000000000000007F = 0x000000000000007D ++subw2 0x0000000000000080 = 0x000000000000007E ++subw2 0x0000000000007FFF = 0x0000000000007FFD ++subw2 0x0000000000008000 = 0x0000000000007FFE ++subw2 0x000000007FFFFFFF = 0x000000007FFFFFFD ++subw2 0x0000000080000000 = 0x000000007FFFFFFE ++subw2 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++subw2 0xFFFFFFFF80000000 = 0x000000007FFFFFFE ++subw2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFE ++subw2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7E ++subw2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++subw2 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEEE ++subw2 0xF0DEBC9A78563412 = 0x0000000078563410 ++=== Running test on subw3 === ++subw3 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++subw3 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++subw3 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++subw3 0x0000000000000003 = 0x0000000000000000 ++subw3 0x000000000000000F = 0x000000000000000C ++subw3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++subw3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFB ++subw3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFA ++subw3 0x000000000000007F = 0x000000000000007C ++subw3 0x0000000000000080 = 0x000000000000007D ++subw3 0x0000000000007FFF = 0x0000000000007FFC ++subw3 0x0000000000008000 = 0x0000000000007FFD ++subw3 0x000000007FFFFFFF = 0x000000007FFFFFFC ++subw3 0x0000000080000000 = 0x000000007FFFFFFD ++subw3 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++subw3 0xFFFFFFFF80000000 = 0x000000007FFFFFFD ++subw3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFD ++subw3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7D ++subw3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++subw3 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEED ++subw3 0xF0DEBC9A78563412 = 0x000000007856340F ++=== Running test on subw15 === ++subw15 0x0000000000000000 = 0xFFFFFFFFFFFFFFF1 ++subw15 0x0000000000000001 = 0xFFFFFFFFFFFFFFF2 ++subw15 0x0000000000000002 = 0xFFFFFFFFFFFFFFF3 ++subw15 0x0000000000000003 = 0xFFFFFFFFFFFFFFF4 ++subw15 0x000000000000000F = 0x0000000000000000 ++subw15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF0 ++subw15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFEF ++subw15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFEE ++subw15 0x000000000000007F = 0x0000000000000070 ++subw15 0x0000000000000080 = 0x0000000000000071 ++subw15 0x0000000000007FFF = 0x0000000000007FF0 ++subw15 0x0000000000008000 = 0x0000000000007FF1 ++subw15 0x000000007FFFFFFF = 0x000000007FFFFFF0 ++subw15 0x0000000080000000 = 0x000000007FFFFFF1 ++subw15 0x8000000000000000 = 0xFFFFFFFFFFFFFFF1 ++subw15 0xFFFFFFFF80000000 = 0x000000007FFFFFF1 ++subw15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FF1 ++subw15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF71 ++subw15 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF0 ++subw15 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEE1 ++subw15 0xF0DEBC9A78563412 = 0x0000000078563403 ++=== Running test on subw127 === ++subw127 0x0000000000000000 = 0xFFFFFFFFFFFFFF81 ++subw127 0x0000000000000001 = 0xFFFFFFFFFFFFFF82 ++subw127 0x0000000000000002 = 0xFFFFFFFFFFFFFF83 ++subw127 0x0000000000000003 = 0xFFFFFFFFFFFFFF84 ++subw127 0x000000000000000F = 0xFFFFFFFFFFFFFF90 ++subw127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++subw127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF7F ++subw127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF7E ++subw127 0x000000000000007F = 0x0000000000000000 ++subw127 0x0000000000000080 = 0x0000000000000001 ++subw127 0x0000000000007FFF = 0x0000000000007F80 ++subw127 0x0000000000008000 = 0x0000000000007F81 ++subw127 0x000000007FFFFFFF = 0x000000007FFFFF80 ++subw127 0x0000000080000000 = 0x000000007FFFFF81 ++subw127 0x8000000000000000 = 0xFFFFFFFFFFFFFF81 ++subw127 0xFFFFFFFF80000000 = 0x000000007FFFFF81 ++subw127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7F81 ++subw127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF01 ++subw127 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++subw127 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDE71 ++subw127 0xF0DEBC9A78563412 = 0x0000000078563393 ++=== Running test on subw128 === ++subw128 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++subw128 0x0000000000000001 = 0xFFFFFFFFFFFFFF81 ++subw128 0x0000000000000002 = 0xFFFFFFFFFFFFFF82 ++subw128 0x0000000000000003 = 0xFFFFFFFFFFFFFF83 ++subw128 0x000000000000000F = 0xFFFFFFFFFFFFFF8F ++subw128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7F ++subw128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF7E ++subw128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF7D ++subw128 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++subw128 0x0000000000000080 = 0x0000000000000000 ++subw128 0x0000000000007FFF = 0x0000000000007F7F ++subw128 0x0000000000008000 = 0x0000000000007F80 ++subw128 0x000000007FFFFFFF = 0x000000007FFFFF7F ++subw128 0x0000000080000000 = 0x000000007FFFFF80 ++subw128 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++subw128 0xFFFFFFFF80000000 = 0x000000007FFFFF80 ++subw128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7F80 ++subw128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++subw128 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7F ++subw128 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDE70 ++subw128 0xF0DEBC9A78563412 = 0x0000000078563392 ++=== Running test on subw255 === ++subw255 0x0000000000000000 = 0xFFFFFFFFFFFFFF01 ++subw255 0x0000000000000001 = 0xFFFFFFFFFFFFFF02 ++subw255 0x0000000000000002 = 0xFFFFFFFFFFFFFF03 ++subw255 0x0000000000000003 = 0xFFFFFFFFFFFFFF04 ++subw255 0x000000000000000F = 0xFFFFFFFFFFFFFF10 ++subw255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++subw255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFEFF ++subw255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFEFE ++subw255 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++subw255 0x0000000000000080 = 0xFFFFFFFFFFFFFF81 ++subw255 0x0000000000007FFF = 0x0000000000007F00 ++subw255 0x0000000000008000 = 0x0000000000007F01 ++subw255 0x000000007FFFFFFF = 0x000000007FFFFF00 ++subw255 0x0000000080000000 = 0x000000007FFFFF01 ++subw255 0x8000000000000000 = 0xFFFFFFFFFFFFFF01 ++subw255 0xFFFFFFFF80000000 = 0x000000007FFFFF01 ++subw255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7F01 ++subw255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE81 ++subw255 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++subw255 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDDF1 ++subw255 0xF0DEBC9A78563412 = 0x0000000078563313 ++=== Running test on s4addw0 === ++s4addw0 0x0000000000000000 = 0x0000000000000000 ++s4addw0 0x0000000000000001 = 0x0000000000000004 ++s4addw0 0x0000000000000002 = 0x0000000000000008 ++s4addw0 0x0000000000000003 = 0x000000000000000C ++s4addw0 0x000000000000000F = 0x000000000000003C ++s4addw0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++s4addw0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF8 ++s4addw0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF4 ++s4addw0 0x000000000000007F = 0x00000000000001FC ++s4addw0 0x0000000000000080 = 0x0000000000000200 ++s4addw0 0x0000000000007FFF = 0x000000000001FFFC ++s4addw0 0x0000000000008000 = 0x0000000000020000 ++s4addw0 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFC ++s4addw0 0x0000000080000000 = 0x0000000000000000 ++s4addw0 0x8000000000000000 = 0x0000000000000000 ++s4addw0 0xFFFFFFFF80000000 = 0x0000000000000000 ++s4addw0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0000 ++s4addw0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE00 ++s4addw0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++s4addw0 0x123456789ABCDEF0 = 0x000000006AF37BC0 ++s4addw0 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D048 ++=== Running test on s4addw1 === ++s4addw1 0x0000000000000000 = 0x0000000000000001 ++s4addw1 0x0000000000000001 = 0x0000000000000005 ++s4addw1 0x0000000000000002 = 0x0000000000000009 ++s4addw1 0x0000000000000003 = 0x000000000000000D ++s4addw1 0x000000000000000F = 0x000000000000003D ++s4addw1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++s4addw1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF9 ++s4addw1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF5 ++s4addw1 0x000000000000007F = 0x00000000000001FD ++s4addw1 0x0000000000000080 = 0x0000000000000201 ++s4addw1 0x0000000000007FFF = 0x000000000001FFFD ++s4addw1 0x0000000000008000 = 0x0000000000020001 ++s4addw1 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFD ++s4addw1 0x0000000080000000 = 0x0000000000000001 ++s4addw1 0x8000000000000000 = 0x0000000000000001 ++s4addw1 0xFFFFFFFF80000000 = 0x0000000000000001 ++s4addw1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0001 ++s4addw1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE01 ++s4addw1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++s4addw1 0x123456789ABCDEF0 = 0x000000006AF37BC1 ++s4addw1 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D049 ++=== Running test on s4addw2 === ++s4addw2 0x0000000000000000 = 0x0000000000000002 ++s4addw2 0x0000000000000001 = 0x0000000000000006 ++s4addw2 0x0000000000000002 = 0x000000000000000A ++s4addw2 0x0000000000000003 = 0x000000000000000E ++s4addw2 0x000000000000000F = 0x000000000000003E ++s4addw2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++s4addw2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++s4addw2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF6 ++s4addw2 0x000000000000007F = 0x00000000000001FE ++s4addw2 0x0000000000000080 = 0x0000000000000202 ++s4addw2 0x0000000000007FFF = 0x000000000001FFFE ++s4addw2 0x0000000000008000 = 0x0000000000020002 ++s4addw2 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++s4addw2 0x0000000080000000 = 0x0000000000000002 ++s4addw2 0x8000000000000000 = 0x0000000000000002 ++s4addw2 0xFFFFFFFF80000000 = 0x0000000000000002 ++s4addw2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0002 ++s4addw2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE02 ++s4addw2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++s4addw2 0x123456789ABCDEF0 = 0x000000006AF37BC2 ++s4addw2 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D04A ++=== Running test on s4addw3 === ++s4addw3 0x0000000000000000 = 0x0000000000000003 ++s4addw3 0x0000000000000001 = 0x0000000000000007 ++s4addw3 0x0000000000000002 = 0x000000000000000B ++s4addw3 0x0000000000000003 = 0x000000000000000F ++s4addw3 0x000000000000000F = 0x000000000000003F ++s4addw3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addw3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFB ++s4addw3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF7 ++s4addw3 0x000000000000007F = 0x00000000000001FF ++s4addw3 0x0000000000000080 = 0x0000000000000203 ++s4addw3 0x0000000000007FFF = 0x000000000001FFFF ++s4addw3 0x0000000000008000 = 0x0000000000020003 ++s4addw3 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addw3 0x0000000080000000 = 0x0000000000000003 ++s4addw3 0x8000000000000000 = 0x0000000000000003 ++s4addw3 0xFFFFFFFF80000000 = 0x0000000000000003 ++s4addw3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0003 ++s4addw3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE03 ++s4addw3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addw3 0x123456789ABCDEF0 = 0x000000006AF37BC3 ++s4addw3 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D04B ++=== Running test on s4addw15 === ++s4addw15 0x0000000000000000 = 0x000000000000000F ++s4addw15 0x0000000000000001 = 0x0000000000000013 ++s4addw15 0x0000000000000002 = 0x0000000000000017 ++s4addw15 0x0000000000000003 = 0x000000000000001B ++s4addw15 0x000000000000000F = 0x000000000000004B ++s4addw15 0xFFFFFFFFFFFFFFFF = 0x000000000000000B ++s4addw15 0xFFFFFFFFFFFFFFFE = 0x0000000000000007 ++s4addw15 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++s4addw15 0x000000000000007F = 0x000000000000020B ++s4addw15 0x0000000000000080 = 0x000000000000020F ++s4addw15 0x0000000000007FFF = 0x000000000002000B ++s4addw15 0x0000000000008000 = 0x000000000002000F ++s4addw15 0x000000007FFFFFFF = 0x000000000000000B ++s4addw15 0x0000000080000000 = 0x000000000000000F ++s4addw15 0x8000000000000000 = 0x000000000000000F ++s4addw15 0xFFFFFFFF80000000 = 0x000000000000000F ++s4addw15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE000F ++s4addw15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE0F ++s4addw15 0x7FFFFFFFFFFFFFFF = 0x000000000000000B ++s4addw15 0x123456789ABCDEF0 = 0x000000006AF37BCF ++s4addw15 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D057 ++=== Running test on s4addw127 === ++s4addw127 0x0000000000000000 = 0x000000000000007F ++s4addw127 0x0000000000000001 = 0x0000000000000083 ++s4addw127 0x0000000000000002 = 0x0000000000000087 ++s4addw127 0x0000000000000003 = 0x000000000000008B ++s4addw127 0x000000000000000F = 0x00000000000000BB ++s4addw127 0xFFFFFFFFFFFFFFFF = 0x000000000000007B ++s4addw127 0xFFFFFFFFFFFFFFFE = 0x0000000000000077 ++s4addw127 0xFFFFFFFFFFFFFFFD = 0x0000000000000073 ++s4addw127 0x000000000000007F = 0x000000000000027B ++s4addw127 0x0000000000000080 = 0x000000000000027F ++s4addw127 0x0000000000007FFF = 0x000000000002007B ++s4addw127 0x0000000000008000 = 0x000000000002007F ++s4addw127 0x000000007FFFFFFF = 0x000000000000007B ++s4addw127 0x0000000080000000 = 0x000000000000007F ++s4addw127 0x8000000000000000 = 0x000000000000007F ++s4addw127 0xFFFFFFFF80000000 = 0x000000000000007F ++s4addw127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE007F ++s4addw127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE7F ++s4addw127 0x7FFFFFFFFFFFFFFF = 0x000000000000007B ++s4addw127 0x123456789ABCDEF0 = 0x000000006AF37C3F ++s4addw127 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D0C7 ++=== Running test on s4addw128 === ++s4addw128 0x0000000000000000 = 0x0000000000000080 ++s4addw128 0x0000000000000001 = 0x0000000000000084 ++s4addw128 0x0000000000000002 = 0x0000000000000088 ++s4addw128 0x0000000000000003 = 0x000000000000008C ++s4addw128 0x000000000000000F = 0x00000000000000BC ++s4addw128 0xFFFFFFFFFFFFFFFF = 0x000000000000007C ++s4addw128 0xFFFFFFFFFFFFFFFE = 0x0000000000000078 ++s4addw128 0xFFFFFFFFFFFFFFFD = 0x0000000000000074 ++s4addw128 0x000000000000007F = 0x000000000000027C ++s4addw128 0x0000000000000080 = 0x0000000000000280 ++s4addw128 0x0000000000007FFF = 0x000000000002007C ++s4addw128 0x0000000000008000 = 0x0000000000020080 ++s4addw128 0x000000007FFFFFFF = 0x000000000000007C ++s4addw128 0x0000000080000000 = 0x0000000000000080 ++s4addw128 0x8000000000000000 = 0x0000000000000080 ++s4addw128 0xFFFFFFFF80000000 = 0x0000000000000080 ++s4addw128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0080 ++s4addw128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE80 ++s4addw128 0x7FFFFFFFFFFFFFFF = 0x000000000000007C ++s4addw128 0x123456789ABCDEF0 = 0x000000006AF37C40 ++s4addw128 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D0C8 ++=== Running test on s4addw255 === ++s4addw255 0x0000000000000000 = 0x00000000000000FF ++s4addw255 0x0000000000000001 = 0x0000000000000103 ++s4addw255 0x0000000000000002 = 0x0000000000000107 ++s4addw255 0x0000000000000003 = 0x000000000000010B ++s4addw255 0x000000000000000F = 0x000000000000013B ++s4addw255 0xFFFFFFFFFFFFFFFF = 0x00000000000000FB ++s4addw255 0xFFFFFFFFFFFFFFFE = 0x00000000000000F7 ++s4addw255 0xFFFFFFFFFFFFFFFD = 0x00000000000000F3 ++s4addw255 0x000000000000007F = 0x00000000000002FB ++s4addw255 0x0000000000000080 = 0x00000000000002FF ++s4addw255 0x0000000000007FFF = 0x00000000000200FB ++s4addw255 0x0000000000008000 = 0x00000000000200FF ++s4addw255 0x000000007FFFFFFF = 0x00000000000000FB ++s4addw255 0x0000000080000000 = 0x00000000000000FF ++s4addw255 0x8000000000000000 = 0x00000000000000FF ++s4addw255 0xFFFFFFFF80000000 = 0x00000000000000FF ++s4addw255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE00FF ++s4addw255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFEFF ++s4addw255 0x7FFFFFFFFFFFFFFF = 0x00000000000000FB ++s4addw255 0x123456789ABCDEF0 = 0x000000006AF37CBF ++s4addw255 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D147 ++=== Running test on s4subw0 === ++s4subw0 0x0000000000000000 = 0x0000000000000000 ++s4subw0 0x0000000000000001 = 0x0000000000000004 ++s4subw0 0x0000000000000002 = 0x0000000000000008 ++s4subw0 0x0000000000000003 = 0x000000000000000C ++s4subw0 0x000000000000000F = 0x000000000000003C ++s4subw0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++s4subw0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF8 ++s4subw0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF4 ++s4subw0 0x000000000000007F = 0x00000000000001FC ++s4subw0 0x0000000000000080 = 0x0000000000000200 ++s4subw0 0x0000000000007FFF = 0x000000000001FFFC ++s4subw0 0x0000000000008000 = 0x0000000000020000 ++s4subw0 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFC ++s4subw0 0x0000000080000000 = 0x0000000000000000 ++s4subw0 0x8000000000000000 = 0x0000000000000000 ++s4subw0 0xFFFFFFFF80000000 = 0x0000000000000000 ++s4subw0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0000 ++s4subw0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE00 ++s4subw0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++s4subw0 0x123456789ABCDEF0 = 0x000000006AF37BC0 ++s4subw0 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D048 ++=== Running test on s4subw1 === ++s4subw1 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++s4subw1 0x0000000000000001 = 0x0000000000000003 ++s4subw1 0x0000000000000002 = 0x0000000000000007 ++s4subw1 0x0000000000000003 = 0x000000000000000B ++s4subw1 0x000000000000000F = 0x000000000000003B ++s4subw1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s4subw1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF7 ++s4subw1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF3 ++s4subw1 0x000000000000007F = 0x00000000000001FB ++s4subw1 0x0000000000000080 = 0x00000000000001FF ++s4subw1 0x0000000000007FFF = 0x000000000001FFFB ++s4subw1 0x0000000000008000 = 0x000000000001FFFF ++s4subw1 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFB ++s4subw1 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++s4subw1 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++s4subw1 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++s4subw1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFDFFFF ++s4subw1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFDFF ++s4subw1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s4subw1 0x123456789ABCDEF0 = 0x000000006AF37BBF ++s4subw1 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D047 ++=== Running test on s4subw2 === ++s4subw2 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++s4subw2 0x0000000000000001 = 0x0000000000000002 ++s4subw2 0x0000000000000002 = 0x0000000000000006 ++s4subw2 0x0000000000000003 = 0x000000000000000A ++s4subw2 0x000000000000000F = 0x000000000000003A ++s4subw2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFA ++s4subw2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF6 ++s4subw2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF2 ++s4subw2 0x000000000000007F = 0x00000000000001FA ++s4subw2 0x0000000000000080 = 0x00000000000001FE ++s4subw2 0x0000000000007FFF = 0x000000000001FFFA ++s4subw2 0x0000000000008000 = 0x000000000001FFFE ++s4subw2 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFA ++s4subw2 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++s4subw2 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++s4subw2 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++s4subw2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFDFFFE ++s4subw2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFDFE ++s4subw2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFA ++s4subw2 0x123456789ABCDEF0 = 0x000000006AF37BBE ++s4subw2 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D046 ++=== Running test on s4subw3 === ++s4subw3 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++s4subw3 0x0000000000000001 = 0x0000000000000001 ++s4subw3 0x0000000000000002 = 0x0000000000000005 ++s4subw3 0x0000000000000003 = 0x0000000000000009 ++s4subw3 0x000000000000000F = 0x0000000000000039 ++s4subw3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s4subw3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF5 ++s4subw3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF1 ++s4subw3 0x000000000000007F = 0x00000000000001F9 ++s4subw3 0x0000000000000080 = 0x00000000000001FD ++s4subw3 0x0000000000007FFF = 0x000000000001FFF9 ++s4subw3 0x0000000000008000 = 0x000000000001FFFD ++s4subw3 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s4subw3 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++s4subw3 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++s4subw3 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++s4subw3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFDFFFD ++s4subw3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFDFD ++s4subw3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s4subw3 0x123456789ABCDEF0 = 0x000000006AF37BBD ++s4subw3 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D045 ++=== Running test on s4subw15 === ++s4subw15 0x0000000000000000 = 0xFFFFFFFFFFFFFFF1 ++s4subw15 0x0000000000000001 = 0xFFFFFFFFFFFFFFF5 ++s4subw15 0x0000000000000002 = 0xFFFFFFFFFFFFFFF9 ++s4subw15 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++s4subw15 0x000000000000000F = 0x000000000000002D ++s4subw15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFED ++s4subw15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFE9 ++s4subw15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE5 ++s4subw15 0x000000000000007F = 0x00000000000001ED ++s4subw15 0x0000000000000080 = 0x00000000000001F1 ++s4subw15 0x0000000000007FFF = 0x000000000001FFED ++s4subw15 0x0000000000008000 = 0x000000000001FFF1 ++s4subw15 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFED ++s4subw15 0x0000000080000000 = 0xFFFFFFFFFFFFFFF1 ++s4subw15 0x8000000000000000 = 0xFFFFFFFFFFFFFFF1 ++s4subw15 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFF1 ++s4subw15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFDFFF1 ++s4subw15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFDF1 ++s4subw15 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFED ++s4subw15 0x123456789ABCDEF0 = 0x000000006AF37BB1 ++s4subw15 0xF0DEBC9A78563412 = 0xFFFFFFFFE158D039 ++=== Running test on s4subw127 === ++s4subw127 0x0000000000000000 = 0xFFFFFFFFFFFFFF81 ++s4subw127 0x0000000000000001 = 0xFFFFFFFFFFFFFF85 ++s4subw127 0x0000000000000002 = 0xFFFFFFFFFFFFFF89 ++s4subw127 0x0000000000000003 = 0xFFFFFFFFFFFFFF8D ++s4subw127 0x000000000000000F = 0xFFFFFFFFFFFFFFBD ++s4subw127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7D ++s4subw127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF79 ++s4subw127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF75 ++s4subw127 0x000000000000007F = 0x000000000000017D ++s4subw127 0x0000000000000080 = 0x0000000000000181 ++s4subw127 0x0000000000007FFF = 0x000000000001FF7D ++s4subw127 0x0000000000008000 = 0x000000000001FF81 ++s4subw127 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF7D ++s4subw127 0x0000000080000000 = 0xFFFFFFFFFFFFFF81 ++s4subw127 0x8000000000000000 = 0xFFFFFFFFFFFFFF81 ++s4subw127 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF81 ++s4subw127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFDFF81 ++s4subw127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFD81 ++s4subw127 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7D ++s4subw127 0x123456789ABCDEF0 = 0x000000006AF37B41 ++s4subw127 0xF0DEBC9A78563412 = 0xFFFFFFFFE158CFC9 ++=== Running test on s4subw128 === ++s4subw128 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++s4subw128 0x0000000000000001 = 0xFFFFFFFFFFFFFF84 ++s4subw128 0x0000000000000002 = 0xFFFFFFFFFFFFFF88 ++s4subw128 0x0000000000000003 = 0xFFFFFFFFFFFFFF8C ++s4subw128 0x000000000000000F = 0xFFFFFFFFFFFFFFBC ++s4subw128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7C ++s4subw128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF78 ++s4subw128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF74 ++s4subw128 0x000000000000007F = 0x000000000000017C ++s4subw128 0x0000000000000080 = 0x0000000000000180 ++s4subw128 0x0000000000007FFF = 0x000000000001FF7C ++s4subw128 0x0000000000008000 = 0x000000000001FF80 ++s4subw128 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF7C ++s4subw128 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++s4subw128 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++s4subw128 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++s4subw128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFDFF80 ++s4subw128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFD80 ++s4subw128 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7C ++s4subw128 0x123456789ABCDEF0 = 0x000000006AF37B40 ++s4subw128 0xF0DEBC9A78563412 = 0xFFFFFFFFE158CFC8 ++=== Running test on s4subw255 === ++s4subw255 0x0000000000000000 = 0xFFFFFFFFFFFFFF01 ++s4subw255 0x0000000000000001 = 0xFFFFFFFFFFFFFF05 ++s4subw255 0x0000000000000002 = 0xFFFFFFFFFFFFFF09 ++s4subw255 0x0000000000000003 = 0xFFFFFFFFFFFFFF0D ++s4subw255 0x000000000000000F = 0xFFFFFFFFFFFFFF3D ++s4subw255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFEFD ++s4subw255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFEF9 ++s4subw255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFEF5 ++s4subw255 0x000000000000007F = 0x00000000000000FD ++s4subw255 0x0000000000000080 = 0x0000000000000101 ++s4subw255 0x0000000000007FFF = 0x000000000001FEFD ++s4subw255 0x0000000000008000 = 0x000000000001FF01 ++s4subw255 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFEFD ++s4subw255 0x0000000080000000 = 0xFFFFFFFFFFFFFF01 ++s4subw255 0x8000000000000000 = 0xFFFFFFFFFFFFFF01 ++s4subw255 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF01 ++s4subw255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFDFF01 ++s4subw255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFD01 ++s4subw255 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFEFD ++s4subw255 0x123456789ABCDEF0 = 0x000000006AF37AC1 ++s4subw255 0xF0DEBC9A78563412 = 0xFFFFFFFFE158CF49 ++=== Running test on s8addw0 === ++s8addw0 0x0000000000000000 = 0x0000000000000000 ++s8addw0 0x0000000000000001 = 0x0000000000000008 ++s8addw0 0x0000000000000002 = 0x0000000000000010 ++s8addw0 0x0000000000000003 = 0x0000000000000018 ++s8addw0 0x000000000000000F = 0x0000000000000078 ++s8addw0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF8 ++s8addw0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF0 ++s8addw0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE8 ++s8addw0 0x000000000000007F = 0x00000000000003F8 ++s8addw0 0x0000000000000080 = 0x0000000000000400 ++s8addw0 0x0000000000007FFF = 0x000000000003FFF8 ++s8addw0 0x0000000000008000 = 0x0000000000040000 ++s8addw0 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFF8 ++s8addw0 0x0000000080000000 = 0x0000000000000000 ++s8addw0 0x8000000000000000 = 0x0000000000000000 ++s8addw0 0xFFFFFFFF80000000 = 0x0000000000000000 ++s8addw0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0000 ++s8addw0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC00 ++s8addw0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF8 ++s8addw0 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F780 ++s8addw0 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A090 ++=== Running test on s8addw1 === ++s8addw1 0x0000000000000000 = 0x0000000000000001 ++s8addw1 0x0000000000000001 = 0x0000000000000009 ++s8addw1 0x0000000000000002 = 0x0000000000000011 ++s8addw1 0x0000000000000003 = 0x0000000000000019 ++s8addw1 0x000000000000000F = 0x0000000000000079 ++s8addw1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s8addw1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF1 ++s8addw1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE9 ++s8addw1 0x000000000000007F = 0x00000000000003F9 ++s8addw1 0x0000000000000080 = 0x0000000000000401 ++s8addw1 0x0000000000007FFF = 0x000000000003FFF9 ++s8addw1 0x0000000000008000 = 0x0000000000040001 ++s8addw1 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s8addw1 0x0000000080000000 = 0x0000000000000001 ++s8addw1 0x8000000000000000 = 0x0000000000000001 ++s8addw1 0xFFFFFFFF80000000 = 0x0000000000000001 ++s8addw1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0001 ++s8addw1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC01 ++s8addw1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s8addw1 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F781 ++s8addw1 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A091 ++=== Running test on s8addw2 === ++s8addw2 0x0000000000000000 = 0x0000000000000002 ++s8addw2 0x0000000000000001 = 0x000000000000000A ++s8addw2 0x0000000000000002 = 0x0000000000000012 ++s8addw2 0x0000000000000003 = 0x000000000000001A ++s8addw2 0x000000000000000F = 0x000000000000007A ++s8addw2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFA ++s8addw2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF2 ++s8addw2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFEA ++s8addw2 0x000000000000007F = 0x00000000000003FA ++s8addw2 0x0000000000000080 = 0x0000000000000402 ++s8addw2 0x0000000000007FFF = 0x000000000003FFFA ++s8addw2 0x0000000000008000 = 0x0000000000040002 ++s8addw2 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFA ++s8addw2 0x0000000080000000 = 0x0000000000000002 ++s8addw2 0x8000000000000000 = 0x0000000000000002 ++s8addw2 0xFFFFFFFF80000000 = 0x0000000000000002 ++s8addw2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0002 ++s8addw2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC02 ++s8addw2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFA ++s8addw2 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F782 ++s8addw2 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A092 ++=== Running test on s8addw3 === ++s8addw3 0x0000000000000000 = 0x0000000000000003 ++s8addw3 0x0000000000000001 = 0x000000000000000B ++s8addw3 0x0000000000000002 = 0x0000000000000013 ++s8addw3 0x0000000000000003 = 0x000000000000001B ++s8addw3 0x000000000000000F = 0x000000000000007B ++s8addw3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s8addw3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF3 ++s8addw3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFEB ++s8addw3 0x000000000000007F = 0x00000000000003FB ++s8addw3 0x0000000000000080 = 0x0000000000000403 ++s8addw3 0x0000000000007FFF = 0x000000000003FFFB ++s8addw3 0x0000000000008000 = 0x0000000000040003 ++s8addw3 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFB ++s8addw3 0x0000000080000000 = 0x0000000000000003 ++s8addw3 0x8000000000000000 = 0x0000000000000003 ++s8addw3 0xFFFFFFFF80000000 = 0x0000000000000003 ++s8addw3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0003 ++s8addw3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC03 ++s8addw3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s8addw3 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F783 ++s8addw3 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A093 ++=== Running test on s8addw15 === ++s8addw15 0x0000000000000000 = 0x000000000000000F ++s8addw15 0x0000000000000001 = 0x0000000000000017 ++s8addw15 0x0000000000000002 = 0x000000000000001F ++s8addw15 0x0000000000000003 = 0x0000000000000027 ++s8addw15 0x000000000000000F = 0x0000000000000087 ++s8addw15 0xFFFFFFFFFFFFFFFF = 0x0000000000000007 ++s8addw15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++s8addw15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF7 ++s8addw15 0x000000000000007F = 0x0000000000000407 ++s8addw15 0x0000000000000080 = 0x000000000000040F ++s8addw15 0x0000000000007FFF = 0x0000000000040007 ++s8addw15 0x0000000000008000 = 0x000000000004000F ++s8addw15 0x000000007FFFFFFF = 0x0000000000000007 ++s8addw15 0x0000000080000000 = 0x000000000000000F ++s8addw15 0x8000000000000000 = 0x000000000000000F ++s8addw15 0xFFFFFFFF80000000 = 0x000000000000000F ++s8addw15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC000F ++s8addw15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC0F ++s8addw15 0x7FFFFFFFFFFFFFFF = 0x0000000000000007 ++s8addw15 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F78F ++s8addw15 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A09F ++=== Running test on s8addw127 === ++s8addw127 0x0000000000000000 = 0x000000000000007F ++s8addw127 0x0000000000000001 = 0x0000000000000087 ++s8addw127 0x0000000000000002 = 0x000000000000008F ++s8addw127 0x0000000000000003 = 0x0000000000000097 ++s8addw127 0x000000000000000F = 0x00000000000000F7 ++s8addw127 0xFFFFFFFFFFFFFFFF = 0x0000000000000077 ++s8addw127 0xFFFFFFFFFFFFFFFE = 0x000000000000006F ++s8addw127 0xFFFFFFFFFFFFFFFD = 0x0000000000000067 ++s8addw127 0x000000000000007F = 0x0000000000000477 ++s8addw127 0x0000000000000080 = 0x000000000000047F ++s8addw127 0x0000000000007FFF = 0x0000000000040077 ++s8addw127 0x0000000000008000 = 0x000000000004007F ++s8addw127 0x000000007FFFFFFF = 0x0000000000000077 ++s8addw127 0x0000000080000000 = 0x000000000000007F ++s8addw127 0x8000000000000000 = 0x000000000000007F ++s8addw127 0xFFFFFFFF80000000 = 0x000000000000007F ++s8addw127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC007F ++s8addw127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC7F ++s8addw127 0x7FFFFFFFFFFFFFFF = 0x0000000000000077 ++s8addw127 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F7FF ++s8addw127 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A10F ++=== Running test on s8addw128 === ++s8addw128 0x0000000000000000 = 0x0000000000000080 ++s8addw128 0x0000000000000001 = 0x0000000000000088 ++s8addw128 0x0000000000000002 = 0x0000000000000090 ++s8addw128 0x0000000000000003 = 0x0000000000000098 ++s8addw128 0x000000000000000F = 0x00000000000000F8 ++s8addw128 0xFFFFFFFFFFFFFFFF = 0x0000000000000078 ++s8addw128 0xFFFFFFFFFFFFFFFE = 0x0000000000000070 ++s8addw128 0xFFFFFFFFFFFFFFFD = 0x0000000000000068 ++s8addw128 0x000000000000007F = 0x0000000000000478 ++s8addw128 0x0000000000000080 = 0x0000000000000480 ++s8addw128 0x0000000000007FFF = 0x0000000000040078 ++s8addw128 0x0000000000008000 = 0x0000000000040080 ++s8addw128 0x000000007FFFFFFF = 0x0000000000000078 ++s8addw128 0x0000000080000000 = 0x0000000000000080 ++s8addw128 0x8000000000000000 = 0x0000000000000080 ++s8addw128 0xFFFFFFFF80000000 = 0x0000000000000080 ++s8addw128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0080 ++s8addw128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC80 ++s8addw128 0x7FFFFFFFFFFFFFFF = 0x0000000000000078 ++s8addw128 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F800 ++s8addw128 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A110 ++=== Running test on s8addw255 === ++s8addw255 0x0000000000000000 = 0x00000000000000FF ++s8addw255 0x0000000000000001 = 0x0000000000000107 ++s8addw255 0x0000000000000002 = 0x000000000000010F ++s8addw255 0x0000000000000003 = 0x0000000000000117 ++s8addw255 0x000000000000000F = 0x0000000000000177 ++s8addw255 0xFFFFFFFFFFFFFFFF = 0x00000000000000F7 ++s8addw255 0xFFFFFFFFFFFFFFFE = 0x00000000000000EF ++s8addw255 0xFFFFFFFFFFFFFFFD = 0x00000000000000E7 ++s8addw255 0x000000000000007F = 0x00000000000004F7 ++s8addw255 0x0000000000000080 = 0x00000000000004FF ++s8addw255 0x0000000000007FFF = 0x00000000000400F7 ++s8addw255 0x0000000000008000 = 0x00000000000400FF ++s8addw255 0x000000007FFFFFFF = 0x00000000000000F7 ++s8addw255 0x0000000080000000 = 0x00000000000000FF ++s8addw255 0x8000000000000000 = 0x00000000000000FF ++s8addw255 0xFFFFFFFF80000000 = 0x00000000000000FF ++s8addw255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC00FF ++s8addw255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFCFF ++s8addw255 0x7FFFFFFFFFFFFFFF = 0x00000000000000F7 ++s8addw255 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F87F ++s8addw255 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A18F ++=== Running test on s8subw0 === ++s8subw0 0x0000000000000000 = 0x0000000000000000 ++s8subw0 0x0000000000000001 = 0x0000000000000008 ++s8subw0 0x0000000000000002 = 0x0000000000000010 ++s8subw0 0x0000000000000003 = 0x0000000000000018 ++s8subw0 0x000000000000000F = 0x0000000000000078 ++s8subw0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF8 ++s8subw0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF0 ++s8subw0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE8 ++s8subw0 0x000000000000007F = 0x00000000000003F8 ++s8subw0 0x0000000000000080 = 0x0000000000000400 ++s8subw0 0x0000000000007FFF = 0x000000000003FFF8 ++s8subw0 0x0000000000008000 = 0x0000000000040000 ++s8subw0 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFF8 ++s8subw0 0x0000000080000000 = 0x0000000000000000 ++s8subw0 0x8000000000000000 = 0x0000000000000000 ++s8subw0 0xFFFFFFFF80000000 = 0x0000000000000000 ++s8subw0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0000 ++s8subw0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC00 ++s8subw0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF8 ++s8subw0 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F780 ++s8subw0 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A090 ++=== Running test on s8subw1 === ++s8subw1 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++s8subw1 0x0000000000000001 = 0x0000000000000007 ++s8subw1 0x0000000000000002 = 0x000000000000000F ++s8subw1 0x0000000000000003 = 0x0000000000000017 ++s8subw1 0x000000000000000F = 0x0000000000000077 ++s8subw1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s8subw1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFEF ++s8subw1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE7 ++s8subw1 0x000000000000007F = 0x00000000000003F7 ++s8subw1 0x0000000000000080 = 0x00000000000003FF ++s8subw1 0x0000000000007FFF = 0x000000000003FFF7 ++s8subw1 0x0000000000008000 = 0x000000000003FFFF ++s8subw1 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s8subw1 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++s8subw1 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++s8subw1 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++s8subw1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFBFFFF ++s8subw1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFBFF ++s8subw1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s8subw1 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F77F ++s8subw1 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A08F ++=== Running test on s8subw2 === ++s8subw2 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++s8subw2 0x0000000000000001 = 0x0000000000000006 ++s8subw2 0x0000000000000002 = 0x000000000000000E ++s8subw2 0x0000000000000003 = 0x0000000000000016 ++s8subw2 0x000000000000000F = 0x0000000000000076 ++s8subw2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF6 ++s8subw2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFEE ++s8subw2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE6 ++s8subw2 0x000000000000007F = 0x00000000000003F6 ++s8subw2 0x0000000000000080 = 0x00000000000003FE ++s8subw2 0x0000000000007FFF = 0x000000000003FFF6 ++s8subw2 0x0000000000008000 = 0x000000000003FFFE ++s8subw2 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFF6 ++s8subw2 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++s8subw2 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++s8subw2 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++s8subw2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFBFFFE ++s8subw2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFBFE ++s8subw2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF6 ++s8subw2 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F77E ++s8subw2 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A08E ++=== Running test on s8subw3 === ++s8subw3 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++s8subw3 0x0000000000000001 = 0x0000000000000005 ++s8subw3 0x0000000000000002 = 0x000000000000000D ++s8subw3 0x0000000000000003 = 0x0000000000000015 ++s8subw3 0x000000000000000F = 0x0000000000000075 ++s8subw3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF5 ++s8subw3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFED ++s8subw3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE5 ++s8subw3 0x000000000000007F = 0x00000000000003F5 ++s8subw3 0x0000000000000080 = 0x00000000000003FD ++s8subw3 0x0000000000007FFF = 0x000000000003FFF5 ++s8subw3 0x0000000000008000 = 0x000000000003FFFD ++s8subw3 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFF5 ++s8subw3 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++s8subw3 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++s8subw3 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++s8subw3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFBFFFD ++s8subw3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFBFD ++s8subw3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF5 ++s8subw3 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F77D ++s8subw3 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A08D ++=== Running test on s8subw15 === ++s8subw15 0x0000000000000000 = 0xFFFFFFFFFFFFFFF1 ++s8subw15 0x0000000000000001 = 0xFFFFFFFFFFFFFFF9 ++s8subw15 0x0000000000000002 = 0x0000000000000001 ++s8subw15 0x0000000000000003 = 0x0000000000000009 ++s8subw15 0x000000000000000F = 0x0000000000000069 ++s8subw15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFE9 ++s8subw15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFE1 ++s8subw15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFD9 ++s8subw15 0x000000000000007F = 0x00000000000003E9 ++s8subw15 0x0000000000000080 = 0x00000000000003F1 ++s8subw15 0x0000000000007FFF = 0x000000000003FFE9 ++s8subw15 0x0000000000008000 = 0x000000000003FFF1 ++s8subw15 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFE9 ++s8subw15 0x0000000080000000 = 0xFFFFFFFFFFFFFFF1 ++s8subw15 0x8000000000000000 = 0xFFFFFFFFFFFFFFF1 ++s8subw15 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFF1 ++s8subw15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFBFFF1 ++s8subw15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFBF1 ++s8subw15 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFE9 ++s8subw15 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F771 ++s8subw15 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A081 ++=== Running test on s8subw127 === ++s8subw127 0x0000000000000000 = 0xFFFFFFFFFFFFFF81 ++s8subw127 0x0000000000000001 = 0xFFFFFFFFFFFFFF89 ++s8subw127 0x0000000000000002 = 0xFFFFFFFFFFFFFF91 ++s8subw127 0x0000000000000003 = 0xFFFFFFFFFFFFFF99 ++s8subw127 0x000000000000000F = 0xFFFFFFFFFFFFFFF9 ++s8subw127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF79 ++s8subw127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF71 ++s8subw127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF69 ++s8subw127 0x000000000000007F = 0x0000000000000379 ++s8subw127 0x0000000000000080 = 0x0000000000000381 ++s8subw127 0x0000000000007FFF = 0x000000000003FF79 ++s8subw127 0x0000000000008000 = 0x000000000003FF81 ++s8subw127 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF79 ++s8subw127 0x0000000080000000 = 0xFFFFFFFFFFFFFF81 ++s8subw127 0x8000000000000000 = 0xFFFFFFFFFFFFFF81 ++s8subw127 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF81 ++s8subw127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFBFF81 ++s8subw127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFB81 ++s8subw127 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF79 ++s8subw127 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F701 ++s8subw127 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A011 ++=== Running test on s8subw128 === ++s8subw128 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++s8subw128 0x0000000000000001 = 0xFFFFFFFFFFFFFF88 ++s8subw128 0x0000000000000002 = 0xFFFFFFFFFFFFFF90 ++s8subw128 0x0000000000000003 = 0xFFFFFFFFFFFFFF98 ++s8subw128 0x000000000000000F = 0xFFFFFFFFFFFFFFF8 ++s8subw128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF78 ++s8subw128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF70 ++s8subw128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF68 ++s8subw128 0x000000000000007F = 0x0000000000000378 ++s8subw128 0x0000000000000080 = 0x0000000000000380 ++s8subw128 0x0000000000007FFF = 0x000000000003FF78 ++s8subw128 0x0000000000008000 = 0x000000000003FF80 ++s8subw128 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF78 ++s8subw128 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++s8subw128 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++s8subw128 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++s8subw128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFBFF80 ++s8subw128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFB80 ++s8subw128 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF78 ++s8subw128 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F700 ++s8subw128 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B1A010 ++=== Running test on s8subw255 === ++s8subw255 0x0000000000000000 = 0xFFFFFFFFFFFFFF01 ++s8subw255 0x0000000000000001 = 0xFFFFFFFFFFFFFF09 ++s8subw255 0x0000000000000002 = 0xFFFFFFFFFFFFFF11 ++s8subw255 0x0000000000000003 = 0xFFFFFFFFFFFFFF19 ++s8subw255 0x000000000000000F = 0xFFFFFFFFFFFFFF79 ++s8subw255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFEF9 ++s8subw255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFEF1 ++s8subw255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFEE9 ++s8subw255 0x000000000000007F = 0x00000000000002F9 ++s8subw255 0x0000000000000080 = 0x0000000000000301 ++s8subw255 0x0000000000007FFF = 0x000000000003FEF9 ++s8subw255 0x0000000000008000 = 0x000000000003FF01 ++s8subw255 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFEF9 ++s8subw255 0x0000000080000000 = 0xFFFFFFFFFFFFFF01 ++s8subw255 0x8000000000000000 = 0xFFFFFFFFFFFFFF01 ++s8subw255 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF01 ++s8subw255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFBFF01 ++s8subw255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFB01 ++s8subw255 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFEF9 ++s8subw255 0x123456789ABCDEF0 = 0xFFFFFFFFD5E6F681 ++s8subw255 0xF0DEBC9A78563412 = 0xFFFFFFFFC2B19F91 ++=== Running test on addl0 === ++addl0 0x0000000000000000 = 0x0000000000000000 ++addl0 0x0000000000000001 = 0x0000000000000001 ++addl0 0x0000000000000002 = 0x0000000000000002 ++addl0 0x0000000000000003 = 0x0000000000000003 ++addl0 0x000000000000000F = 0x000000000000000F ++addl0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++addl0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++addl0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++addl0 0x000000000000007F = 0x000000000000007F ++addl0 0x0000000000000080 = 0x0000000000000080 ++addl0 0x0000000000007FFF = 0x0000000000007FFF ++addl0 0x0000000000008000 = 0x0000000000008000 ++addl0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++addl0 0x0000000080000000 = 0x0000000080000000 ++addl0 0x8000000000000000 = 0x8000000000000000 ++addl0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++addl0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++addl0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++addl0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++addl0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++addl0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on addl1 === ++addl1 0x0000000000000000 = 0x0000000000000001 ++addl1 0x0000000000000001 = 0x0000000000000002 ++addl1 0x0000000000000002 = 0x0000000000000003 ++addl1 0x0000000000000003 = 0x0000000000000004 ++addl1 0x000000000000000F = 0x0000000000000010 ++addl1 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++addl1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++addl1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++addl1 0x000000000000007F = 0x0000000000000080 ++addl1 0x0000000000000080 = 0x0000000000000081 ++addl1 0x0000000000007FFF = 0x0000000000008000 ++addl1 0x0000000000008000 = 0x0000000000008001 ++addl1 0x000000007FFFFFFF = 0x0000000080000000 ++addl1 0x0000000080000000 = 0x0000000080000001 ++addl1 0x8000000000000000 = 0x8000000000000001 ++addl1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000001 ++addl1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8001 ++addl1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF81 ++addl1 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++addl1 0x123456789ABCDEF0 = 0x123456789ABCDEF1 ++addl1 0xF0DEBC9A78563412 = 0xF0DEBC9A78563413 ++=== Running test on addl2 === ++addl2 0x0000000000000000 = 0x0000000000000002 ++addl2 0x0000000000000001 = 0x0000000000000003 ++addl2 0x0000000000000002 = 0x0000000000000004 ++addl2 0x0000000000000003 = 0x0000000000000005 ++addl2 0x000000000000000F = 0x0000000000000011 ++addl2 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++addl2 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++addl2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++addl2 0x000000000000007F = 0x0000000000000081 ++addl2 0x0000000000000080 = 0x0000000000000082 ++addl2 0x0000000000007FFF = 0x0000000000008001 ++addl2 0x0000000000008000 = 0x0000000000008002 ++addl2 0x000000007FFFFFFF = 0x0000000080000001 ++addl2 0x0000000080000000 = 0x0000000080000002 ++addl2 0x8000000000000000 = 0x8000000000000002 ++addl2 0xFFFFFFFF80000000 = 0xFFFFFFFF80000002 ++addl2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8002 ++addl2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF82 ++addl2 0x7FFFFFFFFFFFFFFF = 0x8000000000000001 ++addl2 0x123456789ABCDEF0 = 0x123456789ABCDEF2 ++addl2 0xF0DEBC9A78563412 = 0xF0DEBC9A78563414 ++=== Running test on addl3 === ++addl3 0x0000000000000000 = 0x0000000000000003 ++addl3 0x0000000000000001 = 0x0000000000000004 ++addl3 0x0000000000000002 = 0x0000000000000005 ++addl3 0x0000000000000003 = 0x0000000000000006 ++addl3 0x000000000000000F = 0x0000000000000012 ++addl3 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++addl3 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++addl3 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++addl3 0x000000000000007F = 0x0000000000000082 ++addl3 0x0000000000000080 = 0x0000000000000083 ++addl3 0x0000000000007FFF = 0x0000000000008002 ++addl3 0x0000000000008000 = 0x0000000000008003 ++addl3 0x000000007FFFFFFF = 0x0000000080000002 ++addl3 0x0000000080000000 = 0x0000000080000003 ++addl3 0x8000000000000000 = 0x8000000000000003 ++addl3 0xFFFFFFFF80000000 = 0xFFFFFFFF80000003 ++addl3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8003 ++addl3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF83 ++addl3 0x7FFFFFFFFFFFFFFF = 0x8000000000000002 ++addl3 0x123456789ABCDEF0 = 0x123456789ABCDEF3 ++addl3 0xF0DEBC9A78563412 = 0xF0DEBC9A78563415 ++=== Running test on addl15 === ++addl15 0x0000000000000000 = 0x000000000000000F ++addl15 0x0000000000000001 = 0x0000000000000010 ++addl15 0x0000000000000002 = 0x0000000000000011 ++addl15 0x0000000000000003 = 0x0000000000000012 ++addl15 0x000000000000000F = 0x000000000000001E ++addl15 0xFFFFFFFFFFFFFFFF = 0x000000000000000E ++addl15 0xFFFFFFFFFFFFFFFE = 0x000000000000000D ++addl15 0xFFFFFFFFFFFFFFFD = 0x000000000000000C ++addl15 0x000000000000007F = 0x000000000000008E ++addl15 0x0000000000000080 = 0x000000000000008F ++addl15 0x0000000000007FFF = 0x000000000000800E ++addl15 0x0000000000008000 = 0x000000000000800F ++addl15 0x000000007FFFFFFF = 0x000000008000000E ++addl15 0x0000000080000000 = 0x000000008000000F ++addl15 0x8000000000000000 = 0x800000000000000F ++addl15 0xFFFFFFFF80000000 = 0xFFFFFFFF8000000F ++addl15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF800F ++addl15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF8F ++addl15 0x7FFFFFFFFFFFFFFF = 0x800000000000000E ++addl15 0x123456789ABCDEF0 = 0x123456789ABCDEFF ++addl15 0xF0DEBC9A78563412 = 0xF0DEBC9A78563421 ++=== Running test on addl127 === ++addl127 0x0000000000000000 = 0x000000000000007F ++addl127 0x0000000000000001 = 0x0000000000000080 ++addl127 0x0000000000000002 = 0x0000000000000081 ++addl127 0x0000000000000003 = 0x0000000000000082 ++addl127 0x000000000000000F = 0x000000000000008E ++addl127 0xFFFFFFFFFFFFFFFF = 0x000000000000007E ++addl127 0xFFFFFFFFFFFFFFFE = 0x000000000000007D ++addl127 0xFFFFFFFFFFFFFFFD = 0x000000000000007C ++addl127 0x000000000000007F = 0x00000000000000FE ++addl127 0x0000000000000080 = 0x00000000000000FF ++addl127 0x0000000000007FFF = 0x000000000000807E ++addl127 0x0000000000008000 = 0x000000000000807F ++addl127 0x000000007FFFFFFF = 0x000000008000007E ++addl127 0x0000000080000000 = 0x000000008000007F ++addl127 0x8000000000000000 = 0x800000000000007F ++addl127 0xFFFFFFFF80000000 = 0xFFFFFFFF8000007F ++addl127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF807F ++addl127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++addl127 0x7FFFFFFFFFFFFFFF = 0x800000000000007E ++addl127 0x123456789ABCDEF0 = 0x123456789ABCDF6F ++addl127 0xF0DEBC9A78563412 = 0xF0DEBC9A78563491 ++=== Running test on addl128 === ++addl128 0x0000000000000000 = 0x0000000000000080 ++addl128 0x0000000000000001 = 0x0000000000000081 ++addl128 0x0000000000000002 = 0x0000000000000082 ++addl128 0x0000000000000003 = 0x0000000000000083 ++addl128 0x000000000000000F = 0x000000000000008F ++addl128 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++addl128 0xFFFFFFFFFFFFFFFE = 0x000000000000007E ++addl128 0xFFFFFFFFFFFFFFFD = 0x000000000000007D ++addl128 0x000000000000007F = 0x00000000000000FF ++addl128 0x0000000000000080 = 0x0000000000000100 ++addl128 0x0000000000007FFF = 0x000000000000807F ++addl128 0x0000000000008000 = 0x0000000000008080 ++addl128 0x000000007FFFFFFF = 0x000000008000007F ++addl128 0x0000000080000000 = 0x0000000080000080 ++addl128 0x8000000000000000 = 0x8000000000000080 ++addl128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000080 ++addl128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8080 ++addl128 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++addl128 0x7FFFFFFFFFFFFFFF = 0x800000000000007F ++addl128 0x123456789ABCDEF0 = 0x123456789ABCDF70 ++addl128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563492 ++=== Running test on addl255 === ++addl255 0x0000000000000000 = 0x00000000000000FF ++addl255 0x0000000000000001 = 0x0000000000000100 ++addl255 0x0000000000000002 = 0x0000000000000101 ++addl255 0x0000000000000003 = 0x0000000000000102 ++addl255 0x000000000000000F = 0x000000000000010E ++addl255 0xFFFFFFFFFFFFFFFF = 0x00000000000000FE ++addl255 0xFFFFFFFFFFFFFFFE = 0x00000000000000FD ++addl255 0xFFFFFFFFFFFFFFFD = 0x00000000000000FC ++addl255 0x000000000000007F = 0x000000000000017E ++addl255 0x0000000000000080 = 0x000000000000017F ++addl255 0x0000000000007FFF = 0x00000000000080FE ++addl255 0x0000000000008000 = 0x00000000000080FF ++addl255 0x000000007FFFFFFF = 0x00000000800000FE ++addl255 0x0000000080000000 = 0x00000000800000FF ++addl255 0x8000000000000000 = 0x80000000000000FF ++addl255 0xFFFFFFFF80000000 = 0xFFFFFFFF800000FF ++addl255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF80FF ++addl255 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++addl255 0x7FFFFFFFFFFFFFFF = 0x80000000000000FE ++addl255 0x123456789ABCDEF0 = 0x123456789ABCDFEF ++addl255 0xF0DEBC9A78563412 = 0xF0DEBC9A78563511 ++=== Running test on subl0 === ++subl0 0x0000000000000000 = 0x0000000000000000 ++subl0 0x0000000000000001 = 0x0000000000000001 ++subl0 0x0000000000000002 = 0x0000000000000002 ++subl0 0x0000000000000003 = 0x0000000000000003 ++subl0 0x000000000000000F = 0x000000000000000F ++subl0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++subl0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++subl0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++subl0 0x000000000000007F = 0x000000000000007F ++subl0 0x0000000000000080 = 0x0000000000000080 ++subl0 0x0000000000007FFF = 0x0000000000007FFF ++subl0 0x0000000000008000 = 0x0000000000008000 ++subl0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++subl0 0x0000000080000000 = 0x0000000080000000 ++subl0 0x8000000000000000 = 0x8000000000000000 ++subl0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++subl0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++subl0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++subl0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++subl0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++subl0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on subl1 === ++subl1 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++subl1 0x0000000000000001 = 0x0000000000000000 ++subl1 0x0000000000000002 = 0x0000000000000001 ++subl1 0x0000000000000003 = 0x0000000000000002 ++subl1 0x000000000000000F = 0x000000000000000E ++subl1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++subl1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++subl1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++subl1 0x000000000000007F = 0x000000000000007E ++subl1 0x0000000000000080 = 0x000000000000007F ++subl1 0x0000000000007FFF = 0x0000000000007FFE ++subl1 0x0000000000008000 = 0x0000000000007FFF ++subl1 0x000000007FFFFFFF = 0x000000007FFFFFFE ++subl1 0x0000000080000000 = 0x000000007FFFFFFF ++subl1 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++subl1 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFFF ++subl1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFF ++subl1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7F ++subl1 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++subl1 0x123456789ABCDEF0 = 0x123456789ABCDEEF ++subl1 0xF0DEBC9A78563412 = 0xF0DEBC9A78563411 ++=== Running test on subl2 === ++subl2 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++subl2 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++subl2 0x0000000000000002 = 0x0000000000000000 ++subl2 0x0000000000000003 = 0x0000000000000001 ++subl2 0x000000000000000F = 0x000000000000000D ++subl2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++subl2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++subl2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++subl2 0x000000000000007F = 0x000000000000007D ++subl2 0x0000000000000080 = 0x000000000000007E ++subl2 0x0000000000007FFF = 0x0000000000007FFD ++subl2 0x0000000000008000 = 0x0000000000007FFE ++subl2 0x000000007FFFFFFF = 0x000000007FFFFFFD ++subl2 0x0000000080000000 = 0x000000007FFFFFFE ++subl2 0x8000000000000000 = 0x7FFFFFFFFFFFFFFE ++subl2 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFFE ++subl2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFE ++subl2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7E ++subl2 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++subl2 0x123456789ABCDEF0 = 0x123456789ABCDEEE ++subl2 0xF0DEBC9A78563412 = 0xF0DEBC9A78563410 ++=== Running test on subl3 === ++subl3 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++subl3 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++subl3 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++subl3 0x0000000000000003 = 0x0000000000000000 ++subl3 0x000000000000000F = 0x000000000000000C ++subl3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++subl3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFB ++subl3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFA ++subl3 0x000000000000007F = 0x000000000000007C ++subl3 0x0000000000000080 = 0x000000000000007D ++subl3 0x0000000000007FFF = 0x0000000000007FFC ++subl3 0x0000000000008000 = 0x0000000000007FFD ++subl3 0x000000007FFFFFFF = 0x000000007FFFFFFC ++subl3 0x0000000080000000 = 0x000000007FFFFFFD ++subl3 0x8000000000000000 = 0x7FFFFFFFFFFFFFFD ++subl3 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFFD ++subl3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFD ++subl3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7D ++subl3 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFC ++subl3 0x123456789ABCDEF0 = 0x123456789ABCDEED ++subl3 0xF0DEBC9A78563412 = 0xF0DEBC9A7856340F ++=== Running test on subl15 === ++subl15 0x0000000000000000 = 0xFFFFFFFFFFFFFFF1 ++subl15 0x0000000000000001 = 0xFFFFFFFFFFFFFFF2 ++subl15 0x0000000000000002 = 0xFFFFFFFFFFFFFFF3 ++subl15 0x0000000000000003 = 0xFFFFFFFFFFFFFFF4 ++subl15 0x000000000000000F = 0x0000000000000000 ++subl15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF0 ++subl15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFEF ++subl15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFEE ++subl15 0x000000000000007F = 0x0000000000000070 ++subl15 0x0000000000000080 = 0x0000000000000071 ++subl15 0x0000000000007FFF = 0x0000000000007FF0 ++subl15 0x0000000000008000 = 0x0000000000007FF1 ++subl15 0x000000007FFFFFFF = 0x000000007FFFFFF0 ++subl15 0x0000000080000000 = 0x000000007FFFFFF1 ++subl15 0x8000000000000000 = 0x7FFFFFFFFFFFFFF1 ++subl15 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFF1 ++subl15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FF1 ++subl15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF71 ++subl15 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF0 ++subl15 0x123456789ABCDEF0 = 0x123456789ABCDEE1 ++subl15 0xF0DEBC9A78563412 = 0xF0DEBC9A78563403 ++=== Running test on subl127 === ++subl127 0x0000000000000000 = 0xFFFFFFFFFFFFFF81 ++subl127 0x0000000000000001 = 0xFFFFFFFFFFFFFF82 ++subl127 0x0000000000000002 = 0xFFFFFFFFFFFFFF83 ++subl127 0x0000000000000003 = 0xFFFFFFFFFFFFFF84 ++subl127 0x000000000000000F = 0xFFFFFFFFFFFFFF90 ++subl127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++subl127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF7F ++subl127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF7E ++subl127 0x000000000000007F = 0x0000000000000000 ++subl127 0x0000000000000080 = 0x0000000000000001 ++subl127 0x0000000000007FFF = 0x0000000000007F80 ++subl127 0x0000000000008000 = 0x0000000000007F81 ++subl127 0x000000007FFFFFFF = 0x000000007FFFFF80 ++subl127 0x0000000080000000 = 0x000000007FFFFF81 ++subl127 0x8000000000000000 = 0x7FFFFFFFFFFFFF81 ++subl127 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFF81 ++subl127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7F81 ++subl127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF01 ++subl127 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF80 ++subl127 0x123456789ABCDEF0 = 0x123456789ABCDE71 ++subl127 0xF0DEBC9A78563412 = 0xF0DEBC9A78563393 ++=== Running test on subl128 === ++subl128 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++subl128 0x0000000000000001 = 0xFFFFFFFFFFFFFF81 ++subl128 0x0000000000000002 = 0xFFFFFFFFFFFFFF82 ++subl128 0x0000000000000003 = 0xFFFFFFFFFFFFFF83 ++subl128 0x000000000000000F = 0xFFFFFFFFFFFFFF8F ++subl128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7F ++subl128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF7E ++subl128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF7D ++subl128 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++subl128 0x0000000000000080 = 0x0000000000000000 ++subl128 0x0000000000007FFF = 0x0000000000007F7F ++subl128 0x0000000000008000 = 0x0000000000007F80 ++subl128 0x000000007FFFFFFF = 0x000000007FFFFF7F ++subl128 0x0000000080000000 = 0x000000007FFFFF80 ++subl128 0x8000000000000000 = 0x7FFFFFFFFFFFFF80 ++subl128 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFF80 ++subl128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7F80 ++subl128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++subl128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF7F ++subl128 0x123456789ABCDEF0 = 0x123456789ABCDE70 ++subl128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563392 ++=== Running test on subl255 === ++subl255 0x0000000000000000 = 0xFFFFFFFFFFFFFF01 ++subl255 0x0000000000000001 = 0xFFFFFFFFFFFFFF02 ++subl255 0x0000000000000002 = 0xFFFFFFFFFFFFFF03 ++subl255 0x0000000000000003 = 0xFFFFFFFFFFFFFF04 ++subl255 0x000000000000000F = 0xFFFFFFFFFFFFFF10 ++subl255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++subl255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFEFF ++subl255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFEFE ++subl255 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++subl255 0x0000000000000080 = 0xFFFFFFFFFFFFFF81 ++subl255 0x0000000000007FFF = 0x0000000000007F00 ++subl255 0x0000000000008000 = 0x0000000000007F01 ++subl255 0x000000007FFFFFFF = 0x000000007FFFFF00 ++subl255 0x0000000080000000 = 0x000000007FFFFF01 ++subl255 0x8000000000000000 = 0x7FFFFFFFFFFFFF01 ++subl255 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFF01 ++subl255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7F01 ++subl255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE81 ++subl255 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF00 ++subl255 0x123456789ABCDEF0 = 0x123456789ABCDDF1 ++subl255 0xF0DEBC9A78563412 = 0xF0DEBC9A78563313 ++=== Running test on s4addl0 === ++s4addl0 0x0000000000000000 = 0x0000000000000000 ++s4addl0 0x0000000000000001 = 0x0000000000000004 ++s4addl0 0x0000000000000002 = 0x0000000000000008 ++s4addl0 0x0000000000000003 = 0x000000000000000C ++s4addl0 0x000000000000000F = 0x000000000000003C ++s4addl0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++s4addl0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF8 ++s4addl0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF4 ++s4addl0 0x000000000000007F = 0x00000000000001FC ++s4addl0 0x0000000000000080 = 0x0000000000000200 ++s4addl0 0x0000000000007FFF = 0x000000000001FFFC ++s4addl0 0x0000000000008000 = 0x0000000000020000 ++s4addl0 0x000000007FFFFFFF = 0x00000001FFFFFFFC ++s4addl0 0x0000000080000000 = 0x0000000200000000 ++s4addl0 0x8000000000000000 = 0x0000000000000000 ++s4addl0 0xFFFFFFFF80000000 = 0xFFFFFFFE00000000 ++s4addl0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0000 ++s4addl0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE00 ++s4addl0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++s4addl0 0x123456789ABCDEF0 = 0x48D159E26AF37BC0 ++s4addl0 0xF0DEBC9A78563412 = 0xC37AF269E158D048 ++=== Running test on s4addl1 === ++s4addl1 0x0000000000000000 = 0x0000000000000001 ++s4addl1 0x0000000000000001 = 0x0000000000000005 ++s4addl1 0x0000000000000002 = 0x0000000000000009 ++s4addl1 0x0000000000000003 = 0x000000000000000D ++s4addl1 0x000000000000000F = 0x000000000000003D ++s4addl1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++s4addl1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF9 ++s4addl1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF5 ++s4addl1 0x000000000000007F = 0x00000000000001FD ++s4addl1 0x0000000000000080 = 0x0000000000000201 ++s4addl1 0x0000000000007FFF = 0x000000000001FFFD ++s4addl1 0x0000000000008000 = 0x0000000000020001 ++s4addl1 0x000000007FFFFFFF = 0x00000001FFFFFFFD ++s4addl1 0x0000000080000000 = 0x0000000200000001 ++s4addl1 0x8000000000000000 = 0x0000000000000001 ++s4addl1 0xFFFFFFFF80000000 = 0xFFFFFFFE00000001 ++s4addl1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0001 ++s4addl1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE01 ++s4addl1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++s4addl1 0x123456789ABCDEF0 = 0x48D159E26AF37BC1 ++s4addl1 0xF0DEBC9A78563412 = 0xC37AF269E158D049 ++=== Running test on s4addl2 === ++s4addl2 0x0000000000000000 = 0x0000000000000002 ++s4addl2 0x0000000000000001 = 0x0000000000000006 ++s4addl2 0x0000000000000002 = 0x000000000000000A ++s4addl2 0x0000000000000003 = 0x000000000000000E ++s4addl2 0x000000000000000F = 0x000000000000003E ++s4addl2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++s4addl2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++s4addl2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF6 ++s4addl2 0x000000000000007F = 0x00000000000001FE ++s4addl2 0x0000000000000080 = 0x0000000000000202 ++s4addl2 0x0000000000007FFF = 0x000000000001FFFE ++s4addl2 0x0000000000008000 = 0x0000000000020002 ++s4addl2 0x000000007FFFFFFF = 0x00000001FFFFFFFE ++s4addl2 0x0000000080000000 = 0x0000000200000002 ++s4addl2 0x8000000000000000 = 0x0000000000000002 ++s4addl2 0xFFFFFFFF80000000 = 0xFFFFFFFE00000002 ++s4addl2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0002 ++s4addl2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE02 ++s4addl2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++s4addl2 0x123456789ABCDEF0 = 0x48D159E26AF37BC2 ++s4addl2 0xF0DEBC9A78563412 = 0xC37AF269E158D04A ++=== Running test on s4addl3 === ++s4addl3 0x0000000000000000 = 0x0000000000000003 ++s4addl3 0x0000000000000001 = 0x0000000000000007 ++s4addl3 0x0000000000000002 = 0x000000000000000B ++s4addl3 0x0000000000000003 = 0x000000000000000F ++s4addl3 0x000000000000000F = 0x000000000000003F ++s4addl3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addl3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFB ++s4addl3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF7 ++s4addl3 0x000000000000007F = 0x00000000000001FF ++s4addl3 0x0000000000000080 = 0x0000000000000203 ++s4addl3 0x0000000000007FFF = 0x000000000001FFFF ++s4addl3 0x0000000000008000 = 0x0000000000020003 ++s4addl3 0x000000007FFFFFFF = 0x00000001FFFFFFFF ++s4addl3 0x0000000080000000 = 0x0000000200000003 ++s4addl3 0x8000000000000000 = 0x0000000000000003 ++s4addl3 0xFFFFFFFF80000000 = 0xFFFFFFFE00000003 ++s4addl3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0003 ++s4addl3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE03 ++s4addl3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addl3 0x123456789ABCDEF0 = 0x48D159E26AF37BC3 ++s4addl3 0xF0DEBC9A78563412 = 0xC37AF269E158D04B ++=== Running test on s4addl15 === ++s4addl15 0x0000000000000000 = 0x000000000000000F ++s4addl15 0x0000000000000001 = 0x0000000000000013 ++s4addl15 0x0000000000000002 = 0x0000000000000017 ++s4addl15 0x0000000000000003 = 0x000000000000001B ++s4addl15 0x000000000000000F = 0x000000000000004B ++s4addl15 0xFFFFFFFFFFFFFFFF = 0x000000000000000B ++s4addl15 0xFFFFFFFFFFFFFFFE = 0x0000000000000007 ++s4addl15 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++s4addl15 0x000000000000007F = 0x000000000000020B ++s4addl15 0x0000000000000080 = 0x000000000000020F ++s4addl15 0x0000000000007FFF = 0x000000000002000B ++s4addl15 0x0000000000008000 = 0x000000000002000F ++s4addl15 0x000000007FFFFFFF = 0x000000020000000B ++s4addl15 0x0000000080000000 = 0x000000020000000F ++s4addl15 0x8000000000000000 = 0x000000000000000F ++s4addl15 0xFFFFFFFF80000000 = 0xFFFFFFFE0000000F ++s4addl15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE000F ++s4addl15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE0F ++s4addl15 0x7FFFFFFFFFFFFFFF = 0x000000000000000B ++s4addl15 0x123456789ABCDEF0 = 0x48D159E26AF37BCF ++s4addl15 0xF0DEBC9A78563412 = 0xC37AF269E158D057 ++=== Running test on s4addl127 === ++s4addl127 0x0000000000000000 = 0x000000000000007F ++s4addl127 0x0000000000000001 = 0x0000000000000083 ++s4addl127 0x0000000000000002 = 0x0000000000000087 ++s4addl127 0x0000000000000003 = 0x000000000000008B ++s4addl127 0x000000000000000F = 0x00000000000000BB ++s4addl127 0xFFFFFFFFFFFFFFFF = 0x000000000000007B ++s4addl127 0xFFFFFFFFFFFFFFFE = 0x0000000000000077 ++s4addl127 0xFFFFFFFFFFFFFFFD = 0x0000000000000073 ++s4addl127 0x000000000000007F = 0x000000000000027B ++s4addl127 0x0000000000000080 = 0x000000000000027F ++s4addl127 0x0000000000007FFF = 0x000000000002007B ++s4addl127 0x0000000000008000 = 0x000000000002007F ++s4addl127 0x000000007FFFFFFF = 0x000000020000007B ++s4addl127 0x0000000080000000 = 0x000000020000007F ++s4addl127 0x8000000000000000 = 0x000000000000007F ++s4addl127 0xFFFFFFFF80000000 = 0xFFFFFFFE0000007F ++s4addl127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE007F ++s4addl127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE7F ++s4addl127 0x7FFFFFFFFFFFFFFF = 0x000000000000007B ++s4addl127 0x123456789ABCDEF0 = 0x48D159E26AF37C3F ++s4addl127 0xF0DEBC9A78563412 = 0xC37AF269E158D0C7 ++=== Running test on s4addl128 === ++s4addl128 0x0000000000000000 = 0x0000000000000080 ++s4addl128 0x0000000000000001 = 0x0000000000000084 ++s4addl128 0x0000000000000002 = 0x0000000000000088 ++s4addl128 0x0000000000000003 = 0x000000000000008C ++s4addl128 0x000000000000000F = 0x00000000000000BC ++s4addl128 0xFFFFFFFFFFFFFFFF = 0x000000000000007C ++s4addl128 0xFFFFFFFFFFFFFFFE = 0x0000000000000078 ++s4addl128 0xFFFFFFFFFFFFFFFD = 0x0000000000000074 ++s4addl128 0x000000000000007F = 0x000000000000027C ++s4addl128 0x0000000000000080 = 0x0000000000000280 ++s4addl128 0x0000000000007FFF = 0x000000000002007C ++s4addl128 0x0000000000008000 = 0x0000000000020080 ++s4addl128 0x000000007FFFFFFF = 0x000000020000007C ++s4addl128 0x0000000080000000 = 0x0000000200000080 ++s4addl128 0x8000000000000000 = 0x0000000000000080 ++s4addl128 0xFFFFFFFF80000000 = 0xFFFFFFFE00000080 ++s4addl128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0080 ++s4addl128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE80 ++s4addl128 0x7FFFFFFFFFFFFFFF = 0x000000000000007C ++s4addl128 0x123456789ABCDEF0 = 0x48D159E26AF37C40 ++s4addl128 0xF0DEBC9A78563412 = 0xC37AF269E158D0C8 ++=== Running test on s4addl255 === ++s4addl255 0x0000000000000000 = 0x00000000000000FF ++s4addl255 0x0000000000000001 = 0x0000000000000103 ++s4addl255 0x0000000000000002 = 0x0000000000000107 ++s4addl255 0x0000000000000003 = 0x000000000000010B ++s4addl255 0x000000000000000F = 0x000000000000013B ++s4addl255 0xFFFFFFFFFFFFFFFF = 0x00000000000000FB ++s4addl255 0xFFFFFFFFFFFFFFFE = 0x00000000000000F7 ++s4addl255 0xFFFFFFFFFFFFFFFD = 0x00000000000000F3 ++s4addl255 0x000000000000007F = 0x00000000000002FB ++s4addl255 0x0000000000000080 = 0x00000000000002FF ++s4addl255 0x0000000000007FFF = 0x00000000000200FB ++s4addl255 0x0000000000008000 = 0x00000000000200FF ++s4addl255 0x000000007FFFFFFF = 0x00000002000000FB ++s4addl255 0x0000000080000000 = 0x00000002000000FF ++s4addl255 0x8000000000000000 = 0x00000000000000FF ++s4addl255 0xFFFFFFFF80000000 = 0xFFFFFFFE000000FF ++s4addl255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE00FF ++s4addl255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFEFF ++s4addl255 0x7FFFFFFFFFFFFFFF = 0x00000000000000FB ++s4addl255 0x123456789ABCDEF0 = 0x48D159E26AF37CBF ++s4addl255 0xF0DEBC9A78563412 = 0xC37AF269E158D147 ++=== Running test on s4subl0 === ++s4subl0 0x0000000000000000 = 0x0000000000000000 ++s4subl0 0x0000000000000001 = 0x0000000000000004 ++s4subl0 0x0000000000000002 = 0x0000000000000008 ++s4subl0 0x0000000000000003 = 0x000000000000000C ++s4subl0 0x000000000000000F = 0x000000000000003C ++s4subl0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++s4subl0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF8 ++s4subl0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF4 ++s4subl0 0x000000000000007F = 0x00000000000001FC ++s4subl0 0x0000000000000080 = 0x0000000000000200 ++s4subl0 0x0000000000007FFF = 0x000000000001FFFC ++s4subl0 0x0000000000008000 = 0x0000000000020000 ++s4subl0 0x000000007FFFFFFF = 0x00000001FFFFFFFC ++s4subl0 0x0000000080000000 = 0x0000000200000000 ++s4subl0 0x8000000000000000 = 0x0000000000000000 ++s4subl0 0xFFFFFFFF80000000 = 0xFFFFFFFE00000000 ++s4subl0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0000 ++s4subl0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE00 ++s4subl0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++s4subl0 0x123456789ABCDEF0 = 0x48D159E26AF37BC0 ++s4subl0 0xF0DEBC9A78563412 = 0xC37AF269E158D048 ++=== Running test on s4subl1 === ++s4subl1 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++s4subl1 0x0000000000000001 = 0x0000000000000003 ++s4subl1 0x0000000000000002 = 0x0000000000000007 ++s4subl1 0x0000000000000003 = 0x000000000000000B ++s4subl1 0x000000000000000F = 0x000000000000003B ++s4subl1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s4subl1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF7 ++s4subl1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF3 ++s4subl1 0x000000000000007F = 0x00000000000001FB ++s4subl1 0x0000000000000080 = 0x00000000000001FF ++s4subl1 0x0000000000007FFF = 0x000000000001FFFB ++s4subl1 0x0000000000008000 = 0x000000000001FFFF ++s4subl1 0x000000007FFFFFFF = 0x00000001FFFFFFFB ++s4subl1 0x0000000080000000 = 0x00000001FFFFFFFF ++s4subl1 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++s4subl1 0xFFFFFFFF80000000 = 0xFFFFFFFDFFFFFFFF ++s4subl1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFDFFFF ++s4subl1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFDFF ++s4subl1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s4subl1 0x123456789ABCDEF0 = 0x48D159E26AF37BBF ++s4subl1 0xF0DEBC9A78563412 = 0xC37AF269E158D047 ++=== Running test on s4subl2 === ++s4subl2 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++s4subl2 0x0000000000000001 = 0x0000000000000002 ++s4subl2 0x0000000000000002 = 0x0000000000000006 ++s4subl2 0x0000000000000003 = 0x000000000000000A ++s4subl2 0x000000000000000F = 0x000000000000003A ++s4subl2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFA ++s4subl2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF6 ++s4subl2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF2 ++s4subl2 0x000000000000007F = 0x00000000000001FA ++s4subl2 0x0000000000000080 = 0x00000000000001FE ++s4subl2 0x0000000000007FFF = 0x000000000001FFFA ++s4subl2 0x0000000000008000 = 0x000000000001FFFE ++s4subl2 0x000000007FFFFFFF = 0x00000001FFFFFFFA ++s4subl2 0x0000000080000000 = 0x00000001FFFFFFFE ++s4subl2 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++s4subl2 0xFFFFFFFF80000000 = 0xFFFFFFFDFFFFFFFE ++s4subl2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFDFFFE ++s4subl2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFDFE ++s4subl2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFA ++s4subl2 0x123456789ABCDEF0 = 0x48D159E26AF37BBE ++s4subl2 0xF0DEBC9A78563412 = 0xC37AF269E158D046 ++=== Running test on s4subl3 === ++s4subl3 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++s4subl3 0x0000000000000001 = 0x0000000000000001 ++s4subl3 0x0000000000000002 = 0x0000000000000005 ++s4subl3 0x0000000000000003 = 0x0000000000000009 ++s4subl3 0x000000000000000F = 0x0000000000000039 ++s4subl3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s4subl3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF5 ++s4subl3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF1 ++s4subl3 0x000000000000007F = 0x00000000000001F9 ++s4subl3 0x0000000000000080 = 0x00000000000001FD ++s4subl3 0x0000000000007FFF = 0x000000000001FFF9 ++s4subl3 0x0000000000008000 = 0x000000000001FFFD ++s4subl3 0x000000007FFFFFFF = 0x00000001FFFFFFF9 ++s4subl3 0x0000000080000000 = 0x00000001FFFFFFFD ++s4subl3 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++s4subl3 0xFFFFFFFF80000000 = 0xFFFFFFFDFFFFFFFD ++s4subl3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFDFFFD ++s4subl3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFDFD ++s4subl3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s4subl3 0x123456789ABCDEF0 = 0x48D159E26AF37BBD ++s4subl3 0xF0DEBC9A78563412 = 0xC37AF269E158D045 ++=== Running test on s4subl15 === ++s4subl15 0x0000000000000000 = 0xFFFFFFFFFFFFFFF1 ++s4subl15 0x0000000000000001 = 0xFFFFFFFFFFFFFFF5 ++s4subl15 0x0000000000000002 = 0xFFFFFFFFFFFFFFF9 ++s4subl15 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++s4subl15 0x000000000000000F = 0x000000000000002D ++s4subl15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFED ++s4subl15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFE9 ++s4subl15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE5 ++s4subl15 0x000000000000007F = 0x00000000000001ED ++s4subl15 0x0000000000000080 = 0x00000000000001F1 ++s4subl15 0x0000000000007FFF = 0x000000000001FFED ++s4subl15 0x0000000000008000 = 0x000000000001FFF1 ++s4subl15 0x000000007FFFFFFF = 0x00000001FFFFFFED ++s4subl15 0x0000000080000000 = 0x00000001FFFFFFF1 ++s4subl15 0x8000000000000000 = 0xFFFFFFFFFFFFFFF1 ++s4subl15 0xFFFFFFFF80000000 = 0xFFFFFFFDFFFFFFF1 ++s4subl15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFDFFF1 ++s4subl15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFDF1 ++s4subl15 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFED ++s4subl15 0x123456789ABCDEF0 = 0x48D159E26AF37BB1 ++s4subl15 0xF0DEBC9A78563412 = 0xC37AF269E158D039 ++=== Running test on s4subl127 === ++s4subl127 0x0000000000000000 = 0xFFFFFFFFFFFFFF81 ++s4subl127 0x0000000000000001 = 0xFFFFFFFFFFFFFF85 ++s4subl127 0x0000000000000002 = 0xFFFFFFFFFFFFFF89 ++s4subl127 0x0000000000000003 = 0xFFFFFFFFFFFFFF8D ++s4subl127 0x000000000000000F = 0xFFFFFFFFFFFFFFBD ++s4subl127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7D ++s4subl127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF79 ++s4subl127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF75 ++s4subl127 0x000000000000007F = 0x000000000000017D ++s4subl127 0x0000000000000080 = 0x0000000000000181 ++s4subl127 0x0000000000007FFF = 0x000000000001FF7D ++s4subl127 0x0000000000008000 = 0x000000000001FF81 ++s4subl127 0x000000007FFFFFFF = 0x00000001FFFFFF7D ++s4subl127 0x0000000080000000 = 0x00000001FFFFFF81 ++s4subl127 0x8000000000000000 = 0xFFFFFFFFFFFFFF81 ++s4subl127 0xFFFFFFFF80000000 = 0xFFFFFFFDFFFFFF81 ++s4subl127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFDFF81 ++s4subl127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFD81 ++s4subl127 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7D ++s4subl127 0x123456789ABCDEF0 = 0x48D159E26AF37B41 ++s4subl127 0xF0DEBC9A78563412 = 0xC37AF269E158CFC9 ++=== Running test on s4subl128 === ++s4subl128 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++s4subl128 0x0000000000000001 = 0xFFFFFFFFFFFFFF84 ++s4subl128 0x0000000000000002 = 0xFFFFFFFFFFFFFF88 ++s4subl128 0x0000000000000003 = 0xFFFFFFFFFFFFFF8C ++s4subl128 0x000000000000000F = 0xFFFFFFFFFFFFFFBC ++s4subl128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7C ++s4subl128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF78 ++s4subl128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF74 ++s4subl128 0x000000000000007F = 0x000000000000017C ++s4subl128 0x0000000000000080 = 0x0000000000000180 ++s4subl128 0x0000000000007FFF = 0x000000000001FF7C ++s4subl128 0x0000000000008000 = 0x000000000001FF80 ++s4subl128 0x000000007FFFFFFF = 0x00000001FFFFFF7C ++s4subl128 0x0000000080000000 = 0x00000001FFFFFF80 ++s4subl128 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++s4subl128 0xFFFFFFFF80000000 = 0xFFFFFFFDFFFFFF80 ++s4subl128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFDFF80 ++s4subl128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFD80 ++s4subl128 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7C ++s4subl128 0x123456789ABCDEF0 = 0x48D159E26AF37B40 ++s4subl128 0xF0DEBC9A78563412 = 0xC37AF269E158CFC8 ++=== Running test on s4subl255 === ++s4subl255 0x0000000000000000 = 0xFFFFFFFFFFFFFF01 ++s4subl255 0x0000000000000001 = 0xFFFFFFFFFFFFFF05 ++s4subl255 0x0000000000000002 = 0xFFFFFFFFFFFFFF09 ++s4subl255 0x0000000000000003 = 0xFFFFFFFFFFFFFF0D ++s4subl255 0x000000000000000F = 0xFFFFFFFFFFFFFF3D ++s4subl255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFEFD ++s4subl255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFEF9 ++s4subl255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFEF5 ++s4subl255 0x000000000000007F = 0x00000000000000FD ++s4subl255 0x0000000000000080 = 0x0000000000000101 ++s4subl255 0x0000000000007FFF = 0x000000000001FEFD ++s4subl255 0x0000000000008000 = 0x000000000001FF01 ++s4subl255 0x000000007FFFFFFF = 0x00000001FFFFFEFD ++s4subl255 0x0000000080000000 = 0x00000001FFFFFF01 ++s4subl255 0x8000000000000000 = 0xFFFFFFFFFFFFFF01 ++s4subl255 0xFFFFFFFF80000000 = 0xFFFFFFFDFFFFFF01 ++s4subl255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFDFF01 ++s4subl255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFD01 ++s4subl255 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFEFD ++s4subl255 0x123456789ABCDEF0 = 0x48D159E26AF37AC1 ++s4subl255 0xF0DEBC9A78563412 = 0xC37AF269E158CF49 ++=== Running test on s8addl0 === ++s8addl0 0x0000000000000000 = 0x0000000000000000 ++s8addl0 0x0000000000000001 = 0x0000000000000008 ++s8addl0 0x0000000000000002 = 0x0000000000000010 ++s8addl0 0x0000000000000003 = 0x0000000000000018 ++s8addl0 0x000000000000000F = 0x0000000000000078 ++s8addl0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF8 ++s8addl0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF0 ++s8addl0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE8 ++s8addl0 0x000000000000007F = 0x00000000000003F8 ++s8addl0 0x0000000000000080 = 0x0000000000000400 ++s8addl0 0x0000000000007FFF = 0x000000000003FFF8 ++s8addl0 0x0000000000008000 = 0x0000000000040000 ++s8addl0 0x000000007FFFFFFF = 0x00000003FFFFFFF8 ++s8addl0 0x0000000080000000 = 0x0000000400000000 ++s8addl0 0x8000000000000000 = 0x0000000000000000 ++s8addl0 0xFFFFFFFF80000000 = 0xFFFFFFFC00000000 ++s8addl0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0000 ++s8addl0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC00 ++s8addl0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF8 ++s8addl0 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F780 ++s8addl0 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A090 ++=== Running test on s8addl1 === ++s8addl1 0x0000000000000000 = 0x0000000000000001 ++s8addl1 0x0000000000000001 = 0x0000000000000009 ++s8addl1 0x0000000000000002 = 0x0000000000000011 ++s8addl1 0x0000000000000003 = 0x0000000000000019 ++s8addl1 0x000000000000000F = 0x0000000000000079 ++s8addl1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s8addl1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF1 ++s8addl1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE9 ++s8addl1 0x000000000000007F = 0x00000000000003F9 ++s8addl1 0x0000000000000080 = 0x0000000000000401 ++s8addl1 0x0000000000007FFF = 0x000000000003FFF9 ++s8addl1 0x0000000000008000 = 0x0000000000040001 ++s8addl1 0x000000007FFFFFFF = 0x00000003FFFFFFF9 ++s8addl1 0x0000000080000000 = 0x0000000400000001 ++s8addl1 0x8000000000000000 = 0x0000000000000001 ++s8addl1 0xFFFFFFFF80000000 = 0xFFFFFFFC00000001 ++s8addl1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0001 ++s8addl1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC01 ++s8addl1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s8addl1 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F781 ++s8addl1 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A091 ++=== Running test on s8addl2 === ++s8addl2 0x0000000000000000 = 0x0000000000000002 ++s8addl2 0x0000000000000001 = 0x000000000000000A ++s8addl2 0x0000000000000002 = 0x0000000000000012 ++s8addl2 0x0000000000000003 = 0x000000000000001A ++s8addl2 0x000000000000000F = 0x000000000000007A ++s8addl2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFA ++s8addl2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF2 ++s8addl2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFEA ++s8addl2 0x000000000000007F = 0x00000000000003FA ++s8addl2 0x0000000000000080 = 0x0000000000000402 ++s8addl2 0x0000000000007FFF = 0x000000000003FFFA ++s8addl2 0x0000000000008000 = 0x0000000000040002 ++s8addl2 0x000000007FFFFFFF = 0x00000003FFFFFFFA ++s8addl2 0x0000000080000000 = 0x0000000400000002 ++s8addl2 0x8000000000000000 = 0x0000000000000002 ++s8addl2 0xFFFFFFFF80000000 = 0xFFFFFFFC00000002 ++s8addl2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0002 ++s8addl2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC02 ++s8addl2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFA ++s8addl2 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F782 ++s8addl2 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A092 ++=== Running test on s8addl3 === ++s8addl3 0x0000000000000000 = 0x0000000000000003 ++s8addl3 0x0000000000000001 = 0x000000000000000B ++s8addl3 0x0000000000000002 = 0x0000000000000013 ++s8addl3 0x0000000000000003 = 0x000000000000001B ++s8addl3 0x000000000000000F = 0x000000000000007B ++s8addl3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s8addl3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF3 ++s8addl3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFEB ++s8addl3 0x000000000000007F = 0x00000000000003FB ++s8addl3 0x0000000000000080 = 0x0000000000000403 ++s8addl3 0x0000000000007FFF = 0x000000000003FFFB ++s8addl3 0x0000000000008000 = 0x0000000000040003 ++s8addl3 0x000000007FFFFFFF = 0x00000003FFFFFFFB ++s8addl3 0x0000000080000000 = 0x0000000400000003 ++s8addl3 0x8000000000000000 = 0x0000000000000003 ++s8addl3 0xFFFFFFFF80000000 = 0xFFFFFFFC00000003 ++s8addl3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0003 ++s8addl3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC03 ++s8addl3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s8addl3 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F783 ++s8addl3 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A093 ++=== Running test on s8addl15 === ++s8addl15 0x0000000000000000 = 0x000000000000000F ++s8addl15 0x0000000000000001 = 0x0000000000000017 ++s8addl15 0x0000000000000002 = 0x000000000000001F ++s8addl15 0x0000000000000003 = 0x0000000000000027 ++s8addl15 0x000000000000000F = 0x0000000000000087 ++s8addl15 0xFFFFFFFFFFFFFFFF = 0x0000000000000007 ++s8addl15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++s8addl15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF7 ++s8addl15 0x000000000000007F = 0x0000000000000407 ++s8addl15 0x0000000000000080 = 0x000000000000040F ++s8addl15 0x0000000000007FFF = 0x0000000000040007 ++s8addl15 0x0000000000008000 = 0x000000000004000F ++s8addl15 0x000000007FFFFFFF = 0x0000000400000007 ++s8addl15 0x0000000080000000 = 0x000000040000000F ++s8addl15 0x8000000000000000 = 0x000000000000000F ++s8addl15 0xFFFFFFFF80000000 = 0xFFFFFFFC0000000F ++s8addl15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC000F ++s8addl15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC0F ++s8addl15 0x7FFFFFFFFFFFFFFF = 0x0000000000000007 ++s8addl15 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F78F ++s8addl15 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A09F ++=== Running test on s8addl127 === ++s8addl127 0x0000000000000000 = 0x000000000000007F ++s8addl127 0x0000000000000001 = 0x0000000000000087 ++s8addl127 0x0000000000000002 = 0x000000000000008F ++s8addl127 0x0000000000000003 = 0x0000000000000097 ++s8addl127 0x000000000000000F = 0x00000000000000F7 ++s8addl127 0xFFFFFFFFFFFFFFFF = 0x0000000000000077 ++s8addl127 0xFFFFFFFFFFFFFFFE = 0x000000000000006F ++s8addl127 0xFFFFFFFFFFFFFFFD = 0x0000000000000067 ++s8addl127 0x000000000000007F = 0x0000000000000477 ++s8addl127 0x0000000000000080 = 0x000000000000047F ++s8addl127 0x0000000000007FFF = 0x0000000000040077 ++s8addl127 0x0000000000008000 = 0x000000000004007F ++s8addl127 0x000000007FFFFFFF = 0x0000000400000077 ++s8addl127 0x0000000080000000 = 0x000000040000007F ++s8addl127 0x8000000000000000 = 0x000000000000007F ++s8addl127 0xFFFFFFFF80000000 = 0xFFFFFFFC0000007F ++s8addl127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC007F ++s8addl127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC7F ++s8addl127 0x7FFFFFFFFFFFFFFF = 0x0000000000000077 ++s8addl127 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F7FF ++s8addl127 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A10F ++=== Running test on s8addl128 === ++s8addl128 0x0000000000000000 = 0x0000000000000080 ++s8addl128 0x0000000000000001 = 0x0000000000000088 ++s8addl128 0x0000000000000002 = 0x0000000000000090 ++s8addl128 0x0000000000000003 = 0x0000000000000098 ++s8addl128 0x000000000000000F = 0x00000000000000F8 ++s8addl128 0xFFFFFFFFFFFFFFFF = 0x0000000000000078 ++s8addl128 0xFFFFFFFFFFFFFFFE = 0x0000000000000070 ++s8addl128 0xFFFFFFFFFFFFFFFD = 0x0000000000000068 ++s8addl128 0x000000000000007F = 0x0000000000000478 ++s8addl128 0x0000000000000080 = 0x0000000000000480 ++s8addl128 0x0000000000007FFF = 0x0000000000040078 ++s8addl128 0x0000000000008000 = 0x0000000000040080 ++s8addl128 0x000000007FFFFFFF = 0x0000000400000078 ++s8addl128 0x0000000080000000 = 0x0000000400000080 ++s8addl128 0x8000000000000000 = 0x0000000000000080 ++s8addl128 0xFFFFFFFF80000000 = 0xFFFFFFFC00000080 ++s8addl128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0080 ++s8addl128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC80 ++s8addl128 0x7FFFFFFFFFFFFFFF = 0x0000000000000078 ++s8addl128 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F800 ++s8addl128 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A110 ++=== Running test on s8addl255 === ++s8addl255 0x0000000000000000 = 0x00000000000000FF ++s8addl255 0x0000000000000001 = 0x0000000000000107 ++s8addl255 0x0000000000000002 = 0x000000000000010F ++s8addl255 0x0000000000000003 = 0x0000000000000117 ++s8addl255 0x000000000000000F = 0x0000000000000177 ++s8addl255 0xFFFFFFFFFFFFFFFF = 0x00000000000000F7 ++s8addl255 0xFFFFFFFFFFFFFFFE = 0x00000000000000EF ++s8addl255 0xFFFFFFFFFFFFFFFD = 0x00000000000000E7 ++s8addl255 0x000000000000007F = 0x00000000000004F7 ++s8addl255 0x0000000000000080 = 0x00000000000004FF ++s8addl255 0x0000000000007FFF = 0x00000000000400F7 ++s8addl255 0x0000000000008000 = 0x00000000000400FF ++s8addl255 0x000000007FFFFFFF = 0x00000004000000F7 ++s8addl255 0x0000000080000000 = 0x00000004000000FF ++s8addl255 0x8000000000000000 = 0x00000000000000FF ++s8addl255 0xFFFFFFFF80000000 = 0xFFFFFFFC000000FF ++s8addl255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC00FF ++s8addl255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFCFF ++s8addl255 0x7FFFFFFFFFFFFFFF = 0x00000000000000F7 ++s8addl255 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F87F ++s8addl255 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A18F ++=== Running test on s8subl0 === ++s8subl0 0x0000000000000000 = 0x0000000000000000 ++s8subl0 0x0000000000000001 = 0x0000000000000008 ++s8subl0 0x0000000000000002 = 0x0000000000000010 ++s8subl0 0x0000000000000003 = 0x0000000000000018 ++s8subl0 0x000000000000000F = 0x0000000000000078 ++s8subl0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF8 ++s8subl0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF0 ++s8subl0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE8 ++s8subl0 0x000000000000007F = 0x00000000000003F8 ++s8subl0 0x0000000000000080 = 0x0000000000000400 ++s8subl0 0x0000000000007FFF = 0x000000000003FFF8 ++s8subl0 0x0000000000008000 = 0x0000000000040000 ++s8subl0 0x000000007FFFFFFF = 0x00000003FFFFFFF8 ++s8subl0 0x0000000080000000 = 0x0000000400000000 ++s8subl0 0x8000000000000000 = 0x0000000000000000 ++s8subl0 0xFFFFFFFF80000000 = 0xFFFFFFFC00000000 ++s8subl0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0000 ++s8subl0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC00 ++s8subl0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF8 ++s8subl0 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F780 ++s8subl0 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A090 ++=== Running test on s8subl1 === ++s8subl1 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++s8subl1 0x0000000000000001 = 0x0000000000000007 ++s8subl1 0x0000000000000002 = 0x000000000000000F ++s8subl1 0x0000000000000003 = 0x0000000000000017 ++s8subl1 0x000000000000000F = 0x0000000000000077 ++s8subl1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s8subl1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFEF ++s8subl1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE7 ++s8subl1 0x000000000000007F = 0x00000000000003F7 ++s8subl1 0x0000000000000080 = 0x00000000000003FF ++s8subl1 0x0000000000007FFF = 0x000000000003FFF7 ++s8subl1 0x0000000000008000 = 0x000000000003FFFF ++s8subl1 0x000000007FFFFFFF = 0x00000003FFFFFFF7 ++s8subl1 0x0000000080000000 = 0x00000003FFFFFFFF ++s8subl1 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++s8subl1 0xFFFFFFFF80000000 = 0xFFFFFFFBFFFFFFFF ++s8subl1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFBFFFF ++s8subl1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFBFF ++s8subl1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s8subl1 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F77F ++s8subl1 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A08F ++=== Running test on s8subl2 === ++s8subl2 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++s8subl2 0x0000000000000001 = 0x0000000000000006 ++s8subl2 0x0000000000000002 = 0x000000000000000E ++s8subl2 0x0000000000000003 = 0x0000000000000016 ++s8subl2 0x000000000000000F = 0x0000000000000076 ++s8subl2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF6 ++s8subl2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFEE ++s8subl2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE6 ++s8subl2 0x000000000000007F = 0x00000000000003F6 ++s8subl2 0x0000000000000080 = 0x00000000000003FE ++s8subl2 0x0000000000007FFF = 0x000000000003FFF6 ++s8subl2 0x0000000000008000 = 0x000000000003FFFE ++s8subl2 0x000000007FFFFFFF = 0x00000003FFFFFFF6 ++s8subl2 0x0000000080000000 = 0x00000003FFFFFFFE ++s8subl2 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++s8subl2 0xFFFFFFFF80000000 = 0xFFFFFFFBFFFFFFFE ++s8subl2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFBFFFE ++s8subl2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFBFE ++s8subl2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF6 ++s8subl2 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F77E ++s8subl2 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A08E ++=== Running test on s8subl3 === ++s8subl3 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++s8subl3 0x0000000000000001 = 0x0000000000000005 ++s8subl3 0x0000000000000002 = 0x000000000000000D ++s8subl3 0x0000000000000003 = 0x0000000000000015 ++s8subl3 0x000000000000000F = 0x0000000000000075 ++s8subl3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF5 ++s8subl3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFED ++s8subl3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE5 ++s8subl3 0x000000000000007F = 0x00000000000003F5 ++s8subl3 0x0000000000000080 = 0x00000000000003FD ++s8subl3 0x0000000000007FFF = 0x000000000003FFF5 ++s8subl3 0x0000000000008000 = 0x000000000003FFFD ++s8subl3 0x000000007FFFFFFF = 0x00000003FFFFFFF5 ++s8subl3 0x0000000080000000 = 0x00000003FFFFFFFD ++s8subl3 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++s8subl3 0xFFFFFFFF80000000 = 0xFFFFFFFBFFFFFFFD ++s8subl3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFBFFFD ++s8subl3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFBFD ++s8subl3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF5 ++s8subl3 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F77D ++s8subl3 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A08D ++=== Running test on s8subl15 === ++s8subl15 0x0000000000000000 = 0xFFFFFFFFFFFFFFF1 ++s8subl15 0x0000000000000001 = 0xFFFFFFFFFFFFFFF9 ++s8subl15 0x0000000000000002 = 0x0000000000000001 ++s8subl15 0x0000000000000003 = 0x0000000000000009 ++s8subl15 0x000000000000000F = 0x0000000000000069 ++s8subl15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFE9 ++s8subl15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFE1 ++s8subl15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFD9 ++s8subl15 0x000000000000007F = 0x00000000000003E9 ++s8subl15 0x0000000000000080 = 0x00000000000003F1 ++s8subl15 0x0000000000007FFF = 0x000000000003FFE9 ++s8subl15 0x0000000000008000 = 0x000000000003FFF1 ++s8subl15 0x000000007FFFFFFF = 0x00000003FFFFFFE9 ++s8subl15 0x0000000080000000 = 0x00000003FFFFFFF1 ++s8subl15 0x8000000000000000 = 0xFFFFFFFFFFFFFFF1 ++s8subl15 0xFFFFFFFF80000000 = 0xFFFFFFFBFFFFFFF1 ++s8subl15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFBFFF1 ++s8subl15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFBF1 ++s8subl15 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFE9 ++s8subl15 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F771 ++s8subl15 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A081 ++=== Running test on s8subl127 === ++s8subl127 0x0000000000000000 = 0xFFFFFFFFFFFFFF81 ++s8subl127 0x0000000000000001 = 0xFFFFFFFFFFFFFF89 ++s8subl127 0x0000000000000002 = 0xFFFFFFFFFFFFFF91 ++s8subl127 0x0000000000000003 = 0xFFFFFFFFFFFFFF99 ++s8subl127 0x000000000000000F = 0xFFFFFFFFFFFFFFF9 ++s8subl127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF79 ++s8subl127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF71 ++s8subl127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF69 ++s8subl127 0x000000000000007F = 0x0000000000000379 ++s8subl127 0x0000000000000080 = 0x0000000000000381 ++s8subl127 0x0000000000007FFF = 0x000000000003FF79 ++s8subl127 0x0000000000008000 = 0x000000000003FF81 ++s8subl127 0x000000007FFFFFFF = 0x00000003FFFFFF79 ++s8subl127 0x0000000080000000 = 0x00000003FFFFFF81 ++s8subl127 0x8000000000000000 = 0xFFFFFFFFFFFFFF81 ++s8subl127 0xFFFFFFFF80000000 = 0xFFFFFFFBFFFFFF81 ++s8subl127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFBFF81 ++s8subl127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFB81 ++s8subl127 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF79 ++s8subl127 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F701 ++s8subl127 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A011 ++=== Running test on s8subl128 === ++s8subl128 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++s8subl128 0x0000000000000001 = 0xFFFFFFFFFFFFFF88 ++s8subl128 0x0000000000000002 = 0xFFFFFFFFFFFFFF90 ++s8subl128 0x0000000000000003 = 0xFFFFFFFFFFFFFF98 ++s8subl128 0x000000000000000F = 0xFFFFFFFFFFFFFFF8 ++s8subl128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF78 ++s8subl128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF70 ++s8subl128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF68 ++s8subl128 0x000000000000007F = 0x0000000000000378 ++s8subl128 0x0000000000000080 = 0x0000000000000380 ++s8subl128 0x0000000000007FFF = 0x000000000003FF78 ++s8subl128 0x0000000000008000 = 0x000000000003FF80 ++s8subl128 0x000000007FFFFFFF = 0x00000003FFFFFF78 ++s8subl128 0x0000000080000000 = 0x00000003FFFFFF80 ++s8subl128 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++s8subl128 0xFFFFFFFF80000000 = 0xFFFFFFFBFFFFFF80 ++s8subl128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFBFF80 ++s8subl128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFB80 ++s8subl128 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF78 ++s8subl128 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F700 ++s8subl128 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A010 ++=== Running test on s8subl255 === ++s8subl255 0x0000000000000000 = 0xFFFFFFFFFFFFFF01 ++s8subl255 0x0000000000000001 = 0xFFFFFFFFFFFFFF09 ++s8subl255 0x0000000000000002 = 0xFFFFFFFFFFFFFF11 ++s8subl255 0x0000000000000003 = 0xFFFFFFFFFFFFFF19 ++s8subl255 0x000000000000000F = 0xFFFFFFFFFFFFFF79 ++s8subl255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFEF9 ++s8subl255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFEF1 ++s8subl255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFEE9 ++s8subl255 0x000000000000007F = 0x00000000000002F9 ++s8subl255 0x0000000000000080 = 0x0000000000000301 ++s8subl255 0x0000000000007FFF = 0x000000000003FEF9 ++s8subl255 0x0000000000008000 = 0x000000000003FF01 ++s8subl255 0x000000007FFFFFFF = 0x00000003FFFFFEF9 ++s8subl255 0x0000000080000000 = 0x00000003FFFFFF01 ++s8subl255 0x8000000000000000 = 0xFFFFFFFFFFFFFF01 ++s8subl255 0xFFFFFFFF80000000 = 0xFFFFFFFBFFFFFF01 ++s8subl255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFBFF01 ++s8subl255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFB01 ++s8subl255 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFEF9 ++s8subl255 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F681 ++s8subl255 0xF0DEBC9A78563412 = 0x86F5E4D3C2B19F91 ++=== Running test on mulw0 === ++mulw0 0x0000000000000000 = 0x0000000000000000 ++mulw0 0x0000000000000001 = 0x0000000000000000 ++mulw0 0x0000000000000002 = 0x0000000000000000 ++mulw0 0x0000000000000003 = 0x0000000000000000 ++mulw0 0x000000000000000F = 0x0000000000000000 ++mulw0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++mulw0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++mulw0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++mulw0 0x000000000000007F = 0x0000000000000000 ++mulw0 0x0000000000000080 = 0x0000000000000000 ++mulw0 0x0000000000007FFF = 0x0000000000000000 ++mulw0 0x0000000000008000 = 0x0000000000000000 ++mulw0 0x000000007FFFFFFF = 0x0000000000000000 ++mulw0 0x0000000080000000 = 0x0000000000000000 ++mulw0 0x8000000000000000 = 0x0000000000000000 ++mulw0 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++mulw0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++mulw0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++mulw0 0x123456789ABCDEF0 = 0x0000000000000000 ++mulw0 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on mulw1 === ++mulw1 0x0000000000000000 = 0x0000000000000000 ++mulw1 0x0000000000000001 = 0x0000000000000001 ++mulw1 0x0000000000000002 = 0x0000000000000002 ++mulw1 0x0000000000000003 = 0x0000000000000003 ++mulw1 0x000000000000000F = 0x000000000000000F ++mulw1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++mulw1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++mulw1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++mulw1 0x000000000000007F = 0x000000000000007F ++mulw1 0x0000000000000080 = 0x0000000000000080 ++mulw1 0x0000000000007FFF = 0x0000000000007FFF ++mulw1 0x0000000000008000 = 0x0000000000008000 ++mulw1 0x000000007FFFFFFF = 0x000000007FFFFFFF ++mulw1 0x0000000080000000 = 0xFFFFFFFF80000000 ++mulw1 0x8000000000000000 = 0x0000000000000000 ++mulw1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mulw1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++mulw1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++mulw1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++mulw1 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++mulw1 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on mulw2 === ++mulw2 0x0000000000000000 = 0x0000000000000000 ++mulw2 0x0000000000000001 = 0x0000000000000002 ++mulw2 0x0000000000000002 = 0x0000000000000004 ++mulw2 0x0000000000000003 = 0x0000000000000006 ++mulw2 0x000000000000000F = 0x000000000000001E ++mulw2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++mulw2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++mulw2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFA ++mulw2 0x000000000000007F = 0x00000000000000FE ++mulw2 0x0000000000000080 = 0x0000000000000100 ++mulw2 0x0000000000007FFF = 0x000000000000FFFE ++mulw2 0x0000000000008000 = 0x0000000000010000 ++mulw2 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++mulw2 0x0000000080000000 = 0x0000000000000000 ++mulw2 0x8000000000000000 = 0x0000000000000000 ++mulw2 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++mulw2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++mulw2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++mulw2 0x123456789ABCDEF0 = 0x000000003579BDE0 ++mulw2 0xF0DEBC9A78563412 = 0xFFFFFFFFF0AC6824 ++=== Running test on mulw3 === ++mulw3 0x0000000000000000 = 0x0000000000000000 ++mulw3 0x0000000000000001 = 0x0000000000000003 ++mulw3 0x0000000000000002 = 0x0000000000000006 ++mulw3 0x0000000000000003 = 0x0000000000000009 ++mulw3 0x000000000000000F = 0x000000000000002D ++mulw3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++mulw3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++mulw3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF7 ++mulw3 0x000000000000007F = 0x000000000000017D ++mulw3 0x0000000000000080 = 0x0000000000000180 ++mulw3 0x0000000000007FFF = 0x0000000000017FFD ++mulw3 0x0000000000008000 = 0x0000000000018000 ++mulw3 0x000000007FFFFFFF = 0x000000007FFFFFFD ++mulw3 0x0000000080000000 = 0xFFFFFFFF80000000 ++mulw3 0x8000000000000000 = 0x0000000000000000 ++mulw3 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mulw3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE8000 ++mulw3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE80 ++mulw3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++mulw3 0x123456789ABCDEF0 = 0xFFFFFFFFD0369CD0 ++mulw3 0xF0DEBC9A78563412 = 0x0000000069029C36 ++=== Running test on mulw15 === ++mulw15 0x0000000000000000 = 0x0000000000000000 ++mulw15 0x0000000000000001 = 0x000000000000000F ++mulw15 0x0000000000000002 = 0x000000000000001E ++mulw15 0x0000000000000003 = 0x000000000000002D ++mulw15 0x000000000000000F = 0x00000000000000E1 ++mulw15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF1 ++mulw15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFE2 ++mulw15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFD3 ++mulw15 0x000000000000007F = 0x0000000000000771 ++mulw15 0x0000000000000080 = 0x0000000000000780 ++mulw15 0x0000000000007FFF = 0x0000000000077FF1 ++mulw15 0x0000000000008000 = 0x0000000000078000 ++mulw15 0x000000007FFFFFFF = 0x000000007FFFFFF1 ++mulw15 0x0000000080000000 = 0xFFFFFFFF80000000 ++mulw15 0x8000000000000000 = 0x0000000000000000 ++mulw15 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mulw15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFF88000 ++mulw15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFF880 ++mulw15 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF1 ++mulw15 0x123456789ABCDEF0 = 0x0000000011111010 ++mulw15 0xF0DEBC9A78563412 = 0x000000000D0D0D0E ++=== Running test on mulw127 === ++mulw127 0x0000000000000000 = 0x0000000000000000 ++mulw127 0x0000000000000001 = 0x000000000000007F ++mulw127 0x0000000000000002 = 0x00000000000000FE ++mulw127 0x0000000000000003 = 0x000000000000017D ++mulw127 0x000000000000000F = 0x0000000000000771 ++mulw127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF81 ++mulw127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF02 ++mulw127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFE83 ++mulw127 0x000000000000007F = 0x0000000000003F01 ++mulw127 0x0000000000000080 = 0x0000000000003F80 ++mulw127 0x0000000000007FFF = 0x00000000003F7F81 ++mulw127 0x0000000000008000 = 0x00000000003F8000 ++mulw127 0x000000007FFFFFFF = 0x000000007FFFFF81 ++mulw127 0x0000000080000000 = 0xFFFFFFFF80000000 ++mulw127 0x8000000000000000 = 0x0000000000000000 ++mulw127 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mulw127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFC08000 ++mulw127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFC080 ++mulw127 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF81 ++mulw127 0x123456789ABCDEF0 = 0xFFFFFFFFC3B29910 ++mulw127 0xF0DEBC9A78563412 = 0xFFFFFFFFB2C3D4EE ++=== Running test on mulw128 === ++mulw128 0x0000000000000000 = 0x0000000000000000 ++mulw128 0x0000000000000001 = 0x0000000000000080 ++mulw128 0x0000000000000002 = 0x0000000000000100 ++mulw128 0x0000000000000003 = 0x0000000000000180 ++mulw128 0x000000000000000F = 0x0000000000000780 ++mulw128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++mulw128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++mulw128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFE80 ++mulw128 0x000000000000007F = 0x0000000000003F80 ++mulw128 0x0000000000000080 = 0x0000000000004000 ++mulw128 0x0000000000007FFF = 0x00000000003FFF80 ++mulw128 0x0000000000008000 = 0x0000000000400000 ++mulw128 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF80 ++mulw128 0x0000000080000000 = 0x0000000000000000 ++mulw128 0x8000000000000000 = 0x0000000000000000 ++mulw128 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFC00000 ++mulw128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFC000 ++mulw128 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++mulw128 0x123456789ABCDEF0 = 0x000000005E6F7800 ++mulw128 0xF0DEBC9A78563412 = 0x000000002B1A0900 ++=== Running test on mulw255 === ++mulw255 0x0000000000000000 = 0x0000000000000000 ++mulw255 0x0000000000000001 = 0x00000000000000FF ++mulw255 0x0000000000000002 = 0x00000000000001FE ++mulw255 0x0000000000000003 = 0x00000000000002FD ++mulw255 0x000000000000000F = 0x0000000000000EF1 ++mulw255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF01 ++mulw255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFE02 ++mulw255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFD03 ++mulw255 0x000000000000007F = 0x0000000000007E81 ++mulw255 0x0000000000000080 = 0x0000000000007F80 ++mulw255 0x0000000000007FFF = 0x00000000007F7F01 ++mulw255 0x0000000000008000 = 0x00000000007F8000 ++mulw255 0x000000007FFFFFFF = 0x000000007FFFFF01 ++mulw255 0x0000000080000000 = 0xFFFFFFFF80000000 ++mulw255 0x8000000000000000 = 0x0000000000000000 ++mulw255 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mulw255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFF808000 ++mulw255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8080 ++mulw255 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF01 ++mulw255 0x123456789ABCDEF0 = 0x0000000022221110 ++mulw255 0xF0DEBC9A78563412 = 0xFFFFFFFFDDDDDDEE ++=== Running test on mull0 === ++mull0 0x0000000000000000 = 0x0000000000000000 ++mull0 0x0000000000000001 = 0x0000000000000000 ++mull0 0x0000000000000002 = 0x0000000000000000 ++mull0 0x0000000000000003 = 0x0000000000000000 ++mull0 0x000000000000000F = 0x0000000000000000 ++mull0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++mull0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++mull0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++mull0 0x000000000000007F = 0x0000000000000000 ++mull0 0x0000000000000080 = 0x0000000000000000 ++mull0 0x0000000000007FFF = 0x0000000000000000 ++mull0 0x0000000000008000 = 0x0000000000000000 ++mull0 0x000000007FFFFFFF = 0x0000000000000000 ++mull0 0x0000000080000000 = 0x0000000000000000 ++mull0 0x8000000000000000 = 0x0000000000000000 ++mull0 0xFFFFFFFF80000000 = 0x0000000000000000 ++mull0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++mull0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++mull0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++mull0 0x123456789ABCDEF0 = 0x0000000000000000 ++mull0 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on mull1 === ++mull1 0x0000000000000000 = 0x0000000000000000 ++mull1 0x0000000000000001 = 0x0000000000000001 ++mull1 0x0000000000000002 = 0x0000000000000002 ++mull1 0x0000000000000003 = 0x0000000000000003 ++mull1 0x000000000000000F = 0x000000000000000F ++mull1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++mull1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++mull1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++mull1 0x000000000000007F = 0x000000000000007F ++mull1 0x0000000000000080 = 0x0000000000000080 ++mull1 0x0000000000007FFF = 0x0000000000007FFF ++mull1 0x0000000000008000 = 0x0000000000008000 ++mull1 0x000000007FFFFFFF = 0x000000007FFFFFFF ++mull1 0x0000000080000000 = 0x0000000080000000 ++mull1 0x8000000000000000 = 0x8000000000000000 ++mull1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mull1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++mull1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++mull1 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++mull1 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++mull1 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on mull2 === ++mull2 0x0000000000000000 = 0x0000000000000000 ++mull2 0x0000000000000001 = 0x0000000000000002 ++mull2 0x0000000000000002 = 0x0000000000000004 ++mull2 0x0000000000000003 = 0x0000000000000006 ++mull2 0x000000000000000F = 0x000000000000001E ++mull2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++mull2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++mull2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFA ++mull2 0x000000000000007F = 0x00000000000000FE ++mull2 0x0000000000000080 = 0x0000000000000100 ++mull2 0x0000000000007FFF = 0x000000000000FFFE ++mull2 0x0000000000008000 = 0x0000000000010000 ++mull2 0x000000007FFFFFFF = 0x00000000FFFFFFFE ++mull2 0x0000000080000000 = 0x0000000100000000 ++mull2 0x8000000000000000 = 0x0000000000000000 ++mull2 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++mull2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++mull2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++mull2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++mull2 0x123456789ABCDEF0 = 0x2468ACF13579BDE0 ++mull2 0xF0DEBC9A78563412 = 0xE1BD7934F0AC6824 ++=== Running test on mull3 === ++mull3 0x0000000000000000 = 0x0000000000000000 ++mull3 0x0000000000000001 = 0x0000000000000003 ++mull3 0x0000000000000002 = 0x0000000000000006 ++mull3 0x0000000000000003 = 0x0000000000000009 ++mull3 0x000000000000000F = 0x000000000000002D ++mull3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++mull3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++mull3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF7 ++mull3 0x000000000000007F = 0x000000000000017D ++mull3 0x0000000000000080 = 0x0000000000000180 ++mull3 0x0000000000007FFF = 0x0000000000017FFD ++mull3 0x0000000000008000 = 0x0000000000018000 ++mull3 0x000000007FFFFFFF = 0x000000017FFFFFFD ++mull3 0x0000000080000000 = 0x0000000180000000 ++mull3 0x8000000000000000 = 0x8000000000000000 ++mull3 0xFFFFFFFF80000000 = 0xFFFFFFFE80000000 ++mull3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE8000 ++mull3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE80 ++mull3 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++mull3 0x123456789ABCDEF0 = 0x369D0369D0369CD0 ++mull3 0xF0DEBC9A78563412 = 0xD29C35CF69029C36 ++=== Running test on mull15 === ++mull15 0x0000000000000000 = 0x0000000000000000 ++mull15 0x0000000000000001 = 0x000000000000000F ++mull15 0x0000000000000002 = 0x000000000000001E ++mull15 0x0000000000000003 = 0x000000000000002D ++mull15 0x000000000000000F = 0x00000000000000E1 ++mull15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF1 ++mull15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFE2 ++mull15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFD3 ++mull15 0x000000000000007F = 0x0000000000000771 ++mull15 0x0000000000000080 = 0x0000000000000780 ++mull15 0x0000000000007FFF = 0x0000000000077FF1 ++mull15 0x0000000000008000 = 0x0000000000078000 ++mull15 0x000000007FFFFFFF = 0x000000077FFFFFF1 ++mull15 0x0000000080000000 = 0x0000000780000000 ++mull15 0x8000000000000000 = 0x8000000000000000 ++mull15 0xFFFFFFFF80000000 = 0xFFFFFFF880000000 ++mull15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFF88000 ++mull15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFF880 ++mull15 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF1 ++mull15 0x123456789ABCDEF0 = 0x1111111111111010 ++mull15 0xF0DEBC9A78563412 = 0x1D0D0D0D0D0D0D0E ++=== Running test on mull127 === ++mull127 0x0000000000000000 = 0x0000000000000000 ++mull127 0x0000000000000001 = 0x000000000000007F ++mull127 0x0000000000000002 = 0x00000000000000FE ++mull127 0x0000000000000003 = 0x000000000000017D ++mull127 0x000000000000000F = 0x0000000000000771 ++mull127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF81 ++mull127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF02 ++mull127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFE83 ++mull127 0x000000000000007F = 0x0000000000003F01 ++mull127 0x0000000000000080 = 0x0000000000003F80 ++mull127 0x0000000000007FFF = 0x00000000003F7F81 ++mull127 0x0000000000008000 = 0x00000000003F8000 ++mull127 0x000000007FFFFFFF = 0x0000003F7FFFFF81 ++mull127 0x0000000080000000 = 0x0000003F80000000 ++mull127 0x8000000000000000 = 0x8000000000000000 ++mull127 0xFFFFFFFF80000000 = 0xFFFFFFC080000000 ++mull127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFC08000 ++mull127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFC080 ++mull127 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF81 ++mull127 0x123456789ABCDEF0 = 0x07F6E5D4C3B29910 ++mull127 0xF0DEBC9A78563412 = 0x7E7F90A1B2C3D4EE ++=== Running test on mull128 === ++mull128 0x0000000000000000 = 0x0000000000000000 ++mull128 0x0000000000000001 = 0x0000000000000080 ++mull128 0x0000000000000002 = 0x0000000000000100 ++mull128 0x0000000000000003 = 0x0000000000000180 ++mull128 0x000000000000000F = 0x0000000000000780 ++mull128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++mull128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++mull128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFE80 ++mull128 0x000000000000007F = 0x0000000000003F80 ++mull128 0x0000000000000080 = 0x0000000000004000 ++mull128 0x0000000000007FFF = 0x00000000003FFF80 ++mull128 0x0000000000008000 = 0x0000000000400000 ++mull128 0x000000007FFFFFFF = 0x0000003FFFFFFF80 ++mull128 0x0000000080000000 = 0x0000004000000000 ++mull128 0x8000000000000000 = 0x0000000000000000 ++mull128 0xFFFFFFFF80000000 = 0xFFFFFFC000000000 ++mull128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFC00000 ++mull128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFC000 ++mull128 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++mull128 0x123456789ABCDEF0 = 0x1A2B3C4D5E6F7800 ++mull128 0xF0DEBC9A78563412 = 0x6F5E4D3C2B1A0900 ++=== Running test on mull255 === ++mull255 0x0000000000000000 = 0x0000000000000000 ++mull255 0x0000000000000001 = 0x00000000000000FF ++mull255 0x0000000000000002 = 0x00000000000001FE ++mull255 0x0000000000000003 = 0x00000000000002FD ++mull255 0x000000000000000F = 0x0000000000000EF1 ++mull255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF01 ++mull255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFE02 ++mull255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFD03 ++mull255 0x000000000000007F = 0x0000000000007E81 ++mull255 0x0000000000000080 = 0x0000000000007F80 ++mull255 0x0000000000007FFF = 0x00000000007F7F01 ++mull255 0x0000000000008000 = 0x00000000007F8000 ++mull255 0x000000007FFFFFFF = 0x0000007F7FFFFF01 ++mull255 0x0000000080000000 = 0x0000007F80000000 ++mull255 0x8000000000000000 = 0x8000000000000000 ++mull255 0xFFFFFFFF80000000 = 0xFFFFFF8080000000 ++mull255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFF808000 ++mull255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8080 ++mull255 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF01 ++mull255 0x123456789ABCDEF0 = 0x2222222222221110 ++mull255 0xF0DEBC9A78563412 = 0xEDDDDDDDDDDDDDEE ++=== Running test on umulh0 === ++umulh0 0x0000000000000000 = 0x0000000000000000 ++umulh0 0x0000000000000001 = 0x0000000000000000 ++umulh0 0x0000000000000002 = 0x0000000000000000 ++umulh0 0x0000000000000003 = 0x0000000000000000 ++umulh0 0x000000000000000F = 0x0000000000000000 ++umulh0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++umulh0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++umulh0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++umulh0 0x000000000000007F = 0x0000000000000000 ++umulh0 0x0000000000000080 = 0x0000000000000000 ++umulh0 0x0000000000007FFF = 0x0000000000000000 ++umulh0 0x0000000000008000 = 0x0000000000000000 ++umulh0 0x000000007FFFFFFF = 0x0000000000000000 ++umulh0 0x0000000080000000 = 0x0000000000000000 ++umulh0 0x8000000000000000 = 0x0000000000000000 ++umulh0 0xFFFFFFFF80000000 = 0x0000000000000000 ++umulh0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++umulh0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++umulh0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++umulh0 0x123456789ABCDEF0 = 0x0000000000000000 ++umulh0 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on umulh1 === ++umulh1 0x0000000000000000 = 0x0000000000000000 ++umulh1 0x0000000000000001 = 0x0000000000000000 ++umulh1 0x0000000000000002 = 0x0000000000000000 ++umulh1 0x0000000000000003 = 0x0000000000000000 ++umulh1 0x000000000000000F = 0x0000000000000000 ++umulh1 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++umulh1 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++umulh1 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++umulh1 0x000000000000007F = 0x0000000000000000 ++umulh1 0x0000000000000080 = 0x0000000000000000 ++umulh1 0x0000000000007FFF = 0x0000000000000000 ++umulh1 0x0000000000008000 = 0x0000000000000000 ++umulh1 0x000000007FFFFFFF = 0x0000000000000000 ++umulh1 0x0000000080000000 = 0x0000000000000000 ++umulh1 0x8000000000000000 = 0x0000000000000000 ++umulh1 0xFFFFFFFF80000000 = 0x0000000000000000 ++umulh1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++umulh1 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++umulh1 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++umulh1 0x123456789ABCDEF0 = 0x0000000000000000 ++umulh1 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on umulh2 === ++umulh2 0x0000000000000000 = 0x0000000000000000 ++umulh2 0x0000000000000001 = 0x0000000000000000 ++umulh2 0x0000000000000002 = 0x0000000000000000 ++umulh2 0x0000000000000003 = 0x0000000000000000 ++umulh2 0x000000000000000F = 0x0000000000000000 ++umulh2 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++umulh2 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++umulh2 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++umulh2 0x000000000000007F = 0x0000000000000000 ++umulh2 0x0000000000000080 = 0x0000000000000000 ++umulh2 0x0000000000007FFF = 0x0000000000000000 ++umulh2 0x0000000000008000 = 0x0000000000000000 ++umulh2 0x000000007FFFFFFF = 0x0000000000000000 ++umulh2 0x0000000080000000 = 0x0000000000000000 ++umulh2 0x8000000000000000 = 0x0000000000000001 ++umulh2 0xFFFFFFFF80000000 = 0x0000000000000001 ++umulh2 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++umulh2 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++umulh2 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++umulh2 0x123456789ABCDEF0 = 0x0000000000000000 ++umulh2 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on umulh3 === ++umulh3 0x0000000000000000 = 0x0000000000000000 ++umulh3 0x0000000000000001 = 0x0000000000000000 ++umulh3 0x0000000000000002 = 0x0000000000000000 ++umulh3 0x0000000000000003 = 0x0000000000000000 ++umulh3 0x000000000000000F = 0x0000000000000000 ++umulh3 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++umulh3 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++umulh3 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++umulh3 0x000000000000007F = 0x0000000000000000 ++umulh3 0x0000000000000080 = 0x0000000000000000 ++umulh3 0x0000000000007FFF = 0x0000000000000000 ++umulh3 0x0000000000008000 = 0x0000000000000000 ++umulh3 0x000000007FFFFFFF = 0x0000000000000000 ++umulh3 0x0000000080000000 = 0x0000000000000000 ++umulh3 0x8000000000000000 = 0x0000000000000001 ++umulh3 0xFFFFFFFF80000000 = 0x0000000000000002 ++umulh3 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++umulh3 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++umulh3 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++umulh3 0x123456789ABCDEF0 = 0x0000000000000000 ++umulh3 0xF0DEBC9A78563412 = 0x0000000000000002 ++=== Running test on umulh15 === ++umulh15 0x0000000000000000 = 0x0000000000000000 ++umulh15 0x0000000000000001 = 0x0000000000000000 ++umulh15 0x0000000000000002 = 0x0000000000000000 ++umulh15 0x0000000000000003 = 0x0000000000000000 ++umulh15 0x000000000000000F = 0x0000000000000000 ++umulh15 0xFFFFFFFFFFFFFFFF = 0x000000000000000E ++umulh15 0xFFFFFFFFFFFFFFFE = 0x000000000000000E ++umulh15 0xFFFFFFFFFFFFFFFD = 0x000000000000000E ++umulh15 0x000000000000007F = 0x0000000000000000 ++umulh15 0x0000000000000080 = 0x0000000000000000 ++umulh15 0x0000000000007FFF = 0x0000000000000000 ++umulh15 0x0000000000008000 = 0x0000000000000000 ++umulh15 0x000000007FFFFFFF = 0x0000000000000000 ++umulh15 0x0000000080000000 = 0x0000000000000000 ++umulh15 0x8000000000000000 = 0x0000000000000007 ++umulh15 0xFFFFFFFF80000000 = 0x000000000000000E ++umulh15 0xFFFFFFFFFFFF8000 = 0x000000000000000E ++umulh15 0xFFFFFFFFFFFFFF80 = 0x000000000000000E ++umulh15 0x7FFFFFFFFFFFFFFF = 0x0000000000000007 ++umulh15 0x123456789ABCDEF0 = 0x0000000000000001 ++umulh15 0xF0DEBC9A78563412 = 0x000000000000000E ++=== Running test on umulh127 === ++umulh127 0x0000000000000000 = 0x0000000000000000 ++umulh127 0x0000000000000001 = 0x0000000000000000 ++umulh127 0x0000000000000002 = 0x0000000000000000 ++umulh127 0x0000000000000003 = 0x0000000000000000 ++umulh127 0x000000000000000F = 0x0000000000000000 ++umulh127 0xFFFFFFFFFFFFFFFF = 0x000000000000007E ++umulh127 0xFFFFFFFFFFFFFFFE = 0x000000000000007E ++umulh127 0xFFFFFFFFFFFFFFFD = 0x000000000000007E ++umulh127 0x000000000000007F = 0x0000000000000000 ++umulh127 0x0000000000000080 = 0x0000000000000000 ++umulh127 0x0000000000007FFF = 0x0000000000000000 ++umulh127 0x0000000000008000 = 0x0000000000000000 ++umulh127 0x000000007FFFFFFF = 0x0000000000000000 ++umulh127 0x0000000080000000 = 0x0000000000000000 ++umulh127 0x8000000000000000 = 0x000000000000003F ++umulh127 0xFFFFFFFF80000000 = 0x000000000000007E ++umulh127 0xFFFFFFFFFFFF8000 = 0x000000000000007E ++umulh127 0xFFFFFFFFFFFFFF80 = 0x000000000000007E ++umulh127 0x7FFFFFFFFFFFFFFF = 0x000000000000003F ++umulh127 0x123456789ABCDEF0 = 0x0000000000000009 ++umulh127 0xF0DEBC9A78563412 = 0x0000000000000077 ++=== Running test on umulh128 === ++umulh128 0x0000000000000000 = 0x0000000000000000 ++umulh128 0x0000000000000001 = 0x0000000000000000 ++umulh128 0x0000000000000002 = 0x0000000000000000 ++umulh128 0x0000000000000003 = 0x0000000000000000 ++umulh128 0x000000000000000F = 0x0000000000000000 ++umulh128 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++umulh128 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++umulh128 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++umulh128 0x000000000000007F = 0x0000000000000000 ++umulh128 0x0000000000000080 = 0x0000000000000000 ++umulh128 0x0000000000007FFF = 0x0000000000000000 ++umulh128 0x0000000000008000 = 0x0000000000000000 ++umulh128 0x000000007FFFFFFF = 0x0000000000000000 ++umulh128 0x0000000080000000 = 0x0000000000000000 ++umulh128 0x8000000000000000 = 0x0000000000000040 ++umulh128 0xFFFFFFFF80000000 = 0x000000000000007F ++umulh128 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++umulh128 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++umulh128 0x7FFFFFFFFFFFFFFF = 0x000000000000003F ++umulh128 0x123456789ABCDEF0 = 0x0000000000000009 ++umulh128 0xF0DEBC9A78563412 = 0x0000000000000078 ++=== Running test on umulh255 === ++umulh255 0x0000000000000000 = 0x0000000000000000 ++umulh255 0x0000000000000001 = 0x0000000000000000 ++umulh255 0x0000000000000002 = 0x0000000000000000 ++umulh255 0x0000000000000003 = 0x0000000000000000 ++umulh255 0x000000000000000F = 0x0000000000000000 ++umulh255 0xFFFFFFFFFFFFFFFF = 0x00000000000000FE ++umulh255 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++umulh255 0xFFFFFFFFFFFFFFFD = 0x00000000000000FE ++umulh255 0x000000000000007F = 0x0000000000000000 ++umulh255 0x0000000000000080 = 0x0000000000000000 ++umulh255 0x0000000000007FFF = 0x0000000000000000 ++umulh255 0x0000000000008000 = 0x0000000000000000 ++umulh255 0x000000007FFFFFFF = 0x0000000000000000 ++umulh255 0x0000000080000000 = 0x0000000000000000 ++umulh255 0x8000000000000000 = 0x000000000000007F ++umulh255 0xFFFFFFFF80000000 = 0x00000000000000FE ++umulh255 0xFFFFFFFFFFFF8000 = 0x00000000000000FE ++umulh255 0xFFFFFFFFFFFFFF80 = 0x00000000000000FE ++umulh255 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++umulh255 0x123456789ABCDEF0 = 0x0000000000000012 ++umulh255 0xF0DEBC9A78563412 = 0x00000000000000EF ++=== Running test on cmpeq0 === ++cmpeq0 0x0000000000000000 = 0x0000000000000001 ++cmpeq0 0x0000000000000001 = 0x0000000000000000 ++cmpeq0 0x0000000000000002 = 0x0000000000000000 ++cmpeq0 0x0000000000000003 = 0x0000000000000000 ++cmpeq0 0x000000000000000F = 0x0000000000000000 ++cmpeq0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq0 0x000000000000007F = 0x0000000000000000 ++cmpeq0 0x0000000000000080 = 0x0000000000000000 ++cmpeq0 0x0000000000007FFF = 0x0000000000000000 ++cmpeq0 0x0000000000008000 = 0x0000000000000000 ++cmpeq0 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq0 0x0000000080000000 = 0x0000000000000000 ++cmpeq0 0x8000000000000000 = 0x0000000000000000 ++cmpeq0 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq0 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq0 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpeq1 === ++cmpeq1 0x0000000000000000 = 0x0000000000000000 ++cmpeq1 0x0000000000000001 = 0x0000000000000001 ++cmpeq1 0x0000000000000002 = 0x0000000000000000 ++cmpeq1 0x0000000000000003 = 0x0000000000000000 ++cmpeq1 0x000000000000000F = 0x0000000000000000 ++cmpeq1 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq1 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq1 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq1 0x000000000000007F = 0x0000000000000000 ++cmpeq1 0x0000000000000080 = 0x0000000000000000 ++cmpeq1 0x0000000000007FFF = 0x0000000000000000 ++cmpeq1 0x0000000000008000 = 0x0000000000000000 ++cmpeq1 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq1 0x0000000080000000 = 0x0000000000000000 ++cmpeq1 0x8000000000000000 = 0x0000000000000000 ++cmpeq1 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq1 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq1 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq1 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq1 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpeq2 === ++cmpeq2 0x0000000000000000 = 0x0000000000000000 ++cmpeq2 0x0000000000000001 = 0x0000000000000000 ++cmpeq2 0x0000000000000002 = 0x0000000000000001 ++cmpeq2 0x0000000000000003 = 0x0000000000000000 ++cmpeq2 0x000000000000000F = 0x0000000000000000 ++cmpeq2 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq2 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq2 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq2 0x000000000000007F = 0x0000000000000000 ++cmpeq2 0x0000000000000080 = 0x0000000000000000 ++cmpeq2 0x0000000000007FFF = 0x0000000000000000 ++cmpeq2 0x0000000000008000 = 0x0000000000000000 ++cmpeq2 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq2 0x0000000080000000 = 0x0000000000000000 ++cmpeq2 0x8000000000000000 = 0x0000000000000000 ++cmpeq2 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq2 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq2 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq2 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq2 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq2 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpeq3 === ++cmpeq3 0x0000000000000000 = 0x0000000000000000 ++cmpeq3 0x0000000000000001 = 0x0000000000000000 ++cmpeq3 0x0000000000000002 = 0x0000000000000000 ++cmpeq3 0x0000000000000003 = 0x0000000000000001 ++cmpeq3 0x000000000000000F = 0x0000000000000000 ++cmpeq3 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq3 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq3 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq3 0x000000000000007F = 0x0000000000000000 ++cmpeq3 0x0000000000000080 = 0x0000000000000000 ++cmpeq3 0x0000000000007FFF = 0x0000000000000000 ++cmpeq3 0x0000000000008000 = 0x0000000000000000 ++cmpeq3 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq3 0x0000000080000000 = 0x0000000000000000 ++cmpeq3 0x8000000000000000 = 0x0000000000000000 ++cmpeq3 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq3 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq3 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq3 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq3 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq3 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpeq15 === ++cmpeq15 0x0000000000000000 = 0x0000000000000000 ++cmpeq15 0x0000000000000001 = 0x0000000000000000 ++cmpeq15 0x0000000000000002 = 0x0000000000000000 ++cmpeq15 0x0000000000000003 = 0x0000000000000000 ++cmpeq15 0x000000000000000F = 0x0000000000000001 ++cmpeq15 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq15 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq15 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq15 0x000000000000007F = 0x0000000000000000 ++cmpeq15 0x0000000000000080 = 0x0000000000000000 ++cmpeq15 0x0000000000007FFF = 0x0000000000000000 ++cmpeq15 0x0000000000008000 = 0x0000000000000000 ++cmpeq15 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq15 0x0000000080000000 = 0x0000000000000000 ++cmpeq15 0x8000000000000000 = 0x0000000000000000 ++cmpeq15 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq15 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq15 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq15 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq15 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq15 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpeq127 === ++cmpeq127 0x0000000000000000 = 0x0000000000000000 ++cmpeq127 0x0000000000000001 = 0x0000000000000000 ++cmpeq127 0x0000000000000002 = 0x0000000000000000 ++cmpeq127 0x0000000000000003 = 0x0000000000000000 ++cmpeq127 0x000000000000000F = 0x0000000000000000 ++cmpeq127 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq127 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq127 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq127 0x000000000000007F = 0x0000000000000001 ++cmpeq127 0x0000000000000080 = 0x0000000000000000 ++cmpeq127 0x0000000000007FFF = 0x0000000000000000 ++cmpeq127 0x0000000000008000 = 0x0000000000000000 ++cmpeq127 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq127 0x0000000080000000 = 0x0000000000000000 ++cmpeq127 0x8000000000000000 = 0x0000000000000000 ++cmpeq127 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq127 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq127 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq127 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq127 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq127 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpeq128 === ++cmpeq128 0x0000000000000000 = 0x0000000000000000 ++cmpeq128 0x0000000000000001 = 0x0000000000000000 ++cmpeq128 0x0000000000000002 = 0x0000000000000000 ++cmpeq128 0x0000000000000003 = 0x0000000000000000 ++cmpeq128 0x000000000000000F = 0x0000000000000000 ++cmpeq128 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq128 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq128 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq128 0x000000000000007F = 0x0000000000000000 ++cmpeq128 0x0000000000000080 = 0x0000000000000001 ++cmpeq128 0x0000000000007FFF = 0x0000000000000000 ++cmpeq128 0x0000000000008000 = 0x0000000000000000 ++cmpeq128 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq128 0x0000000080000000 = 0x0000000000000000 ++cmpeq128 0x8000000000000000 = 0x0000000000000000 ++cmpeq128 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq128 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq128 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq128 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq128 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq128 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpeq255 === ++cmpeq255 0x0000000000000000 = 0x0000000000000000 ++cmpeq255 0x0000000000000001 = 0x0000000000000000 ++cmpeq255 0x0000000000000002 = 0x0000000000000000 ++cmpeq255 0x0000000000000003 = 0x0000000000000000 ++cmpeq255 0x000000000000000F = 0x0000000000000000 ++cmpeq255 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq255 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq255 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq255 0x000000000000007F = 0x0000000000000000 ++cmpeq255 0x0000000000000080 = 0x0000000000000000 ++cmpeq255 0x0000000000007FFF = 0x0000000000000000 ++cmpeq255 0x0000000000008000 = 0x0000000000000000 ++cmpeq255 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq255 0x0000000080000000 = 0x0000000000000000 ++cmpeq255 0x8000000000000000 = 0x0000000000000000 ++cmpeq255 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq255 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq255 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq255 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq255 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq255 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmplt0 === ++cmplt0 0x0000000000000000 = 0x0000000000000000 ++cmplt0 0x0000000000000001 = 0x0000000000000000 ++cmplt0 0x0000000000000002 = 0x0000000000000000 ++cmplt0 0x0000000000000003 = 0x0000000000000000 ++cmplt0 0x000000000000000F = 0x0000000000000000 ++cmplt0 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt0 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmplt0 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmplt0 0x000000000000007F = 0x0000000000000000 ++cmplt0 0x0000000000000080 = 0x0000000000000000 ++cmplt0 0x0000000000007FFF = 0x0000000000000000 ++cmplt0 0x0000000000008000 = 0x0000000000000000 ++cmplt0 0x000000007FFFFFFF = 0x0000000000000000 ++cmplt0 0x0000000080000000 = 0x0000000000000000 ++cmplt0 0x8000000000000000 = 0x0000000000000001 ++cmplt0 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmplt0 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmplt0 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmplt0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt0 0x123456789ABCDEF0 = 0x0000000000000000 ++cmplt0 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmplt1 === ++cmplt1 0x0000000000000000 = 0x0000000000000001 ++cmplt1 0x0000000000000001 = 0x0000000000000000 ++cmplt1 0x0000000000000002 = 0x0000000000000000 ++cmplt1 0x0000000000000003 = 0x0000000000000000 ++cmplt1 0x000000000000000F = 0x0000000000000000 ++cmplt1 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt1 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmplt1 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmplt1 0x000000000000007F = 0x0000000000000000 ++cmplt1 0x0000000000000080 = 0x0000000000000000 ++cmplt1 0x0000000000007FFF = 0x0000000000000000 ++cmplt1 0x0000000000008000 = 0x0000000000000000 ++cmplt1 0x000000007FFFFFFF = 0x0000000000000000 ++cmplt1 0x0000000080000000 = 0x0000000000000000 ++cmplt1 0x8000000000000000 = 0x0000000000000001 ++cmplt1 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmplt1 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmplt1 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmplt1 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt1 0x123456789ABCDEF0 = 0x0000000000000000 ++cmplt1 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmplt2 === ++cmplt2 0x0000000000000000 = 0x0000000000000001 ++cmplt2 0x0000000000000001 = 0x0000000000000001 ++cmplt2 0x0000000000000002 = 0x0000000000000000 ++cmplt2 0x0000000000000003 = 0x0000000000000000 ++cmplt2 0x000000000000000F = 0x0000000000000000 ++cmplt2 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt2 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmplt2 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmplt2 0x000000000000007F = 0x0000000000000000 ++cmplt2 0x0000000000000080 = 0x0000000000000000 ++cmplt2 0x0000000000007FFF = 0x0000000000000000 ++cmplt2 0x0000000000008000 = 0x0000000000000000 ++cmplt2 0x000000007FFFFFFF = 0x0000000000000000 ++cmplt2 0x0000000080000000 = 0x0000000000000000 ++cmplt2 0x8000000000000000 = 0x0000000000000001 ++cmplt2 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmplt2 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmplt2 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmplt2 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt2 0x123456789ABCDEF0 = 0x0000000000000000 ++cmplt2 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmplt3 === ++cmplt3 0x0000000000000000 = 0x0000000000000001 ++cmplt3 0x0000000000000001 = 0x0000000000000001 ++cmplt3 0x0000000000000002 = 0x0000000000000001 ++cmplt3 0x0000000000000003 = 0x0000000000000000 ++cmplt3 0x000000000000000F = 0x0000000000000000 ++cmplt3 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt3 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmplt3 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmplt3 0x000000000000007F = 0x0000000000000000 ++cmplt3 0x0000000000000080 = 0x0000000000000000 ++cmplt3 0x0000000000007FFF = 0x0000000000000000 ++cmplt3 0x0000000000008000 = 0x0000000000000000 ++cmplt3 0x000000007FFFFFFF = 0x0000000000000000 ++cmplt3 0x0000000080000000 = 0x0000000000000000 ++cmplt3 0x8000000000000000 = 0x0000000000000001 ++cmplt3 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmplt3 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmplt3 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmplt3 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt3 0x123456789ABCDEF0 = 0x0000000000000000 ++cmplt3 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmplt15 === ++cmplt15 0x0000000000000000 = 0x0000000000000001 ++cmplt15 0x0000000000000001 = 0x0000000000000001 ++cmplt15 0x0000000000000002 = 0x0000000000000001 ++cmplt15 0x0000000000000003 = 0x0000000000000001 ++cmplt15 0x000000000000000F = 0x0000000000000000 ++cmplt15 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt15 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmplt15 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmplt15 0x000000000000007F = 0x0000000000000000 ++cmplt15 0x0000000000000080 = 0x0000000000000000 ++cmplt15 0x0000000000007FFF = 0x0000000000000000 ++cmplt15 0x0000000000008000 = 0x0000000000000000 ++cmplt15 0x000000007FFFFFFF = 0x0000000000000000 ++cmplt15 0x0000000080000000 = 0x0000000000000000 ++cmplt15 0x8000000000000000 = 0x0000000000000001 ++cmplt15 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmplt15 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmplt15 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmplt15 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt15 0x123456789ABCDEF0 = 0x0000000000000000 ++cmplt15 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmplt127 === ++cmplt127 0x0000000000000000 = 0x0000000000000001 ++cmplt127 0x0000000000000001 = 0x0000000000000001 ++cmplt127 0x0000000000000002 = 0x0000000000000001 ++cmplt127 0x0000000000000003 = 0x0000000000000001 ++cmplt127 0x000000000000000F = 0x0000000000000001 ++cmplt127 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt127 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmplt127 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmplt127 0x000000000000007F = 0x0000000000000000 ++cmplt127 0x0000000000000080 = 0x0000000000000000 ++cmplt127 0x0000000000007FFF = 0x0000000000000000 ++cmplt127 0x0000000000008000 = 0x0000000000000000 ++cmplt127 0x000000007FFFFFFF = 0x0000000000000000 ++cmplt127 0x0000000080000000 = 0x0000000000000000 ++cmplt127 0x8000000000000000 = 0x0000000000000001 ++cmplt127 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmplt127 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmplt127 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmplt127 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt127 0x123456789ABCDEF0 = 0x0000000000000000 ++cmplt127 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmplt128 === ++cmplt128 0x0000000000000000 = 0x0000000000000001 ++cmplt128 0x0000000000000001 = 0x0000000000000001 ++cmplt128 0x0000000000000002 = 0x0000000000000001 ++cmplt128 0x0000000000000003 = 0x0000000000000001 ++cmplt128 0x000000000000000F = 0x0000000000000001 ++cmplt128 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt128 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmplt128 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmplt128 0x000000000000007F = 0x0000000000000001 ++cmplt128 0x0000000000000080 = 0x0000000000000000 ++cmplt128 0x0000000000007FFF = 0x0000000000000000 ++cmplt128 0x0000000000008000 = 0x0000000000000000 ++cmplt128 0x000000007FFFFFFF = 0x0000000000000000 ++cmplt128 0x0000000080000000 = 0x0000000000000000 ++cmplt128 0x8000000000000000 = 0x0000000000000001 ++cmplt128 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmplt128 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmplt128 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmplt128 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt128 0x123456789ABCDEF0 = 0x0000000000000000 ++cmplt128 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmplt255 === ++cmplt255 0x0000000000000000 = 0x0000000000000001 ++cmplt255 0x0000000000000001 = 0x0000000000000001 ++cmplt255 0x0000000000000002 = 0x0000000000000001 ++cmplt255 0x0000000000000003 = 0x0000000000000001 ++cmplt255 0x000000000000000F = 0x0000000000000001 ++cmplt255 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt255 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmplt255 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmplt255 0x000000000000007F = 0x0000000000000001 ++cmplt255 0x0000000000000080 = 0x0000000000000001 ++cmplt255 0x0000000000007FFF = 0x0000000000000000 ++cmplt255 0x0000000000008000 = 0x0000000000000000 ++cmplt255 0x000000007FFFFFFF = 0x0000000000000000 ++cmplt255 0x0000000080000000 = 0x0000000000000000 ++cmplt255 0x8000000000000000 = 0x0000000000000001 ++cmplt255 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmplt255 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmplt255 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmplt255 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt255 0x123456789ABCDEF0 = 0x0000000000000000 ++cmplt255 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmple0 === ++cmple0 0x0000000000000000 = 0x0000000000000001 ++cmple0 0x0000000000000001 = 0x0000000000000000 ++cmple0 0x0000000000000002 = 0x0000000000000000 ++cmple0 0x0000000000000003 = 0x0000000000000000 ++cmple0 0x000000000000000F = 0x0000000000000000 ++cmple0 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple0 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple0 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmple0 0x000000000000007F = 0x0000000000000000 ++cmple0 0x0000000000000080 = 0x0000000000000000 ++cmple0 0x0000000000007FFF = 0x0000000000000000 ++cmple0 0x0000000000008000 = 0x0000000000000000 ++cmple0 0x000000007FFFFFFF = 0x0000000000000000 ++cmple0 0x0000000080000000 = 0x0000000000000000 ++cmple0 0x8000000000000000 = 0x0000000000000001 ++cmple0 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmple0 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmple0 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmple0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple0 0x123456789ABCDEF0 = 0x0000000000000000 ++cmple0 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmple1 === ++cmple1 0x0000000000000000 = 0x0000000000000001 ++cmple1 0x0000000000000001 = 0x0000000000000001 ++cmple1 0x0000000000000002 = 0x0000000000000000 ++cmple1 0x0000000000000003 = 0x0000000000000000 ++cmple1 0x000000000000000F = 0x0000000000000000 ++cmple1 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple1 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple1 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmple1 0x000000000000007F = 0x0000000000000000 ++cmple1 0x0000000000000080 = 0x0000000000000000 ++cmple1 0x0000000000007FFF = 0x0000000000000000 ++cmple1 0x0000000000008000 = 0x0000000000000000 ++cmple1 0x000000007FFFFFFF = 0x0000000000000000 ++cmple1 0x0000000080000000 = 0x0000000000000000 ++cmple1 0x8000000000000000 = 0x0000000000000001 ++cmple1 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmple1 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmple1 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmple1 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple1 0x123456789ABCDEF0 = 0x0000000000000000 ++cmple1 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmple2 === ++cmple2 0x0000000000000000 = 0x0000000000000001 ++cmple2 0x0000000000000001 = 0x0000000000000001 ++cmple2 0x0000000000000002 = 0x0000000000000001 ++cmple2 0x0000000000000003 = 0x0000000000000000 ++cmple2 0x000000000000000F = 0x0000000000000000 ++cmple2 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple2 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple2 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmple2 0x000000000000007F = 0x0000000000000000 ++cmple2 0x0000000000000080 = 0x0000000000000000 ++cmple2 0x0000000000007FFF = 0x0000000000000000 ++cmple2 0x0000000000008000 = 0x0000000000000000 ++cmple2 0x000000007FFFFFFF = 0x0000000000000000 ++cmple2 0x0000000080000000 = 0x0000000000000000 ++cmple2 0x8000000000000000 = 0x0000000000000001 ++cmple2 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmple2 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmple2 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmple2 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple2 0x123456789ABCDEF0 = 0x0000000000000000 ++cmple2 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmple3 === ++cmple3 0x0000000000000000 = 0x0000000000000001 ++cmple3 0x0000000000000001 = 0x0000000000000001 ++cmple3 0x0000000000000002 = 0x0000000000000001 ++cmple3 0x0000000000000003 = 0x0000000000000001 ++cmple3 0x000000000000000F = 0x0000000000000000 ++cmple3 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple3 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple3 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmple3 0x000000000000007F = 0x0000000000000000 ++cmple3 0x0000000000000080 = 0x0000000000000000 ++cmple3 0x0000000000007FFF = 0x0000000000000000 ++cmple3 0x0000000000008000 = 0x0000000000000000 ++cmple3 0x000000007FFFFFFF = 0x0000000000000000 ++cmple3 0x0000000080000000 = 0x0000000000000000 ++cmple3 0x8000000000000000 = 0x0000000000000001 ++cmple3 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmple3 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmple3 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmple3 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple3 0x123456789ABCDEF0 = 0x0000000000000000 ++cmple3 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmple15 === ++cmple15 0x0000000000000000 = 0x0000000000000001 ++cmple15 0x0000000000000001 = 0x0000000000000001 ++cmple15 0x0000000000000002 = 0x0000000000000001 ++cmple15 0x0000000000000003 = 0x0000000000000001 ++cmple15 0x000000000000000F = 0x0000000000000001 ++cmple15 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple15 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple15 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmple15 0x000000000000007F = 0x0000000000000000 ++cmple15 0x0000000000000080 = 0x0000000000000000 ++cmple15 0x0000000000007FFF = 0x0000000000000000 ++cmple15 0x0000000000008000 = 0x0000000000000000 ++cmple15 0x000000007FFFFFFF = 0x0000000000000000 ++cmple15 0x0000000080000000 = 0x0000000000000000 ++cmple15 0x8000000000000000 = 0x0000000000000001 ++cmple15 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmple15 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmple15 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmple15 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple15 0x123456789ABCDEF0 = 0x0000000000000000 ++cmple15 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmple127 === ++cmple127 0x0000000000000000 = 0x0000000000000001 ++cmple127 0x0000000000000001 = 0x0000000000000001 ++cmple127 0x0000000000000002 = 0x0000000000000001 ++cmple127 0x0000000000000003 = 0x0000000000000001 ++cmple127 0x000000000000000F = 0x0000000000000001 ++cmple127 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple127 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple127 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmple127 0x000000000000007F = 0x0000000000000001 ++cmple127 0x0000000000000080 = 0x0000000000000000 ++cmple127 0x0000000000007FFF = 0x0000000000000000 ++cmple127 0x0000000000008000 = 0x0000000000000000 ++cmple127 0x000000007FFFFFFF = 0x0000000000000000 ++cmple127 0x0000000080000000 = 0x0000000000000000 ++cmple127 0x8000000000000000 = 0x0000000000000001 ++cmple127 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmple127 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmple127 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmple127 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple127 0x123456789ABCDEF0 = 0x0000000000000000 ++cmple127 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmple128 === ++cmple128 0x0000000000000000 = 0x0000000000000001 ++cmple128 0x0000000000000001 = 0x0000000000000001 ++cmple128 0x0000000000000002 = 0x0000000000000001 ++cmple128 0x0000000000000003 = 0x0000000000000001 ++cmple128 0x000000000000000F = 0x0000000000000001 ++cmple128 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple128 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple128 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmple128 0x000000000000007F = 0x0000000000000001 ++cmple128 0x0000000000000080 = 0x0000000000000001 ++cmple128 0x0000000000007FFF = 0x0000000000000000 ++cmple128 0x0000000000008000 = 0x0000000000000000 ++cmple128 0x000000007FFFFFFF = 0x0000000000000000 ++cmple128 0x0000000080000000 = 0x0000000000000000 ++cmple128 0x8000000000000000 = 0x0000000000000001 ++cmple128 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmple128 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmple128 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmple128 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple128 0x123456789ABCDEF0 = 0x0000000000000000 ++cmple128 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmple255 === ++cmple255 0x0000000000000000 = 0x0000000000000001 ++cmple255 0x0000000000000001 = 0x0000000000000001 ++cmple255 0x0000000000000002 = 0x0000000000000001 ++cmple255 0x0000000000000003 = 0x0000000000000001 ++cmple255 0x000000000000000F = 0x0000000000000001 ++cmple255 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple255 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple255 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmple255 0x000000000000007F = 0x0000000000000001 ++cmple255 0x0000000000000080 = 0x0000000000000001 ++cmple255 0x0000000000007FFF = 0x0000000000000000 ++cmple255 0x0000000000008000 = 0x0000000000000000 ++cmple255 0x000000007FFFFFFF = 0x0000000000000000 ++cmple255 0x0000000080000000 = 0x0000000000000000 ++cmple255 0x8000000000000000 = 0x0000000000000001 ++cmple255 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmple255 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmple255 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmple255 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple255 0x123456789ABCDEF0 = 0x0000000000000000 ++cmple255 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmpult0 === ++cmpult0 0x0000000000000000 = 0x0000000000000000 ++cmpult0 0x0000000000000001 = 0x0000000000000000 ++cmpult0 0x0000000000000002 = 0x0000000000000000 ++cmpult0 0x0000000000000003 = 0x0000000000000000 ++cmpult0 0x000000000000000F = 0x0000000000000000 ++cmpult0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpult0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpult0 0x000000000000007F = 0x0000000000000000 ++cmpult0 0x0000000000000080 = 0x0000000000000000 ++cmpult0 0x0000000000007FFF = 0x0000000000000000 ++cmpult0 0x0000000000008000 = 0x0000000000000000 ++cmpult0 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult0 0x0000000080000000 = 0x0000000000000000 ++cmpult0 0x8000000000000000 = 0x0000000000000000 ++cmpult0 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpult0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpult0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpult0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult0 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult0 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpult1 === ++cmpult1 0x0000000000000000 = 0x0000000000000001 ++cmpult1 0x0000000000000001 = 0x0000000000000000 ++cmpult1 0x0000000000000002 = 0x0000000000000000 ++cmpult1 0x0000000000000003 = 0x0000000000000000 ++cmpult1 0x000000000000000F = 0x0000000000000000 ++cmpult1 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult1 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpult1 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpult1 0x000000000000007F = 0x0000000000000000 ++cmpult1 0x0000000000000080 = 0x0000000000000000 ++cmpult1 0x0000000000007FFF = 0x0000000000000000 ++cmpult1 0x0000000000008000 = 0x0000000000000000 ++cmpult1 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult1 0x0000000080000000 = 0x0000000000000000 ++cmpult1 0x8000000000000000 = 0x0000000000000000 ++cmpult1 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpult1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpult1 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpult1 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult1 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult1 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpult2 === ++cmpult2 0x0000000000000000 = 0x0000000000000001 ++cmpult2 0x0000000000000001 = 0x0000000000000001 ++cmpult2 0x0000000000000002 = 0x0000000000000000 ++cmpult2 0x0000000000000003 = 0x0000000000000000 ++cmpult2 0x000000000000000F = 0x0000000000000000 ++cmpult2 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult2 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpult2 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpult2 0x000000000000007F = 0x0000000000000000 ++cmpult2 0x0000000000000080 = 0x0000000000000000 ++cmpult2 0x0000000000007FFF = 0x0000000000000000 ++cmpult2 0x0000000000008000 = 0x0000000000000000 ++cmpult2 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult2 0x0000000080000000 = 0x0000000000000000 ++cmpult2 0x8000000000000000 = 0x0000000000000000 ++cmpult2 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpult2 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpult2 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpult2 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult2 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult2 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpult3 === ++cmpult3 0x0000000000000000 = 0x0000000000000001 ++cmpult3 0x0000000000000001 = 0x0000000000000001 ++cmpult3 0x0000000000000002 = 0x0000000000000001 ++cmpult3 0x0000000000000003 = 0x0000000000000000 ++cmpult3 0x000000000000000F = 0x0000000000000000 ++cmpult3 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult3 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpult3 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpult3 0x000000000000007F = 0x0000000000000000 ++cmpult3 0x0000000000000080 = 0x0000000000000000 ++cmpult3 0x0000000000007FFF = 0x0000000000000000 ++cmpult3 0x0000000000008000 = 0x0000000000000000 ++cmpult3 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult3 0x0000000080000000 = 0x0000000000000000 ++cmpult3 0x8000000000000000 = 0x0000000000000000 ++cmpult3 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpult3 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpult3 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpult3 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult3 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult3 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpult15 === ++cmpult15 0x0000000000000000 = 0x0000000000000001 ++cmpult15 0x0000000000000001 = 0x0000000000000001 ++cmpult15 0x0000000000000002 = 0x0000000000000001 ++cmpult15 0x0000000000000003 = 0x0000000000000001 ++cmpult15 0x000000000000000F = 0x0000000000000000 ++cmpult15 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult15 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpult15 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpult15 0x000000000000007F = 0x0000000000000000 ++cmpult15 0x0000000000000080 = 0x0000000000000000 ++cmpult15 0x0000000000007FFF = 0x0000000000000000 ++cmpult15 0x0000000000008000 = 0x0000000000000000 ++cmpult15 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult15 0x0000000080000000 = 0x0000000000000000 ++cmpult15 0x8000000000000000 = 0x0000000000000000 ++cmpult15 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpult15 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpult15 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpult15 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult15 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult15 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpult127 === ++cmpult127 0x0000000000000000 = 0x0000000000000001 ++cmpult127 0x0000000000000001 = 0x0000000000000001 ++cmpult127 0x0000000000000002 = 0x0000000000000001 ++cmpult127 0x0000000000000003 = 0x0000000000000001 ++cmpult127 0x000000000000000F = 0x0000000000000001 ++cmpult127 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult127 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpult127 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpult127 0x000000000000007F = 0x0000000000000000 ++cmpult127 0x0000000000000080 = 0x0000000000000000 ++cmpult127 0x0000000000007FFF = 0x0000000000000000 ++cmpult127 0x0000000000008000 = 0x0000000000000000 ++cmpult127 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult127 0x0000000080000000 = 0x0000000000000000 ++cmpult127 0x8000000000000000 = 0x0000000000000000 ++cmpult127 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpult127 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpult127 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpult127 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult127 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult127 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpult128 === ++cmpult128 0x0000000000000000 = 0x0000000000000001 ++cmpult128 0x0000000000000001 = 0x0000000000000001 ++cmpult128 0x0000000000000002 = 0x0000000000000001 ++cmpult128 0x0000000000000003 = 0x0000000000000001 ++cmpult128 0x000000000000000F = 0x0000000000000001 ++cmpult128 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult128 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpult128 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpult128 0x000000000000007F = 0x0000000000000001 ++cmpult128 0x0000000000000080 = 0x0000000000000000 ++cmpult128 0x0000000000007FFF = 0x0000000000000000 ++cmpult128 0x0000000000008000 = 0x0000000000000000 ++cmpult128 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult128 0x0000000080000000 = 0x0000000000000000 ++cmpult128 0x8000000000000000 = 0x0000000000000000 ++cmpult128 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpult128 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpult128 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpult128 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult128 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult128 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpult255 === ++cmpult255 0x0000000000000000 = 0x0000000000000001 ++cmpult255 0x0000000000000001 = 0x0000000000000001 ++cmpult255 0x0000000000000002 = 0x0000000000000001 ++cmpult255 0x0000000000000003 = 0x0000000000000001 ++cmpult255 0x000000000000000F = 0x0000000000000001 ++cmpult255 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult255 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpult255 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpult255 0x000000000000007F = 0x0000000000000001 ++cmpult255 0x0000000000000080 = 0x0000000000000001 ++cmpult255 0x0000000000007FFF = 0x0000000000000000 ++cmpult255 0x0000000000008000 = 0x0000000000000000 ++cmpult255 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult255 0x0000000080000000 = 0x0000000000000000 ++cmpult255 0x8000000000000000 = 0x0000000000000000 ++cmpult255 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpult255 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpult255 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpult255 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult255 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult255 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpule0 === ++cmpule0 0x0000000000000000 = 0x0000000000000001 ++cmpule0 0x0000000000000001 = 0x0000000000000000 ++cmpule0 0x0000000000000002 = 0x0000000000000000 ++cmpule0 0x0000000000000003 = 0x0000000000000000 ++cmpule0 0x000000000000000F = 0x0000000000000000 ++cmpule0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpule0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpule0 0x000000000000007F = 0x0000000000000000 ++cmpule0 0x0000000000000080 = 0x0000000000000000 ++cmpule0 0x0000000000007FFF = 0x0000000000000000 ++cmpule0 0x0000000000008000 = 0x0000000000000000 ++cmpule0 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule0 0x0000000080000000 = 0x0000000000000000 ++cmpule0 0x8000000000000000 = 0x0000000000000000 ++cmpule0 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpule0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpule0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpule0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule0 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule0 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpule1 === ++cmpule1 0x0000000000000000 = 0x0000000000000001 ++cmpule1 0x0000000000000001 = 0x0000000000000001 ++cmpule1 0x0000000000000002 = 0x0000000000000000 ++cmpule1 0x0000000000000003 = 0x0000000000000000 ++cmpule1 0x000000000000000F = 0x0000000000000000 ++cmpule1 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule1 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpule1 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpule1 0x000000000000007F = 0x0000000000000000 ++cmpule1 0x0000000000000080 = 0x0000000000000000 ++cmpule1 0x0000000000007FFF = 0x0000000000000000 ++cmpule1 0x0000000000008000 = 0x0000000000000000 ++cmpule1 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule1 0x0000000080000000 = 0x0000000000000000 ++cmpule1 0x8000000000000000 = 0x0000000000000000 ++cmpule1 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpule1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpule1 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpule1 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule1 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule1 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpule2 === ++cmpule2 0x0000000000000000 = 0x0000000000000001 ++cmpule2 0x0000000000000001 = 0x0000000000000001 ++cmpule2 0x0000000000000002 = 0x0000000000000001 ++cmpule2 0x0000000000000003 = 0x0000000000000000 ++cmpule2 0x000000000000000F = 0x0000000000000000 ++cmpule2 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule2 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpule2 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpule2 0x000000000000007F = 0x0000000000000000 ++cmpule2 0x0000000000000080 = 0x0000000000000000 ++cmpule2 0x0000000000007FFF = 0x0000000000000000 ++cmpule2 0x0000000000008000 = 0x0000000000000000 ++cmpule2 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule2 0x0000000080000000 = 0x0000000000000000 ++cmpule2 0x8000000000000000 = 0x0000000000000000 ++cmpule2 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpule2 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpule2 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpule2 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule2 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule2 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpule3 === ++cmpule3 0x0000000000000000 = 0x0000000000000001 ++cmpule3 0x0000000000000001 = 0x0000000000000001 ++cmpule3 0x0000000000000002 = 0x0000000000000001 ++cmpule3 0x0000000000000003 = 0x0000000000000001 ++cmpule3 0x000000000000000F = 0x0000000000000000 ++cmpule3 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule3 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpule3 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpule3 0x000000000000007F = 0x0000000000000000 ++cmpule3 0x0000000000000080 = 0x0000000000000000 ++cmpule3 0x0000000000007FFF = 0x0000000000000000 ++cmpule3 0x0000000000008000 = 0x0000000000000000 ++cmpule3 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule3 0x0000000080000000 = 0x0000000000000000 ++cmpule3 0x8000000000000000 = 0x0000000000000000 ++cmpule3 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpule3 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpule3 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpule3 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule3 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule3 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpule15 === ++cmpule15 0x0000000000000000 = 0x0000000000000001 ++cmpule15 0x0000000000000001 = 0x0000000000000001 ++cmpule15 0x0000000000000002 = 0x0000000000000001 ++cmpule15 0x0000000000000003 = 0x0000000000000001 ++cmpule15 0x000000000000000F = 0x0000000000000001 ++cmpule15 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule15 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpule15 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpule15 0x000000000000007F = 0x0000000000000000 ++cmpule15 0x0000000000000080 = 0x0000000000000000 ++cmpule15 0x0000000000007FFF = 0x0000000000000000 ++cmpule15 0x0000000000008000 = 0x0000000000000000 ++cmpule15 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule15 0x0000000080000000 = 0x0000000000000000 ++cmpule15 0x8000000000000000 = 0x0000000000000000 ++cmpule15 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpule15 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpule15 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpule15 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule15 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule15 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpule127 === ++cmpule127 0x0000000000000000 = 0x0000000000000001 ++cmpule127 0x0000000000000001 = 0x0000000000000001 ++cmpule127 0x0000000000000002 = 0x0000000000000001 ++cmpule127 0x0000000000000003 = 0x0000000000000001 ++cmpule127 0x000000000000000F = 0x0000000000000001 ++cmpule127 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule127 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpule127 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpule127 0x000000000000007F = 0x0000000000000001 ++cmpule127 0x0000000000000080 = 0x0000000000000000 ++cmpule127 0x0000000000007FFF = 0x0000000000000000 ++cmpule127 0x0000000000008000 = 0x0000000000000000 ++cmpule127 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule127 0x0000000080000000 = 0x0000000000000000 ++cmpule127 0x8000000000000000 = 0x0000000000000000 ++cmpule127 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpule127 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpule127 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpule127 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule127 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule127 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpule128 === ++cmpule128 0x0000000000000000 = 0x0000000000000001 ++cmpule128 0x0000000000000001 = 0x0000000000000001 ++cmpule128 0x0000000000000002 = 0x0000000000000001 ++cmpule128 0x0000000000000003 = 0x0000000000000001 ++cmpule128 0x000000000000000F = 0x0000000000000001 ++cmpule128 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule128 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpule128 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpule128 0x000000000000007F = 0x0000000000000001 ++cmpule128 0x0000000000000080 = 0x0000000000000001 ++cmpule128 0x0000000000007FFF = 0x0000000000000000 ++cmpule128 0x0000000000008000 = 0x0000000000000000 ++cmpule128 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule128 0x0000000080000000 = 0x0000000000000000 ++cmpule128 0x8000000000000000 = 0x0000000000000000 ++cmpule128 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpule128 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpule128 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpule128 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule128 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule128 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpule255 === ++cmpule255 0x0000000000000000 = 0x0000000000000001 ++cmpule255 0x0000000000000001 = 0x0000000000000001 ++cmpule255 0x0000000000000002 = 0x0000000000000001 ++cmpule255 0x0000000000000003 = 0x0000000000000001 ++cmpule255 0x000000000000000F = 0x0000000000000001 ++cmpule255 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule255 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpule255 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpule255 0x000000000000007F = 0x0000000000000001 ++cmpule255 0x0000000000000080 = 0x0000000000000001 ++cmpule255 0x0000000000007FFF = 0x0000000000000000 ++cmpule255 0x0000000000008000 = 0x0000000000000000 ++cmpule255 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule255 0x0000000080000000 = 0x0000000000000000 ++cmpule255 0x8000000000000000 = 0x0000000000000000 ++cmpule255 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpule255 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpule255 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpule255 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule255 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule255 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on and0 === ++and0 0x0000000000000000 = 0x0000000000000000 ++and0 0x0000000000000001 = 0x0000000000000000 ++and0 0x0000000000000002 = 0x0000000000000000 ++and0 0x0000000000000003 = 0x0000000000000000 ++and0 0x000000000000000F = 0x0000000000000000 ++and0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++and0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++and0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++and0 0x000000000000007F = 0x0000000000000000 ++and0 0x0000000000000080 = 0x0000000000000000 ++and0 0x0000000000007FFF = 0x0000000000000000 ++and0 0x0000000000008000 = 0x0000000000000000 ++and0 0x000000007FFFFFFF = 0x0000000000000000 ++and0 0x0000000080000000 = 0x0000000000000000 ++and0 0x8000000000000000 = 0x0000000000000000 ++and0 0xFFFFFFFF80000000 = 0x0000000000000000 ++and0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++and0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++and0 0x123456789ABCDEF0 = 0x0000000000000000 ++and0 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on and1 === ++and1 0x0000000000000000 = 0x0000000000000000 ++and1 0x0000000000000001 = 0x0000000000000001 ++and1 0x0000000000000002 = 0x0000000000000000 ++and1 0x0000000000000003 = 0x0000000000000001 ++and1 0x000000000000000F = 0x0000000000000001 ++and1 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++and1 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++and1 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++and1 0x000000000000007F = 0x0000000000000001 ++and1 0x0000000000000080 = 0x0000000000000000 ++and1 0x0000000000007FFF = 0x0000000000000001 ++and1 0x0000000000008000 = 0x0000000000000000 ++and1 0x000000007FFFFFFF = 0x0000000000000001 ++and1 0x0000000080000000 = 0x0000000000000000 ++and1 0x8000000000000000 = 0x0000000000000000 ++and1 0xFFFFFFFF80000000 = 0x0000000000000000 ++and1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and1 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++and1 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++and1 0x123456789ABCDEF0 = 0x0000000000000000 ++and1 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on and2 === ++and2 0x0000000000000000 = 0x0000000000000000 ++and2 0x0000000000000001 = 0x0000000000000000 ++and2 0x0000000000000002 = 0x0000000000000002 ++and2 0x0000000000000003 = 0x0000000000000002 ++and2 0x000000000000000F = 0x0000000000000002 ++and2 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++and2 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++and2 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++and2 0x000000000000007F = 0x0000000000000002 ++and2 0x0000000000000080 = 0x0000000000000000 ++and2 0x0000000000007FFF = 0x0000000000000002 ++and2 0x0000000000008000 = 0x0000000000000000 ++and2 0x000000007FFFFFFF = 0x0000000000000002 ++and2 0x0000000080000000 = 0x0000000000000000 ++and2 0x8000000000000000 = 0x0000000000000000 ++and2 0xFFFFFFFF80000000 = 0x0000000000000000 ++and2 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and2 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++and2 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++and2 0x123456789ABCDEF0 = 0x0000000000000000 ++and2 0xF0DEBC9A78563412 = 0x0000000000000002 ++=== Running test on and3 === ++and3 0x0000000000000000 = 0x0000000000000000 ++and3 0x0000000000000001 = 0x0000000000000001 ++and3 0x0000000000000002 = 0x0000000000000002 ++and3 0x0000000000000003 = 0x0000000000000003 ++and3 0x000000000000000F = 0x0000000000000003 ++and3 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++and3 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++and3 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++and3 0x000000000000007F = 0x0000000000000003 ++and3 0x0000000000000080 = 0x0000000000000000 ++and3 0x0000000000007FFF = 0x0000000000000003 ++and3 0x0000000000008000 = 0x0000000000000000 ++and3 0x000000007FFFFFFF = 0x0000000000000003 ++and3 0x0000000080000000 = 0x0000000000000000 ++and3 0x8000000000000000 = 0x0000000000000000 ++and3 0xFFFFFFFF80000000 = 0x0000000000000000 ++and3 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and3 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++and3 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++and3 0x123456789ABCDEF0 = 0x0000000000000000 ++and3 0xF0DEBC9A78563412 = 0x0000000000000002 ++=== Running test on and15 === ++and15 0x0000000000000000 = 0x0000000000000000 ++and15 0x0000000000000001 = 0x0000000000000001 ++and15 0x0000000000000002 = 0x0000000000000002 ++and15 0x0000000000000003 = 0x0000000000000003 ++and15 0x000000000000000F = 0x000000000000000F ++and15 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++and15 0xFFFFFFFFFFFFFFFE = 0x000000000000000E ++and15 0xFFFFFFFFFFFFFFFD = 0x000000000000000D ++and15 0x000000000000007F = 0x000000000000000F ++and15 0x0000000000000080 = 0x0000000000000000 ++and15 0x0000000000007FFF = 0x000000000000000F ++and15 0x0000000000008000 = 0x0000000000000000 ++and15 0x000000007FFFFFFF = 0x000000000000000F ++and15 0x0000000080000000 = 0x0000000000000000 ++and15 0x8000000000000000 = 0x0000000000000000 ++and15 0xFFFFFFFF80000000 = 0x0000000000000000 ++and15 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and15 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++and15 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++and15 0x123456789ABCDEF0 = 0x0000000000000000 ++and15 0xF0DEBC9A78563412 = 0x0000000000000002 ++=== Running test on and127 === ++and127 0x0000000000000000 = 0x0000000000000000 ++and127 0x0000000000000001 = 0x0000000000000001 ++and127 0x0000000000000002 = 0x0000000000000002 ++and127 0x0000000000000003 = 0x0000000000000003 ++and127 0x000000000000000F = 0x000000000000000F ++and127 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++and127 0xFFFFFFFFFFFFFFFE = 0x000000000000007E ++and127 0xFFFFFFFFFFFFFFFD = 0x000000000000007D ++and127 0x000000000000007F = 0x000000000000007F ++and127 0x0000000000000080 = 0x0000000000000000 ++and127 0x0000000000007FFF = 0x000000000000007F ++and127 0x0000000000008000 = 0x0000000000000000 ++and127 0x000000007FFFFFFF = 0x000000000000007F ++and127 0x0000000080000000 = 0x0000000000000000 ++and127 0x8000000000000000 = 0x0000000000000000 ++and127 0xFFFFFFFF80000000 = 0x0000000000000000 ++and127 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and127 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++and127 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++and127 0x123456789ABCDEF0 = 0x0000000000000070 ++and127 0xF0DEBC9A78563412 = 0x0000000000000012 ++=== Running test on and128 === ++and128 0x0000000000000000 = 0x0000000000000000 ++and128 0x0000000000000001 = 0x0000000000000000 ++and128 0x0000000000000002 = 0x0000000000000000 ++and128 0x0000000000000003 = 0x0000000000000000 ++and128 0x000000000000000F = 0x0000000000000000 ++and128 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++and128 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++and128 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++and128 0x000000000000007F = 0x0000000000000000 ++and128 0x0000000000000080 = 0x0000000000000080 ++and128 0x0000000000007FFF = 0x0000000000000080 ++and128 0x0000000000008000 = 0x0000000000000000 ++and128 0x000000007FFFFFFF = 0x0000000000000080 ++and128 0x0000000080000000 = 0x0000000000000000 ++and128 0x8000000000000000 = 0x0000000000000000 ++and128 0xFFFFFFFF80000000 = 0x0000000000000000 ++and128 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and128 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++and128 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++and128 0x123456789ABCDEF0 = 0x0000000000000080 ++and128 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on and255 === ++and255 0x0000000000000000 = 0x0000000000000000 ++and255 0x0000000000000001 = 0x0000000000000001 ++and255 0x0000000000000002 = 0x0000000000000002 ++and255 0x0000000000000003 = 0x0000000000000003 ++and255 0x000000000000000F = 0x000000000000000F ++and255 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++and255 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++and255 0xFFFFFFFFFFFFFFFD = 0x00000000000000FD ++and255 0x000000000000007F = 0x000000000000007F ++and255 0x0000000000000080 = 0x0000000000000080 ++and255 0x0000000000007FFF = 0x00000000000000FF ++and255 0x0000000000008000 = 0x0000000000000000 ++and255 0x000000007FFFFFFF = 0x00000000000000FF ++and255 0x0000000080000000 = 0x0000000000000000 ++and255 0x8000000000000000 = 0x0000000000000000 ++and255 0xFFFFFFFF80000000 = 0x0000000000000000 ++and255 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and255 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++and255 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++and255 0x123456789ABCDEF0 = 0x00000000000000F0 ++and255 0xF0DEBC9A78563412 = 0x0000000000000012 ++=== Running test on bic0 === ++bic0 0x0000000000000000 = 0x0000000000000000 ++bic0 0x0000000000000001 = 0x0000000000000001 ++bic0 0x0000000000000002 = 0x0000000000000002 ++bic0 0x0000000000000003 = 0x0000000000000003 ++bic0 0x000000000000000F = 0x000000000000000F ++bic0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bic0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bic0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bic0 0x000000000000007F = 0x000000000000007F ++bic0 0x0000000000000080 = 0x0000000000000080 ++bic0 0x0000000000007FFF = 0x0000000000007FFF ++bic0 0x0000000000008000 = 0x0000000000008000 ++bic0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bic0 0x0000000080000000 = 0x0000000080000000 ++bic0 0x8000000000000000 = 0x8000000000000000 ++bic0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++bic0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bic0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bic0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bic0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++bic0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on bic1 === ++bic1 0x0000000000000000 = 0x0000000000000000 ++bic1 0x0000000000000001 = 0x0000000000000000 ++bic1 0x0000000000000002 = 0x0000000000000002 ++bic1 0x0000000000000003 = 0x0000000000000002 ++bic1 0x000000000000000F = 0x000000000000000E ++bic1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++bic1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bic1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++bic1 0x000000000000007F = 0x000000000000007E ++bic1 0x0000000000000080 = 0x0000000000000080 ++bic1 0x0000000000007FFF = 0x0000000000007FFE ++bic1 0x0000000000008000 = 0x0000000000008000 ++bic1 0x000000007FFFFFFF = 0x000000007FFFFFFE ++bic1 0x0000000080000000 = 0x0000000080000000 ++bic1 0x8000000000000000 = 0x8000000000000000 ++bic1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++bic1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bic1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bic1 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++bic1 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++bic1 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on bic2 === ++bic2 0x0000000000000000 = 0x0000000000000000 ++bic2 0x0000000000000001 = 0x0000000000000001 ++bic2 0x0000000000000002 = 0x0000000000000000 ++bic2 0x0000000000000003 = 0x0000000000000001 ++bic2 0x000000000000000F = 0x000000000000000D ++bic2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++bic2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++bic2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bic2 0x000000000000007F = 0x000000000000007D ++bic2 0x0000000000000080 = 0x0000000000000080 ++bic2 0x0000000000007FFF = 0x0000000000007FFD ++bic2 0x0000000000008000 = 0x0000000000008000 ++bic2 0x000000007FFFFFFF = 0x000000007FFFFFFD ++bic2 0x0000000080000000 = 0x0000000080000000 ++bic2 0x8000000000000000 = 0x8000000000000000 ++bic2 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++bic2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bic2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bic2 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++bic2 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++bic2 0xF0DEBC9A78563412 = 0xF0DEBC9A78563410 ++=== Running test on bic3 === ++bic3 0x0000000000000000 = 0x0000000000000000 ++bic3 0x0000000000000001 = 0x0000000000000000 ++bic3 0x0000000000000002 = 0x0000000000000000 ++bic3 0x0000000000000003 = 0x0000000000000000 ++bic3 0x000000000000000F = 0x000000000000000C ++bic3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++bic3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++bic3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++bic3 0x000000000000007F = 0x000000000000007C ++bic3 0x0000000000000080 = 0x0000000000000080 ++bic3 0x0000000000007FFF = 0x0000000000007FFC ++bic3 0x0000000000008000 = 0x0000000000008000 ++bic3 0x000000007FFFFFFF = 0x000000007FFFFFFC ++bic3 0x0000000080000000 = 0x0000000080000000 ++bic3 0x8000000000000000 = 0x8000000000000000 ++bic3 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++bic3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bic3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bic3 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFC ++bic3 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++bic3 0xF0DEBC9A78563412 = 0xF0DEBC9A78563410 ++=== Running test on bic15 === ++bic15 0x0000000000000000 = 0x0000000000000000 ++bic15 0x0000000000000001 = 0x0000000000000000 ++bic15 0x0000000000000002 = 0x0000000000000000 ++bic15 0x0000000000000003 = 0x0000000000000000 ++bic15 0x000000000000000F = 0x0000000000000000 ++bic15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF0 ++bic15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF0 ++bic15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF0 ++bic15 0x000000000000007F = 0x0000000000000070 ++bic15 0x0000000000000080 = 0x0000000000000080 ++bic15 0x0000000000007FFF = 0x0000000000007FF0 ++bic15 0x0000000000008000 = 0x0000000000008000 ++bic15 0x000000007FFFFFFF = 0x000000007FFFFFF0 ++bic15 0x0000000080000000 = 0x0000000080000000 ++bic15 0x8000000000000000 = 0x8000000000000000 ++bic15 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++bic15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bic15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bic15 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF0 ++bic15 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++bic15 0xF0DEBC9A78563412 = 0xF0DEBC9A78563410 ++=== Running test on bic127 === ++bic127 0x0000000000000000 = 0x0000000000000000 ++bic127 0x0000000000000001 = 0x0000000000000000 ++bic127 0x0000000000000002 = 0x0000000000000000 ++bic127 0x0000000000000003 = 0x0000000000000000 ++bic127 0x000000000000000F = 0x0000000000000000 ++bic127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++bic127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF80 ++bic127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF80 ++bic127 0x000000000000007F = 0x0000000000000000 ++bic127 0x0000000000000080 = 0x0000000000000080 ++bic127 0x0000000000007FFF = 0x0000000000007F80 ++bic127 0x0000000000008000 = 0x0000000000008000 ++bic127 0x000000007FFFFFFF = 0x000000007FFFFF80 ++bic127 0x0000000080000000 = 0x0000000080000000 ++bic127 0x8000000000000000 = 0x8000000000000000 ++bic127 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++bic127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bic127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bic127 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF80 ++bic127 0x123456789ABCDEF0 = 0x123456789ABCDE80 ++bic127 0xF0DEBC9A78563412 = 0xF0DEBC9A78563400 ++=== Running test on bic128 === ++bic128 0x0000000000000000 = 0x0000000000000000 ++bic128 0x0000000000000001 = 0x0000000000000001 ++bic128 0x0000000000000002 = 0x0000000000000002 ++bic128 0x0000000000000003 = 0x0000000000000003 ++bic128 0x000000000000000F = 0x000000000000000F ++bic128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7F ++bic128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF7E ++bic128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF7D ++bic128 0x000000000000007F = 0x000000000000007F ++bic128 0x0000000000000080 = 0x0000000000000000 ++bic128 0x0000000000007FFF = 0x0000000000007F7F ++bic128 0x0000000000008000 = 0x0000000000008000 ++bic128 0x000000007FFFFFFF = 0x000000007FFFFF7F ++bic128 0x0000000080000000 = 0x0000000080000000 ++bic128 0x8000000000000000 = 0x8000000000000000 ++bic128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++bic128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bic128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++bic128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF7F ++bic128 0x123456789ABCDEF0 = 0x123456789ABCDE70 ++bic128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on bic255 === ++bic255 0x0000000000000000 = 0x0000000000000000 ++bic255 0x0000000000000001 = 0x0000000000000000 ++bic255 0x0000000000000002 = 0x0000000000000000 ++bic255 0x0000000000000003 = 0x0000000000000000 ++bic255 0x000000000000000F = 0x0000000000000000 ++bic255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++bic255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++bic255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF00 ++bic255 0x000000000000007F = 0x0000000000000000 ++bic255 0x0000000000000080 = 0x0000000000000000 ++bic255 0x0000000000007FFF = 0x0000000000007F00 ++bic255 0x0000000000008000 = 0x0000000000008000 ++bic255 0x000000007FFFFFFF = 0x000000007FFFFF00 ++bic255 0x0000000080000000 = 0x0000000080000000 ++bic255 0x8000000000000000 = 0x8000000000000000 ++bic255 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++bic255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bic255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++bic255 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF00 ++bic255 0x123456789ABCDEF0 = 0x123456789ABCDE00 ++bic255 0xF0DEBC9A78563412 = 0xF0DEBC9A78563400 ++=== Running test on bis0 === ++bis0 0x0000000000000000 = 0x0000000000000000 ++bis0 0x0000000000000001 = 0x0000000000000001 ++bis0 0x0000000000000002 = 0x0000000000000002 ++bis0 0x0000000000000003 = 0x0000000000000003 ++bis0 0x000000000000000F = 0x000000000000000F ++bis0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bis0 0x000000000000007F = 0x000000000000007F ++bis0 0x0000000000000080 = 0x0000000000000080 ++bis0 0x0000000000007FFF = 0x0000000000007FFF ++bis0 0x0000000000008000 = 0x0000000000008000 ++bis0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis0 0x0000000080000000 = 0x0000000080000000 ++bis0 0x8000000000000000 = 0x8000000000000000 ++bis0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++bis0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bis0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bis0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++bis0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on bis1 === ++bis1 0x0000000000000000 = 0x0000000000000001 ++bis1 0x0000000000000001 = 0x0000000000000001 ++bis1 0x0000000000000002 = 0x0000000000000003 ++bis1 0x0000000000000003 = 0x0000000000000003 ++bis1 0x000000000000000F = 0x000000000000000F ++bis1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++bis1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bis1 0x000000000000007F = 0x000000000000007F ++bis1 0x0000000000000080 = 0x0000000000000081 ++bis1 0x0000000000007FFF = 0x0000000000007FFF ++bis1 0x0000000000008000 = 0x0000000000008001 ++bis1 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis1 0x0000000080000000 = 0x0000000080000001 ++bis1 0x8000000000000000 = 0x8000000000000001 ++bis1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000001 ++bis1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8001 ++bis1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF81 ++bis1 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis1 0x123456789ABCDEF0 = 0x123456789ABCDEF1 ++bis1 0xF0DEBC9A78563412 = 0xF0DEBC9A78563413 ++=== Running test on bis2 === ++bis2 0x0000000000000000 = 0x0000000000000002 ++bis2 0x0000000000000001 = 0x0000000000000003 ++bis2 0x0000000000000002 = 0x0000000000000002 ++bis2 0x0000000000000003 = 0x0000000000000003 ++bis2 0x000000000000000F = 0x000000000000000F ++bis2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis2 0x000000000000007F = 0x000000000000007F ++bis2 0x0000000000000080 = 0x0000000000000082 ++bis2 0x0000000000007FFF = 0x0000000000007FFF ++bis2 0x0000000000008000 = 0x0000000000008002 ++bis2 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis2 0x0000000080000000 = 0x0000000080000002 ++bis2 0x8000000000000000 = 0x8000000000000002 ++bis2 0xFFFFFFFF80000000 = 0xFFFFFFFF80000002 ++bis2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8002 ++bis2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF82 ++bis2 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis2 0x123456789ABCDEF0 = 0x123456789ABCDEF2 ++bis2 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on bis3 === ++bis3 0x0000000000000000 = 0x0000000000000003 ++bis3 0x0000000000000001 = 0x0000000000000003 ++bis3 0x0000000000000002 = 0x0000000000000003 ++bis3 0x0000000000000003 = 0x0000000000000003 ++bis3 0x000000000000000F = 0x000000000000000F ++bis3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++bis3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis3 0x000000000000007F = 0x000000000000007F ++bis3 0x0000000000000080 = 0x0000000000000083 ++bis3 0x0000000000007FFF = 0x0000000000007FFF ++bis3 0x0000000000008000 = 0x0000000000008003 ++bis3 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis3 0x0000000080000000 = 0x0000000080000003 ++bis3 0x8000000000000000 = 0x8000000000000003 ++bis3 0xFFFFFFFF80000000 = 0xFFFFFFFF80000003 ++bis3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8003 ++bis3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF83 ++bis3 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis3 0x123456789ABCDEF0 = 0x123456789ABCDEF3 ++bis3 0xF0DEBC9A78563412 = 0xF0DEBC9A78563413 ++=== Running test on bis15 === ++bis15 0x0000000000000000 = 0x000000000000000F ++bis15 0x0000000000000001 = 0x000000000000000F ++bis15 0x0000000000000002 = 0x000000000000000F ++bis15 0x0000000000000003 = 0x000000000000000F ++bis15 0x000000000000000F = 0x000000000000000F ++bis15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++bis15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis15 0x000000000000007F = 0x000000000000007F ++bis15 0x0000000000000080 = 0x000000000000008F ++bis15 0x0000000000007FFF = 0x0000000000007FFF ++bis15 0x0000000000008000 = 0x000000000000800F ++bis15 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis15 0x0000000080000000 = 0x000000008000000F ++bis15 0x8000000000000000 = 0x800000000000000F ++bis15 0xFFFFFFFF80000000 = 0xFFFFFFFF8000000F ++bis15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF800F ++bis15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF8F ++bis15 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis15 0x123456789ABCDEF0 = 0x123456789ABCDEFF ++bis15 0xF0DEBC9A78563412 = 0xF0DEBC9A7856341F ++=== Running test on bis127 === ++bis127 0x0000000000000000 = 0x000000000000007F ++bis127 0x0000000000000001 = 0x000000000000007F ++bis127 0x0000000000000002 = 0x000000000000007F ++bis127 0x0000000000000003 = 0x000000000000007F ++bis127 0x000000000000000F = 0x000000000000007F ++bis127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++bis127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis127 0x000000000000007F = 0x000000000000007F ++bis127 0x0000000000000080 = 0x00000000000000FF ++bis127 0x0000000000007FFF = 0x0000000000007FFF ++bis127 0x0000000000008000 = 0x000000000000807F ++bis127 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis127 0x0000000080000000 = 0x000000008000007F ++bis127 0x8000000000000000 = 0x800000000000007F ++bis127 0xFFFFFFFF80000000 = 0xFFFFFFFF8000007F ++bis127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF807F ++bis127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++bis127 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis127 0x123456789ABCDEF0 = 0x123456789ABCDEFF ++bis127 0xF0DEBC9A78563412 = 0xF0DEBC9A7856347F ++=== Running test on bis128 === ++bis128 0x0000000000000000 = 0x0000000000000080 ++bis128 0x0000000000000001 = 0x0000000000000081 ++bis128 0x0000000000000002 = 0x0000000000000082 ++bis128 0x0000000000000003 = 0x0000000000000083 ++bis128 0x000000000000000F = 0x000000000000008F ++bis128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bis128 0x000000000000007F = 0x00000000000000FF ++bis128 0x0000000000000080 = 0x0000000000000080 ++bis128 0x0000000000007FFF = 0x0000000000007FFF ++bis128 0x0000000000008000 = 0x0000000000008080 ++bis128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis128 0x0000000080000000 = 0x0000000080000080 ++bis128 0x8000000000000000 = 0x8000000000000080 ++bis128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000080 ++bis128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8080 ++bis128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bis128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis128 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++bis128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563492 ++=== Running test on bis255 === ++bis255 0x0000000000000000 = 0x00000000000000FF ++bis255 0x0000000000000001 = 0x00000000000000FF ++bis255 0x0000000000000002 = 0x00000000000000FF ++bis255 0x0000000000000003 = 0x00000000000000FF ++bis255 0x000000000000000F = 0x00000000000000FF ++bis255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++bis255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis255 0x000000000000007F = 0x00000000000000FF ++bis255 0x0000000000000080 = 0x00000000000000FF ++bis255 0x0000000000007FFF = 0x0000000000007FFF ++bis255 0x0000000000008000 = 0x00000000000080FF ++bis255 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis255 0x0000000080000000 = 0x00000000800000FF ++bis255 0x8000000000000000 = 0x80000000000000FF ++bis255 0xFFFFFFFF80000000 = 0xFFFFFFFF800000FF ++bis255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF80FF ++bis255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++bis255 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis255 0x123456789ABCDEF0 = 0x123456789ABCDEFF ++bis255 0xF0DEBC9A78563412 = 0xF0DEBC9A785634FF ++=== Running test on ornot0 === ++ornot0 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot0 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++ornot0 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++ornot0 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++ornot0 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++ornot0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++ornot0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++ornot0 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++ornot0 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++ornot0 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++ornot0 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++ornot0 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot0 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++ornot0 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot0 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++ornot0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++ornot0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++ornot0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot0 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++ornot0 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++=== Running test on ornot1 === ++ornot1 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++ornot1 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++ornot1 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++ornot1 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++ornot1 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++ornot1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++ornot1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++ornot1 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++ornot1 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++ornot1 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++ornot1 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++ornot1 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot1 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++ornot1 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++ornot1 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++ornot1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++ornot1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++ornot1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot1 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++ornot1 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFE ++=== Running test on ornot2 === ++ornot2 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++ornot2 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++ornot2 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++ornot2 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++ornot2 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++ornot2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++ornot2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++ornot2 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++ornot2 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++ornot2 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++ornot2 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++ornot2 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot2 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++ornot2 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++ornot2 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++ornot2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++ornot2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++ornot2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot2 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++ornot2 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++=== Running test on ornot3 === ++ornot3 0x0000000000000000 = 0xFFFFFFFFFFFFFFFC ++ornot3 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++ornot3 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++ornot3 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++ornot3 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++ornot3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++ornot3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++ornot3 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++ornot3 0x0000000000000080 = 0xFFFFFFFFFFFFFFFC ++ornot3 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++ornot3 0x0000000000008000 = 0xFFFFFFFFFFFFFFFC ++ornot3 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot3 0x0000000080000000 = 0xFFFFFFFFFFFFFFFC ++ornot3 0x8000000000000000 = 0xFFFFFFFFFFFFFFFC ++ornot3 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFC ++ornot3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFC ++ornot3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFC ++ornot3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot3 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFC ++ornot3 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFE ++=== Running test on ornot15 === ++ornot15 0x0000000000000000 = 0xFFFFFFFFFFFFFFF0 ++ornot15 0x0000000000000001 = 0xFFFFFFFFFFFFFFF1 ++ornot15 0x0000000000000002 = 0xFFFFFFFFFFFFFFF2 ++ornot15 0x0000000000000003 = 0xFFFFFFFFFFFFFFF3 ++ornot15 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++ornot15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++ornot15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++ornot15 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++ornot15 0x0000000000000080 = 0xFFFFFFFFFFFFFFF0 ++ornot15 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++ornot15 0x0000000000008000 = 0xFFFFFFFFFFFFFFF0 ++ornot15 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot15 0x0000000080000000 = 0xFFFFFFFFFFFFFFF0 ++ornot15 0x8000000000000000 = 0xFFFFFFFFFFFFFFF0 ++ornot15 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFF0 ++ornot15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFF0 ++ornot15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFF0 ++ornot15 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot15 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFF0 ++ornot15 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFF2 ++=== Running test on ornot127 === ++ornot127 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++ornot127 0x0000000000000001 = 0xFFFFFFFFFFFFFF81 ++ornot127 0x0000000000000002 = 0xFFFFFFFFFFFFFF82 ++ornot127 0x0000000000000003 = 0xFFFFFFFFFFFFFF83 ++ornot127 0x000000000000000F = 0xFFFFFFFFFFFFFF8F ++ornot127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++ornot127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++ornot127 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++ornot127 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++ornot127 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++ornot127 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++ornot127 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot127 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++ornot127 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++ornot127 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++ornot127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++ornot127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++ornot127 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot127 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFF0 ++ornot127 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFF92 ++=== Running test on ornot128 === ++ornot128 0x0000000000000000 = 0xFFFFFFFFFFFFFF7F ++ornot128 0x0000000000000001 = 0xFFFFFFFFFFFFFF7F ++ornot128 0x0000000000000002 = 0xFFFFFFFFFFFFFF7F ++ornot128 0x0000000000000003 = 0xFFFFFFFFFFFFFF7F ++ornot128 0x000000000000000F = 0xFFFFFFFFFFFFFF7F ++ornot128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++ornot128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++ornot128 0x000000000000007F = 0xFFFFFFFFFFFFFF7F ++ornot128 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++ornot128 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++ornot128 0x0000000000008000 = 0xFFFFFFFFFFFFFF7F ++ornot128 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot128 0x0000000080000000 = 0xFFFFFFFFFFFFFF7F ++ornot128 0x8000000000000000 = 0xFFFFFFFFFFFFFF7F ++ornot128 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF7F ++ornot128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF7F ++ornot128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++ornot128 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot128 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++ornot128 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFF7F ++=== Running test on ornot255 === ++ornot255 0x0000000000000000 = 0xFFFFFFFFFFFFFF00 ++ornot255 0x0000000000000001 = 0xFFFFFFFFFFFFFF01 ++ornot255 0x0000000000000002 = 0xFFFFFFFFFFFFFF02 ++ornot255 0x0000000000000003 = 0xFFFFFFFFFFFFFF03 ++ornot255 0x000000000000000F = 0xFFFFFFFFFFFFFF0F ++ornot255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++ornot255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++ornot255 0x000000000000007F = 0xFFFFFFFFFFFFFF7F ++ornot255 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++ornot255 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++ornot255 0x0000000000008000 = 0xFFFFFFFFFFFFFF00 ++ornot255 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot255 0x0000000080000000 = 0xFFFFFFFFFFFFFF00 ++ornot255 0x8000000000000000 = 0xFFFFFFFFFFFFFF00 ++ornot255 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF00 ++ornot255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF00 ++ornot255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++ornot255 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot255 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFF0 ++ornot255 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFF12 ++=== Running test on xor0 === ++xor0 0x0000000000000000 = 0x0000000000000000 ++xor0 0x0000000000000001 = 0x0000000000000001 ++xor0 0x0000000000000002 = 0x0000000000000002 ++xor0 0x0000000000000003 = 0x0000000000000003 ++xor0 0x000000000000000F = 0x000000000000000F ++xor0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++xor0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++xor0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++xor0 0x000000000000007F = 0x000000000000007F ++xor0 0x0000000000000080 = 0x0000000000000080 ++xor0 0x0000000000007FFF = 0x0000000000007FFF ++xor0 0x0000000000008000 = 0x0000000000008000 ++xor0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++xor0 0x0000000080000000 = 0x0000000080000000 ++xor0 0x8000000000000000 = 0x8000000000000000 ++xor0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++xor0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++xor0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++xor0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++xor0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++xor0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on xor1 === ++xor1 0x0000000000000000 = 0x0000000000000001 ++xor1 0x0000000000000001 = 0x0000000000000000 ++xor1 0x0000000000000002 = 0x0000000000000003 ++xor1 0x0000000000000003 = 0x0000000000000002 ++xor1 0x000000000000000F = 0x000000000000000E ++xor1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++xor1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++xor1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++xor1 0x000000000000007F = 0x000000000000007E ++xor1 0x0000000000000080 = 0x0000000000000081 ++xor1 0x0000000000007FFF = 0x0000000000007FFE ++xor1 0x0000000000008000 = 0x0000000000008001 ++xor1 0x000000007FFFFFFF = 0x000000007FFFFFFE ++xor1 0x0000000080000000 = 0x0000000080000001 ++xor1 0x8000000000000000 = 0x8000000000000001 ++xor1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000001 ++xor1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8001 ++xor1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF81 ++xor1 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++xor1 0x123456789ABCDEF0 = 0x123456789ABCDEF1 ++xor1 0xF0DEBC9A78563412 = 0xF0DEBC9A78563413 ++=== Running test on xor2 === ++xor2 0x0000000000000000 = 0x0000000000000002 ++xor2 0x0000000000000001 = 0x0000000000000003 ++xor2 0x0000000000000002 = 0x0000000000000000 ++xor2 0x0000000000000003 = 0x0000000000000001 ++xor2 0x000000000000000F = 0x000000000000000D ++xor2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++xor2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++xor2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++xor2 0x000000000000007F = 0x000000000000007D ++xor2 0x0000000000000080 = 0x0000000000000082 ++xor2 0x0000000000007FFF = 0x0000000000007FFD ++xor2 0x0000000000008000 = 0x0000000000008002 ++xor2 0x000000007FFFFFFF = 0x000000007FFFFFFD ++xor2 0x0000000080000000 = 0x0000000080000002 ++xor2 0x8000000000000000 = 0x8000000000000002 ++xor2 0xFFFFFFFF80000000 = 0xFFFFFFFF80000002 ++xor2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8002 ++xor2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF82 ++xor2 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++xor2 0x123456789ABCDEF0 = 0x123456789ABCDEF2 ++xor2 0xF0DEBC9A78563412 = 0xF0DEBC9A78563410 ++=== Running test on xor3 === ++xor3 0x0000000000000000 = 0x0000000000000003 ++xor3 0x0000000000000001 = 0x0000000000000002 ++xor3 0x0000000000000002 = 0x0000000000000001 ++xor3 0x0000000000000003 = 0x0000000000000000 ++xor3 0x000000000000000F = 0x000000000000000C ++xor3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++xor3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++xor3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++xor3 0x000000000000007F = 0x000000000000007C ++xor3 0x0000000000000080 = 0x0000000000000083 ++xor3 0x0000000000007FFF = 0x0000000000007FFC ++xor3 0x0000000000008000 = 0x0000000000008003 ++xor3 0x000000007FFFFFFF = 0x000000007FFFFFFC ++xor3 0x0000000080000000 = 0x0000000080000003 ++xor3 0x8000000000000000 = 0x8000000000000003 ++xor3 0xFFFFFFFF80000000 = 0xFFFFFFFF80000003 ++xor3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8003 ++xor3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF83 ++xor3 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFC ++xor3 0x123456789ABCDEF0 = 0x123456789ABCDEF3 ++xor3 0xF0DEBC9A78563412 = 0xF0DEBC9A78563411 ++=== Running test on xor15 === ++xor15 0x0000000000000000 = 0x000000000000000F ++xor15 0x0000000000000001 = 0x000000000000000E ++xor15 0x0000000000000002 = 0x000000000000000D ++xor15 0x0000000000000003 = 0x000000000000000C ++xor15 0x000000000000000F = 0x0000000000000000 ++xor15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF0 ++xor15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF1 ++xor15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF2 ++xor15 0x000000000000007F = 0x0000000000000070 ++xor15 0x0000000000000080 = 0x000000000000008F ++xor15 0x0000000000007FFF = 0x0000000000007FF0 ++xor15 0x0000000000008000 = 0x000000000000800F ++xor15 0x000000007FFFFFFF = 0x000000007FFFFFF0 ++xor15 0x0000000080000000 = 0x000000008000000F ++xor15 0x8000000000000000 = 0x800000000000000F ++xor15 0xFFFFFFFF80000000 = 0xFFFFFFFF8000000F ++xor15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF800F ++xor15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF8F ++xor15 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF0 ++xor15 0x123456789ABCDEF0 = 0x123456789ABCDEFF ++xor15 0xF0DEBC9A78563412 = 0xF0DEBC9A7856341D ++=== Running test on xor127 === ++xor127 0x0000000000000000 = 0x000000000000007F ++xor127 0x0000000000000001 = 0x000000000000007E ++xor127 0x0000000000000002 = 0x000000000000007D ++xor127 0x0000000000000003 = 0x000000000000007C ++xor127 0x000000000000000F = 0x0000000000000070 ++xor127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++xor127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF81 ++xor127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF82 ++xor127 0x000000000000007F = 0x0000000000000000 ++xor127 0x0000000000000080 = 0x00000000000000FF ++xor127 0x0000000000007FFF = 0x0000000000007F80 ++xor127 0x0000000000008000 = 0x000000000000807F ++xor127 0x000000007FFFFFFF = 0x000000007FFFFF80 ++xor127 0x0000000080000000 = 0x000000008000007F ++xor127 0x8000000000000000 = 0x800000000000007F ++xor127 0xFFFFFFFF80000000 = 0xFFFFFFFF8000007F ++xor127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF807F ++xor127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++xor127 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF80 ++xor127 0x123456789ABCDEF0 = 0x123456789ABCDE8F ++xor127 0xF0DEBC9A78563412 = 0xF0DEBC9A7856346D ++=== Running test on xor128 === ++xor128 0x0000000000000000 = 0x0000000000000080 ++xor128 0x0000000000000001 = 0x0000000000000081 ++xor128 0x0000000000000002 = 0x0000000000000082 ++xor128 0x0000000000000003 = 0x0000000000000083 ++xor128 0x000000000000000F = 0x000000000000008F ++xor128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7F ++xor128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF7E ++xor128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF7D ++xor128 0x000000000000007F = 0x00000000000000FF ++xor128 0x0000000000000080 = 0x0000000000000000 ++xor128 0x0000000000007FFF = 0x0000000000007F7F ++xor128 0x0000000000008000 = 0x0000000000008080 ++xor128 0x000000007FFFFFFF = 0x000000007FFFFF7F ++xor128 0x0000000080000000 = 0x0000000080000080 ++xor128 0x8000000000000000 = 0x8000000000000080 ++xor128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000080 ++xor128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8080 ++xor128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++xor128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF7F ++xor128 0x123456789ABCDEF0 = 0x123456789ABCDE70 ++xor128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563492 ++=== Running test on xor255 === ++xor255 0x0000000000000000 = 0x00000000000000FF ++xor255 0x0000000000000001 = 0x00000000000000FE ++xor255 0x0000000000000002 = 0x00000000000000FD ++xor255 0x0000000000000003 = 0x00000000000000FC ++xor255 0x000000000000000F = 0x00000000000000F0 ++xor255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++xor255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF01 ++xor255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF02 ++xor255 0x000000000000007F = 0x0000000000000080 ++xor255 0x0000000000000080 = 0x000000000000007F ++xor255 0x0000000000007FFF = 0x0000000000007F00 ++xor255 0x0000000000008000 = 0x00000000000080FF ++xor255 0x000000007FFFFFFF = 0x000000007FFFFF00 ++xor255 0x0000000080000000 = 0x00000000800000FF ++xor255 0x8000000000000000 = 0x80000000000000FF ++xor255 0xFFFFFFFF80000000 = 0xFFFFFFFF800000FF ++xor255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF80FF ++xor255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7F ++xor255 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF00 ++xor255 0x123456789ABCDEF0 = 0x123456789ABCDE0F ++xor255 0xF0DEBC9A78563412 = 0xF0DEBC9A785634ED ++=== Running test on eqv0 === ++eqv0 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++eqv0 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++eqv0 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++eqv0 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++eqv0 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++eqv0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++eqv0 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++eqv0 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++eqv0 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++eqv0 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++eqv0 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++eqv0 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++eqv0 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++eqv0 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++eqv0 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++eqv0 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++eqv0 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++eqv0 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++eqv0 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++eqv0 0x123456789ABCDEF0 = 0xEDCBA9876543210F ++eqv0 0xF0DEBC9A78563412 = 0x0F21436587A9CBED ++=== Running test on eqv1 === ++eqv1 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++eqv1 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++eqv1 0x0000000000000002 = 0xFFFFFFFFFFFFFFFC ++eqv1 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++eqv1 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++eqv1 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++eqv1 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++eqv1 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++eqv1 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++eqv1 0x0000000000000080 = 0xFFFFFFFFFFFFFF7E ++eqv1 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++eqv1 0x0000000000008000 = 0xFFFFFFFFFFFF7FFE ++eqv1 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++eqv1 0x0000000080000000 = 0xFFFFFFFF7FFFFFFE ++eqv1 0x8000000000000000 = 0x7FFFFFFFFFFFFFFE ++eqv1 0xFFFFFFFF80000000 = 0x000000007FFFFFFE ++eqv1 0xFFFFFFFFFFFF8000 = 0x0000000000007FFE ++eqv1 0xFFFFFFFFFFFFFF80 = 0x000000000000007E ++eqv1 0x7FFFFFFFFFFFFFFF = 0x8000000000000001 ++eqv1 0x123456789ABCDEF0 = 0xEDCBA9876543210E ++eqv1 0xF0DEBC9A78563412 = 0x0F21436587A9CBEC ++=== Running test on eqv2 === ++eqv2 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++eqv2 0x0000000000000001 = 0xFFFFFFFFFFFFFFFC ++eqv2 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++eqv2 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++eqv2 0x000000000000000F = 0xFFFFFFFFFFFFFFF2 ++eqv2 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++eqv2 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++eqv2 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++eqv2 0x000000000000007F = 0xFFFFFFFFFFFFFF82 ++eqv2 0x0000000000000080 = 0xFFFFFFFFFFFFFF7D ++eqv2 0x0000000000007FFF = 0xFFFFFFFFFFFF8002 ++eqv2 0x0000000000008000 = 0xFFFFFFFFFFFF7FFD ++eqv2 0x000000007FFFFFFF = 0xFFFFFFFF80000002 ++eqv2 0x0000000080000000 = 0xFFFFFFFF7FFFFFFD ++eqv2 0x8000000000000000 = 0x7FFFFFFFFFFFFFFD ++eqv2 0xFFFFFFFF80000000 = 0x000000007FFFFFFD ++eqv2 0xFFFFFFFFFFFF8000 = 0x0000000000007FFD ++eqv2 0xFFFFFFFFFFFFFF80 = 0x000000000000007D ++eqv2 0x7FFFFFFFFFFFFFFF = 0x8000000000000002 ++eqv2 0x123456789ABCDEF0 = 0xEDCBA9876543210D ++eqv2 0xF0DEBC9A78563412 = 0x0F21436587A9CBEF ++=== Running test on eqv3 === ++eqv3 0x0000000000000000 = 0xFFFFFFFFFFFFFFFC ++eqv3 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++eqv3 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++eqv3 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++eqv3 0x000000000000000F = 0xFFFFFFFFFFFFFFF3 ++eqv3 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++eqv3 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++eqv3 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++eqv3 0x000000000000007F = 0xFFFFFFFFFFFFFF83 ++eqv3 0x0000000000000080 = 0xFFFFFFFFFFFFFF7C ++eqv3 0x0000000000007FFF = 0xFFFFFFFFFFFF8003 ++eqv3 0x0000000000008000 = 0xFFFFFFFFFFFF7FFC ++eqv3 0x000000007FFFFFFF = 0xFFFFFFFF80000003 ++eqv3 0x0000000080000000 = 0xFFFFFFFF7FFFFFFC ++eqv3 0x8000000000000000 = 0x7FFFFFFFFFFFFFFC ++eqv3 0xFFFFFFFF80000000 = 0x000000007FFFFFFC ++eqv3 0xFFFFFFFFFFFF8000 = 0x0000000000007FFC ++eqv3 0xFFFFFFFFFFFFFF80 = 0x000000000000007C ++eqv3 0x7FFFFFFFFFFFFFFF = 0x8000000000000003 ++eqv3 0x123456789ABCDEF0 = 0xEDCBA9876543210C ++eqv3 0xF0DEBC9A78563412 = 0x0F21436587A9CBEE ++=== Running test on eqv15 === ++eqv15 0x0000000000000000 = 0xFFFFFFFFFFFFFFF0 ++eqv15 0x0000000000000001 = 0xFFFFFFFFFFFFFFF1 ++eqv15 0x0000000000000002 = 0xFFFFFFFFFFFFFFF2 ++eqv15 0x0000000000000003 = 0xFFFFFFFFFFFFFFF3 ++eqv15 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++eqv15 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++eqv15 0xFFFFFFFFFFFFFFFE = 0x000000000000000E ++eqv15 0xFFFFFFFFFFFFFFFD = 0x000000000000000D ++eqv15 0x000000000000007F = 0xFFFFFFFFFFFFFF8F ++eqv15 0x0000000000000080 = 0xFFFFFFFFFFFFFF70 ++eqv15 0x0000000000007FFF = 0xFFFFFFFFFFFF800F ++eqv15 0x0000000000008000 = 0xFFFFFFFFFFFF7FF0 ++eqv15 0x000000007FFFFFFF = 0xFFFFFFFF8000000F ++eqv15 0x0000000080000000 = 0xFFFFFFFF7FFFFFF0 ++eqv15 0x8000000000000000 = 0x7FFFFFFFFFFFFFF0 ++eqv15 0xFFFFFFFF80000000 = 0x000000007FFFFFF0 ++eqv15 0xFFFFFFFFFFFF8000 = 0x0000000000007FF0 ++eqv15 0xFFFFFFFFFFFFFF80 = 0x0000000000000070 ++eqv15 0x7FFFFFFFFFFFFFFF = 0x800000000000000F ++eqv15 0x123456789ABCDEF0 = 0xEDCBA98765432100 ++eqv15 0xF0DEBC9A78563412 = 0x0F21436587A9CBE2 ++=== Running test on eqv127 === ++eqv127 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++eqv127 0x0000000000000001 = 0xFFFFFFFFFFFFFF81 ++eqv127 0x0000000000000002 = 0xFFFFFFFFFFFFFF82 ++eqv127 0x0000000000000003 = 0xFFFFFFFFFFFFFF83 ++eqv127 0x000000000000000F = 0xFFFFFFFFFFFFFF8F ++eqv127 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++eqv127 0xFFFFFFFFFFFFFFFE = 0x000000000000007E ++eqv127 0xFFFFFFFFFFFFFFFD = 0x000000000000007D ++eqv127 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++eqv127 0x0000000000000080 = 0xFFFFFFFFFFFFFF00 ++eqv127 0x0000000000007FFF = 0xFFFFFFFFFFFF807F ++eqv127 0x0000000000008000 = 0xFFFFFFFFFFFF7F80 ++eqv127 0x000000007FFFFFFF = 0xFFFFFFFF8000007F ++eqv127 0x0000000080000000 = 0xFFFFFFFF7FFFFF80 ++eqv127 0x8000000000000000 = 0x7FFFFFFFFFFFFF80 ++eqv127 0xFFFFFFFF80000000 = 0x000000007FFFFF80 ++eqv127 0xFFFFFFFFFFFF8000 = 0x0000000000007F80 ++eqv127 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++eqv127 0x7FFFFFFFFFFFFFFF = 0x800000000000007F ++eqv127 0x123456789ABCDEF0 = 0xEDCBA98765432170 ++eqv127 0xF0DEBC9A78563412 = 0x0F21436587A9CB92 ++=== Running test on eqv128 === ++eqv128 0x0000000000000000 = 0xFFFFFFFFFFFFFF7F ++eqv128 0x0000000000000001 = 0xFFFFFFFFFFFFFF7E ++eqv128 0x0000000000000002 = 0xFFFFFFFFFFFFFF7D ++eqv128 0x0000000000000003 = 0xFFFFFFFFFFFFFF7C ++eqv128 0x000000000000000F = 0xFFFFFFFFFFFFFF70 ++eqv128 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++eqv128 0xFFFFFFFFFFFFFFFE = 0x0000000000000081 ++eqv128 0xFFFFFFFFFFFFFFFD = 0x0000000000000082 ++eqv128 0x000000000000007F = 0xFFFFFFFFFFFFFF00 ++eqv128 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++eqv128 0x0000000000007FFF = 0xFFFFFFFFFFFF8080 ++eqv128 0x0000000000008000 = 0xFFFFFFFFFFFF7F7F ++eqv128 0x000000007FFFFFFF = 0xFFFFFFFF80000080 ++eqv128 0x0000000080000000 = 0xFFFFFFFF7FFFFF7F ++eqv128 0x8000000000000000 = 0x7FFFFFFFFFFFFF7F ++eqv128 0xFFFFFFFF80000000 = 0x000000007FFFFF7F ++eqv128 0xFFFFFFFFFFFF8000 = 0x0000000000007F7F ++eqv128 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++eqv128 0x7FFFFFFFFFFFFFFF = 0x8000000000000080 ++eqv128 0x123456789ABCDEF0 = 0xEDCBA9876543218F ++eqv128 0xF0DEBC9A78563412 = 0x0F21436587A9CB6D ++=== Running test on eqv255 === ++eqv255 0x0000000000000000 = 0xFFFFFFFFFFFFFF00 ++eqv255 0x0000000000000001 = 0xFFFFFFFFFFFFFF01 ++eqv255 0x0000000000000002 = 0xFFFFFFFFFFFFFF02 ++eqv255 0x0000000000000003 = 0xFFFFFFFFFFFFFF03 ++eqv255 0x000000000000000F = 0xFFFFFFFFFFFFFF0F ++eqv255 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++eqv255 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++eqv255 0xFFFFFFFFFFFFFFFD = 0x00000000000000FD ++eqv255 0x000000000000007F = 0xFFFFFFFFFFFFFF7F ++eqv255 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++eqv255 0x0000000000007FFF = 0xFFFFFFFFFFFF80FF ++eqv255 0x0000000000008000 = 0xFFFFFFFFFFFF7F00 ++eqv255 0x000000007FFFFFFF = 0xFFFFFFFF800000FF ++eqv255 0x0000000080000000 = 0xFFFFFFFF7FFFFF00 ++eqv255 0x8000000000000000 = 0x7FFFFFFFFFFFFF00 ++eqv255 0xFFFFFFFF80000000 = 0x000000007FFFFF00 ++eqv255 0xFFFFFFFFFFFF8000 = 0x0000000000007F00 ++eqv255 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++eqv255 0x7FFFFFFFFFFFFFFF = 0x80000000000000FF ++eqv255 0x123456789ABCDEF0 = 0xEDCBA987654321F0 ++eqv255 0xF0DEBC9A78563412 = 0x0F21436587A9CB12 ++=== Running test on inslb0 === ++inslb0 0x0000000000000000 = 0x0000000000000000 ++inslb0 0x0000000000000001 = 0x0000000000000001 ++inslb0 0x0000000000000002 = 0x0000000000000002 ++inslb0 0x0000000000000003 = 0x0000000000000003 ++inslb0 0x000000000000000F = 0x000000000000000F ++inslb0 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++inslb0 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++inslb0 0xFFFFFFFFFFFFFFFD = 0x00000000000000FD ++inslb0 0x000000000000007F = 0x000000000000007F ++inslb0 0x0000000000000080 = 0x0000000000000080 ++inslb0 0x0000000000007FFF = 0x00000000000000FF ++inslb0 0x0000000000008000 = 0x0000000000000000 ++inslb0 0x000000007FFFFFFF = 0x00000000000000FF ++inslb0 0x0000000080000000 = 0x0000000000000000 ++inslb0 0x8000000000000000 = 0x0000000000000000 ++inslb0 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslb0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslb0 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++inslb0 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++inslb0 0x123456789ABCDEF0 = 0x00000000000000F0 ++inslb0 0xF0DEBC9A78563412 = 0x0000000000000012 ++=== Running test on inslb1 === ++inslb1 0x0000000000000000 = 0x0000000000000000 ++inslb1 0x0000000000000001 = 0x0000000000000100 ++inslb1 0x0000000000000002 = 0x0000000000000200 ++inslb1 0x0000000000000003 = 0x0000000000000300 ++inslb1 0x000000000000000F = 0x0000000000000F00 ++inslb1 0xFFFFFFFFFFFFFFFF = 0x000000000000FF00 ++inslb1 0xFFFFFFFFFFFFFFFE = 0x000000000000FE00 ++inslb1 0xFFFFFFFFFFFFFFFD = 0x000000000000FD00 ++inslb1 0x000000000000007F = 0x0000000000007F00 ++inslb1 0x0000000000000080 = 0x0000000000008000 ++inslb1 0x0000000000007FFF = 0x000000000000FF00 ++inslb1 0x0000000000008000 = 0x0000000000000000 ++inslb1 0x000000007FFFFFFF = 0x000000000000FF00 ++inslb1 0x0000000080000000 = 0x0000000000000000 ++inslb1 0x8000000000000000 = 0x0000000000000000 ++inslb1 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslb1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslb1 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++inslb1 0x7FFFFFFFFFFFFFFF = 0x000000000000FF00 ++inslb1 0x123456789ABCDEF0 = 0x000000000000F000 ++inslb1 0xF0DEBC9A78563412 = 0x0000000000001200 ++=== Running test on inslb2 === ++inslb2 0x0000000000000000 = 0x0000000000000000 ++inslb2 0x0000000000000001 = 0x0000000000010000 ++inslb2 0x0000000000000002 = 0x0000000000020000 ++inslb2 0x0000000000000003 = 0x0000000000030000 ++inslb2 0x000000000000000F = 0x00000000000F0000 ++inslb2 0xFFFFFFFFFFFFFFFF = 0x0000000000FF0000 ++inslb2 0xFFFFFFFFFFFFFFFE = 0x0000000000FE0000 ++inslb2 0xFFFFFFFFFFFFFFFD = 0x0000000000FD0000 ++inslb2 0x000000000000007F = 0x00000000007F0000 ++inslb2 0x0000000000000080 = 0x0000000000800000 ++inslb2 0x0000000000007FFF = 0x0000000000FF0000 ++inslb2 0x0000000000008000 = 0x0000000000000000 ++inslb2 0x000000007FFFFFFF = 0x0000000000FF0000 ++inslb2 0x0000000080000000 = 0x0000000000000000 ++inslb2 0x8000000000000000 = 0x0000000000000000 ++inslb2 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslb2 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslb2 0xFFFFFFFFFFFFFF80 = 0x0000000000800000 ++inslb2 0x7FFFFFFFFFFFFFFF = 0x0000000000FF0000 ++inslb2 0x123456789ABCDEF0 = 0x0000000000F00000 ++inslb2 0xF0DEBC9A78563412 = 0x0000000000120000 ++=== Running test on inslb3 === ++inslb3 0x0000000000000000 = 0x0000000000000000 ++inslb3 0x0000000000000001 = 0x0000000001000000 ++inslb3 0x0000000000000002 = 0x0000000002000000 ++inslb3 0x0000000000000003 = 0x0000000003000000 ++inslb3 0x000000000000000F = 0x000000000F000000 ++inslb3 0xFFFFFFFFFFFFFFFF = 0x00000000FF000000 ++inslb3 0xFFFFFFFFFFFFFFFE = 0x00000000FE000000 ++inslb3 0xFFFFFFFFFFFFFFFD = 0x00000000FD000000 ++inslb3 0x000000000000007F = 0x000000007F000000 ++inslb3 0x0000000000000080 = 0x0000000080000000 ++inslb3 0x0000000000007FFF = 0x00000000FF000000 ++inslb3 0x0000000000008000 = 0x0000000000000000 ++inslb3 0x000000007FFFFFFF = 0x00000000FF000000 ++inslb3 0x0000000080000000 = 0x0000000000000000 ++inslb3 0x8000000000000000 = 0x0000000000000000 ++inslb3 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslb3 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslb3 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++inslb3 0x7FFFFFFFFFFFFFFF = 0x00000000FF000000 ++inslb3 0x123456789ABCDEF0 = 0x00000000F0000000 ++inslb3 0xF0DEBC9A78563412 = 0x0000000012000000 ++=== Running test on inslb15 === ++inslb15 0x0000000000000000 = 0x0000000000000000 ++inslb15 0x0000000000000001 = 0x0100000000000000 ++inslb15 0x0000000000000002 = 0x0200000000000000 ++inslb15 0x0000000000000003 = 0x0300000000000000 ++inslb15 0x000000000000000F = 0x0F00000000000000 ++inslb15 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslb15 0xFFFFFFFFFFFFFFFE = 0xFE00000000000000 ++inslb15 0xFFFFFFFFFFFFFFFD = 0xFD00000000000000 ++inslb15 0x000000000000007F = 0x7F00000000000000 ++inslb15 0x0000000000000080 = 0x8000000000000000 ++inslb15 0x0000000000007FFF = 0xFF00000000000000 ++inslb15 0x0000000000008000 = 0x0000000000000000 ++inslb15 0x000000007FFFFFFF = 0xFF00000000000000 ++inslb15 0x0000000080000000 = 0x0000000000000000 ++inslb15 0x8000000000000000 = 0x0000000000000000 ++inslb15 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslb15 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslb15 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++inslb15 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslb15 0x123456789ABCDEF0 = 0xF000000000000000 ++inslb15 0xF0DEBC9A78563412 = 0x1200000000000000 ++=== Running test on inslb127 === ++inslb127 0x0000000000000000 = 0x0000000000000000 ++inslb127 0x0000000000000001 = 0x0100000000000000 ++inslb127 0x0000000000000002 = 0x0200000000000000 ++inslb127 0x0000000000000003 = 0x0300000000000000 ++inslb127 0x000000000000000F = 0x0F00000000000000 ++inslb127 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslb127 0xFFFFFFFFFFFFFFFE = 0xFE00000000000000 ++inslb127 0xFFFFFFFFFFFFFFFD = 0xFD00000000000000 ++inslb127 0x000000000000007F = 0x7F00000000000000 ++inslb127 0x0000000000000080 = 0x8000000000000000 ++inslb127 0x0000000000007FFF = 0xFF00000000000000 ++inslb127 0x0000000000008000 = 0x0000000000000000 ++inslb127 0x000000007FFFFFFF = 0xFF00000000000000 ++inslb127 0x0000000080000000 = 0x0000000000000000 ++inslb127 0x8000000000000000 = 0x0000000000000000 ++inslb127 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslb127 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslb127 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++inslb127 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslb127 0x123456789ABCDEF0 = 0xF000000000000000 ++inslb127 0xF0DEBC9A78563412 = 0x1200000000000000 ++=== Running test on inslb128 === ++inslb128 0x0000000000000000 = 0x0000000000000000 ++inslb128 0x0000000000000001 = 0x0000000000000001 ++inslb128 0x0000000000000002 = 0x0000000000000002 ++inslb128 0x0000000000000003 = 0x0000000000000003 ++inslb128 0x000000000000000F = 0x000000000000000F ++inslb128 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++inslb128 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++inslb128 0xFFFFFFFFFFFFFFFD = 0x00000000000000FD ++inslb128 0x000000000000007F = 0x000000000000007F ++inslb128 0x0000000000000080 = 0x0000000000000080 ++inslb128 0x0000000000007FFF = 0x00000000000000FF ++inslb128 0x0000000000008000 = 0x0000000000000000 ++inslb128 0x000000007FFFFFFF = 0x00000000000000FF ++inslb128 0x0000000080000000 = 0x0000000000000000 ++inslb128 0x8000000000000000 = 0x0000000000000000 ++inslb128 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslb128 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslb128 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++inslb128 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++inslb128 0x123456789ABCDEF0 = 0x00000000000000F0 ++inslb128 0xF0DEBC9A78563412 = 0x0000000000000012 ++=== Running test on inslb255 === ++inslb255 0x0000000000000000 = 0x0000000000000000 ++inslb255 0x0000000000000001 = 0x0100000000000000 ++inslb255 0x0000000000000002 = 0x0200000000000000 ++inslb255 0x0000000000000003 = 0x0300000000000000 ++inslb255 0x000000000000000F = 0x0F00000000000000 ++inslb255 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslb255 0xFFFFFFFFFFFFFFFE = 0xFE00000000000000 ++inslb255 0xFFFFFFFFFFFFFFFD = 0xFD00000000000000 ++inslb255 0x000000000000007F = 0x7F00000000000000 ++inslb255 0x0000000000000080 = 0x8000000000000000 ++inslb255 0x0000000000007FFF = 0xFF00000000000000 ++inslb255 0x0000000000008000 = 0x0000000000000000 ++inslb255 0x000000007FFFFFFF = 0xFF00000000000000 ++inslb255 0x0000000080000000 = 0x0000000000000000 ++inslb255 0x8000000000000000 = 0x0000000000000000 ++inslb255 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslb255 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslb255 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++inslb255 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslb255 0x123456789ABCDEF0 = 0xF000000000000000 ++inslb255 0xF0DEBC9A78563412 = 0x1200000000000000 ++=== Running test on inslh0 === ++inslh0 0x0000000000000000 = 0x0000000000000000 ++inslh0 0x0000000000000001 = 0x0000000000000001 ++inslh0 0x0000000000000002 = 0x0000000000000002 ++inslh0 0x0000000000000003 = 0x0000000000000003 ++inslh0 0x000000000000000F = 0x000000000000000F ++inslh0 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++inslh0 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFE ++inslh0 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFD ++inslh0 0x000000000000007F = 0x000000000000007F ++inslh0 0x0000000000000080 = 0x0000000000000080 ++inslh0 0x0000000000007FFF = 0x0000000000007FFF ++inslh0 0x0000000000008000 = 0x0000000000008000 ++inslh0 0x000000007FFFFFFF = 0x000000000000FFFF ++inslh0 0x0000000080000000 = 0x0000000000000000 ++inslh0 0x8000000000000000 = 0x0000000000000000 ++inslh0 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslh0 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++inslh0 0xFFFFFFFFFFFFFF80 = 0x000000000000FF80 ++inslh0 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++inslh0 0x123456789ABCDEF0 = 0x000000000000DEF0 ++inslh0 0xF0DEBC9A78563412 = 0x0000000000003412 ++=== Running test on inslh1 === ++inslh1 0x0000000000000000 = 0x0000000000000000 ++inslh1 0x0000000000000001 = 0x0000000000000100 ++inslh1 0x0000000000000002 = 0x0000000000000200 ++inslh1 0x0000000000000003 = 0x0000000000000300 ++inslh1 0x000000000000000F = 0x0000000000000F00 ++inslh1 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFF00 ++inslh1 0xFFFFFFFFFFFFFFFE = 0x0000000000FFFE00 ++inslh1 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFD00 ++inslh1 0x000000000000007F = 0x0000000000007F00 ++inslh1 0x0000000000000080 = 0x0000000000008000 ++inslh1 0x0000000000007FFF = 0x00000000007FFF00 ++inslh1 0x0000000000008000 = 0x0000000000800000 ++inslh1 0x000000007FFFFFFF = 0x0000000000FFFF00 ++inslh1 0x0000000080000000 = 0x0000000000000000 ++inslh1 0x8000000000000000 = 0x0000000000000000 ++inslh1 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslh1 0xFFFFFFFFFFFF8000 = 0x0000000000800000 ++inslh1 0xFFFFFFFFFFFFFF80 = 0x0000000000FF8000 ++inslh1 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFF00 ++inslh1 0x123456789ABCDEF0 = 0x0000000000DEF000 ++inslh1 0xF0DEBC9A78563412 = 0x0000000000341200 ++=== Running test on inslh2 === ++inslh2 0x0000000000000000 = 0x0000000000000000 ++inslh2 0x0000000000000001 = 0x0000000000010000 ++inslh2 0x0000000000000002 = 0x0000000000020000 ++inslh2 0x0000000000000003 = 0x0000000000030000 ++inslh2 0x000000000000000F = 0x00000000000F0000 ++inslh2 0xFFFFFFFFFFFFFFFF = 0x00000000FFFF0000 ++inslh2 0xFFFFFFFFFFFFFFFE = 0x00000000FFFE0000 ++inslh2 0xFFFFFFFFFFFFFFFD = 0x00000000FFFD0000 ++inslh2 0x000000000000007F = 0x00000000007F0000 ++inslh2 0x0000000000000080 = 0x0000000000800000 ++inslh2 0x0000000000007FFF = 0x000000007FFF0000 ++inslh2 0x0000000000008000 = 0x0000000080000000 ++inslh2 0x000000007FFFFFFF = 0x00000000FFFF0000 ++inslh2 0x0000000080000000 = 0x0000000000000000 ++inslh2 0x8000000000000000 = 0x0000000000000000 ++inslh2 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslh2 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++inslh2 0xFFFFFFFFFFFFFF80 = 0x00000000FF800000 ++inslh2 0x7FFFFFFFFFFFFFFF = 0x00000000FFFF0000 ++inslh2 0x123456789ABCDEF0 = 0x00000000DEF00000 ++inslh2 0xF0DEBC9A78563412 = 0x0000000034120000 ++=== Running test on inslh3 === ++inslh3 0x0000000000000000 = 0x0000000000000000 ++inslh3 0x0000000000000001 = 0x0000000001000000 ++inslh3 0x0000000000000002 = 0x0000000002000000 ++inslh3 0x0000000000000003 = 0x0000000003000000 ++inslh3 0x000000000000000F = 0x000000000F000000 ++inslh3 0xFFFFFFFFFFFFFFFF = 0x000000FFFF000000 ++inslh3 0xFFFFFFFFFFFFFFFE = 0x000000FFFE000000 ++inslh3 0xFFFFFFFFFFFFFFFD = 0x000000FFFD000000 ++inslh3 0x000000000000007F = 0x000000007F000000 ++inslh3 0x0000000000000080 = 0x0000000080000000 ++inslh3 0x0000000000007FFF = 0x0000007FFF000000 ++inslh3 0x0000000000008000 = 0x0000008000000000 ++inslh3 0x000000007FFFFFFF = 0x000000FFFF000000 ++inslh3 0x0000000080000000 = 0x0000000000000000 ++inslh3 0x8000000000000000 = 0x0000000000000000 ++inslh3 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslh3 0xFFFFFFFFFFFF8000 = 0x0000008000000000 ++inslh3 0xFFFFFFFFFFFFFF80 = 0x000000FF80000000 ++inslh3 0x7FFFFFFFFFFFFFFF = 0x000000FFFF000000 ++inslh3 0x123456789ABCDEF0 = 0x000000DEF0000000 ++inslh3 0xF0DEBC9A78563412 = 0x0000003412000000 ++=== Running test on inslh15 === ++inslh15 0x0000000000000000 = 0x0000000000000000 ++inslh15 0x0000000000000001 = 0x0100000000000000 ++inslh15 0x0000000000000002 = 0x0200000000000000 ++inslh15 0x0000000000000003 = 0x0300000000000000 ++inslh15 0x000000000000000F = 0x0F00000000000000 ++inslh15 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslh15 0xFFFFFFFFFFFFFFFE = 0xFE00000000000000 ++inslh15 0xFFFFFFFFFFFFFFFD = 0xFD00000000000000 ++inslh15 0x000000000000007F = 0x7F00000000000000 ++inslh15 0x0000000000000080 = 0x8000000000000000 ++inslh15 0x0000000000007FFF = 0xFF00000000000000 ++inslh15 0x0000000000008000 = 0x0000000000000000 ++inslh15 0x000000007FFFFFFF = 0xFF00000000000000 ++inslh15 0x0000000080000000 = 0x0000000000000000 ++inslh15 0x8000000000000000 = 0x0000000000000000 ++inslh15 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslh15 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslh15 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++inslh15 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslh15 0x123456789ABCDEF0 = 0xF000000000000000 ++inslh15 0xF0DEBC9A78563412 = 0x1200000000000000 ++=== Running test on inslh127 === ++inslh127 0x0000000000000000 = 0x0000000000000000 ++inslh127 0x0000000000000001 = 0x0100000000000000 ++inslh127 0x0000000000000002 = 0x0200000000000000 ++inslh127 0x0000000000000003 = 0x0300000000000000 ++inslh127 0x000000000000000F = 0x0F00000000000000 ++inslh127 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslh127 0xFFFFFFFFFFFFFFFE = 0xFE00000000000000 ++inslh127 0xFFFFFFFFFFFFFFFD = 0xFD00000000000000 ++inslh127 0x000000000000007F = 0x7F00000000000000 ++inslh127 0x0000000000000080 = 0x8000000000000000 ++inslh127 0x0000000000007FFF = 0xFF00000000000000 ++inslh127 0x0000000000008000 = 0x0000000000000000 ++inslh127 0x000000007FFFFFFF = 0xFF00000000000000 ++inslh127 0x0000000080000000 = 0x0000000000000000 ++inslh127 0x8000000000000000 = 0x0000000000000000 ++inslh127 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslh127 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslh127 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++inslh127 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslh127 0x123456789ABCDEF0 = 0xF000000000000000 ++inslh127 0xF0DEBC9A78563412 = 0x1200000000000000 ++=== Running test on inslh128 === ++inslh128 0x0000000000000000 = 0x0000000000000000 ++inslh128 0x0000000000000001 = 0x0000000000000001 ++inslh128 0x0000000000000002 = 0x0000000000000002 ++inslh128 0x0000000000000003 = 0x0000000000000003 ++inslh128 0x000000000000000F = 0x000000000000000F ++inslh128 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++inslh128 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFE ++inslh128 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFD ++inslh128 0x000000000000007F = 0x000000000000007F ++inslh128 0x0000000000000080 = 0x0000000000000080 ++inslh128 0x0000000000007FFF = 0x0000000000007FFF ++inslh128 0x0000000000008000 = 0x0000000000008000 ++inslh128 0x000000007FFFFFFF = 0x000000000000FFFF ++inslh128 0x0000000080000000 = 0x0000000000000000 ++inslh128 0x8000000000000000 = 0x0000000000000000 ++inslh128 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslh128 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++inslh128 0xFFFFFFFFFFFFFF80 = 0x000000000000FF80 ++inslh128 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++inslh128 0x123456789ABCDEF0 = 0x000000000000DEF0 ++inslh128 0xF0DEBC9A78563412 = 0x0000000000003412 ++=== Running test on inslh255 === ++inslh255 0x0000000000000000 = 0x0000000000000000 ++inslh255 0x0000000000000001 = 0x0100000000000000 ++inslh255 0x0000000000000002 = 0x0200000000000000 ++inslh255 0x0000000000000003 = 0x0300000000000000 ++inslh255 0x000000000000000F = 0x0F00000000000000 ++inslh255 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslh255 0xFFFFFFFFFFFFFFFE = 0xFE00000000000000 ++inslh255 0xFFFFFFFFFFFFFFFD = 0xFD00000000000000 ++inslh255 0x000000000000007F = 0x7F00000000000000 ++inslh255 0x0000000000000080 = 0x8000000000000000 ++inslh255 0x0000000000007FFF = 0xFF00000000000000 ++inslh255 0x0000000000008000 = 0x0000000000000000 ++inslh255 0x000000007FFFFFFF = 0xFF00000000000000 ++inslh255 0x0000000080000000 = 0x0000000000000000 ++inslh255 0x8000000000000000 = 0x0000000000000000 ++inslh255 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslh255 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslh255 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++inslh255 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslh255 0x123456789ABCDEF0 = 0xF000000000000000 ++inslh255 0xF0DEBC9A78563412 = 0x1200000000000000 ++=== Running test on inslw0 === ++inslw0 0x0000000000000000 = 0x0000000000000000 ++inslw0 0x0000000000000001 = 0x0000000000000001 ++inslw0 0x0000000000000002 = 0x0000000000000002 ++inslw0 0x0000000000000003 = 0x0000000000000003 ++inslw0 0x000000000000000F = 0x000000000000000F ++inslw0 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++inslw0 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFFFE ++inslw0 0xFFFFFFFFFFFFFFFD = 0x00000000FFFFFFFD ++inslw0 0x000000000000007F = 0x000000000000007F ++inslw0 0x0000000000000080 = 0x0000000000000080 ++inslw0 0x0000000000007FFF = 0x0000000000007FFF ++inslw0 0x0000000000008000 = 0x0000000000008000 ++inslw0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++inslw0 0x0000000080000000 = 0x0000000080000000 ++inslw0 0x8000000000000000 = 0x0000000000000000 ++inslw0 0xFFFFFFFF80000000 = 0x0000000080000000 ++inslw0 0xFFFFFFFFFFFF8000 = 0x00000000FFFF8000 ++inslw0 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFF80 ++inslw0 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++inslw0 0x123456789ABCDEF0 = 0x000000009ABCDEF0 ++inslw0 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on inslw1 === ++inslw1 0x0000000000000000 = 0x0000000000000000 ++inslw1 0x0000000000000001 = 0x0000000000000100 ++inslw1 0x0000000000000002 = 0x0000000000000200 ++inslw1 0x0000000000000003 = 0x0000000000000300 ++inslw1 0x000000000000000F = 0x0000000000000F00 ++inslw1 0xFFFFFFFFFFFFFFFF = 0x000000FFFFFFFF00 ++inslw1 0xFFFFFFFFFFFFFFFE = 0x000000FFFFFFFE00 ++inslw1 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFD00 ++inslw1 0x000000000000007F = 0x0000000000007F00 ++inslw1 0x0000000000000080 = 0x0000000000008000 ++inslw1 0x0000000000007FFF = 0x00000000007FFF00 ++inslw1 0x0000000000008000 = 0x0000000000800000 ++inslw1 0x000000007FFFFFFF = 0x0000007FFFFFFF00 ++inslw1 0x0000000080000000 = 0x0000008000000000 ++inslw1 0x8000000000000000 = 0x0000000000000000 ++inslw1 0xFFFFFFFF80000000 = 0x0000008000000000 ++inslw1 0xFFFFFFFFFFFF8000 = 0x000000FFFF800000 ++inslw1 0xFFFFFFFFFFFFFF80 = 0x000000FFFFFF8000 ++inslw1 0x7FFFFFFFFFFFFFFF = 0x000000FFFFFFFF00 ++inslw1 0x123456789ABCDEF0 = 0x0000009ABCDEF000 ++inslw1 0xF0DEBC9A78563412 = 0x0000007856341200 ++=== Running test on inslw2 === ++inslw2 0x0000000000000000 = 0x0000000000000000 ++inslw2 0x0000000000000001 = 0x0000000000010000 ++inslw2 0x0000000000000002 = 0x0000000000020000 ++inslw2 0x0000000000000003 = 0x0000000000030000 ++inslw2 0x000000000000000F = 0x00000000000F0000 ++inslw2 0xFFFFFFFFFFFFFFFF = 0x0000FFFFFFFF0000 ++inslw2 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFE0000 ++inslw2 0xFFFFFFFFFFFFFFFD = 0x0000FFFFFFFD0000 ++inslw2 0x000000000000007F = 0x00000000007F0000 ++inslw2 0x0000000000000080 = 0x0000000000800000 ++inslw2 0x0000000000007FFF = 0x000000007FFF0000 ++inslw2 0x0000000000008000 = 0x0000000080000000 ++inslw2 0x000000007FFFFFFF = 0x00007FFFFFFF0000 ++inslw2 0x0000000080000000 = 0x0000800000000000 ++inslw2 0x8000000000000000 = 0x0000000000000000 ++inslw2 0xFFFFFFFF80000000 = 0x0000800000000000 ++inslw2 0xFFFFFFFFFFFF8000 = 0x0000FFFF80000000 ++inslw2 0xFFFFFFFFFFFFFF80 = 0x0000FFFFFF800000 ++inslw2 0x7FFFFFFFFFFFFFFF = 0x0000FFFFFFFF0000 ++inslw2 0x123456789ABCDEF0 = 0x00009ABCDEF00000 ++inslw2 0xF0DEBC9A78563412 = 0x0000785634120000 ++=== Running test on inslw3 === ++inslw3 0x0000000000000000 = 0x0000000000000000 ++inslw3 0x0000000000000001 = 0x0000000001000000 ++inslw3 0x0000000000000002 = 0x0000000002000000 ++inslw3 0x0000000000000003 = 0x0000000003000000 ++inslw3 0x000000000000000F = 0x000000000F000000 ++inslw3 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFF000000 ++inslw3 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFE000000 ++inslw3 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFD000000 ++inslw3 0x000000000000007F = 0x000000007F000000 ++inslw3 0x0000000000000080 = 0x0000000080000000 ++inslw3 0x0000000000007FFF = 0x0000007FFF000000 ++inslw3 0x0000000000008000 = 0x0000008000000000 ++inslw3 0x000000007FFFFFFF = 0x007FFFFFFF000000 ++inslw3 0x0000000080000000 = 0x0080000000000000 ++inslw3 0x8000000000000000 = 0x0000000000000000 ++inslw3 0xFFFFFFFF80000000 = 0x0080000000000000 ++inslw3 0xFFFFFFFFFFFF8000 = 0x00FFFF8000000000 ++inslw3 0xFFFFFFFFFFFFFF80 = 0x00FFFFFF80000000 ++inslw3 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFF000000 ++inslw3 0x123456789ABCDEF0 = 0x009ABCDEF0000000 ++inslw3 0xF0DEBC9A78563412 = 0x0078563412000000 ++=== Running test on inslw15 === ++inslw15 0x0000000000000000 = 0x0000000000000000 ++inslw15 0x0000000000000001 = 0x0100000000000000 ++inslw15 0x0000000000000002 = 0x0200000000000000 ++inslw15 0x0000000000000003 = 0x0300000000000000 ++inslw15 0x000000000000000F = 0x0F00000000000000 ++inslw15 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslw15 0xFFFFFFFFFFFFFFFE = 0xFE00000000000000 ++inslw15 0xFFFFFFFFFFFFFFFD = 0xFD00000000000000 ++inslw15 0x000000000000007F = 0x7F00000000000000 ++inslw15 0x0000000000000080 = 0x8000000000000000 ++inslw15 0x0000000000007FFF = 0xFF00000000000000 ++inslw15 0x0000000000008000 = 0x0000000000000000 ++inslw15 0x000000007FFFFFFF = 0xFF00000000000000 ++inslw15 0x0000000080000000 = 0x0000000000000000 ++inslw15 0x8000000000000000 = 0x0000000000000000 ++inslw15 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslw15 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslw15 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++inslw15 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslw15 0x123456789ABCDEF0 = 0xF000000000000000 ++inslw15 0xF0DEBC9A78563412 = 0x1200000000000000 ++=== Running test on inslw127 === ++inslw127 0x0000000000000000 = 0x0000000000000000 ++inslw127 0x0000000000000001 = 0x0100000000000000 ++inslw127 0x0000000000000002 = 0x0200000000000000 ++inslw127 0x0000000000000003 = 0x0300000000000000 ++inslw127 0x000000000000000F = 0x0F00000000000000 ++inslw127 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslw127 0xFFFFFFFFFFFFFFFE = 0xFE00000000000000 ++inslw127 0xFFFFFFFFFFFFFFFD = 0xFD00000000000000 ++inslw127 0x000000000000007F = 0x7F00000000000000 ++inslw127 0x0000000000000080 = 0x8000000000000000 ++inslw127 0x0000000000007FFF = 0xFF00000000000000 ++inslw127 0x0000000000008000 = 0x0000000000000000 ++inslw127 0x000000007FFFFFFF = 0xFF00000000000000 ++inslw127 0x0000000080000000 = 0x0000000000000000 ++inslw127 0x8000000000000000 = 0x0000000000000000 ++inslw127 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslw127 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslw127 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++inslw127 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslw127 0x123456789ABCDEF0 = 0xF000000000000000 ++inslw127 0xF0DEBC9A78563412 = 0x1200000000000000 ++=== Running test on inslw128 === ++inslw128 0x0000000000000000 = 0x0000000000000000 ++inslw128 0x0000000000000001 = 0x0000000000000001 ++inslw128 0x0000000000000002 = 0x0000000000000002 ++inslw128 0x0000000000000003 = 0x0000000000000003 ++inslw128 0x000000000000000F = 0x000000000000000F ++inslw128 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++inslw128 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFFFE ++inslw128 0xFFFFFFFFFFFFFFFD = 0x00000000FFFFFFFD ++inslw128 0x000000000000007F = 0x000000000000007F ++inslw128 0x0000000000000080 = 0x0000000000000080 ++inslw128 0x0000000000007FFF = 0x0000000000007FFF ++inslw128 0x0000000000008000 = 0x0000000000008000 ++inslw128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++inslw128 0x0000000080000000 = 0x0000000080000000 ++inslw128 0x8000000000000000 = 0x0000000000000000 ++inslw128 0xFFFFFFFF80000000 = 0x0000000080000000 ++inslw128 0xFFFFFFFFFFFF8000 = 0x00000000FFFF8000 ++inslw128 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFF80 ++inslw128 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++inslw128 0x123456789ABCDEF0 = 0x000000009ABCDEF0 ++inslw128 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on inslw255 === ++inslw255 0x0000000000000000 = 0x0000000000000000 ++inslw255 0x0000000000000001 = 0x0100000000000000 ++inslw255 0x0000000000000002 = 0x0200000000000000 ++inslw255 0x0000000000000003 = 0x0300000000000000 ++inslw255 0x000000000000000F = 0x0F00000000000000 ++inslw255 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslw255 0xFFFFFFFFFFFFFFFE = 0xFE00000000000000 ++inslw255 0xFFFFFFFFFFFFFFFD = 0xFD00000000000000 ++inslw255 0x000000000000007F = 0x7F00000000000000 ++inslw255 0x0000000000000080 = 0x8000000000000000 ++inslw255 0x0000000000007FFF = 0xFF00000000000000 ++inslw255 0x0000000000008000 = 0x0000000000000000 ++inslw255 0x000000007FFFFFFF = 0xFF00000000000000 ++inslw255 0x0000000080000000 = 0x0000000000000000 ++inslw255 0x8000000000000000 = 0x0000000000000000 ++inslw255 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslw255 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslw255 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++inslw255 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslw255 0x123456789ABCDEF0 = 0xF000000000000000 ++inslw255 0xF0DEBC9A78563412 = 0x1200000000000000 ++=== Running test on insll0 === ++insll0 0x0000000000000000 = 0x0000000000000000 ++insll0 0x0000000000000001 = 0x0000000000000001 ++insll0 0x0000000000000002 = 0x0000000000000002 ++insll0 0x0000000000000003 = 0x0000000000000003 ++insll0 0x000000000000000F = 0x000000000000000F ++insll0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++insll0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++insll0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++insll0 0x000000000000007F = 0x000000000000007F ++insll0 0x0000000000000080 = 0x0000000000000080 ++insll0 0x0000000000007FFF = 0x0000000000007FFF ++insll0 0x0000000000008000 = 0x0000000000008000 ++insll0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++insll0 0x0000000080000000 = 0x0000000080000000 ++insll0 0x8000000000000000 = 0x8000000000000000 ++insll0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++insll0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++insll0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++insll0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++insll0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++insll0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on insll1 === ++insll1 0x0000000000000000 = 0x0000000000000000 ++insll1 0x0000000000000001 = 0x0000000000000100 ++insll1 0x0000000000000002 = 0x0000000000000200 ++insll1 0x0000000000000003 = 0x0000000000000300 ++insll1 0x000000000000000F = 0x0000000000000F00 ++insll1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++insll1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFE00 ++insll1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFD00 ++insll1 0x000000000000007F = 0x0000000000007F00 ++insll1 0x0000000000000080 = 0x0000000000008000 ++insll1 0x0000000000007FFF = 0x00000000007FFF00 ++insll1 0x0000000000008000 = 0x0000000000800000 ++insll1 0x000000007FFFFFFF = 0x0000007FFFFFFF00 ++insll1 0x0000000080000000 = 0x0000008000000000 ++insll1 0x8000000000000000 = 0x0000000000000000 ++insll1 0xFFFFFFFF80000000 = 0xFFFFFF8000000000 ++insll1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFF800000 ++insll1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++insll1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++insll1 0x123456789ABCDEF0 = 0x3456789ABCDEF000 ++insll1 0xF0DEBC9A78563412 = 0xDEBC9A7856341200 ++=== Running test on insll2 === ++insll2 0x0000000000000000 = 0x0000000000000000 ++insll2 0x0000000000000001 = 0x0000000000010000 ++insll2 0x0000000000000002 = 0x0000000000020000 ++insll2 0x0000000000000003 = 0x0000000000030000 ++insll2 0x000000000000000F = 0x00000000000F0000 ++insll2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF0000 ++insll2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFE0000 ++insll2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFD0000 ++insll2 0x000000000000007F = 0x00000000007F0000 ++insll2 0x0000000000000080 = 0x0000000000800000 ++insll2 0x0000000000007FFF = 0x000000007FFF0000 ++insll2 0x0000000000008000 = 0x0000000080000000 ++insll2 0x000000007FFFFFFF = 0x00007FFFFFFF0000 ++insll2 0x0000000080000000 = 0x0000800000000000 ++insll2 0x8000000000000000 = 0x0000000000000000 ++insll2 0xFFFFFFFF80000000 = 0xFFFF800000000000 ++insll2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++insll2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFF800000 ++insll2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF0000 ++insll2 0x123456789ABCDEF0 = 0x56789ABCDEF00000 ++insll2 0xF0DEBC9A78563412 = 0xBC9A785634120000 ++=== Running test on insll3 === ++insll3 0x0000000000000000 = 0x0000000000000000 ++insll3 0x0000000000000001 = 0x0000000001000000 ++insll3 0x0000000000000002 = 0x0000000002000000 ++insll3 0x0000000000000003 = 0x0000000003000000 ++insll3 0x000000000000000F = 0x000000000F000000 ++insll3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++insll3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFE000000 ++insll3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFD000000 ++insll3 0x000000000000007F = 0x000000007F000000 ++insll3 0x0000000000000080 = 0x0000000080000000 ++insll3 0x0000000000007FFF = 0x0000007FFF000000 ++insll3 0x0000000000008000 = 0x0000008000000000 ++insll3 0x000000007FFFFFFF = 0x007FFFFFFF000000 ++insll3 0x0000000080000000 = 0x0080000000000000 ++insll3 0x8000000000000000 = 0x0000000000000000 ++insll3 0xFFFFFFFF80000000 = 0xFF80000000000000 ++insll3 0xFFFFFFFFFFFF8000 = 0xFFFFFF8000000000 ++insll3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++insll3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++insll3 0x123456789ABCDEF0 = 0x789ABCDEF0000000 ++insll3 0xF0DEBC9A78563412 = 0x9A78563412000000 ++=== Running test on insll15 === ++insll15 0x0000000000000000 = 0x0000000000000000 ++insll15 0x0000000000000001 = 0x0100000000000000 ++insll15 0x0000000000000002 = 0x0200000000000000 ++insll15 0x0000000000000003 = 0x0300000000000000 ++insll15 0x000000000000000F = 0x0F00000000000000 ++insll15 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++insll15 0xFFFFFFFFFFFFFFFE = 0xFE00000000000000 ++insll15 0xFFFFFFFFFFFFFFFD = 0xFD00000000000000 ++insll15 0x000000000000007F = 0x7F00000000000000 ++insll15 0x0000000000000080 = 0x8000000000000000 ++insll15 0x0000000000007FFF = 0xFF00000000000000 ++insll15 0x0000000000008000 = 0x0000000000000000 ++insll15 0x000000007FFFFFFF = 0xFF00000000000000 ++insll15 0x0000000080000000 = 0x0000000000000000 ++insll15 0x8000000000000000 = 0x0000000000000000 ++insll15 0xFFFFFFFF80000000 = 0x0000000000000000 ++insll15 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++insll15 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++insll15 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++insll15 0x123456789ABCDEF0 = 0xF000000000000000 ++insll15 0xF0DEBC9A78563412 = 0x1200000000000000 ++=== Running test on insll127 === ++insll127 0x0000000000000000 = 0x0000000000000000 ++insll127 0x0000000000000001 = 0x0100000000000000 ++insll127 0x0000000000000002 = 0x0200000000000000 ++insll127 0x0000000000000003 = 0x0300000000000000 ++insll127 0x000000000000000F = 0x0F00000000000000 ++insll127 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++insll127 0xFFFFFFFFFFFFFFFE = 0xFE00000000000000 ++insll127 0xFFFFFFFFFFFFFFFD = 0xFD00000000000000 ++insll127 0x000000000000007F = 0x7F00000000000000 ++insll127 0x0000000000000080 = 0x8000000000000000 ++insll127 0x0000000000007FFF = 0xFF00000000000000 ++insll127 0x0000000000008000 = 0x0000000000000000 ++insll127 0x000000007FFFFFFF = 0xFF00000000000000 ++insll127 0x0000000080000000 = 0x0000000000000000 ++insll127 0x8000000000000000 = 0x0000000000000000 ++insll127 0xFFFFFFFF80000000 = 0x0000000000000000 ++insll127 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++insll127 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++insll127 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++insll127 0x123456789ABCDEF0 = 0xF000000000000000 ++insll127 0xF0DEBC9A78563412 = 0x1200000000000000 ++=== Running test on insll128 === ++insll128 0x0000000000000000 = 0x0000000000000000 ++insll128 0x0000000000000001 = 0x0000000000000001 ++insll128 0x0000000000000002 = 0x0000000000000002 ++insll128 0x0000000000000003 = 0x0000000000000003 ++insll128 0x000000000000000F = 0x000000000000000F ++insll128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++insll128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++insll128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++insll128 0x000000000000007F = 0x000000000000007F ++insll128 0x0000000000000080 = 0x0000000000000080 ++insll128 0x0000000000007FFF = 0x0000000000007FFF ++insll128 0x0000000000008000 = 0x0000000000008000 ++insll128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++insll128 0x0000000080000000 = 0x0000000080000000 ++insll128 0x8000000000000000 = 0x8000000000000000 ++insll128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++insll128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++insll128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++insll128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++insll128 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++insll128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on insll255 === ++insll255 0x0000000000000000 = 0x0000000000000000 ++insll255 0x0000000000000001 = 0x0100000000000000 ++insll255 0x0000000000000002 = 0x0200000000000000 ++insll255 0x0000000000000003 = 0x0300000000000000 ++insll255 0x000000000000000F = 0x0F00000000000000 ++insll255 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++insll255 0xFFFFFFFFFFFFFFFE = 0xFE00000000000000 ++insll255 0xFFFFFFFFFFFFFFFD = 0xFD00000000000000 ++insll255 0x000000000000007F = 0x7F00000000000000 ++insll255 0x0000000000000080 = 0x8000000000000000 ++insll255 0x0000000000007FFF = 0xFF00000000000000 ++insll255 0x0000000000008000 = 0x0000000000000000 ++insll255 0x000000007FFFFFFF = 0xFF00000000000000 ++insll255 0x0000000080000000 = 0x0000000000000000 ++insll255 0x8000000000000000 = 0x0000000000000000 ++insll255 0xFFFFFFFF80000000 = 0x0000000000000000 ++insll255 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++insll255 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++insll255 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++insll255 0x123456789ABCDEF0 = 0xF000000000000000 ++insll255 0xF0DEBC9A78563412 = 0x1200000000000000 ++=== Running test on inshb0 === ++inshb0 0x0000000000000000 = 0x0000000000000000 ++inshb0 0x0000000000000001 = 0x0000000000000000 ++inshb0 0x0000000000000002 = 0x0000000000000000 ++inshb0 0x0000000000000003 = 0x0000000000000000 ++inshb0 0x000000000000000F = 0x0000000000000000 ++inshb0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb0 0x000000000000007F = 0x0000000000000000 ++inshb0 0x0000000000000080 = 0x0000000000000000 ++inshb0 0x0000000000007FFF = 0x0000000000000000 ++inshb0 0x0000000000008000 = 0x0000000000000000 ++inshb0 0x000000007FFFFFFF = 0x0000000000000000 ++inshb0 0x0000000080000000 = 0x0000000000000000 ++inshb0 0x8000000000000000 = 0x0000000000000000 ++inshb0 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb0 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb0 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshb1 === ++inshb1 0x0000000000000000 = 0x0000000000000000 ++inshb1 0x0000000000000001 = 0x0000000000000000 ++inshb1 0x0000000000000002 = 0x0000000000000000 ++inshb1 0x0000000000000003 = 0x0000000000000000 ++inshb1 0x000000000000000F = 0x0000000000000000 ++inshb1 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb1 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb1 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb1 0x000000000000007F = 0x0000000000000000 ++inshb1 0x0000000000000080 = 0x0000000000000000 ++inshb1 0x0000000000007FFF = 0x0000000000000000 ++inshb1 0x0000000000008000 = 0x0000000000000000 ++inshb1 0x000000007FFFFFFF = 0x0000000000000000 ++inshb1 0x0000000080000000 = 0x0000000000000000 ++inshb1 0x8000000000000000 = 0x0000000000000000 ++inshb1 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb1 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb1 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb1 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb1 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshb2 === ++inshb2 0x0000000000000000 = 0x0000000000000000 ++inshb2 0x0000000000000001 = 0x0000000000000000 ++inshb2 0x0000000000000002 = 0x0000000000000000 ++inshb2 0x0000000000000003 = 0x0000000000000000 ++inshb2 0x000000000000000F = 0x0000000000000000 ++inshb2 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb2 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb2 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb2 0x000000000000007F = 0x0000000000000000 ++inshb2 0x0000000000000080 = 0x0000000000000000 ++inshb2 0x0000000000007FFF = 0x0000000000000000 ++inshb2 0x0000000000008000 = 0x0000000000000000 ++inshb2 0x000000007FFFFFFF = 0x0000000000000000 ++inshb2 0x0000000080000000 = 0x0000000000000000 ++inshb2 0x8000000000000000 = 0x0000000000000000 ++inshb2 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb2 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb2 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb2 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb2 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb2 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshb3 === ++inshb3 0x0000000000000000 = 0x0000000000000000 ++inshb3 0x0000000000000001 = 0x0000000000000000 ++inshb3 0x0000000000000002 = 0x0000000000000000 ++inshb3 0x0000000000000003 = 0x0000000000000000 ++inshb3 0x000000000000000F = 0x0000000000000000 ++inshb3 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb3 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb3 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb3 0x000000000000007F = 0x0000000000000000 ++inshb3 0x0000000000000080 = 0x0000000000000000 ++inshb3 0x0000000000007FFF = 0x0000000000000000 ++inshb3 0x0000000000008000 = 0x0000000000000000 ++inshb3 0x000000007FFFFFFF = 0x0000000000000000 ++inshb3 0x0000000080000000 = 0x0000000000000000 ++inshb3 0x8000000000000000 = 0x0000000000000000 ++inshb3 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb3 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb3 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb3 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb3 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb3 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshb15 === ++inshb15 0x0000000000000000 = 0x0000000000000000 ++inshb15 0x0000000000000001 = 0x0000000000000000 ++inshb15 0x0000000000000002 = 0x0000000000000000 ++inshb15 0x0000000000000003 = 0x0000000000000000 ++inshb15 0x000000000000000F = 0x0000000000000000 ++inshb15 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb15 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb15 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb15 0x000000000000007F = 0x0000000000000000 ++inshb15 0x0000000000000080 = 0x0000000000000000 ++inshb15 0x0000000000007FFF = 0x0000000000000000 ++inshb15 0x0000000000008000 = 0x0000000000000000 ++inshb15 0x000000007FFFFFFF = 0x0000000000000000 ++inshb15 0x0000000080000000 = 0x0000000000000000 ++inshb15 0x8000000000000000 = 0x0000000000000000 ++inshb15 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb15 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb15 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb15 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb15 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb15 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshb127 === ++inshb127 0x0000000000000000 = 0x0000000000000000 ++inshb127 0x0000000000000001 = 0x0000000000000000 ++inshb127 0x0000000000000002 = 0x0000000000000000 ++inshb127 0x0000000000000003 = 0x0000000000000000 ++inshb127 0x000000000000000F = 0x0000000000000000 ++inshb127 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb127 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb127 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb127 0x000000000000007F = 0x0000000000000000 ++inshb127 0x0000000000000080 = 0x0000000000000000 ++inshb127 0x0000000000007FFF = 0x0000000000000000 ++inshb127 0x0000000000008000 = 0x0000000000000000 ++inshb127 0x000000007FFFFFFF = 0x0000000000000000 ++inshb127 0x0000000080000000 = 0x0000000000000000 ++inshb127 0x8000000000000000 = 0x0000000000000000 ++inshb127 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb127 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb127 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb127 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb127 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb127 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshb128 === ++inshb128 0x0000000000000000 = 0x0000000000000000 ++inshb128 0x0000000000000001 = 0x0000000000000000 ++inshb128 0x0000000000000002 = 0x0000000000000000 ++inshb128 0x0000000000000003 = 0x0000000000000000 ++inshb128 0x000000000000000F = 0x0000000000000000 ++inshb128 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb128 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb128 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb128 0x000000000000007F = 0x0000000000000000 ++inshb128 0x0000000000000080 = 0x0000000000000000 ++inshb128 0x0000000000007FFF = 0x0000000000000000 ++inshb128 0x0000000000008000 = 0x0000000000000000 ++inshb128 0x000000007FFFFFFF = 0x0000000000000000 ++inshb128 0x0000000080000000 = 0x0000000000000000 ++inshb128 0x8000000000000000 = 0x0000000000000000 ++inshb128 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb128 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb128 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb128 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb128 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb128 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshb255 === ++inshb255 0x0000000000000000 = 0x0000000000000000 ++inshb255 0x0000000000000001 = 0x0000000000000000 ++inshb255 0x0000000000000002 = 0x0000000000000000 ++inshb255 0x0000000000000003 = 0x0000000000000000 ++inshb255 0x000000000000000F = 0x0000000000000000 ++inshb255 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb255 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb255 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb255 0x000000000000007F = 0x0000000000000000 ++inshb255 0x0000000000000080 = 0x0000000000000000 ++inshb255 0x0000000000007FFF = 0x0000000000000000 ++inshb255 0x0000000000008000 = 0x0000000000000000 ++inshb255 0x000000007FFFFFFF = 0x0000000000000000 ++inshb255 0x0000000080000000 = 0x0000000000000000 ++inshb255 0x8000000000000000 = 0x0000000000000000 ++inshb255 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb255 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb255 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb255 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb255 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb255 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshh0 === ++inshh0 0x0000000000000000 = 0x0000000000000000 ++inshh0 0x0000000000000001 = 0x0000000000000000 ++inshh0 0x0000000000000002 = 0x0000000000000000 ++inshh0 0x0000000000000003 = 0x0000000000000000 ++inshh0 0x000000000000000F = 0x0000000000000000 ++inshh0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh0 0x000000000000007F = 0x0000000000000000 ++inshh0 0x0000000000000080 = 0x0000000000000000 ++inshh0 0x0000000000007FFF = 0x0000000000000000 ++inshh0 0x0000000000008000 = 0x0000000000000000 ++inshh0 0x000000007FFFFFFF = 0x0000000000000000 ++inshh0 0x0000000080000000 = 0x0000000000000000 ++inshh0 0x8000000000000000 = 0x0000000000000000 ++inshh0 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh0 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh0 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshh1 === ++inshh1 0x0000000000000000 = 0x0000000000000000 ++inshh1 0x0000000000000001 = 0x0000000000000000 ++inshh1 0x0000000000000002 = 0x0000000000000000 ++inshh1 0x0000000000000003 = 0x0000000000000000 ++inshh1 0x000000000000000F = 0x0000000000000000 ++inshh1 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh1 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh1 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh1 0x000000000000007F = 0x0000000000000000 ++inshh1 0x0000000000000080 = 0x0000000000000000 ++inshh1 0x0000000000007FFF = 0x0000000000000000 ++inshh1 0x0000000000008000 = 0x0000000000000000 ++inshh1 0x000000007FFFFFFF = 0x0000000000000000 ++inshh1 0x0000000080000000 = 0x0000000000000000 ++inshh1 0x8000000000000000 = 0x0000000000000000 ++inshh1 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh1 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh1 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh1 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh1 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshh2 === ++inshh2 0x0000000000000000 = 0x0000000000000000 ++inshh2 0x0000000000000001 = 0x0000000000000000 ++inshh2 0x0000000000000002 = 0x0000000000000000 ++inshh2 0x0000000000000003 = 0x0000000000000000 ++inshh2 0x000000000000000F = 0x0000000000000000 ++inshh2 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh2 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh2 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh2 0x000000000000007F = 0x0000000000000000 ++inshh2 0x0000000000000080 = 0x0000000000000000 ++inshh2 0x0000000000007FFF = 0x0000000000000000 ++inshh2 0x0000000000008000 = 0x0000000000000000 ++inshh2 0x000000007FFFFFFF = 0x0000000000000000 ++inshh2 0x0000000080000000 = 0x0000000000000000 ++inshh2 0x8000000000000000 = 0x0000000000000000 ++inshh2 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh2 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh2 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh2 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh2 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh2 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshh3 === ++inshh3 0x0000000000000000 = 0x0000000000000000 ++inshh3 0x0000000000000001 = 0x0000000000000000 ++inshh3 0x0000000000000002 = 0x0000000000000000 ++inshh3 0x0000000000000003 = 0x0000000000000000 ++inshh3 0x000000000000000F = 0x0000000000000000 ++inshh3 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh3 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh3 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh3 0x000000000000007F = 0x0000000000000000 ++inshh3 0x0000000000000080 = 0x0000000000000000 ++inshh3 0x0000000000007FFF = 0x0000000000000000 ++inshh3 0x0000000000008000 = 0x0000000000000000 ++inshh3 0x000000007FFFFFFF = 0x0000000000000000 ++inshh3 0x0000000080000000 = 0x0000000000000000 ++inshh3 0x8000000000000000 = 0x0000000000000000 ++inshh3 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh3 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh3 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh3 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh3 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh3 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshh15 === ++inshh15 0x0000000000000000 = 0x0000000000000000 ++inshh15 0x0000000000000001 = 0x0000000000000000 ++inshh15 0x0000000000000002 = 0x0000000000000000 ++inshh15 0x0000000000000003 = 0x0000000000000000 ++inshh15 0x000000000000000F = 0x0000000000000000 ++inshh15 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh15 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++inshh15 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++inshh15 0x000000000000007F = 0x0000000000000000 ++inshh15 0x0000000000000080 = 0x0000000000000000 ++inshh15 0x0000000000007FFF = 0x000000000000007F ++inshh15 0x0000000000008000 = 0x0000000000000080 ++inshh15 0x000000007FFFFFFF = 0x00000000000000FF ++inshh15 0x0000000080000000 = 0x0000000000000000 ++inshh15 0x8000000000000000 = 0x0000000000000000 ++inshh15 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh15 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++inshh15 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++inshh15 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh15 0x123456789ABCDEF0 = 0x00000000000000DE ++inshh15 0xF0DEBC9A78563412 = 0x0000000000000034 ++=== Running test on inshh127 === ++inshh127 0x0000000000000000 = 0x0000000000000000 ++inshh127 0x0000000000000001 = 0x0000000000000000 ++inshh127 0x0000000000000002 = 0x0000000000000000 ++inshh127 0x0000000000000003 = 0x0000000000000000 ++inshh127 0x000000000000000F = 0x0000000000000000 ++inshh127 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh127 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++inshh127 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++inshh127 0x000000000000007F = 0x0000000000000000 ++inshh127 0x0000000000000080 = 0x0000000000000000 ++inshh127 0x0000000000007FFF = 0x000000000000007F ++inshh127 0x0000000000008000 = 0x0000000000000080 ++inshh127 0x000000007FFFFFFF = 0x00000000000000FF ++inshh127 0x0000000080000000 = 0x0000000000000000 ++inshh127 0x8000000000000000 = 0x0000000000000000 ++inshh127 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh127 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++inshh127 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++inshh127 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh127 0x123456789ABCDEF0 = 0x00000000000000DE ++inshh127 0xF0DEBC9A78563412 = 0x0000000000000034 ++=== Running test on inshh128 === ++inshh128 0x0000000000000000 = 0x0000000000000000 ++inshh128 0x0000000000000001 = 0x0000000000000000 ++inshh128 0x0000000000000002 = 0x0000000000000000 ++inshh128 0x0000000000000003 = 0x0000000000000000 ++inshh128 0x000000000000000F = 0x0000000000000000 ++inshh128 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh128 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh128 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh128 0x000000000000007F = 0x0000000000000000 ++inshh128 0x0000000000000080 = 0x0000000000000000 ++inshh128 0x0000000000007FFF = 0x0000000000000000 ++inshh128 0x0000000000008000 = 0x0000000000000000 ++inshh128 0x000000007FFFFFFF = 0x0000000000000000 ++inshh128 0x0000000080000000 = 0x0000000000000000 ++inshh128 0x8000000000000000 = 0x0000000000000000 ++inshh128 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh128 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh128 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh128 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh128 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh128 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshh255 === ++inshh255 0x0000000000000000 = 0x0000000000000000 ++inshh255 0x0000000000000001 = 0x0000000000000000 ++inshh255 0x0000000000000002 = 0x0000000000000000 ++inshh255 0x0000000000000003 = 0x0000000000000000 ++inshh255 0x000000000000000F = 0x0000000000000000 ++inshh255 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh255 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++inshh255 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++inshh255 0x000000000000007F = 0x0000000000000000 ++inshh255 0x0000000000000080 = 0x0000000000000000 ++inshh255 0x0000000000007FFF = 0x000000000000007F ++inshh255 0x0000000000008000 = 0x0000000000000080 ++inshh255 0x000000007FFFFFFF = 0x00000000000000FF ++inshh255 0x0000000080000000 = 0x0000000000000000 ++inshh255 0x8000000000000000 = 0x0000000000000000 ++inshh255 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh255 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++inshh255 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++inshh255 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh255 0x123456789ABCDEF0 = 0x00000000000000DE ++inshh255 0xF0DEBC9A78563412 = 0x0000000000000034 ++=== Running test on inshw0 === ++inshw0 0x0000000000000000 = 0x0000000000000000 ++inshw0 0x0000000000000001 = 0x0000000000000000 ++inshw0 0x0000000000000002 = 0x0000000000000000 ++inshw0 0x0000000000000003 = 0x0000000000000000 ++inshw0 0x000000000000000F = 0x0000000000000000 ++inshw0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw0 0x000000000000007F = 0x0000000000000000 ++inshw0 0x0000000000000080 = 0x0000000000000000 ++inshw0 0x0000000000007FFF = 0x0000000000000000 ++inshw0 0x0000000000008000 = 0x0000000000000000 ++inshw0 0x000000007FFFFFFF = 0x0000000000000000 ++inshw0 0x0000000080000000 = 0x0000000000000000 ++inshw0 0x8000000000000000 = 0x0000000000000000 ++inshw0 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw0 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw0 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshw1 === ++inshw1 0x0000000000000000 = 0x0000000000000000 ++inshw1 0x0000000000000001 = 0x0000000000000000 ++inshw1 0x0000000000000002 = 0x0000000000000000 ++inshw1 0x0000000000000003 = 0x0000000000000000 ++inshw1 0x000000000000000F = 0x0000000000000000 ++inshw1 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw1 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw1 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw1 0x000000000000007F = 0x0000000000000000 ++inshw1 0x0000000000000080 = 0x0000000000000000 ++inshw1 0x0000000000007FFF = 0x0000000000000000 ++inshw1 0x0000000000008000 = 0x0000000000000000 ++inshw1 0x000000007FFFFFFF = 0x0000000000000000 ++inshw1 0x0000000080000000 = 0x0000000000000000 ++inshw1 0x8000000000000000 = 0x0000000000000000 ++inshw1 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw1 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw1 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw1 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw1 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshw2 === ++inshw2 0x0000000000000000 = 0x0000000000000000 ++inshw2 0x0000000000000001 = 0x0000000000000000 ++inshw2 0x0000000000000002 = 0x0000000000000000 ++inshw2 0x0000000000000003 = 0x0000000000000000 ++inshw2 0x000000000000000F = 0x0000000000000000 ++inshw2 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw2 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw2 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw2 0x000000000000007F = 0x0000000000000000 ++inshw2 0x0000000000000080 = 0x0000000000000000 ++inshw2 0x0000000000007FFF = 0x0000000000000000 ++inshw2 0x0000000000008000 = 0x0000000000000000 ++inshw2 0x000000007FFFFFFF = 0x0000000000000000 ++inshw2 0x0000000080000000 = 0x0000000000000000 ++inshw2 0x8000000000000000 = 0x0000000000000000 ++inshw2 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw2 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw2 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw2 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw2 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw2 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshw3 === ++inshw3 0x0000000000000000 = 0x0000000000000000 ++inshw3 0x0000000000000001 = 0x0000000000000000 ++inshw3 0x0000000000000002 = 0x0000000000000000 ++inshw3 0x0000000000000003 = 0x0000000000000000 ++inshw3 0x000000000000000F = 0x0000000000000000 ++inshw3 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw3 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw3 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw3 0x000000000000007F = 0x0000000000000000 ++inshw3 0x0000000000000080 = 0x0000000000000000 ++inshw3 0x0000000000007FFF = 0x0000000000000000 ++inshw3 0x0000000000008000 = 0x0000000000000000 ++inshw3 0x000000007FFFFFFF = 0x0000000000000000 ++inshw3 0x0000000080000000 = 0x0000000000000000 ++inshw3 0x8000000000000000 = 0x0000000000000000 ++inshw3 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw3 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw3 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw3 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw3 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw3 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshw15 === ++inshw15 0x0000000000000000 = 0x0000000000000000 ++inshw15 0x0000000000000001 = 0x0000000000000000 ++inshw15 0x0000000000000002 = 0x0000000000000000 ++inshw15 0x0000000000000003 = 0x0000000000000000 ++inshw15 0x000000000000000F = 0x0000000000000000 ++inshw15 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw15 0xFFFFFFFFFFFFFFFE = 0x0000000000FFFFFF ++inshw15 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++inshw15 0x000000000000007F = 0x0000000000000000 ++inshw15 0x0000000000000080 = 0x0000000000000000 ++inshw15 0x0000000000007FFF = 0x000000000000007F ++inshw15 0x0000000000008000 = 0x0000000000000080 ++inshw15 0x000000007FFFFFFF = 0x00000000007FFFFF ++inshw15 0x0000000080000000 = 0x0000000000800000 ++inshw15 0x8000000000000000 = 0x0000000000000000 ++inshw15 0xFFFFFFFF80000000 = 0x0000000000800000 ++inshw15 0xFFFFFFFFFFFF8000 = 0x0000000000FFFF80 ++inshw15 0xFFFFFFFFFFFFFF80 = 0x0000000000FFFFFF ++inshw15 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw15 0x123456789ABCDEF0 = 0x00000000009ABCDE ++inshw15 0xF0DEBC9A78563412 = 0x0000000000785634 ++=== Running test on inshw127 === ++inshw127 0x0000000000000000 = 0x0000000000000000 ++inshw127 0x0000000000000001 = 0x0000000000000000 ++inshw127 0x0000000000000002 = 0x0000000000000000 ++inshw127 0x0000000000000003 = 0x0000000000000000 ++inshw127 0x000000000000000F = 0x0000000000000000 ++inshw127 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw127 0xFFFFFFFFFFFFFFFE = 0x0000000000FFFFFF ++inshw127 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++inshw127 0x000000000000007F = 0x0000000000000000 ++inshw127 0x0000000000000080 = 0x0000000000000000 ++inshw127 0x0000000000007FFF = 0x000000000000007F ++inshw127 0x0000000000008000 = 0x0000000000000080 ++inshw127 0x000000007FFFFFFF = 0x00000000007FFFFF ++inshw127 0x0000000080000000 = 0x0000000000800000 ++inshw127 0x8000000000000000 = 0x0000000000000000 ++inshw127 0xFFFFFFFF80000000 = 0x0000000000800000 ++inshw127 0xFFFFFFFFFFFF8000 = 0x0000000000FFFF80 ++inshw127 0xFFFFFFFFFFFFFF80 = 0x0000000000FFFFFF ++inshw127 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw127 0x123456789ABCDEF0 = 0x00000000009ABCDE ++inshw127 0xF0DEBC9A78563412 = 0x0000000000785634 ++=== Running test on inshw128 === ++inshw128 0x0000000000000000 = 0x0000000000000000 ++inshw128 0x0000000000000001 = 0x0000000000000000 ++inshw128 0x0000000000000002 = 0x0000000000000000 ++inshw128 0x0000000000000003 = 0x0000000000000000 ++inshw128 0x000000000000000F = 0x0000000000000000 ++inshw128 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw128 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw128 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw128 0x000000000000007F = 0x0000000000000000 ++inshw128 0x0000000000000080 = 0x0000000000000000 ++inshw128 0x0000000000007FFF = 0x0000000000000000 ++inshw128 0x0000000000008000 = 0x0000000000000000 ++inshw128 0x000000007FFFFFFF = 0x0000000000000000 ++inshw128 0x0000000080000000 = 0x0000000000000000 ++inshw128 0x8000000000000000 = 0x0000000000000000 ++inshw128 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw128 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw128 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw128 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw128 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw128 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshw255 === ++inshw255 0x0000000000000000 = 0x0000000000000000 ++inshw255 0x0000000000000001 = 0x0000000000000000 ++inshw255 0x0000000000000002 = 0x0000000000000000 ++inshw255 0x0000000000000003 = 0x0000000000000000 ++inshw255 0x000000000000000F = 0x0000000000000000 ++inshw255 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw255 0xFFFFFFFFFFFFFFFE = 0x0000000000FFFFFF ++inshw255 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++inshw255 0x000000000000007F = 0x0000000000000000 ++inshw255 0x0000000000000080 = 0x0000000000000000 ++inshw255 0x0000000000007FFF = 0x000000000000007F ++inshw255 0x0000000000008000 = 0x0000000000000080 ++inshw255 0x000000007FFFFFFF = 0x00000000007FFFFF ++inshw255 0x0000000080000000 = 0x0000000000800000 ++inshw255 0x8000000000000000 = 0x0000000000000000 ++inshw255 0xFFFFFFFF80000000 = 0x0000000000800000 ++inshw255 0xFFFFFFFFFFFF8000 = 0x0000000000FFFF80 ++inshw255 0xFFFFFFFFFFFFFF80 = 0x0000000000FFFFFF ++inshw255 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw255 0x123456789ABCDEF0 = 0x00000000009ABCDE ++inshw255 0xF0DEBC9A78563412 = 0x0000000000785634 ++=== Running test on inshl0 === ++inshl0 0x0000000000000000 = 0x0000000000000000 ++inshl0 0x0000000000000001 = 0x0000000000000000 ++inshl0 0x0000000000000002 = 0x0000000000000000 ++inshl0 0x0000000000000003 = 0x0000000000000000 ++inshl0 0x000000000000000F = 0x0000000000000000 ++inshl0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshl0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshl0 0x000000000000007F = 0x0000000000000000 ++inshl0 0x0000000000000080 = 0x0000000000000000 ++inshl0 0x0000000000007FFF = 0x0000000000000000 ++inshl0 0x0000000000008000 = 0x0000000000000000 ++inshl0 0x000000007FFFFFFF = 0x0000000000000000 ++inshl0 0x0000000080000000 = 0x0000000000000000 ++inshl0 0x8000000000000000 = 0x0000000000000000 ++inshl0 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl0 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl0 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshl1 === ++inshl1 0x0000000000000000 = 0x0000000000000000 ++inshl1 0x0000000000000001 = 0x0000000000000000 ++inshl1 0x0000000000000002 = 0x0000000000000000 ++inshl1 0x0000000000000003 = 0x0000000000000000 ++inshl1 0x000000000000000F = 0x0000000000000000 ++inshl1 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++inshl1 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++inshl1 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++inshl1 0x000000000000007F = 0x0000000000000000 ++inshl1 0x0000000000000080 = 0x0000000000000000 ++inshl1 0x0000000000007FFF = 0x0000000000000000 ++inshl1 0x0000000000008000 = 0x0000000000000000 ++inshl1 0x000000007FFFFFFF = 0x0000000000000000 ++inshl1 0x0000000080000000 = 0x0000000000000000 ++inshl1 0x8000000000000000 = 0x0000000000000080 ++inshl1 0xFFFFFFFF80000000 = 0x00000000000000FF ++inshl1 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++inshl1 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++inshl1 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++inshl1 0x123456789ABCDEF0 = 0x0000000000000012 ++inshl1 0xF0DEBC9A78563412 = 0x00000000000000F0 ++=== Running test on inshl2 === ++inshl2 0x0000000000000000 = 0x0000000000000000 ++inshl2 0x0000000000000001 = 0x0000000000000000 ++inshl2 0x0000000000000002 = 0x0000000000000000 ++inshl2 0x0000000000000003 = 0x0000000000000000 ++inshl2 0x000000000000000F = 0x0000000000000000 ++inshl2 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++inshl2 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++inshl2 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFF ++inshl2 0x000000000000007F = 0x0000000000000000 ++inshl2 0x0000000000000080 = 0x0000000000000000 ++inshl2 0x0000000000007FFF = 0x0000000000000000 ++inshl2 0x0000000000008000 = 0x0000000000000000 ++inshl2 0x000000007FFFFFFF = 0x0000000000000000 ++inshl2 0x0000000080000000 = 0x0000000000000000 ++inshl2 0x8000000000000000 = 0x0000000000008000 ++inshl2 0xFFFFFFFF80000000 = 0x000000000000FFFF ++inshl2 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++inshl2 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++inshl2 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++inshl2 0x123456789ABCDEF0 = 0x0000000000001234 ++inshl2 0xF0DEBC9A78563412 = 0x000000000000F0DE ++=== Running test on inshl3 === ++inshl3 0x0000000000000000 = 0x0000000000000000 ++inshl3 0x0000000000000001 = 0x0000000000000000 ++inshl3 0x0000000000000002 = 0x0000000000000000 ++inshl3 0x0000000000000003 = 0x0000000000000000 ++inshl3 0x000000000000000F = 0x0000000000000000 ++inshl3 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshl3 0xFFFFFFFFFFFFFFFE = 0x0000000000FFFFFF ++inshl3 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++inshl3 0x000000000000007F = 0x0000000000000000 ++inshl3 0x0000000000000080 = 0x0000000000000000 ++inshl3 0x0000000000007FFF = 0x0000000000000000 ++inshl3 0x0000000000008000 = 0x0000000000000000 ++inshl3 0x000000007FFFFFFF = 0x0000000000000000 ++inshl3 0x0000000080000000 = 0x0000000000000000 ++inshl3 0x8000000000000000 = 0x0000000000800000 ++inshl3 0xFFFFFFFF80000000 = 0x0000000000FFFFFF ++inshl3 0xFFFFFFFFFFFF8000 = 0x0000000000FFFFFF ++inshl3 0xFFFFFFFFFFFFFF80 = 0x0000000000FFFFFF ++inshl3 0x7FFFFFFFFFFFFFFF = 0x00000000007FFFFF ++inshl3 0x123456789ABCDEF0 = 0x0000000000123456 ++inshl3 0xF0DEBC9A78563412 = 0x0000000000F0DEBC ++=== Running test on inshl15 === ++inshl15 0x0000000000000000 = 0x0000000000000000 ++inshl15 0x0000000000000001 = 0x0000000000000000 ++inshl15 0x0000000000000002 = 0x0000000000000000 ++inshl15 0x0000000000000003 = 0x0000000000000000 ++inshl15 0x000000000000000F = 0x0000000000000000 ++inshl15 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl15 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFF ++inshl15 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFF ++inshl15 0x000000000000007F = 0x0000000000000000 ++inshl15 0x0000000000000080 = 0x0000000000000000 ++inshl15 0x0000000000007FFF = 0x000000000000007F ++inshl15 0x0000000000008000 = 0x0000000000000080 ++inshl15 0x000000007FFFFFFF = 0x00000000007FFFFF ++inshl15 0x0000000080000000 = 0x0000000000800000 ++inshl15 0x8000000000000000 = 0x0080000000000000 ++inshl15 0xFFFFFFFF80000000 = 0x00FFFFFFFF800000 ++inshl15 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFFFF80 ++inshl15 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFFFF ++inshl15 0x7FFFFFFFFFFFFFFF = 0x007FFFFFFFFFFFFF ++inshl15 0x123456789ABCDEF0 = 0x00123456789ABCDE ++inshl15 0xF0DEBC9A78563412 = 0x00F0DEBC9A785634 ++=== Running test on inshl127 === ++inshl127 0x0000000000000000 = 0x0000000000000000 ++inshl127 0x0000000000000001 = 0x0000000000000000 ++inshl127 0x0000000000000002 = 0x0000000000000000 ++inshl127 0x0000000000000003 = 0x0000000000000000 ++inshl127 0x000000000000000F = 0x0000000000000000 ++inshl127 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl127 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFF ++inshl127 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFF ++inshl127 0x000000000000007F = 0x0000000000000000 ++inshl127 0x0000000000000080 = 0x0000000000000000 ++inshl127 0x0000000000007FFF = 0x000000000000007F ++inshl127 0x0000000000008000 = 0x0000000000000080 ++inshl127 0x000000007FFFFFFF = 0x00000000007FFFFF ++inshl127 0x0000000080000000 = 0x0000000000800000 ++inshl127 0x8000000000000000 = 0x0080000000000000 ++inshl127 0xFFFFFFFF80000000 = 0x00FFFFFFFF800000 ++inshl127 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFFFF80 ++inshl127 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFFFF ++inshl127 0x7FFFFFFFFFFFFFFF = 0x007FFFFFFFFFFFFF ++inshl127 0x123456789ABCDEF0 = 0x00123456789ABCDE ++inshl127 0xF0DEBC9A78563412 = 0x00F0DEBC9A785634 ++=== Running test on inshl128 === ++inshl128 0x0000000000000000 = 0x0000000000000000 ++inshl128 0x0000000000000001 = 0x0000000000000000 ++inshl128 0x0000000000000002 = 0x0000000000000000 ++inshl128 0x0000000000000003 = 0x0000000000000000 ++inshl128 0x000000000000000F = 0x0000000000000000 ++inshl128 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl128 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshl128 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshl128 0x000000000000007F = 0x0000000000000000 ++inshl128 0x0000000000000080 = 0x0000000000000000 ++inshl128 0x0000000000007FFF = 0x0000000000000000 ++inshl128 0x0000000000008000 = 0x0000000000000000 ++inshl128 0x000000007FFFFFFF = 0x0000000000000000 ++inshl128 0x0000000080000000 = 0x0000000000000000 ++inshl128 0x8000000000000000 = 0x0000000000000000 ++inshl128 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl128 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl128 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl128 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl128 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl128 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshl255 === ++inshl255 0x0000000000000000 = 0x0000000000000000 ++inshl255 0x0000000000000001 = 0x0000000000000000 ++inshl255 0x0000000000000002 = 0x0000000000000000 ++inshl255 0x0000000000000003 = 0x0000000000000000 ++inshl255 0x000000000000000F = 0x0000000000000000 ++inshl255 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl255 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFF ++inshl255 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFF ++inshl255 0x000000000000007F = 0x0000000000000000 ++inshl255 0x0000000000000080 = 0x0000000000000000 ++inshl255 0x0000000000007FFF = 0x000000000000007F ++inshl255 0x0000000000008000 = 0x0000000000000080 ++inshl255 0x000000007FFFFFFF = 0x00000000007FFFFF ++inshl255 0x0000000080000000 = 0x0000000000800000 ++inshl255 0x8000000000000000 = 0x0080000000000000 ++inshl255 0xFFFFFFFF80000000 = 0x00FFFFFFFF800000 ++inshl255 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFFFF80 ++inshl255 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFFFF ++inshl255 0x7FFFFFFFFFFFFFFF = 0x007FFFFFFFFFFFFF ++inshl255 0x123456789ABCDEF0 = 0x00123456789ABCDE ++inshl255 0xF0DEBC9A78563412 = 0x00F0DEBC9A785634 ++=== Running test on sll0 === ++sll0 0x0000000000000000 = 0x0000000000000000 ++sll0 0x0000000000000001 = 0x0000000000000001 ++sll0 0x0000000000000002 = 0x0000000000000002 ++sll0 0x0000000000000003 = 0x0000000000000003 ++sll0 0x000000000000000F = 0x000000000000000F ++sll0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sll0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sll0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sll0 0x000000000000007F = 0x000000000000007F ++sll0 0x0000000000000080 = 0x0000000000000080 ++sll0 0x0000000000007FFF = 0x0000000000007FFF ++sll0 0x0000000000008000 = 0x0000000000008000 ++sll0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sll0 0x0000000080000000 = 0x0000000080000000 ++sll0 0x8000000000000000 = 0x8000000000000000 ++sll0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sll0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sll0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sll0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sll0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sll0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on sll1 === ++sll1 0x0000000000000000 = 0x0000000000000000 ++sll1 0x0000000000000001 = 0x0000000000000002 ++sll1 0x0000000000000002 = 0x0000000000000004 ++sll1 0x0000000000000003 = 0x0000000000000006 ++sll1 0x000000000000000F = 0x000000000000001E ++sll1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++sll1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++sll1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFA ++sll1 0x000000000000007F = 0x00000000000000FE ++sll1 0x0000000000000080 = 0x0000000000000100 ++sll1 0x0000000000007FFF = 0x000000000000FFFE ++sll1 0x0000000000008000 = 0x0000000000010000 ++sll1 0x000000007FFFFFFF = 0x00000000FFFFFFFE ++sll1 0x0000000080000000 = 0x0000000100000000 ++sll1 0x8000000000000000 = 0x0000000000000000 ++sll1 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++sll1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++sll1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++sll1 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++sll1 0x123456789ABCDEF0 = 0x2468ACF13579BDE0 ++sll1 0xF0DEBC9A78563412 = 0xE1BD7934F0AC6824 ++=== Running test on sll2 === ++sll2 0x0000000000000000 = 0x0000000000000000 ++sll2 0x0000000000000001 = 0x0000000000000004 ++sll2 0x0000000000000002 = 0x0000000000000008 ++sll2 0x0000000000000003 = 0x000000000000000C ++sll2 0x000000000000000F = 0x000000000000003C ++sll2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++sll2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF8 ++sll2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF4 ++sll2 0x000000000000007F = 0x00000000000001FC ++sll2 0x0000000000000080 = 0x0000000000000200 ++sll2 0x0000000000007FFF = 0x000000000001FFFC ++sll2 0x0000000000008000 = 0x0000000000020000 ++sll2 0x000000007FFFFFFF = 0x00000001FFFFFFFC ++sll2 0x0000000080000000 = 0x0000000200000000 ++sll2 0x8000000000000000 = 0x0000000000000000 ++sll2 0xFFFFFFFF80000000 = 0xFFFFFFFE00000000 ++sll2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE0000 ++sll2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE00 ++sll2 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++sll2 0x123456789ABCDEF0 = 0x48D159E26AF37BC0 ++sll2 0xF0DEBC9A78563412 = 0xC37AF269E158D048 ++=== Running test on sll3 === ++sll3 0x0000000000000000 = 0x0000000000000000 ++sll3 0x0000000000000001 = 0x0000000000000008 ++sll3 0x0000000000000002 = 0x0000000000000010 ++sll3 0x0000000000000003 = 0x0000000000000018 ++sll3 0x000000000000000F = 0x0000000000000078 ++sll3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF8 ++sll3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF0 ++sll3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE8 ++sll3 0x000000000000007F = 0x00000000000003F8 ++sll3 0x0000000000000080 = 0x0000000000000400 ++sll3 0x0000000000007FFF = 0x000000000003FFF8 ++sll3 0x0000000000008000 = 0x0000000000040000 ++sll3 0x000000007FFFFFFF = 0x00000003FFFFFFF8 ++sll3 0x0000000080000000 = 0x0000000400000000 ++sll3 0x8000000000000000 = 0x0000000000000000 ++sll3 0xFFFFFFFF80000000 = 0xFFFFFFFC00000000 ++sll3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC0000 ++sll3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC00 ++sll3 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF8 ++sll3 0x123456789ABCDEF0 = 0x91A2B3C4D5E6F780 ++sll3 0xF0DEBC9A78563412 = 0x86F5E4D3C2B1A090 ++=== Running test on sll15 === ++sll15 0x0000000000000000 = 0x0000000000000000 ++sll15 0x0000000000000001 = 0x0000000000008000 ++sll15 0x0000000000000002 = 0x0000000000010000 ++sll15 0x0000000000000003 = 0x0000000000018000 ++sll15 0x000000000000000F = 0x0000000000078000 ++sll15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++sll15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++sll15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFE8000 ++sll15 0x000000000000007F = 0x00000000003F8000 ++sll15 0x0000000000000080 = 0x0000000000400000 ++sll15 0x0000000000007FFF = 0x000000003FFF8000 ++sll15 0x0000000000008000 = 0x0000000040000000 ++sll15 0x000000007FFFFFFF = 0x00003FFFFFFF8000 ++sll15 0x0000000080000000 = 0x0000400000000000 ++sll15 0x8000000000000000 = 0x0000000000000000 ++sll15 0xFFFFFFFF80000000 = 0xFFFFC00000000000 ++sll15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFC0000000 ++sll15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFC00000 ++sll15 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++sll15 0x123456789ABCDEF0 = 0x2B3C4D5E6F780000 ++sll15 0xF0DEBC9A78563412 = 0x5E4D3C2B1A090000 ++=== Running test on sll127 === ++sll127 0x0000000000000000 = 0x0000000000000000 ++sll127 0x0000000000000001 = 0x8000000000000000 ++sll127 0x0000000000000002 = 0x0000000000000000 ++sll127 0x0000000000000003 = 0x8000000000000000 ++sll127 0x000000000000000F = 0x8000000000000000 ++sll127 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++sll127 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sll127 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++sll127 0x000000000000007F = 0x8000000000000000 ++sll127 0x0000000000000080 = 0x0000000000000000 ++sll127 0x0000000000007FFF = 0x8000000000000000 ++sll127 0x0000000000008000 = 0x0000000000000000 ++sll127 0x000000007FFFFFFF = 0x8000000000000000 ++sll127 0x0000000080000000 = 0x0000000000000000 ++sll127 0x8000000000000000 = 0x0000000000000000 ++sll127 0xFFFFFFFF80000000 = 0x0000000000000000 ++sll127 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sll127 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sll127 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++sll127 0x123456789ABCDEF0 = 0x0000000000000000 ++sll127 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on sll128 === ++sll128 0x0000000000000000 = 0x0000000000000000 ++sll128 0x0000000000000001 = 0x0000000000000001 ++sll128 0x0000000000000002 = 0x0000000000000002 ++sll128 0x0000000000000003 = 0x0000000000000003 ++sll128 0x000000000000000F = 0x000000000000000F ++sll128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sll128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sll128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sll128 0x000000000000007F = 0x000000000000007F ++sll128 0x0000000000000080 = 0x0000000000000080 ++sll128 0x0000000000007FFF = 0x0000000000007FFF ++sll128 0x0000000000008000 = 0x0000000000008000 ++sll128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sll128 0x0000000080000000 = 0x0000000080000000 ++sll128 0x8000000000000000 = 0x8000000000000000 ++sll128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sll128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sll128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sll128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sll128 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sll128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on sll255 === ++sll255 0x0000000000000000 = 0x0000000000000000 ++sll255 0x0000000000000001 = 0x8000000000000000 ++sll255 0x0000000000000002 = 0x0000000000000000 ++sll255 0x0000000000000003 = 0x8000000000000000 ++sll255 0x000000000000000F = 0x8000000000000000 ++sll255 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++sll255 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sll255 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++sll255 0x000000000000007F = 0x8000000000000000 ++sll255 0x0000000000000080 = 0x0000000000000000 ++sll255 0x0000000000007FFF = 0x8000000000000000 ++sll255 0x0000000000008000 = 0x0000000000000000 ++sll255 0x000000007FFFFFFF = 0x8000000000000000 ++sll255 0x0000000080000000 = 0x0000000000000000 ++sll255 0x8000000000000000 = 0x0000000000000000 ++sll255 0xFFFFFFFF80000000 = 0x0000000000000000 ++sll255 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sll255 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sll255 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++sll255 0x123456789ABCDEF0 = 0x0000000000000000 ++sll255 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on srl0 === ++srl0 0x0000000000000000 = 0x0000000000000000 ++srl0 0x0000000000000001 = 0x0000000000000001 ++srl0 0x0000000000000002 = 0x0000000000000002 ++srl0 0x0000000000000003 = 0x0000000000000003 ++srl0 0x000000000000000F = 0x000000000000000F ++srl0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++srl0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++srl0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++srl0 0x000000000000007F = 0x000000000000007F ++srl0 0x0000000000000080 = 0x0000000000000080 ++srl0 0x0000000000007FFF = 0x0000000000007FFF ++srl0 0x0000000000008000 = 0x0000000000008000 ++srl0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++srl0 0x0000000080000000 = 0x0000000080000000 ++srl0 0x8000000000000000 = 0x8000000000000000 ++srl0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++srl0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++srl0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++srl0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++srl0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++srl0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on srl1 === ++srl1 0x0000000000000000 = 0x0000000000000000 ++srl1 0x0000000000000001 = 0x0000000000000000 ++srl1 0x0000000000000002 = 0x0000000000000001 ++srl1 0x0000000000000003 = 0x0000000000000001 ++srl1 0x000000000000000F = 0x0000000000000007 ++srl1 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++srl1 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFF ++srl1 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFE ++srl1 0x000000000000007F = 0x000000000000003F ++srl1 0x0000000000000080 = 0x0000000000000040 ++srl1 0x0000000000007FFF = 0x0000000000003FFF ++srl1 0x0000000000008000 = 0x0000000000004000 ++srl1 0x000000007FFFFFFF = 0x000000003FFFFFFF ++srl1 0x0000000080000000 = 0x0000000040000000 ++srl1 0x8000000000000000 = 0x4000000000000000 ++srl1 0xFFFFFFFF80000000 = 0x7FFFFFFFC0000000 ++srl1 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFC000 ++srl1 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFC0 ++srl1 0x7FFFFFFFFFFFFFFF = 0x3FFFFFFFFFFFFFFF ++srl1 0x123456789ABCDEF0 = 0x091A2B3C4D5E6F78 ++srl1 0xF0DEBC9A78563412 = 0x786F5E4D3C2B1A09 ++=== Running test on srl2 === ++srl2 0x0000000000000000 = 0x0000000000000000 ++srl2 0x0000000000000001 = 0x0000000000000000 ++srl2 0x0000000000000002 = 0x0000000000000000 ++srl2 0x0000000000000003 = 0x0000000000000000 ++srl2 0x000000000000000F = 0x0000000000000003 ++srl2 0xFFFFFFFFFFFFFFFF = 0x3FFFFFFFFFFFFFFF ++srl2 0xFFFFFFFFFFFFFFFE = 0x3FFFFFFFFFFFFFFF ++srl2 0xFFFFFFFFFFFFFFFD = 0x3FFFFFFFFFFFFFFF ++srl2 0x000000000000007F = 0x000000000000001F ++srl2 0x0000000000000080 = 0x0000000000000020 ++srl2 0x0000000000007FFF = 0x0000000000001FFF ++srl2 0x0000000000008000 = 0x0000000000002000 ++srl2 0x000000007FFFFFFF = 0x000000001FFFFFFF ++srl2 0x0000000080000000 = 0x0000000020000000 ++srl2 0x8000000000000000 = 0x2000000000000000 ++srl2 0xFFFFFFFF80000000 = 0x3FFFFFFFE0000000 ++srl2 0xFFFFFFFFFFFF8000 = 0x3FFFFFFFFFFFE000 ++srl2 0xFFFFFFFFFFFFFF80 = 0x3FFFFFFFFFFFFFE0 ++srl2 0x7FFFFFFFFFFFFFFF = 0x1FFFFFFFFFFFFFFF ++srl2 0x123456789ABCDEF0 = 0x048D159E26AF37BC ++srl2 0xF0DEBC9A78563412 = 0x3C37AF269E158D04 ++=== Running test on srl3 === ++srl3 0x0000000000000000 = 0x0000000000000000 ++srl3 0x0000000000000001 = 0x0000000000000000 ++srl3 0x0000000000000002 = 0x0000000000000000 ++srl3 0x0000000000000003 = 0x0000000000000000 ++srl3 0x000000000000000F = 0x0000000000000001 ++srl3 0xFFFFFFFFFFFFFFFF = 0x1FFFFFFFFFFFFFFF ++srl3 0xFFFFFFFFFFFFFFFE = 0x1FFFFFFFFFFFFFFF ++srl3 0xFFFFFFFFFFFFFFFD = 0x1FFFFFFFFFFFFFFF ++srl3 0x000000000000007F = 0x000000000000000F ++srl3 0x0000000000000080 = 0x0000000000000010 ++srl3 0x0000000000007FFF = 0x0000000000000FFF ++srl3 0x0000000000008000 = 0x0000000000001000 ++srl3 0x000000007FFFFFFF = 0x000000000FFFFFFF ++srl3 0x0000000080000000 = 0x0000000010000000 ++srl3 0x8000000000000000 = 0x1000000000000000 ++srl3 0xFFFFFFFF80000000 = 0x1FFFFFFFF0000000 ++srl3 0xFFFFFFFFFFFF8000 = 0x1FFFFFFFFFFFF000 ++srl3 0xFFFFFFFFFFFFFF80 = 0x1FFFFFFFFFFFFFF0 ++srl3 0x7FFFFFFFFFFFFFFF = 0x0FFFFFFFFFFFFFFF ++srl3 0x123456789ABCDEF0 = 0x02468ACF13579BDE ++srl3 0xF0DEBC9A78563412 = 0x1E1BD7934F0AC682 ++=== Running test on srl15 === ++srl15 0x0000000000000000 = 0x0000000000000000 ++srl15 0x0000000000000001 = 0x0000000000000000 ++srl15 0x0000000000000002 = 0x0000000000000000 ++srl15 0x0000000000000003 = 0x0000000000000000 ++srl15 0x000000000000000F = 0x0000000000000000 ++srl15 0xFFFFFFFFFFFFFFFF = 0x0001FFFFFFFFFFFF ++srl15 0xFFFFFFFFFFFFFFFE = 0x0001FFFFFFFFFFFF ++srl15 0xFFFFFFFFFFFFFFFD = 0x0001FFFFFFFFFFFF ++srl15 0x000000000000007F = 0x0000000000000000 ++srl15 0x0000000000000080 = 0x0000000000000000 ++srl15 0x0000000000007FFF = 0x0000000000000000 ++srl15 0x0000000000008000 = 0x0000000000000001 ++srl15 0x000000007FFFFFFF = 0x000000000000FFFF ++srl15 0x0000000080000000 = 0x0000000000010000 ++srl15 0x8000000000000000 = 0x0001000000000000 ++srl15 0xFFFFFFFF80000000 = 0x0001FFFFFFFF0000 ++srl15 0xFFFFFFFFFFFF8000 = 0x0001FFFFFFFFFFFF ++srl15 0xFFFFFFFFFFFFFF80 = 0x0001FFFFFFFFFFFF ++srl15 0x7FFFFFFFFFFFFFFF = 0x0000FFFFFFFFFFFF ++srl15 0x123456789ABCDEF0 = 0x00002468ACF13579 ++srl15 0xF0DEBC9A78563412 = 0x0001E1BD7934F0AC ++=== Running test on srl127 === ++srl127 0x0000000000000000 = 0x0000000000000000 ++srl127 0x0000000000000001 = 0x0000000000000000 ++srl127 0x0000000000000002 = 0x0000000000000000 ++srl127 0x0000000000000003 = 0x0000000000000000 ++srl127 0x000000000000000F = 0x0000000000000000 ++srl127 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srl127 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++srl127 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++srl127 0x000000000000007F = 0x0000000000000000 ++srl127 0x0000000000000080 = 0x0000000000000000 ++srl127 0x0000000000007FFF = 0x0000000000000000 ++srl127 0x0000000000008000 = 0x0000000000000000 ++srl127 0x000000007FFFFFFF = 0x0000000000000000 ++srl127 0x0000000080000000 = 0x0000000000000000 ++srl127 0x8000000000000000 = 0x0000000000000001 ++srl127 0xFFFFFFFF80000000 = 0x0000000000000001 ++srl127 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++srl127 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++srl127 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl127 0x123456789ABCDEF0 = 0x0000000000000000 ++srl127 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on srl128 === ++srl128 0x0000000000000000 = 0x0000000000000000 ++srl128 0x0000000000000001 = 0x0000000000000001 ++srl128 0x0000000000000002 = 0x0000000000000002 ++srl128 0x0000000000000003 = 0x0000000000000003 ++srl128 0x000000000000000F = 0x000000000000000F ++srl128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++srl128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++srl128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++srl128 0x000000000000007F = 0x000000000000007F ++srl128 0x0000000000000080 = 0x0000000000000080 ++srl128 0x0000000000007FFF = 0x0000000000007FFF ++srl128 0x0000000000008000 = 0x0000000000008000 ++srl128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++srl128 0x0000000080000000 = 0x0000000080000000 ++srl128 0x8000000000000000 = 0x8000000000000000 ++srl128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++srl128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++srl128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++srl128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++srl128 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++srl128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on srl255 === ++srl255 0x0000000000000000 = 0x0000000000000000 ++srl255 0x0000000000000001 = 0x0000000000000000 ++srl255 0x0000000000000002 = 0x0000000000000000 ++srl255 0x0000000000000003 = 0x0000000000000000 ++srl255 0x000000000000000F = 0x0000000000000000 ++srl255 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srl255 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++srl255 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++srl255 0x000000000000007F = 0x0000000000000000 ++srl255 0x0000000000000080 = 0x0000000000000000 ++srl255 0x0000000000007FFF = 0x0000000000000000 ++srl255 0x0000000000008000 = 0x0000000000000000 ++srl255 0x000000007FFFFFFF = 0x0000000000000000 ++srl255 0x0000000080000000 = 0x0000000000000000 ++srl255 0x8000000000000000 = 0x0000000000000001 ++srl255 0xFFFFFFFF80000000 = 0x0000000000000001 ++srl255 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++srl255 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++srl255 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl255 0x123456789ABCDEF0 = 0x0000000000000000 ++srl255 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on sra0 === ++sra0 0x0000000000000000 = 0x0000000000000000 ++sra0 0x0000000000000001 = 0x0000000000000001 ++sra0 0x0000000000000002 = 0x0000000000000002 ++sra0 0x0000000000000003 = 0x0000000000000003 ++sra0 0x000000000000000F = 0x000000000000000F ++sra0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sra0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sra0 0x000000000000007F = 0x000000000000007F ++sra0 0x0000000000000080 = 0x0000000000000080 ++sra0 0x0000000000007FFF = 0x0000000000007FFF ++sra0 0x0000000000008000 = 0x0000000000008000 ++sra0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sra0 0x0000000080000000 = 0x0000000080000000 ++sra0 0x8000000000000000 = 0x8000000000000000 ++sra0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sra0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sra0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sra0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sra0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sra0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on sra1 === ++sra1 0x0000000000000000 = 0x0000000000000000 ++sra1 0x0000000000000001 = 0x0000000000000000 ++sra1 0x0000000000000002 = 0x0000000000000001 ++sra1 0x0000000000000003 = 0x0000000000000001 ++sra1 0x000000000000000F = 0x0000000000000007 ++sra1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sra1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++sra1 0x000000000000007F = 0x000000000000003F ++sra1 0x0000000000000080 = 0x0000000000000040 ++sra1 0x0000000000007FFF = 0x0000000000003FFF ++sra1 0x0000000000008000 = 0x0000000000004000 ++sra1 0x000000007FFFFFFF = 0x000000003FFFFFFF ++sra1 0x0000000080000000 = 0x0000000040000000 ++sra1 0x8000000000000000 = 0xC000000000000000 ++sra1 0xFFFFFFFF80000000 = 0xFFFFFFFFC0000000 ++sra1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFC000 ++sra1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFC0 ++sra1 0x7FFFFFFFFFFFFFFF = 0x3FFFFFFFFFFFFFFF ++sra1 0x123456789ABCDEF0 = 0x091A2B3C4D5E6F78 ++sra1 0xF0DEBC9A78563412 = 0xF86F5E4D3C2B1A09 ++=== Running test on sra2 === ++sra2 0x0000000000000000 = 0x0000000000000000 ++sra2 0x0000000000000001 = 0x0000000000000000 ++sra2 0x0000000000000002 = 0x0000000000000000 ++sra2 0x0000000000000003 = 0x0000000000000000 ++sra2 0x000000000000000F = 0x0000000000000003 ++sra2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sra2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sra2 0x000000000000007F = 0x000000000000001F ++sra2 0x0000000000000080 = 0x0000000000000020 ++sra2 0x0000000000007FFF = 0x0000000000001FFF ++sra2 0x0000000000008000 = 0x0000000000002000 ++sra2 0x000000007FFFFFFF = 0x000000001FFFFFFF ++sra2 0x0000000080000000 = 0x0000000020000000 ++sra2 0x8000000000000000 = 0xE000000000000000 ++sra2 0xFFFFFFFF80000000 = 0xFFFFFFFFE0000000 ++sra2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFE000 ++sra2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFE0 ++sra2 0x7FFFFFFFFFFFFFFF = 0x1FFFFFFFFFFFFFFF ++sra2 0x123456789ABCDEF0 = 0x048D159E26AF37BC ++sra2 0xF0DEBC9A78563412 = 0xFC37AF269E158D04 ++=== Running test on sra3 === ++sra3 0x0000000000000000 = 0x0000000000000000 ++sra3 0x0000000000000001 = 0x0000000000000000 ++sra3 0x0000000000000002 = 0x0000000000000000 ++sra3 0x0000000000000003 = 0x0000000000000000 ++sra3 0x000000000000000F = 0x0000000000000001 ++sra3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sra3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sra3 0x000000000000007F = 0x000000000000000F ++sra3 0x0000000000000080 = 0x0000000000000010 ++sra3 0x0000000000007FFF = 0x0000000000000FFF ++sra3 0x0000000000008000 = 0x0000000000001000 ++sra3 0x000000007FFFFFFF = 0x000000000FFFFFFF ++sra3 0x0000000080000000 = 0x0000000010000000 ++sra3 0x8000000000000000 = 0xF000000000000000 ++sra3 0xFFFFFFFF80000000 = 0xFFFFFFFFF0000000 ++sra3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFF000 ++sra3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFF0 ++sra3 0x7FFFFFFFFFFFFFFF = 0x0FFFFFFFFFFFFFFF ++sra3 0x123456789ABCDEF0 = 0x02468ACF13579BDE ++sra3 0xF0DEBC9A78563412 = 0xFE1BD7934F0AC682 ++=== Running test on sra15 === ++sra15 0x0000000000000000 = 0x0000000000000000 ++sra15 0x0000000000000001 = 0x0000000000000000 ++sra15 0x0000000000000002 = 0x0000000000000000 ++sra15 0x0000000000000003 = 0x0000000000000000 ++sra15 0x000000000000000F = 0x0000000000000000 ++sra15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sra15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sra15 0x000000000000007F = 0x0000000000000000 ++sra15 0x0000000000000080 = 0x0000000000000000 ++sra15 0x0000000000007FFF = 0x0000000000000000 ++sra15 0x0000000000008000 = 0x0000000000000001 ++sra15 0x000000007FFFFFFF = 0x000000000000FFFF ++sra15 0x0000000080000000 = 0x0000000000010000 ++sra15 0x8000000000000000 = 0xFFFF000000000000 ++sra15 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF0000 ++sra15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sra15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sra15 0x7FFFFFFFFFFFFFFF = 0x0000FFFFFFFFFFFF ++sra15 0x123456789ABCDEF0 = 0x00002468ACF13579 ++sra15 0xF0DEBC9A78563412 = 0xFFFFE1BD7934F0AC ++=== Running test on sra127 === ++sra127 0x0000000000000000 = 0x0000000000000000 ++sra127 0x0000000000000001 = 0x0000000000000000 ++sra127 0x0000000000000002 = 0x0000000000000000 ++sra127 0x0000000000000003 = 0x0000000000000000 ++sra127 0x000000000000000F = 0x0000000000000000 ++sra127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sra127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sra127 0x000000000000007F = 0x0000000000000000 ++sra127 0x0000000000000080 = 0x0000000000000000 ++sra127 0x0000000000007FFF = 0x0000000000000000 ++sra127 0x0000000000008000 = 0x0000000000000000 ++sra127 0x000000007FFFFFFF = 0x0000000000000000 ++sra127 0x0000000080000000 = 0x0000000000000000 ++sra127 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++sra127 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++sra127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sra127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sra127 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra127 0x123456789ABCDEF0 = 0x0000000000000000 ++sra127 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++=== Running test on sra128 === ++sra128 0x0000000000000000 = 0x0000000000000000 ++sra128 0x0000000000000001 = 0x0000000000000001 ++sra128 0x0000000000000002 = 0x0000000000000002 ++sra128 0x0000000000000003 = 0x0000000000000003 ++sra128 0x000000000000000F = 0x000000000000000F ++sra128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sra128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sra128 0x000000000000007F = 0x000000000000007F ++sra128 0x0000000000000080 = 0x0000000000000080 ++sra128 0x0000000000007FFF = 0x0000000000007FFF ++sra128 0x0000000000008000 = 0x0000000000008000 ++sra128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sra128 0x0000000080000000 = 0x0000000080000000 ++sra128 0x8000000000000000 = 0x8000000000000000 ++sra128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sra128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sra128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sra128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sra128 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sra128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on sra255 === ++sra255 0x0000000000000000 = 0x0000000000000000 ++sra255 0x0000000000000001 = 0x0000000000000000 ++sra255 0x0000000000000002 = 0x0000000000000000 ++sra255 0x0000000000000003 = 0x0000000000000000 ++sra255 0x000000000000000F = 0x0000000000000000 ++sra255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sra255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sra255 0x000000000000007F = 0x0000000000000000 ++sra255 0x0000000000000080 = 0x0000000000000000 ++sra255 0x0000000000007FFF = 0x0000000000000000 ++sra255 0x0000000000008000 = 0x0000000000000000 ++sra255 0x000000007FFFFFFF = 0x0000000000000000 ++sra255 0x0000000080000000 = 0x0000000000000000 ++sra255 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++sra255 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++sra255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sra255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sra255 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra255 0x123456789ABCDEF0 = 0x0000000000000000 ++sra255 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++=== Running test on extlb0 === ++extlb0 0x0000000000000000 = 0x0000000000000000 ++extlb0 0x0000000000000001 = 0x0000000000000001 ++extlb0 0x0000000000000002 = 0x0000000000000002 ++extlb0 0x0000000000000003 = 0x0000000000000003 ++extlb0 0x000000000000000F = 0x000000000000000F ++extlb0 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb0 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++extlb0 0xFFFFFFFFFFFFFFFD = 0x00000000000000FD ++extlb0 0x000000000000007F = 0x000000000000007F ++extlb0 0x0000000000000080 = 0x0000000000000080 ++extlb0 0x0000000000007FFF = 0x00000000000000FF ++extlb0 0x0000000000008000 = 0x0000000000000000 ++extlb0 0x000000007FFFFFFF = 0x00000000000000FF ++extlb0 0x0000000080000000 = 0x0000000000000000 ++extlb0 0x8000000000000000 = 0x0000000000000000 ++extlb0 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlb0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extlb0 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++extlb0 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb0 0x123456789ABCDEF0 = 0x00000000000000F0 ++extlb0 0xF0DEBC9A78563412 = 0x0000000000000012 ++=== Running test on extlb1 === ++extlb1 0x0000000000000000 = 0x0000000000000000 ++extlb1 0x0000000000000001 = 0x0000000000000000 ++extlb1 0x0000000000000002 = 0x0000000000000000 ++extlb1 0x0000000000000003 = 0x0000000000000000 ++extlb1 0x000000000000000F = 0x0000000000000000 ++extlb1 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb1 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlb1 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlb1 0x000000000000007F = 0x0000000000000000 ++extlb1 0x0000000000000080 = 0x0000000000000000 ++extlb1 0x0000000000007FFF = 0x000000000000007F ++extlb1 0x0000000000008000 = 0x0000000000000080 ++extlb1 0x000000007FFFFFFF = 0x00000000000000FF ++extlb1 0x0000000080000000 = 0x0000000000000000 ++extlb1 0x8000000000000000 = 0x0000000000000000 ++extlb1 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlb1 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++extlb1 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlb1 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb1 0x123456789ABCDEF0 = 0x00000000000000DE ++extlb1 0xF0DEBC9A78563412 = 0x0000000000000034 ++=== Running test on extlb2 === ++extlb2 0x0000000000000000 = 0x0000000000000000 ++extlb2 0x0000000000000001 = 0x0000000000000000 ++extlb2 0x0000000000000002 = 0x0000000000000000 ++extlb2 0x0000000000000003 = 0x0000000000000000 ++extlb2 0x000000000000000F = 0x0000000000000000 ++extlb2 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb2 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlb2 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlb2 0x000000000000007F = 0x0000000000000000 ++extlb2 0x0000000000000080 = 0x0000000000000000 ++extlb2 0x0000000000007FFF = 0x0000000000000000 ++extlb2 0x0000000000008000 = 0x0000000000000000 ++extlb2 0x000000007FFFFFFF = 0x00000000000000FF ++extlb2 0x0000000080000000 = 0x0000000000000000 ++extlb2 0x8000000000000000 = 0x0000000000000000 ++extlb2 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlb2 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlb2 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlb2 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb2 0x123456789ABCDEF0 = 0x00000000000000BC ++extlb2 0xF0DEBC9A78563412 = 0x0000000000000056 ++=== Running test on extlb3 === ++extlb3 0x0000000000000000 = 0x0000000000000000 ++extlb3 0x0000000000000001 = 0x0000000000000000 ++extlb3 0x0000000000000002 = 0x0000000000000000 ++extlb3 0x0000000000000003 = 0x0000000000000000 ++extlb3 0x000000000000000F = 0x0000000000000000 ++extlb3 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb3 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlb3 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlb3 0x000000000000007F = 0x0000000000000000 ++extlb3 0x0000000000000080 = 0x0000000000000000 ++extlb3 0x0000000000007FFF = 0x0000000000000000 ++extlb3 0x0000000000008000 = 0x0000000000000000 ++extlb3 0x000000007FFFFFFF = 0x000000000000007F ++extlb3 0x0000000080000000 = 0x0000000000000080 ++extlb3 0x8000000000000000 = 0x0000000000000000 ++extlb3 0xFFFFFFFF80000000 = 0x0000000000000080 ++extlb3 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlb3 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlb3 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb3 0x123456789ABCDEF0 = 0x000000000000009A ++extlb3 0xF0DEBC9A78563412 = 0x0000000000000078 ++=== Running test on extlb15 === ++extlb15 0x0000000000000000 = 0x0000000000000000 ++extlb15 0x0000000000000001 = 0x0000000000000000 ++extlb15 0x0000000000000002 = 0x0000000000000000 ++extlb15 0x0000000000000003 = 0x0000000000000000 ++extlb15 0x000000000000000F = 0x0000000000000000 ++extlb15 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb15 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlb15 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlb15 0x000000000000007F = 0x0000000000000000 ++extlb15 0x0000000000000080 = 0x0000000000000000 ++extlb15 0x0000000000007FFF = 0x0000000000000000 ++extlb15 0x0000000000008000 = 0x0000000000000000 ++extlb15 0x000000007FFFFFFF = 0x0000000000000000 ++extlb15 0x0000000080000000 = 0x0000000000000000 ++extlb15 0x8000000000000000 = 0x0000000000000080 ++extlb15 0xFFFFFFFF80000000 = 0x00000000000000FF ++extlb15 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlb15 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlb15 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extlb15 0x123456789ABCDEF0 = 0x0000000000000012 ++extlb15 0xF0DEBC9A78563412 = 0x00000000000000F0 ++=== Running test on extlb127 === ++extlb127 0x0000000000000000 = 0x0000000000000000 ++extlb127 0x0000000000000001 = 0x0000000000000000 ++extlb127 0x0000000000000002 = 0x0000000000000000 ++extlb127 0x0000000000000003 = 0x0000000000000000 ++extlb127 0x000000000000000F = 0x0000000000000000 ++extlb127 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb127 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlb127 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlb127 0x000000000000007F = 0x0000000000000000 ++extlb127 0x0000000000000080 = 0x0000000000000000 ++extlb127 0x0000000000007FFF = 0x0000000000000000 ++extlb127 0x0000000000008000 = 0x0000000000000000 ++extlb127 0x000000007FFFFFFF = 0x0000000000000000 ++extlb127 0x0000000080000000 = 0x0000000000000000 ++extlb127 0x8000000000000000 = 0x0000000000000080 ++extlb127 0xFFFFFFFF80000000 = 0x00000000000000FF ++extlb127 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlb127 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlb127 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extlb127 0x123456789ABCDEF0 = 0x0000000000000012 ++extlb127 0xF0DEBC9A78563412 = 0x00000000000000F0 ++=== Running test on extlb128 === ++extlb128 0x0000000000000000 = 0x0000000000000000 ++extlb128 0x0000000000000001 = 0x0000000000000001 ++extlb128 0x0000000000000002 = 0x0000000000000002 ++extlb128 0x0000000000000003 = 0x0000000000000003 ++extlb128 0x000000000000000F = 0x000000000000000F ++extlb128 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb128 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++extlb128 0xFFFFFFFFFFFFFFFD = 0x00000000000000FD ++extlb128 0x000000000000007F = 0x000000000000007F ++extlb128 0x0000000000000080 = 0x0000000000000080 ++extlb128 0x0000000000007FFF = 0x00000000000000FF ++extlb128 0x0000000000008000 = 0x0000000000000000 ++extlb128 0x000000007FFFFFFF = 0x00000000000000FF ++extlb128 0x0000000080000000 = 0x0000000000000000 ++extlb128 0x8000000000000000 = 0x0000000000000000 ++extlb128 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlb128 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extlb128 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++extlb128 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb128 0x123456789ABCDEF0 = 0x00000000000000F0 ++extlb128 0xF0DEBC9A78563412 = 0x0000000000000012 ++=== Running test on extlb255 === ++extlb255 0x0000000000000000 = 0x0000000000000000 ++extlb255 0x0000000000000001 = 0x0000000000000000 ++extlb255 0x0000000000000002 = 0x0000000000000000 ++extlb255 0x0000000000000003 = 0x0000000000000000 ++extlb255 0x000000000000000F = 0x0000000000000000 ++extlb255 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb255 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlb255 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlb255 0x000000000000007F = 0x0000000000000000 ++extlb255 0x0000000000000080 = 0x0000000000000000 ++extlb255 0x0000000000007FFF = 0x0000000000000000 ++extlb255 0x0000000000008000 = 0x0000000000000000 ++extlb255 0x000000007FFFFFFF = 0x0000000000000000 ++extlb255 0x0000000080000000 = 0x0000000000000000 ++extlb255 0x8000000000000000 = 0x0000000000000080 ++extlb255 0xFFFFFFFF80000000 = 0x00000000000000FF ++extlb255 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlb255 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlb255 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extlb255 0x123456789ABCDEF0 = 0x0000000000000012 ++extlb255 0xF0DEBC9A78563412 = 0x00000000000000F0 ++=== Running test on extlh0 === ++extlh0 0x0000000000000000 = 0x0000000000000000 ++extlh0 0x0000000000000001 = 0x0000000000000001 ++extlh0 0x0000000000000002 = 0x0000000000000002 ++extlh0 0x0000000000000003 = 0x0000000000000003 ++extlh0 0x000000000000000F = 0x000000000000000F ++extlh0 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++extlh0 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFE ++extlh0 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFD ++extlh0 0x000000000000007F = 0x000000000000007F ++extlh0 0x0000000000000080 = 0x0000000000000080 ++extlh0 0x0000000000007FFF = 0x0000000000007FFF ++extlh0 0x0000000000008000 = 0x0000000000008000 ++extlh0 0x000000007FFFFFFF = 0x000000000000FFFF ++extlh0 0x0000000080000000 = 0x0000000000000000 ++extlh0 0x8000000000000000 = 0x0000000000000000 ++extlh0 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlh0 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++extlh0 0xFFFFFFFFFFFFFF80 = 0x000000000000FF80 ++extlh0 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++extlh0 0x123456789ABCDEF0 = 0x000000000000DEF0 ++extlh0 0xF0DEBC9A78563412 = 0x0000000000003412 ++=== Running test on extlh1 === ++extlh1 0x0000000000000000 = 0x0000000000000000 ++extlh1 0x0000000000000001 = 0x0000000000000000 ++extlh1 0x0000000000000002 = 0x0000000000000000 ++extlh1 0x0000000000000003 = 0x0000000000000000 ++extlh1 0x000000000000000F = 0x0000000000000000 ++extlh1 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++extlh1 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlh1 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFF ++extlh1 0x000000000000007F = 0x0000000000000000 ++extlh1 0x0000000000000080 = 0x0000000000000000 ++extlh1 0x0000000000007FFF = 0x000000000000007F ++extlh1 0x0000000000008000 = 0x0000000000000080 ++extlh1 0x000000007FFFFFFF = 0x000000000000FFFF ++extlh1 0x0000000080000000 = 0x0000000000000000 ++extlh1 0x8000000000000000 = 0x0000000000000000 ++extlh1 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlh1 0xFFFFFFFFFFFF8000 = 0x000000000000FF80 ++extlh1 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++extlh1 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++extlh1 0x123456789ABCDEF0 = 0x000000000000BCDE ++extlh1 0xF0DEBC9A78563412 = 0x0000000000005634 ++=== Running test on extlh2 === ++extlh2 0x0000000000000000 = 0x0000000000000000 ++extlh2 0x0000000000000001 = 0x0000000000000000 ++extlh2 0x0000000000000002 = 0x0000000000000000 ++extlh2 0x0000000000000003 = 0x0000000000000000 ++extlh2 0x000000000000000F = 0x0000000000000000 ++extlh2 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++extlh2 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlh2 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFF ++extlh2 0x000000000000007F = 0x0000000000000000 ++extlh2 0x0000000000000080 = 0x0000000000000000 ++extlh2 0x0000000000007FFF = 0x0000000000000000 ++extlh2 0x0000000000008000 = 0x0000000000000000 ++extlh2 0x000000007FFFFFFF = 0x0000000000007FFF ++extlh2 0x0000000080000000 = 0x0000000000008000 ++extlh2 0x8000000000000000 = 0x0000000000000000 ++extlh2 0xFFFFFFFF80000000 = 0x0000000000008000 ++extlh2 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++extlh2 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++extlh2 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++extlh2 0x123456789ABCDEF0 = 0x0000000000009ABC ++extlh2 0xF0DEBC9A78563412 = 0x0000000000007856 ++=== Running test on extlh3 === ++extlh3 0x0000000000000000 = 0x0000000000000000 ++extlh3 0x0000000000000001 = 0x0000000000000000 ++extlh3 0x0000000000000002 = 0x0000000000000000 ++extlh3 0x0000000000000003 = 0x0000000000000000 ++extlh3 0x000000000000000F = 0x0000000000000000 ++extlh3 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++extlh3 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlh3 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFF ++extlh3 0x000000000000007F = 0x0000000000000000 ++extlh3 0x0000000000000080 = 0x0000000000000000 ++extlh3 0x0000000000007FFF = 0x0000000000000000 ++extlh3 0x0000000000008000 = 0x0000000000000000 ++extlh3 0x000000007FFFFFFF = 0x000000000000007F ++extlh3 0x0000000080000000 = 0x0000000000000080 ++extlh3 0x8000000000000000 = 0x0000000000000000 ++extlh3 0xFFFFFFFF80000000 = 0x000000000000FF80 ++extlh3 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++extlh3 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++extlh3 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++extlh3 0x123456789ABCDEF0 = 0x000000000000789A ++extlh3 0xF0DEBC9A78563412 = 0x0000000000009A78 ++=== Running test on extlh15 === ++extlh15 0x0000000000000000 = 0x0000000000000000 ++extlh15 0x0000000000000001 = 0x0000000000000000 ++extlh15 0x0000000000000002 = 0x0000000000000000 ++extlh15 0x0000000000000003 = 0x0000000000000000 ++extlh15 0x000000000000000F = 0x0000000000000000 ++extlh15 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh15 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlh15 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlh15 0x000000000000007F = 0x0000000000000000 ++extlh15 0x0000000000000080 = 0x0000000000000000 ++extlh15 0x0000000000007FFF = 0x0000000000000000 ++extlh15 0x0000000000008000 = 0x0000000000000000 ++extlh15 0x000000007FFFFFFF = 0x0000000000000000 ++extlh15 0x0000000080000000 = 0x0000000000000000 ++extlh15 0x8000000000000000 = 0x0000000000000080 ++extlh15 0xFFFFFFFF80000000 = 0x00000000000000FF ++extlh15 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlh15 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlh15 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extlh15 0x123456789ABCDEF0 = 0x0000000000000012 ++extlh15 0xF0DEBC9A78563412 = 0x00000000000000F0 ++=== Running test on extlh127 === ++extlh127 0x0000000000000000 = 0x0000000000000000 ++extlh127 0x0000000000000001 = 0x0000000000000000 ++extlh127 0x0000000000000002 = 0x0000000000000000 ++extlh127 0x0000000000000003 = 0x0000000000000000 ++extlh127 0x000000000000000F = 0x0000000000000000 ++extlh127 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh127 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlh127 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlh127 0x000000000000007F = 0x0000000000000000 ++extlh127 0x0000000000000080 = 0x0000000000000000 ++extlh127 0x0000000000007FFF = 0x0000000000000000 ++extlh127 0x0000000000008000 = 0x0000000000000000 ++extlh127 0x000000007FFFFFFF = 0x0000000000000000 ++extlh127 0x0000000080000000 = 0x0000000000000000 ++extlh127 0x8000000000000000 = 0x0000000000000080 ++extlh127 0xFFFFFFFF80000000 = 0x00000000000000FF ++extlh127 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlh127 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlh127 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extlh127 0x123456789ABCDEF0 = 0x0000000000000012 ++extlh127 0xF0DEBC9A78563412 = 0x00000000000000F0 ++=== Running test on extlh128 === ++extlh128 0x0000000000000000 = 0x0000000000000000 ++extlh128 0x0000000000000001 = 0x0000000000000001 ++extlh128 0x0000000000000002 = 0x0000000000000002 ++extlh128 0x0000000000000003 = 0x0000000000000003 ++extlh128 0x000000000000000F = 0x000000000000000F ++extlh128 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++extlh128 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFE ++extlh128 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFD ++extlh128 0x000000000000007F = 0x000000000000007F ++extlh128 0x0000000000000080 = 0x0000000000000080 ++extlh128 0x0000000000007FFF = 0x0000000000007FFF ++extlh128 0x0000000000008000 = 0x0000000000008000 ++extlh128 0x000000007FFFFFFF = 0x000000000000FFFF ++extlh128 0x0000000080000000 = 0x0000000000000000 ++extlh128 0x8000000000000000 = 0x0000000000000000 ++extlh128 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlh128 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++extlh128 0xFFFFFFFFFFFFFF80 = 0x000000000000FF80 ++extlh128 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++extlh128 0x123456789ABCDEF0 = 0x000000000000DEF0 ++extlh128 0xF0DEBC9A78563412 = 0x0000000000003412 ++=== Running test on extlh255 === ++extlh255 0x0000000000000000 = 0x0000000000000000 ++extlh255 0x0000000000000001 = 0x0000000000000000 ++extlh255 0x0000000000000002 = 0x0000000000000000 ++extlh255 0x0000000000000003 = 0x0000000000000000 ++extlh255 0x000000000000000F = 0x0000000000000000 ++extlh255 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh255 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlh255 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlh255 0x000000000000007F = 0x0000000000000000 ++extlh255 0x0000000000000080 = 0x0000000000000000 ++extlh255 0x0000000000007FFF = 0x0000000000000000 ++extlh255 0x0000000000008000 = 0x0000000000000000 ++extlh255 0x000000007FFFFFFF = 0x0000000000000000 ++extlh255 0x0000000080000000 = 0x0000000000000000 ++extlh255 0x8000000000000000 = 0x0000000000000080 ++extlh255 0xFFFFFFFF80000000 = 0x00000000000000FF ++extlh255 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlh255 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlh255 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extlh255 0x123456789ABCDEF0 = 0x0000000000000012 ++extlh255 0xF0DEBC9A78563412 = 0x00000000000000F0 ++=== Running test on extlw0 === ++extlw0 0x0000000000000000 = 0x0000000000000000 ++extlw0 0x0000000000000001 = 0x0000000000000001 ++extlw0 0x0000000000000002 = 0x0000000000000002 ++extlw0 0x0000000000000003 = 0x0000000000000003 ++extlw0 0x000000000000000F = 0x000000000000000F ++extlw0 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++extlw0 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFFFE ++extlw0 0xFFFFFFFFFFFFFFFD = 0x00000000FFFFFFFD ++extlw0 0x000000000000007F = 0x000000000000007F ++extlw0 0x0000000000000080 = 0x0000000000000080 ++extlw0 0x0000000000007FFF = 0x0000000000007FFF ++extlw0 0x0000000000008000 = 0x0000000000008000 ++extlw0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++extlw0 0x0000000080000000 = 0x0000000080000000 ++extlw0 0x8000000000000000 = 0x0000000000000000 ++extlw0 0xFFFFFFFF80000000 = 0x0000000080000000 ++extlw0 0xFFFFFFFFFFFF8000 = 0x00000000FFFF8000 ++extlw0 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFF80 ++extlw0 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++extlw0 0x123456789ABCDEF0 = 0x000000009ABCDEF0 ++extlw0 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on extlw1 === ++extlw1 0x0000000000000000 = 0x0000000000000000 ++extlw1 0x0000000000000001 = 0x0000000000000000 ++extlw1 0x0000000000000002 = 0x0000000000000000 ++extlw1 0x0000000000000003 = 0x0000000000000000 ++extlw1 0x000000000000000F = 0x0000000000000000 ++extlw1 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++extlw1 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFFFF ++extlw1 0xFFFFFFFFFFFFFFFD = 0x00000000FFFFFFFF ++extlw1 0x000000000000007F = 0x0000000000000000 ++extlw1 0x0000000000000080 = 0x0000000000000000 ++extlw1 0x0000000000007FFF = 0x000000000000007F ++extlw1 0x0000000000008000 = 0x0000000000000080 ++extlw1 0x000000007FFFFFFF = 0x00000000007FFFFF ++extlw1 0x0000000080000000 = 0x0000000000800000 ++extlw1 0x8000000000000000 = 0x0000000000000000 ++extlw1 0xFFFFFFFF80000000 = 0x00000000FF800000 ++extlw1 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFF80 ++extlw1 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFF ++extlw1 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++extlw1 0x123456789ABCDEF0 = 0x00000000789ABCDE ++extlw1 0xF0DEBC9A78563412 = 0x000000009A785634 ++=== Running test on extlw2 === ++extlw2 0x0000000000000000 = 0x0000000000000000 ++extlw2 0x0000000000000001 = 0x0000000000000000 ++extlw2 0x0000000000000002 = 0x0000000000000000 ++extlw2 0x0000000000000003 = 0x0000000000000000 ++extlw2 0x000000000000000F = 0x0000000000000000 ++extlw2 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++extlw2 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFFFF ++extlw2 0xFFFFFFFFFFFFFFFD = 0x00000000FFFFFFFF ++extlw2 0x000000000000007F = 0x0000000000000000 ++extlw2 0x0000000000000080 = 0x0000000000000000 ++extlw2 0x0000000000007FFF = 0x0000000000000000 ++extlw2 0x0000000000008000 = 0x0000000000000000 ++extlw2 0x000000007FFFFFFF = 0x0000000000007FFF ++extlw2 0x0000000080000000 = 0x0000000000008000 ++extlw2 0x8000000000000000 = 0x0000000000000000 ++extlw2 0xFFFFFFFF80000000 = 0x00000000FFFF8000 ++extlw2 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFFFF ++extlw2 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFF ++extlw2 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++extlw2 0x123456789ABCDEF0 = 0x0000000056789ABC ++extlw2 0xF0DEBC9A78563412 = 0x00000000BC9A7856 ++=== Running test on extlw3 === ++extlw3 0x0000000000000000 = 0x0000000000000000 ++extlw3 0x0000000000000001 = 0x0000000000000000 ++extlw3 0x0000000000000002 = 0x0000000000000000 ++extlw3 0x0000000000000003 = 0x0000000000000000 ++extlw3 0x000000000000000F = 0x0000000000000000 ++extlw3 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++extlw3 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFFFF ++extlw3 0xFFFFFFFFFFFFFFFD = 0x00000000FFFFFFFF ++extlw3 0x000000000000007F = 0x0000000000000000 ++extlw3 0x0000000000000080 = 0x0000000000000000 ++extlw3 0x0000000000007FFF = 0x0000000000000000 ++extlw3 0x0000000000008000 = 0x0000000000000000 ++extlw3 0x000000007FFFFFFF = 0x000000000000007F ++extlw3 0x0000000080000000 = 0x0000000000000080 ++extlw3 0x8000000000000000 = 0x0000000000000000 ++extlw3 0xFFFFFFFF80000000 = 0x00000000FFFFFF80 ++extlw3 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFFFF ++extlw3 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFF ++extlw3 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++extlw3 0x123456789ABCDEF0 = 0x000000003456789A ++extlw3 0xF0DEBC9A78563412 = 0x00000000DEBC9A78 ++=== Running test on extlw15 === ++extlw15 0x0000000000000000 = 0x0000000000000000 ++extlw15 0x0000000000000001 = 0x0000000000000000 ++extlw15 0x0000000000000002 = 0x0000000000000000 ++extlw15 0x0000000000000003 = 0x0000000000000000 ++extlw15 0x000000000000000F = 0x0000000000000000 ++extlw15 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw15 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlw15 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlw15 0x000000000000007F = 0x0000000000000000 ++extlw15 0x0000000000000080 = 0x0000000000000000 ++extlw15 0x0000000000007FFF = 0x0000000000000000 ++extlw15 0x0000000000008000 = 0x0000000000000000 ++extlw15 0x000000007FFFFFFF = 0x0000000000000000 ++extlw15 0x0000000080000000 = 0x0000000000000000 ++extlw15 0x8000000000000000 = 0x0000000000000080 ++extlw15 0xFFFFFFFF80000000 = 0x00000000000000FF ++extlw15 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlw15 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlw15 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extlw15 0x123456789ABCDEF0 = 0x0000000000000012 ++extlw15 0xF0DEBC9A78563412 = 0x00000000000000F0 ++=== Running test on extlw127 === ++extlw127 0x0000000000000000 = 0x0000000000000000 ++extlw127 0x0000000000000001 = 0x0000000000000000 ++extlw127 0x0000000000000002 = 0x0000000000000000 ++extlw127 0x0000000000000003 = 0x0000000000000000 ++extlw127 0x000000000000000F = 0x0000000000000000 ++extlw127 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw127 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlw127 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlw127 0x000000000000007F = 0x0000000000000000 ++extlw127 0x0000000000000080 = 0x0000000000000000 ++extlw127 0x0000000000007FFF = 0x0000000000000000 ++extlw127 0x0000000000008000 = 0x0000000000000000 ++extlw127 0x000000007FFFFFFF = 0x0000000000000000 ++extlw127 0x0000000080000000 = 0x0000000000000000 ++extlw127 0x8000000000000000 = 0x0000000000000080 ++extlw127 0xFFFFFFFF80000000 = 0x00000000000000FF ++extlw127 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlw127 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlw127 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extlw127 0x123456789ABCDEF0 = 0x0000000000000012 ++extlw127 0xF0DEBC9A78563412 = 0x00000000000000F0 ++=== Running test on extlw128 === ++extlw128 0x0000000000000000 = 0x0000000000000000 ++extlw128 0x0000000000000001 = 0x0000000000000001 ++extlw128 0x0000000000000002 = 0x0000000000000002 ++extlw128 0x0000000000000003 = 0x0000000000000003 ++extlw128 0x000000000000000F = 0x000000000000000F ++extlw128 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++extlw128 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFFFE ++extlw128 0xFFFFFFFFFFFFFFFD = 0x00000000FFFFFFFD ++extlw128 0x000000000000007F = 0x000000000000007F ++extlw128 0x0000000000000080 = 0x0000000000000080 ++extlw128 0x0000000000007FFF = 0x0000000000007FFF ++extlw128 0x0000000000008000 = 0x0000000000008000 ++extlw128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++extlw128 0x0000000080000000 = 0x0000000080000000 ++extlw128 0x8000000000000000 = 0x0000000000000000 ++extlw128 0xFFFFFFFF80000000 = 0x0000000080000000 ++extlw128 0xFFFFFFFFFFFF8000 = 0x00000000FFFF8000 ++extlw128 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFF80 ++extlw128 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++extlw128 0x123456789ABCDEF0 = 0x000000009ABCDEF0 ++extlw128 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on extlw255 === ++extlw255 0x0000000000000000 = 0x0000000000000000 ++extlw255 0x0000000000000001 = 0x0000000000000000 ++extlw255 0x0000000000000002 = 0x0000000000000000 ++extlw255 0x0000000000000003 = 0x0000000000000000 ++extlw255 0x000000000000000F = 0x0000000000000000 ++extlw255 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw255 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlw255 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlw255 0x000000000000007F = 0x0000000000000000 ++extlw255 0x0000000000000080 = 0x0000000000000000 ++extlw255 0x0000000000007FFF = 0x0000000000000000 ++extlw255 0x0000000000008000 = 0x0000000000000000 ++extlw255 0x000000007FFFFFFF = 0x0000000000000000 ++extlw255 0x0000000080000000 = 0x0000000000000000 ++extlw255 0x8000000000000000 = 0x0000000000000080 ++extlw255 0xFFFFFFFF80000000 = 0x00000000000000FF ++extlw255 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlw255 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlw255 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extlw255 0x123456789ABCDEF0 = 0x0000000000000012 ++extlw255 0xF0DEBC9A78563412 = 0x00000000000000F0 ++=== Running test on extll0 === ++extll0 0x0000000000000000 = 0x0000000000000000 ++extll0 0x0000000000000001 = 0x0000000000000001 ++extll0 0x0000000000000002 = 0x0000000000000002 ++extll0 0x0000000000000003 = 0x0000000000000003 ++extll0 0x000000000000000F = 0x000000000000000F ++extll0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++extll0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++extll0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++extll0 0x000000000000007F = 0x000000000000007F ++extll0 0x0000000000000080 = 0x0000000000000080 ++extll0 0x0000000000007FFF = 0x0000000000007FFF ++extll0 0x0000000000008000 = 0x0000000000008000 ++extll0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++extll0 0x0000000080000000 = 0x0000000080000000 ++extll0 0x8000000000000000 = 0x8000000000000000 ++extll0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++extll0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++extll0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++extll0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++extll0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++extll0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on extll1 === ++extll1 0x0000000000000000 = 0x0000000000000000 ++extll1 0x0000000000000001 = 0x0000000000000000 ++extll1 0x0000000000000002 = 0x0000000000000000 ++extll1 0x0000000000000003 = 0x0000000000000000 ++extll1 0x000000000000000F = 0x0000000000000000 ++extll1 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++extll1 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFF ++extll1 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFF ++extll1 0x000000000000007F = 0x0000000000000000 ++extll1 0x0000000000000080 = 0x0000000000000000 ++extll1 0x0000000000007FFF = 0x000000000000007F ++extll1 0x0000000000008000 = 0x0000000000000080 ++extll1 0x000000007FFFFFFF = 0x00000000007FFFFF ++extll1 0x0000000080000000 = 0x0000000000800000 ++extll1 0x8000000000000000 = 0x0080000000000000 ++extll1 0xFFFFFFFF80000000 = 0x00FFFFFFFF800000 ++extll1 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFFFF80 ++extll1 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFFFF ++extll1 0x7FFFFFFFFFFFFFFF = 0x007FFFFFFFFFFFFF ++extll1 0x123456789ABCDEF0 = 0x00123456789ABCDE ++extll1 0xF0DEBC9A78563412 = 0x00F0DEBC9A785634 ++=== Running test on extll2 === ++extll2 0x0000000000000000 = 0x0000000000000000 ++extll2 0x0000000000000001 = 0x0000000000000000 ++extll2 0x0000000000000002 = 0x0000000000000000 ++extll2 0x0000000000000003 = 0x0000000000000000 ++extll2 0x000000000000000F = 0x0000000000000000 ++extll2 0xFFFFFFFFFFFFFFFF = 0x0000FFFFFFFFFFFF ++extll2 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFF ++extll2 0xFFFFFFFFFFFFFFFD = 0x0000FFFFFFFFFFFF ++extll2 0x000000000000007F = 0x0000000000000000 ++extll2 0x0000000000000080 = 0x0000000000000000 ++extll2 0x0000000000007FFF = 0x0000000000000000 ++extll2 0x0000000000008000 = 0x0000000000000000 ++extll2 0x000000007FFFFFFF = 0x0000000000007FFF ++extll2 0x0000000080000000 = 0x0000000000008000 ++extll2 0x8000000000000000 = 0x0000800000000000 ++extll2 0xFFFFFFFF80000000 = 0x0000FFFFFFFF8000 ++extll2 0xFFFFFFFFFFFF8000 = 0x0000FFFFFFFFFFFF ++extll2 0xFFFFFFFFFFFFFF80 = 0x0000FFFFFFFFFFFF ++extll2 0x7FFFFFFFFFFFFFFF = 0x00007FFFFFFFFFFF ++extll2 0x123456789ABCDEF0 = 0x0000123456789ABC ++extll2 0xF0DEBC9A78563412 = 0x0000F0DEBC9A7856 ++=== Running test on extll3 === ++extll3 0x0000000000000000 = 0x0000000000000000 ++extll3 0x0000000000000001 = 0x0000000000000000 ++extll3 0x0000000000000002 = 0x0000000000000000 ++extll3 0x0000000000000003 = 0x0000000000000000 ++extll3 0x000000000000000F = 0x0000000000000000 ++extll3 0xFFFFFFFFFFFFFFFF = 0x000000FFFFFFFFFF ++extll3 0xFFFFFFFFFFFFFFFE = 0x000000FFFFFFFFFF ++extll3 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFFFF ++extll3 0x000000000000007F = 0x0000000000000000 ++extll3 0x0000000000000080 = 0x0000000000000000 ++extll3 0x0000000000007FFF = 0x0000000000000000 ++extll3 0x0000000000008000 = 0x0000000000000000 ++extll3 0x000000007FFFFFFF = 0x000000000000007F ++extll3 0x0000000080000000 = 0x0000000000000080 ++extll3 0x8000000000000000 = 0x0000008000000000 ++extll3 0xFFFFFFFF80000000 = 0x000000FFFFFFFF80 ++extll3 0xFFFFFFFFFFFF8000 = 0x000000FFFFFFFFFF ++extll3 0xFFFFFFFFFFFFFF80 = 0x000000FFFFFFFFFF ++extll3 0x7FFFFFFFFFFFFFFF = 0x0000007FFFFFFFFF ++extll3 0x123456789ABCDEF0 = 0x000000123456789A ++extll3 0xF0DEBC9A78563412 = 0x000000F0DEBC9A78 ++=== Running test on extll15 === ++extll15 0x0000000000000000 = 0x0000000000000000 ++extll15 0x0000000000000001 = 0x0000000000000000 ++extll15 0x0000000000000002 = 0x0000000000000000 ++extll15 0x0000000000000003 = 0x0000000000000000 ++extll15 0x000000000000000F = 0x0000000000000000 ++extll15 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extll15 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extll15 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extll15 0x000000000000007F = 0x0000000000000000 ++extll15 0x0000000000000080 = 0x0000000000000000 ++extll15 0x0000000000007FFF = 0x0000000000000000 ++extll15 0x0000000000008000 = 0x0000000000000000 ++extll15 0x000000007FFFFFFF = 0x0000000000000000 ++extll15 0x0000000080000000 = 0x0000000000000000 ++extll15 0x8000000000000000 = 0x0000000000000080 ++extll15 0xFFFFFFFF80000000 = 0x00000000000000FF ++extll15 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extll15 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extll15 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extll15 0x123456789ABCDEF0 = 0x0000000000000012 ++extll15 0xF0DEBC9A78563412 = 0x00000000000000F0 ++=== Running test on extll127 === ++extll127 0x0000000000000000 = 0x0000000000000000 ++extll127 0x0000000000000001 = 0x0000000000000000 ++extll127 0x0000000000000002 = 0x0000000000000000 ++extll127 0x0000000000000003 = 0x0000000000000000 ++extll127 0x000000000000000F = 0x0000000000000000 ++extll127 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extll127 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extll127 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extll127 0x000000000000007F = 0x0000000000000000 ++extll127 0x0000000000000080 = 0x0000000000000000 ++extll127 0x0000000000007FFF = 0x0000000000000000 ++extll127 0x0000000000008000 = 0x0000000000000000 ++extll127 0x000000007FFFFFFF = 0x0000000000000000 ++extll127 0x0000000080000000 = 0x0000000000000000 ++extll127 0x8000000000000000 = 0x0000000000000080 ++extll127 0xFFFFFFFF80000000 = 0x00000000000000FF ++extll127 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extll127 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extll127 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extll127 0x123456789ABCDEF0 = 0x0000000000000012 ++extll127 0xF0DEBC9A78563412 = 0x00000000000000F0 ++=== Running test on extll128 === ++extll128 0x0000000000000000 = 0x0000000000000000 ++extll128 0x0000000000000001 = 0x0000000000000001 ++extll128 0x0000000000000002 = 0x0000000000000002 ++extll128 0x0000000000000003 = 0x0000000000000003 ++extll128 0x000000000000000F = 0x000000000000000F ++extll128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++extll128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++extll128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++extll128 0x000000000000007F = 0x000000000000007F ++extll128 0x0000000000000080 = 0x0000000000000080 ++extll128 0x0000000000007FFF = 0x0000000000007FFF ++extll128 0x0000000000008000 = 0x0000000000008000 ++extll128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++extll128 0x0000000080000000 = 0x0000000080000000 ++extll128 0x8000000000000000 = 0x8000000000000000 ++extll128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++extll128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++extll128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++extll128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++extll128 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++extll128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on extll255 === ++extll255 0x0000000000000000 = 0x0000000000000000 ++extll255 0x0000000000000001 = 0x0000000000000000 ++extll255 0x0000000000000002 = 0x0000000000000000 ++extll255 0x0000000000000003 = 0x0000000000000000 ++extll255 0x000000000000000F = 0x0000000000000000 ++extll255 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extll255 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extll255 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extll255 0x000000000000007F = 0x0000000000000000 ++extll255 0x0000000000000080 = 0x0000000000000000 ++extll255 0x0000000000007FFF = 0x0000000000000000 ++extll255 0x0000000000008000 = 0x0000000000000000 ++extll255 0x000000007FFFFFFF = 0x0000000000000000 ++extll255 0x0000000080000000 = 0x0000000000000000 ++extll255 0x8000000000000000 = 0x0000000000000080 ++extll255 0xFFFFFFFF80000000 = 0x00000000000000FF ++extll255 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extll255 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extll255 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extll255 0x123456789ABCDEF0 = 0x0000000000000012 ++extll255 0xF0DEBC9A78563412 = 0x00000000000000F0 ++=== Running test on exthb0 === ++exthb0 0x0000000000000000 = 0x0000000000000000 ++exthb0 0x0000000000000001 = 0x0000000000000001 ++exthb0 0x0000000000000002 = 0x0000000000000002 ++exthb0 0x0000000000000003 = 0x0000000000000003 ++exthb0 0x000000000000000F = 0x000000000000000F ++exthb0 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++exthb0 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++exthb0 0xFFFFFFFFFFFFFFFD = 0x00000000000000FD ++exthb0 0x000000000000007F = 0x000000000000007F ++exthb0 0x0000000000000080 = 0x0000000000000080 ++exthb0 0x0000000000007FFF = 0x00000000000000FF ++exthb0 0x0000000000008000 = 0x0000000000000000 ++exthb0 0x000000007FFFFFFF = 0x00000000000000FF ++exthb0 0x0000000080000000 = 0x0000000000000000 ++exthb0 0x8000000000000000 = 0x0000000000000000 ++exthb0 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthb0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthb0 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++exthb0 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++exthb0 0x123456789ABCDEF0 = 0x00000000000000F0 ++exthb0 0xF0DEBC9A78563412 = 0x0000000000000012 ++=== Running test on exthb1 === ++exthb1 0x0000000000000000 = 0x0000000000000000 ++exthb1 0x0000000000000001 = 0x0000000000000000 ++exthb1 0x0000000000000002 = 0x0000000000000000 ++exthb1 0x0000000000000003 = 0x0000000000000000 ++exthb1 0x000000000000000F = 0x0000000000000000 ++exthb1 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb1 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb1 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb1 0x000000000000007F = 0x0000000000000000 ++exthb1 0x0000000000000080 = 0x0000000000000000 ++exthb1 0x0000000000007FFF = 0x0000000000000000 ++exthb1 0x0000000000008000 = 0x0000000000000000 ++exthb1 0x000000007FFFFFFF = 0x0000000000000000 ++exthb1 0x0000000080000000 = 0x0000000000000000 ++exthb1 0x8000000000000000 = 0x0000000000000000 ++exthb1 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthb1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthb1 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthb1 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb1 0x123456789ABCDEF0 = 0x0000000000000000 ++exthb1 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthb2 === ++exthb2 0x0000000000000000 = 0x0000000000000000 ++exthb2 0x0000000000000001 = 0x0000000000000000 ++exthb2 0x0000000000000002 = 0x0000000000000000 ++exthb2 0x0000000000000003 = 0x0000000000000000 ++exthb2 0x000000000000000F = 0x0000000000000000 ++exthb2 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb2 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb2 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb2 0x000000000000007F = 0x0000000000000000 ++exthb2 0x0000000000000080 = 0x0000000000000000 ++exthb2 0x0000000000007FFF = 0x0000000000000000 ++exthb2 0x0000000000008000 = 0x0000000000000000 ++exthb2 0x000000007FFFFFFF = 0x0000000000000000 ++exthb2 0x0000000080000000 = 0x0000000000000000 ++exthb2 0x8000000000000000 = 0x0000000000000000 ++exthb2 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthb2 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthb2 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthb2 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb2 0x123456789ABCDEF0 = 0x0000000000000000 ++exthb2 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthb3 === ++exthb3 0x0000000000000000 = 0x0000000000000000 ++exthb3 0x0000000000000001 = 0x0000000000000000 ++exthb3 0x0000000000000002 = 0x0000000000000000 ++exthb3 0x0000000000000003 = 0x0000000000000000 ++exthb3 0x000000000000000F = 0x0000000000000000 ++exthb3 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb3 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb3 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb3 0x000000000000007F = 0x0000000000000000 ++exthb3 0x0000000000000080 = 0x0000000000000000 ++exthb3 0x0000000000007FFF = 0x0000000000000000 ++exthb3 0x0000000000008000 = 0x0000000000000000 ++exthb3 0x000000007FFFFFFF = 0x0000000000000000 ++exthb3 0x0000000080000000 = 0x0000000000000000 ++exthb3 0x8000000000000000 = 0x0000000000000000 ++exthb3 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthb3 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthb3 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthb3 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb3 0x123456789ABCDEF0 = 0x0000000000000000 ++exthb3 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthb15 === ++exthb15 0x0000000000000000 = 0x0000000000000000 ++exthb15 0x0000000000000001 = 0x0000000000000000 ++exthb15 0x0000000000000002 = 0x0000000000000000 ++exthb15 0x0000000000000003 = 0x0000000000000000 ++exthb15 0x000000000000000F = 0x0000000000000000 ++exthb15 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb15 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb15 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb15 0x000000000000007F = 0x0000000000000000 ++exthb15 0x0000000000000080 = 0x0000000000000000 ++exthb15 0x0000000000007FFF = 0x0000000000000000 ++exthb15 0x0000000000008000 = 0x0000000000000000 ++exthb15 0x000000007FFFFFFF = 0x0000000000000000 ++exthb15 0x0000000080000000 = 0x0000000000000000 ++exthb15 0x8000000000000000 = 0x0000000000000000 ++exthb15 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthb15 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthb15 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthb15 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb15 0x123456789ABCDEF0 = 0x0000000000000000 ++exthb15 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthb127 === ++exthb127 0x0000000000000000 = 0x0000000000000000 ++exthb127 0x0000000000000001 = 0x0000000000000000 ++exthb127 0x0000000000000002 = 0x0000000000000000 ++exthb127 0x0000000000000003 = 0x0000000000000000 ++exthb127 0x000000000000000F = 0x0000000000000000 ++exthb127 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb127 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb127 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb127 0x000000000000007F = 0x0000000000000000 ++exthb127 0x0000000000000080 = 0x0000000000000000 ++exthb127 0x0000000000007FFF = 0x0000000000000000 ++exthb127 0x0000000000008000 = 0x0000000000000000 ++exthb127 0x000000007FFFFFFF = 0x0000000000000000 ++exthb127 0x0000000080000000 = 0x0000000000000000 ++exthb127 0x8000000000000000 = 0x0000000000000000 ++exthb127 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthb127 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthb127 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthb127 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb127 0x123456789ABCDEF0 = 0x0000000000000000 ++exthb127 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthb128 === ++exthb128 0x0000000000000000 = 0x0000000000000000 ++exthb128 0x0000000000000001 = 0x0000000000000001 ++exthb128 0x0000000000000002 = 0x0000000000000002 ++exthb128 0x0000000000000003 = 0x0000000000000003 ++exthb128 0x000000000000000F = 0x000000000000000F ++exthb128 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++exthb128 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++exthb128 0xFFFFFFFFFFFFFFFD = 0x00000000000000FD ++exthb128 0x000000000000007F = 0x000000000000007F ++exthb128 0x0000000000000080 = 0x0000000000000080 ++exthb128 0x0000000000007FFF = 0x00000000000000FF ++exthb128 0x0000000000008000 = 0x0000000000000000 ++exthb128 0x000000007FFFFFFF = 0x00000000000000FF ++exthb128 0x0000000080000000 = 0x0000000000000000 ++exthb128 0x8000000000000000 = 0x0000000000000000 ++exthb128 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthb128 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthb128 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++exthb128 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++exthb128 0x123456789ABCDEF0 = 0x00000000000000F0 ++exthb128 0xF0DEBC9A78563412 = 0x0000000000000012 ++=== Running test on exthb255 === ++exthb255 0x0000000000000000 = 0x0000000000000000 ++exthb255 0x0000000000000001 = 0x0000000000000000 ++exthb255 0x0000000000000002 = 0x0000000000000000 ++exthb255 0x0000000000000003 = 0x0000000000000000 ++exthb255 0x000000000000000F = 0x0000000000000000 ++exthb255 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb255 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb255 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb255 0x000000000000007F = 0x0000000000000000 ++exthb255 0x0000000000000080 = 0x0000000000000000 ++exthb255 0x0000000000007FFF = 0x0000000000000000 ++exthb255 0x0000000000008000 = 0x0000000000000000 ++exthb255 0x000000007FFFFFFF = 0x0000000000000000 ++exthb255 0x0000000080000000 = 0x0000000000000000 ++exthb255 0x8000000000000000 = 0x0000000000000000 ++exthb255 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthb255 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthb255 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthb255 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb255 0x123456789ABCDEF0 = 0x0000000000000000 ++exthb255 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthh0 === ++exthh0 0x0000000000000000 = 0x0000000000000000 ++exthh0 0x0000000000000001 = 0x0000000000000001 ++exthh0 0x0000000000000002 = 0x0000000000000002 ++exthh0 0x0000000000000003 = 0x0000000000000003 ++exthh0 0x000000000000000F = 0x000000000000000F ++exthh0 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++exthh0 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFE ++exthh0 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFD ++exthh0 0x000000000000007F = 0x000000000000007F ++exthh0 0x0000000000000080 = 0x0000000000000080 ++exthh0 0x0000000000007FFF = 0x0000000000007FFF ++exthh0 0x0000000000008000 = 0x0000000000008000 ++exthh0 0x000000007FFFFFFF = 0x000000000000FFFF ++exthh0 0x0000000080000000 = 0x0000000000000000 ++exthh0 0x8000000000000000 = 0x0000000000000000 ++exthh0 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthh0 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++exthh0 0xFFFFFFFFFFFFFF80 = 0x000000000000FF80 ++exthh0 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++exthh0 0x123456789ABCDEF0 = 0x000000000000DEF0 ++exthh0 0xF0DEBC9A78563412 = 0x0000000000003412 ++=== Running test on exthh1 === ++exthh1 0x0000000000000000 = 0x0000000000000000 ++exthh1 0x0000000000000001 = 0x0000000000000000 ++exthh1 0x0000000000000002 = 0x0000000000000000 ++exthh1 0x0000000000000003 = 0x0000000000000000 ++exthh1 0x000000000000000F = 0x0000000000000000 ++exthh1 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh1 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh1 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh1 0x000000000000007F = 0x0000000000000000 ++exthh1 0x0000000000000080 = 0x0000000000000000 ++exthh1 0x0000000000007FFF = 0x0000000000000000 ++exthh1 0x0000000000008000 = 0x0000000000000000 ++exthh1 0x000000007FFFFFFF = 0x0000000000000000 ++exthh1 0x0000000080000000 = 0x0000000000000000 ++exthh1 0x8000000000000000 = 0x0000000000000000 ++exthh1 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthh1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthh1 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthh1 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh1 0x123456789ABCDEF0 = 0x0000000000000000 ++exthh1 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthh2 === ++exthh2 0x0000000000000000 = 0x0000000000000000 ++exthh2 0x0000000000000001 = 0x0000000000000000 ++exthh2 0x0000000000000002 = 0x0000000000000000 ++exthh2 0x0000000000000003 = 0x0000000000000000 ++exthh2 0x000000000000000F = 0x0000000000000000 ++exthh2 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh2 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh2 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh2 0x000000000000007F = 0x0000000000000000 ++exthh2 0x0000000000000080 = 0x0000000000000000 ++exthh2 0x0000000000007FFF = 0x0000000000000000 ++exthh2 0x0000000000008000 = 0x0000000000000000 ++exthh2 0x000000007FFFFFFF = 0x0000000000000000 ++exthh2 0x0000000080000000 = 0x0000000000000000 ++exthh2 0x8000000000000000 = 0x0000000000000000 ++exthh2 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthh2 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthh2 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthh2 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh2 0x123456789ABCDEF0 = 0x0000000000000000 ++exthh2 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthh3 === ++exthh3 0x0000000000000000 = 0x0000000000000000 ++exthh3 0x0000000000000001 = 0x0000000000000000 ++exthh3 0x0000000000000002 = 0x0000000000000000 ++exthh3 0x0000000000000003 = 0x0000000000000000 ++exthh3 0x000000000000000F = 0x0000000000000000 ++exthh3 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh3 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh3 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh3 0x000000000000007F = 0x0000000000000000 ++exthh3 0x0000000000000080 = 0x0000000000000000 ++exthh3 0x0000000000007FFF = 0x0000000000000000 ++exthh3 0x0000000000008000 = 0x0000000000000000 ++exthh3 0x000000007FFFFFFF = 0x0000000000000000 ++exthh3 0x0000000080000000 = 0x0000000000000000 ++exthh3 0x8000000000000000 = 0x0000000000000000 ++exthh3 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthh3 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthh3 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthh3 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh3 0x123456789ABCDEF0 = 0x0000000000000000 ++exthh3 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthh15 === ++exthh15 0x0000000000000000 = 0x0000000000000000 ++exthh15 0x0000000000000001 = 0x0000000000000100 ++exthh15 0x0000000000000002 = 0x0000000000000200 ++exthh15 0x0000000000000003 = 0x0000000000000300 ++exthh15 0x000000000000000F = 0x0000000000000F00 ++exthh15 0xFFFFFFFFFFFFFFFF = 0x000000000000FF00 ++exthh15 0xFFFFFFFFFFFFFFFE = 0x000000000000FE00 ++exthh15 0xFFFFFFFFFFFFFFFD = 0x000000000000FD00 ++exthh15 0x000000000000007F = 0x0000000000007F00 ++exthh15 0x0000000000000080 = 0x0000000000008000 ++exthh15 0x0000000000007FFF = 0x000000000000FF00 ++exthh15 0x0000000000008000 = 0x0000000000000000 ++exthh15 0x000000007FFFFFFF = 0x000000000000FF00 ++exthh15 0x0000000080000000 = 0x0000000000000000 ++exthh15 0x8000000000000000 = 0x0000000000000000 ++exthh15 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthh15 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthh15 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++exthh15 0x7FFFFFFFFFFFFFFF = 0x000000000000FF00 ++exthh15 0x123456789ABCDEF0 = 0x000000000000F000 ++exthh15 0xF0DEBC9A78563412 = 0x0000000000001200 ++=== Running test on exthh127 === ++exthh127 0x0000000000000000 = 0x0000000000000000 ++exthh127 0x0000000000000001 = 0x0000000000000100 ++exthh127 0x0000000000000002 = 0x0000000000000200 ++exthh127 0x0000000000000003 = 0x0000000000000300 ++exthh127 0x000000000000000F = 0x0000000000000F00 ++exthh127 0xFFFFFFFFFFFFFFFF = 0x000000000000FF00 ++exthh127 0xFFFFFFFFFFFFFFFE = 0x000000000000FE00 ++exthh127 0xFFFFFFFFFFFFFFFD = 0x000000000000FD00 ++exthh127 0x000000000000007F = 0x0000000000007F00 ++exthh127 0x0000000000000080 = 0x0000000000008000 ++exthh127 0x0000000000007FFF = 0x000000000000FF00 ++exthh127 0x0000000000008000 = 0x0000000000000000 ++exthh127 0x000000007FFFFFFF = 0x000000000000FF00 ++exthh127 0x0000000080000000 = 0x0000000000000000 ++exthh127 0x8000000000000000 = 0x0000000000000000 ++exthh127 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthh127 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthh127 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++exthh127 0x7FFFFFFFFFFFFFFF = 0x000000000000FF00 ++exthh127 0x123456789ABCDEF0 = 0x000000000000F000 ++exthh127 0xF0DEBC9A78563412 = 0x0000000000001200 ++=== Running test on exthh128 === ++exthh128 0x0000000000000000 = 0x0000000000000000 ++exthh128 0x0000000000000001 = 0x0000000000000001 ++exthh128 0x0000000000000002 = 0x0000000000000002 ++exthh128 0x0000000000000003 = 0x0000000000000003 ++exthh128 0x000000000000000F = 0x000000000000000F ++exthh128 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++exthh128 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFE ++exthh128 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFD ++exthh128 0x000000000000007F = 0x000000000000007F ++exthh128 0x0000000000000080 = 0x0000000000000080 ++exthh128 0x0000000000007FFF = 0x0000000000007FFF ++exthh128 0x0000000000008000 = 0x0000000000008000 ++exthh128 0x000000007FFFFFFF = 0x000000000000FFFF ++exthh128 0x0000000080000000 = 0x0000000000000000 ++exthh128 0x8000000000000000 = 0x0000000000000000 ++exthh128 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthh128 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++exthh128 0xFFFFFFFFFFFFFF80 = 0x000000000000FF80 ++exthh128 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++exthh128 0x123456789ABCDEF0 = 0x000000000000DEF0 ++exthh128 0xF0DEBC9A78563412 = 0x0000000000003412 ++=== Running test on exthh255 === ++exthh255 0x0000000000000000 = 0x0000000000000000 ++exthh255 0x0000000000000001 = 0x0000000000000100 ++exthh255 0x0000000000000002 = 0x0000000000000200 ++exthh255 0x0000000000000003 = 0x0000000000000300 ++exthh255 0x000000000000000F = 0x0000000000000F00 ++exthh255 0xFFFFFFFFFFFFFFFF = 0x000000000000FF00 ++exthh255 0xFFFFFFFFFFFFFFFE = 0x000000000000FE00 ++exthh255 0xFFFFFFFFFFFFFFFD = 0x000000000000FD00 ++exthh255 0x000000000000007F = 0x0000000000007F00 ++exthh255 0x0000000000000080 = 0x0000000000008000 ++exthh255 0x0000000000007FFF = 0x000000000000FF00 ++exthh255 0x0000000000008000 = 0x0000000000000000 ++exthh255 0x000000007FFFFFFF = 0x000000000000FF00 ++exthh255 0x0000000080000000 = 0x0000000000000000 ++exthh255 0x8000000000000000 = 0x0000000000000000 ++exthh255 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthh255 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthh255 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++exthh255 0x7FFFFFFFFFFFFFFF = 0x000000000000FF00 ++exthh255 0x123456789ABCDEF0 = 0x000000000000F000 ++exthh255 0xF0DEBC9A78563412 = 0x0000000000001200 ++=== Running test on exthw0 === ++exthw0 0x0000000000000000 = 0x0000000000000000 ++exthw0 0x0000000000000001 = 0x0000000000000001 ++exthw0 0x0000000000000002 = 0x0000000000000002 ++exthw0 0x0000000000000003 = 0x0000000000000003 ++exthw0 0x000000000000000F = 0x000000000000000F ++exthw0 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++exthw0 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFFFE ++exthw0 0xFFFFFFFFFFFFFFFD = 0x00000000FFFFFFFD ++exthw0 0x000000000000007F = 0x000000000000007F ++exthw0 0x0000000000000080 = 0x0000000000000080 ++exthw0 0x0000000000007FFF = 0x0000000000007FFF ++exthw0 0x0000000000008000 = 0x0000000000008000 ++exthw0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++exthw0 0x0000000080000000 = 0x0000000080000000 ++exthw0 0x8000000000000000 = 0x0000000000000000 ++exthw0 0xFFFFFFFF80000000 = 0x0000000080000000 ++exthw0 0xFFFFFFFFFFFF8000 = 0x00000000FFFF8000 ++exthw0 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFF80 ++exthw0 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++exthw0 0x123456789ABCDEF0 = 0x000000009ABCDEF0 ++exthw0 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on exthw1 === ++exthw1 0x0000000000000000 = 0x0000000000000000 ++exthw1 0x0000000000000001 = 0x0000000000000000 ++exthw1 0x0000000000000002 = 0x0000000000000000 ++exthw1 0x0000000000000003 = 0x0000000000000000 ++exthw1 0x000000000000000F = 0x0000000000000000 ++exthw1 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthw1 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthw1 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthw1 0x000000000000007F = 0x0000000000000000 ++exthw1 0x0000000000000080 = 0x0000000000000000 ++exthw1 0x0000000000007FFF = 0x0000000000000000 ++exthw1 0x0000000000008000 = 0x0000000000000000 ++exthw1 0x000000007FFFFFFF = 0x0000000000000000 ++exthw1 0x0000000080000000 = 0x0000000000000000 ++exthw1 0x8000000000000000 = 0x0000000000000000 ++exthw1 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthw1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthw1 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthw1 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthw1 0x123456789ABCDEF0 = 0x0000000000000000 ++exthw1 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthw2 === ++exthw2 0x0000000000000000 = 0x0000000000000000 ++exthw2 0x0000000000000001 = 0x0000000000000000 ++exthw2 0x0000000000000002 = 0x0000000000000000 ++exthw2 0x0000000000000003 = 0x0000000000000000 ++exthw2 0x000000000000000F = 0x0000000000000000 ++exthw2 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthw2 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthw2 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthw2 0x000000000000007F = 0x0000000000000000 ++exthw2 0x0000000000000080 = 0x0000000000000000 ++exthw2 0x0000000000007FFF = 0x0000000000000000 ++exthw2 0x0000000000008000 = 0x0000000000000000 ++exthw2 0x000000007FFFFFFF = 0x0000000000000000 ++exthw2 0x0000000080000000 = 0x0000000000000000 ++exthw2 0x8000000000000000 = 0x0000000000000000 ++exthw2 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthw2 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthw2 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthw2 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthw2 0x123456789ABCDEF0 = 0x0000000000000000 ++exthw2 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthw3 === ++exthw3 0x0000000000000000 = 0x0000000000000000 ++exthw3 0x0000000000000001 = 0x0000000000000000 ++exthw3 0x0000000000000002 = 0x0000000000000000 ++exthw3 0x0000000000000003 = 0x0000000000000000 ++exthw3 0x000000000000000F = 0x0000000000000000 ++exthw3 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthw3 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthw3 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthw3 0x000000000000007F = 0x0000000000000000 ++exthw3 0x0000000000000080 = 0x0000000000000000 ++exthw3 0x0000000000007FFF = 0x0000000000000000 ++exthw3 0x0000000000008000 = 0x0000000000000000 ++exthw3 0x000000007FFFFFFF = 0x0000000000000000 ++exthw3 0x0000000080000000 = 0x0000000000000000 ++exthw3 0x8000000000000000 = 0x0000000000000000 ++exthw3 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthw3 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthw3 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthw3 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthw3 0x123456789ABCDEF0 = 0x0000000000000000 ++exthw3 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthw15 === ++exthw15 0x0000000000000000 = 0x0000000000000000 ++exthw15 0x0000000000000001 = 0x0000000000000100 ++exthw15 0x0000000000000002 = 0x0000000000000200 ++exthw15 0x0000000000000003 = 0x0000000000000300 ++exthw15 0x000000000000000F = 0x0000000000000F00 ++exthw15 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFF00 ++exthw15 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFE00 ++exthw15 0xFFFFFFFFFFFFFFFD = 0x00000000FFFFFD00 ++exthw15 0x000000000000007F = 0x0000000000007F00 ++exthw15 0x0000000000000080 = 0x0000000000008000 ++exthw15 0x0000000000007FFF = 0x00000000007FFF00 ++exthw15 0x0000000000008000 = 0x0000000000800000 ++exthw15 0x000000007FFFFFFF = 0x00000000FFFFFF00 ++exthw15 0x0000000080000000 = 0x0000000000000000 ++exthw15 0x8000000000000000 = 0x0000000000000000 ++exthw15 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthw15 0xFFFFFFFFFFFF8000 = 0x00000000FF800000 ++exthw15 0xFFFFFFFFFFFFFF80 = 0x00000000FFFF8000 ++exthw15 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFF00 ++exthw15 0x123456789ABCDEF0 = 0x00000000BCDEF000 ++exthw15 0xF0DEBC9A78563412 = 0x0000000056341200 ++=== Running test on exthw127 === ++exthw127 0x0000000000000000 = 0x0000000000000000 ++exthw127 0x0000000000000001 = 0x0000000000000100 ++exthw127 0x0000000000000002 = 0x0000000000000200 ++exthw127 0x0000000000000003 = 0x0000000000000300 ++exthw127 0x000000000000000F = 0x0000000000000F00 ++exthw127 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFF00 ++exthw127 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFE00 ++exthw127 0xFFFFFFFFFFFFFFFD = 0x00000000FFFFFD00 ++exthw127 0x000000000000007F = 0x0000000000007F00 ++exthw127 0x0000000000000080 = 0x0000000000008000 ++exthw127 0x0000000000007FFF = 0x00000000007FFF00 ++exthw127 0x0000000000008000 = 0x0000000000800000 ++exthw127 0x000000007FFFFFFF = 0x00000000FFFFFF00 ++exthw127 0x0000000080000000 = 0x0000000000000000 ++exthw127 0x8000000000000000 = 0x0000000000000000 ++exthw127 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthw127 0xFFFFFFFFFFFF8000 = 0x00000000FF800000 ++exthw127 0xFFFFFFFFFFFFFF80 = 0x00000000FFFF8000 ++exthw127 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFF00 ++exthw127 0x123456789ABCDEF0 = 0x00000000BCDEF000 ++exthw127 0xF0DEBC9A78563412 = 0x0000000056341200 ++=== Running test on exthw128 === ++exthw128 0x0000000000000000 = 0x0000000000000000 ++exthw128 0x0000000000000001 = 0x0000000000000001 ++exthw128 0x0000000000000002 = 0x0000000000000002 ++exthw128 0x0000000000000003 = 0x0000000000000003 ++exthw128 0x000000000000000F = 0x000000000000000F ++exthw128 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++exthw128 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFFFE ++exthw128 0xFFFFFFFFFFFFFFFD = 0x00000000FFFFFFFD ++exthw128 0x000000000000007F = 0x000000000000007F ++exthw128 0x0000000000000080 = 0x0000000000000080 ++exthw128 0x0000000000007FFF = 0x0000000000007FFF ++exthw128 0x0000000000008000 = 0x0000000000008000 ++exthw128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++exthw128 0x0000000080000000 = 0x0000000080000000 ++exthw128 0x8000000000000000 = 0x0000000000000000 ++exthw128 0xFFFFFFFF80000000 = 0x0000000080000000 ++exthw128 0xFFFFFFFFFFFF8000 = 0x00000000FFFF8000 ++exthw128 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFF80 ++exthw128 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++exthw128 0x123456789ABCDEF0 = 0x000000009ABCDEF0 ++exthw128 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on exthw255 === ++exthw255 0x0000000000000000 = 0x0000000000000000 ++exthw255 0x0000000000000001 = 0x0000000000000100 ++exthw255 0x0000000000000002 = 0x0000000000000200 ++exthw255 0x0000000000000003 = 0x0000000000000300 ++exthw255 0x000000000000000F = 0x0000000000000F00 ++exthw255 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFF00 ++exthw255 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFE00 ++exthw255 0xFFFFFFFFFFFFFFFD = 0x00000000FFFFFD00 ++exthw255 0x000000000000007F = 0x0000000000007F00 ++exthw255 0x0000000000000080 = 0x0000000000008000 ++exthw255 0x0000000000007FFF = 0x00000000007FFF00 ++exthw255 0x0000000000008000 = 0x0000000000800000 ++exthw255 0x000000007FFFFFFF = 0x00000000FFFFFF00 ++exthw255 0x0000000080000000 = 0x0000000000000000 ++exthw255 0x8000000000000000 = 0x0000000000000000 ++exthw255 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthw255 0xFFFFFFFFFFFF8000 = 0x00000000FF800000 ++exthw255 0xFFFFFFFFFFFFFF80 = 0x00000000FFFF8000 ++exthw255 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFF00 ++exthw255 0x123456789ABCDEF0 = 0x00000000BCDEF000 ++exthw255 0xF0DEBC9A78563412 = 0x0000000056341200 ++=== Running test on exthl0 === ++exthl0 0x0000000000000000 = 0x0000000000000000 ++exthl0 0x0000000000000001 = 0x0000000000000001 ++exthl0 0x0000000000000002 = 0x0000000000000002 ++exthl0 0x0000000000000003 = 0x0000000000000003 ++exthl0 0x000000000000000F = 0x000000000000000F ++exthl0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++exthl0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++exthl0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++exthl0 0x000000000000007F = 0x000000000000007F ++exthl0 0x0000000000000080 = 0x0000000000000080 ++exthl0 0x0000000000007FFF = 0x0000000000007FFF ++exthl0 0x0000000000008000 = 0x0000000000008000 ++exthl0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++exthl0 0x0000000080000000 = 0x0000000080000000 ++exthl0 0x8000000000000000 = 0x8000000000000000 ++exthl0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++exthl0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++exthl0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++exthl0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++exthl0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++exthl0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on exthl1 === ++exthl1 0x0000000000000000 = 0x0000000000000000 ++exthl1 0x0000000000000001 = 0x0100000000000000 ++exthl1 0x0000000000000002 = 0x0200000000000000 ++exthl1 0x0000000000000003 = 0x0300000000000000 ++exthl1 0x000000000000000F = 0x0F00000000000000 ++exthl1 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++exthl1 0xFFFFFFFFFFFFFFFE = 0xFE00000000000000 ++exthl1 0xFFFFFFFFFFFFFFFD = 0xFD00000000000000 ++exthl1 0x000000000000007F = 0x7F00000000000000 ++exthl1 0x0000000000000080 = 0x8000000000000000 ++exthl1 0x0000000000007FFF = 0xFF00000000000000 ++exthl1 0x0000000000008000 = 0x0000000000000000 ++exthl1 0x000000007FFFFFFF = 0xFF00000000000000 ++exthl1 0x0000000080000000 = 0x0000000000000000 ++exthl1 0x8000000000000000 = 0x0000000000000000 ++exthl1 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthl1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthl1 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++exthl1 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++exthl1 0x123456789ABCDEF0 = 0xF000000000000000 ++exthl1 0xF0DEBC9A78563412 = 0x1200000000000000 ++=== Running test on exthl2 === ++exthl2 0x0000000000000000 = 0x0000000000000000 ++exthl2 0x0000000000000001 = 0x0001000000000000 ++exthl2 0x0000000000000002 = 0x0002000000000000 ++exthl2 0x0000000000000003 = 0x0003000000000000 ++exthl2 0x000000000000000F = 0x000F000000000000 ++exthl2 0xFFFFFFFFFFFFFFFF = 0xFFFF000000000000 ++exthl2 0xFFFFFFFFFFFFFFFE = 0xFFFE000000000000 ++exthl2 0xFFFFFFFFFFFFFFFD = 0xFFFD000000000000 ++exthl2 0x000000000000007F = 0x007F000000000000 ++exthl2 0x0000000000000080 = 0x0080000000000000 ++exthl2 0x0000000000007FFF = 0x7FFF000000000000 ++exthl2 0x0000000000008000 = 0x8000000000000000 ++exthl2 0x000000007FFFFFFF = 0xFFFF000000000000 ++exthl2 0x0000000080000000 = 0x0000000000000000 ++exthl2 0x8000000000000000 = 0x0000000000000000 ++exthl2 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthl2 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++exthl2 0xFFFFFFFFFFFFFF80 = 0xFF80000000000000 ++exthl2 0x7FFFFFFFFFFFFFFF = 0xFFFF000000000000 ++exthl2 0x123456789ABCDEF0 = 0xDEF0000000000000 ++exthl2 0xF0DEBC9A78563412 = 0x3412000000000000 ++=== Running test on exthl3 === ++exthl3 0x0000000000000000 = 0x0000000000000000 ++exthl3 0x0000000000000001 = 0x0000010000000000 ++exthl3 0x0000000000000002 = 0x0000020000000000 ++exthl3 0x0000000000000003 = 0x0000030000000000 ++exthl3 0x000000000000000F = 0x00000F0000000000 ++exthl3 0xFFFFFFFFFFFFFFFF = 0xFFFFFF0000000000 ++exthl3 0xFFFFFFFFFFFFFFFE = 0xFFFFFE0000000000 ++exthl3 0xFFFFFFFFFFFFFFFD = 0xFFFFFD0000000000 ++exthl3 0x000000000000007F = 0x00007F0000000000 ++exthl3 0x0000000000000080 = 0x0000800000000000 ++exthl3 0x0000000000007FFF = 0x007FFF0000000000 ++exthl3 0x0000000000008000 = 0x0080000000000000 ++exthl3 0x000000007FFFFFFF = 0xFFFFFF0000000000 ++exthl3 0x0000000080000000 = 0x0000000000000000 ++exthl3 0x8000000000000000 = 0x0000000000000000 ++exthl3 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthl3 0xFFFFFFFFFFFF8000 = 0xFF80000000000000 ++exthl3 0xFFFFFFFFFFFFFF80 = 0xFFFF800000000000 ++exthl3 0x7FFFFFFFFFFFFFFF = 0xFFFFFF0000000000 ++exthl3 0x123456789ABCDEF0 = 0xBCDEF00000000000 ++exthl3 0xF0DEBC9A78563412 = 0x5634120000000000 ++=== Running test on exthl15 === ++exthl15 0x0000000000000000 = 0x0000000000000000 ++exthl15 0x0000000000000001 = 0x0000000000000100 ++exthl15 0x0000000000000002 = 0x0000000000000200 ++exthl15 0x0000000000000003 = 0x0000000000000300 ++exthl15 0x000000000000000F = 0x0000000000000F00 ++exthl15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++exthl15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFE00 ++exthl15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFD00 ++exthl15 0x000000000000007F = 0x0000000000007F00 ++exthl15 0x0000000000000080 = 0x0000000000008000 ++exthl15 0x0000000000007FFF = 0x00000000007FFF00 ++exthl15 0x0000000000008000 = 0x0000000000800000 ++exthl15 0x000000007FFFFFFF = 0x0000007FFFFFFF00 ++exthl15 0x0000000080000000 = 0x0000008000000000 ++exthl15 0x8000000000000000 = 0x0000000000000000 ++exthl15 0xFFFFFFFF80000000 = 0xFFFFFF8000000000 ++exthl15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFF800000 ++exthl15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++exthl15 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++exthl15 0x123456789ABCDEF0 = 0x3456789ABCDEF000 ++exthl15 0xF0DEBC9A78563412 = 0xDEBC9A7856341200 ++=== Running test on exthl127 === ++exthl127 0x0000000000000000 = 0x0000000000000000 ++exthl127 0x0000000000000001 = 0x0000000000000100 ++exthl127 0x0000000000000002 = 0x0000000000000200 ++exthl127 0x0000000000000003 = 0x0000000000000300 ++exthl127 0x000000000000000F = 0x0000000000000F00 ++exthl127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++exthl127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFE00 ++exthl127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFD00 ++exthl127 0x000000000000007F = 0x0000000000007F00 ++exthl127 0x0000000000000080 = 0x0000000000008000 ++exthl127 0x0000000000007FFF = 0x00000000007FFF00 ++exthl127 0x0000000000008000 = 0x0000000000800000 ++exthl127 0x000000007FFFFFFF = 0x0000007FFFFFFF00 ++exthl127 0x0000000080000000 = 0x0000008000000000 ++exthl127 0x8000000000000000 = 0x0000000000000000 ++exthl127 0xFFFFFFFF80000000 = 0xFFFFFF8000000000 ++exthl127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFF800000 ++exthl127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++exthl127 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++exthl127 0x123456789ABCDEF0 = 0x3456789ABCDEF000 ++exthl127 0xF0DEBC9A78563412 = 0xDEBC9A7856341200 ++=== Running test on exthl128 === ++exthl128 0x0000000000000000 = 0x0000000000000000 ++exthl128 0x0000000000000001 = 0x0000000000000001 ++exthl128 0x0000000000000002 = 0x0000000000000002 ++exthl128 0x0000000000000003 = 0x0000000000000003 ++exthl128 0x000000000000000F = 0x000000000000000F ++exthl128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++exthl128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++exthl128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++exthl128 0x000000000000007F = 0x000000000000007F ++exthl128 0x0000000000000080 = 0x0000000000000080 ++exthl128 0x0000000000007FFF = 0x0000000000007FFF ++exthl128 0x0000000000008000 = 0x0000000000008000 ++exthl128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++exthl128 0x0000000080000000 = 0x0000000080000000 ++exthl128 0x8000000000000000 = 0x8000000000000000 ++exthl128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++exthl128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++exthl128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++exthl128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++exthl128 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++exthl128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on exthl255 === ++exthl255 0x0000000000000000 = 0x0000000000000000 ++exthl255 0x0000000000000001 = 0x0000000000000100 ++exthl255 0x0000000000000002 = 0x0000000000000200 ++exthl255 0x0000000000000003 = 0x0000000000000300 ++exthl255 0x000000000000000F = 0x0000000000000F00 ++exthl255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++exthl255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFE00 ++exthl255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFD00 ++exthl255 0x000000000000007F = 0x0000000000007F00 ++exthl255 0x0000000000000080 = 0x0000000000008000 ++exthl255 0x0000000000007FFF = 0x00000000007FFF00 ++exthl255 0x0000000000008000 = 0x0000000000800000 ++exthl255 0x000000007FFFFFFF = 0x0000007FFFFFFF00 ++exthl255 0x0000000080000000 = 0x0000008000000000 ++exthl255 0x8000000000000000 = 0x0000000000000000 ++exthl255 0xFFFFFFFF80000000 = 0xFFFFFF8000000000 ++exthl255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFF800000 ++exthl255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++exthl255 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++exthl255 0x123456789ABCDEF0 = 0x3456789ABCDEF000 ++exthl255 0xF0DEBC9A78563412 = 0xDEBC9A7856341200 ++=== Running test on masklb0 === ++masklb0 0x0000000000000000 = 0x0000000000000000 ++masklb0 0x0000000000000001 = 0x0000000000000000 ++masklb0 0x0000000000000002 = 0x0000000000000000 ++masklb0 0x0000000000000003 = 0x0000000000000000 ++masklb0 0x000000000000000F = 0x0000000000000000 ++masklb0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++masklb0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++masklb0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF00 ++masklb0 0x000000000000007F = 0x0000000000000000 ++masklb0 0x0000000000000080 = 0x0000000000000000 ++masklb0 0x0000000000007FFF = 0x0000000000007F00 ++masklb0 0x0000000000008000 = 0x0000000000008000 ++masklb0 0x000000007FFFFFFF = 0x000000007FFFFF00 ++masklb0 0x0000000080000000 = 0x0000000080000000 ++masklb0 0x8000000000000000 = 0x8000000000000000 ++masklb0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++masklb0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++masklb0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++masklb0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF00 ++masklb0 0x123456789ABCDEF0 = 0x123456789ABCDE00 ++masklb0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563400 ++=== Running test on masklb1 === ++masklb1 0x0000000000000000 = 0x0000000000000000 ++masklb1 0x0000000000000001 = 0x0000000000000001 ++masklb1 0x0000000000000002 = 0x0000000000000002 ++masklb1 0x0000000000000003 = 0x0000000000000003 ++masklb1 0x000000000000000F = 0x000000000000000F ++masklb1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF00FF ++masklb1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF00FE ++masklb1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF00FD ++masklb1 0x000000000000007F = 0x000000000000007F ++masklb1 0x0000000000000080 = 0x0000000000000080 ++masklb1 0x0000000000007FFF = 0x00000000000000FF ++masklb1 0x0000000000008000 = 0x0000000000000000 ++masklb1 0x000000007FFFFFFF = 0x000000007FFF00FF ++masklb1 0x0000000080000000 = 0x0000000080000000 ++masklb1 0x8000000000000000 = 0x8000000000000000 ++masklb1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++masklb1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++masklb1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF0080 ++masklb1 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF00FF ++masklb1 0x123456789ABCDEF0 = 0x123456789ABC00F0 ++masklb1 0xF0DEBC9A78563412 = 0xF0DEBC9A78560012 ++=== Running test on masklb2 === ++masklb2 0x0000000000000000 = 0x0000000000000000 ++masklb2 0x0000000000000001 = 0x0000000000000001 ++masklb2 0x0000000000000002 = 0x0000000000000002 ++masklb2 0x0000000000000003 = 0x0000000000000003 ++masklb2 0x000000000000000F = 0x000000000000000F ++masklb2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFF00FFFF ++masklb2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFF00FFFE ++masklb2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFF00FFFD ++masklb2 0x000000000000007F = 0x000000000000007F ++masklb2 0x0000000000000080 = 0x0000000000000080 ++masklb2 0x0000000000007FFF = 0x0000000000007FFF ++masklb2 0x0000000000008000 = 0x0000000000008000 ++masklb2 0x000000007FFFFFFF = 0x000000007F00FFFF ++masklb2 0x0000000080000000 = 0x0000000080000000 ++masklb2 0x8000000000000000 = 0x8000000000000000 ++masklb2 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++masklb2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFF008000 ++masklb2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFF00FF80 ++masklb2 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFF00FFFF ++masklb2 0x123456789ABCDEF0 = 0x123456789A00DEF0 ++masklb2 0xF0DEBC9A78563412 = 0xF0DEBC9A78003412 ++=== Running test on masklb3 === ++masklb3 0x0000000000000000 = 0x0000000000000000 ++masklb3 0x0000000000000001 = 0x0000000000000001 ++masklb3 0x0000000000000002 = 0x0000000000000002 ++masklb3 0x0000000000000003 = 0x0000000000000003 ++masklb3 0x000000000000000F = 0x000000000000000F ++masklb3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF00FFFFFF ++masklb3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF00FFFFFE ++masklb3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF00FFFFFD ++masklb3 0x000000000000007F = 0x000000000000007F ++masklb3 0x0000000000000080 = 0x0000000000000080 ++masklb3 0x0000000000007FFF = 0x0000000000007FFF ++masklb3 0x0000000000008000 = 0x0000000000008000 ++masklb3 0x000000007FFFFFFF = 0x0000000000FFFFFF ++masklb3 0x0000000080000000 = 0x0000000000000000 ++masklb3 0x8000000000000000 = 0x8000000000000000 ++masklb3 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++masklb3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF00FF8000 ++masklb3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF00FFFF80 ++masklb3 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFF00FFFFFF ++masklb3 0x123456789ABCDEF0 = 0x1234567800BCDEF0 ++masklb3 0xF0DEBC9A78563412 = 0xF0DEBC9A00563412 ++=== Running test on masklb15 === ++masklb15 0x0000000000000000 = 0x0000000000000000 ++masklb15 0x0000000000000001 = 0x0000000000000001 ++masklb15 0x0000000000000002 = 0x0000000000000002 ++masklb15 0x0000000000000003 = 0x0000000000000003 ++masklb15 0x000000000000000F = 0x000000000000000F ++masklb15 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklb15 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFE ++masklb15 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFD ++masklb15 0x000000000000007F = 0x000000000000007F ++masklb15 0x0000000000000080 = 0x0000000000000080 ++masklb15 0x0000000000007FFF = 0x0000000000007FFF ++masklb15 0x0000000000008000 = 0x0000000000008000 ++masklb15 0x000000007FFFFFFF = 0x000000007FFFFFFF ++masklb15 0x0000000080000000 = 0x0000000080000000 ++masklb15 0x8000000000000000 = 0x0000000000000000 ++masklb15 0xFFFFFFFF80000000 = 0x00FFFFFF80000000 ++masklb15 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFF8000 ++masklb15 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++masklb15 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklb15 0x123456789ABCDEF0 = 0x003456789ABCDEF0 ++masklb15 0xF0DEBC9A78563412 = 0x00DEBC9A78563412 ++=== Running test on masklb127 === ++masklb127 0x0000000000000000 = 0x0000000000000000 ++masklb127 0x0000000000000001 = 0x0000000000000001 ++masklb127 0x0000000000000002 = 0x0000000000000002 ++masklb127 0x0000000000000003 = 0x0000000000000003 ++masklb127 0x000000000000000F = 0x000000000000000F ++masklb127 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklb127 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFE ++masklb127 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFD ++masklb127 0x000000000000007F = 0x000000000000007F ++masklb127 0x0000000000000080 = 0x0000000000000080 ++masklb127 0x0000000000007FFF = 0x0000000000007FFF ++masklb127 0x0000000000008000 = 0x0000000000008000 ++masklb127 0x000000007FFFFFFF = 0x000000007FFFFFFF ++masklb127 0x0000000080000000 = 0x0000000080000000 ++masklb127 0x8000000000000000 = 0x0000000000000000 ++masklb127 0xFFFFFFFF80000000 = 0x00FFFFFF80000000 ++masklb127 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFF8000 ++masklb127 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++masklb127 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklb127 0x123456789ABCDEF0 = 0x003456789ABCDEF0 ++masklb127 0xF0DEBC9A78563412 = 0x00DEBC9A78563412 ++=== Running test on masklb128 === ++masklb128 0x0000000000000000 = 0x0000000000000000 ++masklb128 0x0000000000000001 = 0x0000000000000000 ++masklb128 0x0000000000000002 = 0x0000000000000000 ++masklb128 0x0000000000000003 = 0x0000000000000000 ++masklb128 0x000000000000000F = 0x0000000000000000 ++masklb128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++masklb128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++masklb128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF00 ++masklb128 0x000000000000007F = 0x0000000000000000 ++masklb128 0x0000000000000080 = 0x0000000000000000 ++masklb128 0x0000000000007FFF = 0x0000000000007F00 ++masklb128 0x0000000000008000 = 0x0000000000008000 ++masklb128 0x000000007FFFFFFF = 0x000000007FFFFF00 ++masklb128 0x0000000080000000 = 0x0000000080000000 ++masklb128 0x8000000000000000 = 0x8000000000000000 ++masklb128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++masklb128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++masklb128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++masklb128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF00 ++masklb128 0x123456789ABCDEF0 = 0x123456789ABCDE00 ++masklb128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563400 ++=== Running test on masklb255 === ++masklb255 0x0000000000000000 = 0x0000000000000000 ++masklb255 0x0000000000000001 = 0x0000000000000001 ++masklb255 0x0000000000000002 = 0x0000000000000002 ++masklb255 0x0000000000000003 = 0x0000000000000003 ++masklb255 0x000000000000000F = 0x000000000000000F ++masklb255 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklb255 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFE ++masklb255 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFD ++masklb255 0x000000000000007F = 0x000000000000007F ++masklb255 0x0000000000000080 = 0x0000000000000080 ++masklb255 0x0000000000007FFF = 0x0000000000007FFF ++masklb255 0x0000000000008000 = 0x0000000000008000 ++masklb255 0x000000007FFFFFFF = 0x000000007FFFFFFF ++masklb255 0x0000000080000000 = 0x0000000080000000 ++masklb255 0x8000000000000000 = 0x0000000000000000 ++masklb255 0xFFFFFFFF80000000 = 0x00FFFFFF80000000 ++masklb255 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFF8000 ++masklb255 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++masklb255 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklb255 0x123456789ABCDEF0 = 0x003456789ABCDEF0 ++masklb255 0xF0DEBC9A78563412 = 0x00DEBC9A78563412 ++=== Running test on masklh0 === ++masklh0 0x0000000000000000 = 0x0000000000000000 ++masklh0 0x0000000000000001 = 0x0000000000000000 ++masklh0 0x0000000000000002 = 0x0000000000000000 ++masklh0 0x0000000000000003 = 0x0000000000000000 ++masklh0 0x000000000000000F = 0x0000000000000000 ++masklh0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF0000 ++masklh0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++masklh0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF0000 ++masklh0 0x000000000000007F = 0x0000000000000000 ++masklh0 0x0000000000000080 = 0x0000000000000000 ++masklh0 0x0000000000007FFF = 0x0000000000000000 ++masklh0 0x0000000000008000 = 0x0000000000000000 ++masklh0 0x000000007FFFFFFF = 0x000000007FFF0000 ++masklh0 0x0000000080000000 = 0x0000000080000000 ++masklh0 0x8000000000000000 = 0x8000000000000000 ++masklh0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++masklh0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++masklh0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF0000 ++masklh0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF0000 ++masklh0 0x123456789ABCDEF0 = 0x123456789ABC0000 ++masklh0 0xF0DEBC9A78563412 = 0xF0DEBC9A78560000 ++=== Running test on masklh1 === ++masklh1 0x0000000000000000 = 0x0000000000000000 ++masklh1 0x0000000000000001 = 0x0000000000000001 ++masklh1 0x0000000000000002 = 0x0000000000000002 ++masklh1 0x0000000000000003 = 0x0000000000000003 ++masklh1 0x000000000000000F = 0x000000000000000F ++masklh1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFF0000FF ++masklh1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFF0000FE ++masklh1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFF0000FD ++masklh1 0x000000000000007F = 0x000000000000007F ++masklh1 0x0000000000000080 = 0x0000000000000080 ++masklh1 0x0000000000007FFF = 0x00000000000000FF ++masklh1 0x0000000000008000 = 0x0000000000000000 ++masklh1 0x000000007FFFFFFF = 0x000000007F0000FF ++masklh1 0x0000000080000000 = 0x0000000080000000 ++masklh1 0x8000000000000000 = 0x8000000000000000 ++masklh1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++masklh1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFF000000 ++masklh1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFF000080 ++masklh1 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFF0000FF ++masklh1 0x123456789ABCDEF0 = 0x123456789A0000F0 ++masklh1 0xF0DEBC9A78563412 = 0xF0DEBC9A78000012 ++=== Running test on masklh2 === ++masklh2 0x0000000000000000 = 0x0000000000000000 ++masklh2 0x0000000000000001 = 0x0000000000000001 ++masklh2 0x0000000000000002 = 0x0000000000000002 ++masklh2 0x0000000000000003 = 0x0000000000000003 ++masklh2 0x000000000000000F = 0x000000000000000F ++masklh2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF0000FFFF ++masklh2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF0000FFFE ++masklh2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF0000FFFD ++masklh2 0x000000000000007F = 0x000000000000007F ++masklh2 0x0000000000000080 = 0x0000000000000080 ++masklh2 0x0000000000007FFF = 0x0000000000007FFF ++masklh2 0x0000000000008000 = 0x0000000000008000 ++masklh2 0x000000007FFFFFFF = 0x000000000000FFFF ++masklh2 0x0000000080000000 = 0x0000000000000000 ++masklh2 0x8000000000000000 = 0x8000000000000000 ++masklh2 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++masklh2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF00008000 ++masklh2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF0000FF80 ++masklh2 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFF0000FFFF ++masklh2 0x123456789ABCDEF0 = 0x123456780000DEF0 ++masklh2 0xF0DEBC9A78563412 = 0xF0DEBC9A00003412 ++=== Running test on masklh3 === ++masklh3 0x0000000000000000 = 0x0000000000000000 ++masklh3 0x0000000000000001 = 0x0000000000000001 ++masklh3 0x0000000000000002 = 0x0000000000000002 ++masklh3 0x0000000000000003 = 0x0000000000000003 ++masklh3 0x000000000000000F = 0x000000000000000F ++masklh3 0xFFFFFFFFFFFFFFFF = 0xFFFFFF0000FFFFFF ++masklh3 0xFFFFFFFFFFFFFFFE = 0xFFFFFF0000FFFFFE ++masklh3 0xFFFFFFFFFFFFFFFD = 0xFFFFFF0000FFFFFD ++masklh3 0x000000000000007F = 0x000000000000007F ++masklh3 0x0000000000000080 = 0x0000000000000080 ++masklh3 0x0000000000007FFF = 0x0000000000007FFF ++masklh3 0x0000000000008000 = 0x0000000000008000 ++masklh3 0x000000007FFFFFFF = 0x0000000000FFFFFF ++masklh3 0x0000000080000000 = 0x0000000000000000 ++masklh3 0x8000000000000000 = 0x8000000000000000 ++masklh3 0xFFFFFFFF80000000 = 0xFFFFFF0000000000 ++masklh3 0xFFFFFFFFFFFF8000 = 0xFFFFFF0000FF8000 ++masklh3 0xFFFFFFFFFFFFFF80 = 0xFFFFFF0000FFFF80 ++masklh3 0x7FFFFFFFFFFFFFFF = 0x7FFFFF0000FFFFFF ++masklh3 0x123456789ABCDEF0 = 0x1234560000BCDEF0 ++masklh3 0xF0DEBC9A78563412 = 0xF0DEBC0000563412 ++=== Running test on masklh15 === ++masklh15 0x0000000000000000 = 0x0000000000000000 ++masklh15 0x0000000000000001 = 0x0000000000000001 ++masklh15 0x0000000000000002 = 0x0000000000000002 ++masklh15 0x0000000000000003 = 0x0000000000000003 ++masklh15 0x000000000000000F = 0x000000000000000F ++masklh15 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklh15 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFE ++masklh15 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFD ++masklh15 0x000000000000007F = 0x000000000000007F ++masklh15 0x0000000000000080 = 0x0000000000000080 ++masklh15 0x0000000000007FFF = 0x0000000000007FFF ++masklh15 0x0000000000008000 = 0x0000000000008000 ++masklh15 0x000000007FFFFFFF = 0x000000007FFFFFFF ++masklh15 0x0000000080000000 = 0x0000000080000000 ++masklh15 0x8000000000000000 = 0x0000000000000000 ++masklh15 0xFFFFFFFF80000000 = 0x00FFFFFF80000000 ++masklh15 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFF8000 ++masklh15 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++masklh15 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklh15 0x123456789ABCDEF0 = 0x003456789ABCDEF0 ++masklh15 0xF0DEBC9A78563412 = 0x00DEBC9A78563412 ++=== Running test on masklh127 === ++masklh127 0x0000000000000000 = 0x0000000000000000 ++masklh127 0x0000000000000001 = 0x0000000000000001 ++masklh127 0x0000000000000002 = 0x0000000000000002 ++masklh127 0x0000000000000003 = 0x0000000000000003 ++masklh127 0x000000000000000F = 0x000000000000000F ++masklh127 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklh127 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFE ++masklh127 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFD ++masklh127 0x000000000000007F = 0x000000000000007F ++masklh127 0x0000000000000080 = 0x0000000000000080 ++masklh127 0x0000000000007FFF = 0x0000000000007FFF ++masklh127 0x0000000000008000 = 0x0000000000008000 ++masklh127 0x000000007FFFFFFF = 0x000000007FFFFFFF ++masklh127 0x0000000080000000 = 0x0000000080000000 ++masklh127 0x8000000000000000 = 0x0000000000000000 ++masklh127 0xFFFFFFFF80000000 = 0x00FFFFFF80000000 ++masklh127 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFF8000 ++masklh127 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++masklh127 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklh127 0x123456789ABCDEF0 = 0x003456789ABCDEF0 ++masklh127 0xF0DEBC9A78563412 = 0x00DEBC9A78563412 ++=== Running test on masklh128 === ++masklh128 0x0000000000000000 = 0x0000000000000000 ++masklh128 0x0000000000000001 = 0x0000000000000000 ++masklh128 0x0000000000000002 = 0x0000000000000000 ++masklh128 0x0000000000000003 = 0x0000000000000000 ++masklh128 0x000000000000000F = 0x0000000000000000 ++masklh128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF0000 ++masklh128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++masklh128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF0000 ++masklh128 0x000000000000007F = 0x0000000000000000 ++masklh128 0x0000000000000080 = 0x0000000000000000 ++masklh128 0x0000000000007FFF = 0x0000000000000000 ++masklh128 0x0000000000008000 = 0x0000000000000000 ++masklh128 0x000000007FFFFFFF = 0x000000007FFF0000 ++masklh128 0x0000000080000000 = 0x0000000080000000 ++masklh128 0x8000000000000000 = 0x8000000000000000 ++masklh128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++masklh128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++masklh128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF0000 ++masklh128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF0000 ++masklh128 0x123456789ABCDEF0 = 0x123456789ABC0000 ++masklh128 0xF0DEBC9A78563412 = 0xF0DEBC9A78560000 ++=== Running test on masklh255 === ++masklh255 0x0000000000000000 = 0x0000000000000000 ++masklh255 0x0000000000000001 = 0x0000000000000001 ++masklh255 0x0000000000000002 = 0x0000000000000002 ++masklh255 0x0000000000000003 = 0x0000000000000003 ++masklh255 0x000000000000000F = 0x000000000000000F ++masklh255 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklh255 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFE ++masklh255 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFD ++masklh255 0x000000000000007F = 0x000000000000007F ++masklh255 0x0000000000000080 = 0x0000000000000080 ++masklh255 0x0000000000007FFF = 0x0000000000007FFF ++masklh255 0x0000000000008000 = 0x0000000000008000 ++masklh255 0x000000007FFFFFFF = 0x000000007FFFFFFF ++masklh255 0x0000000080000000 = 0x0000000080000000 ++masklh255 0x8000000000000000 = 0x0000000000000000 ++masklh255 0xFFFFFFFF80000000 = 0x00FFFFFF80000000 ++masklh255 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFF8000 ++masklh255 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++masklh255 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklh255 0x123456789ABCDEF0 = 0x003456789ABCDEF0 ++masklh255 0xF0DEBC9A78563412 = 0x00DEBC9A78563412 ++=== Running test on masklw0 === ++masklw0 0x0000000000000000 = 0x0000000000000000 ++masklw0 0x0000000000000001 = 0x0000000000000000 ++masklw0 0x0000000000000002 = 0x0000000000000000 ++masklw0 0x0000000000000003 = 0x0000000000000000 ++masklw0 0x000000000000000F = 0x0000000000000000 ++masklw0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF00000000 ++masklw0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF00000000 ++masklw0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF00000000 ++masklw0 0x000000000000007F = 0x0000000000000000 ++masklw0 0x0000000000000080 = 0x0000000000000000 ++masklw0 0x0000000000007FFF = 0x0000000000000000 ++masklw0 0x0000000000008000 = 0x0000000000000000 ++masklw0 0x000000007FFFFFFF = 0x0000000000000000 ++masklw0 0x0000000080000000 = 0x0000000000000000 ++masklw0 0x8000000000000000 = 0x8000000000000000 ++masklw0 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++masklw0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF00000000 ++masklw0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF00000000 ++masklw0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFF00000000 ++masklw0 0x123456789ABCDEF0 = 0x1234567800000000 ++masklw0 0xF0DEBC9A78563412 = 0xF0DEBC9A00000000 ++=== Running test on masklw1 === ++masklw1 0x0000000000000000 = 0x0000000000000000 ++masklw1 0x0000000000000001 = 0x0000000000000001 ++masklw1 0x0000000000000002 = 0x0000000000000002 ++masklw1 0x0000000000000003 = 0x0000000000000003 ++masklw1 0x000000000000000F = 0x000000000000000F ++masklw1 0xFFFFFFFFFFFFFFFF = 0xFFFFFF00000000FF ++masklw1 0xFFFFFFFFFFFFFFFE = 0xFFFFFF00000000FE ++masklw1 0xFFFFFFFFFFFFFFFD = 0xFFFFFF00000000FD ++masklw1 0x000000000000007F = 0x000000000000007F ++masklw1 0x0000000000000080 = 0x0000000000000080 ++masklw1 0x0000000000007FFF = 0x00000000000000FF ++masklw1 0x0000000000008000 = 0x0000000000000000 ++masklw1 0x000000007FFFFFFF = 0x00000000000000FF ++masklw1 0x0000000080000000 = 0x0000000000000000 ++masklw1 0x8000000000000000 = 0x8000000000000000 ++masklw1 0xFFFFFFFF80000000 = 0xFFFFFF0000000000 ++masklw1 0xFFFFFFFFFFFF8000 = 0xFFFFFF0000000000 ++masklw1 0xFFFFFFFFFFFFFF80 = 0xFFFFFF0000000080 ++masklw1 0x7FFFFFFFFFFFFFFF = 0x7FFFFF00000000FF ++masklw1 0x123456789ABCDEF0 = 0x12345600000000F0 ++masklw1 0xF0DEBC9A78563412 = 0xF0DEBC0000000012 ++=== Running test on masklw2 === ++masklw2 0x0000000000000000 = 0x0000000000000000 ++masklw2 0x0000000000000001 = 0x0000000000000001 ++masklw2 0x0000000000000002 = 0x0000000000000002 ++masklw2 0x0000000000000003 = 0x0000000000000003 ++masklw2 0x000000000000000F = 0x000000000000000F ++masklw2 0xFFFFFFFFFFFFFFFF = 0xFFFF00000000FFFF ++masklw2 0xFFFFFFFFFFFFFFFE = 0xFFFF00000000FFFE ++masklw2 0xFFFFFFFFFFFFFFFD = 0xFFFF00000000FFFD ++masklw2 0x000000000000007F = 0x000000000000007F ++masklw2 0x0000000000000080 = 0x0000000000000080 ++masklw2 0x0000000000007FFF = 0x0000000000007FFF ++masklw2 0x0000000000008000 = 0x0000000000008000 ++masklw2 0x000000007FFFFFFF = 0x000000000000FFFF ++masklw2 0x0000000080000000 = 0x0000000000000000 ++masklw2 0x8000000000000000 = 0x8000000000000000 ++masklw2 0xFFFFFFFF80000000 = 0xFFFF000000000000 ++masklw2 0xFFFFFFFFFFFF8000 = 0xFFFF000000008000 ++masklw2 0xFFFFFFFFFFFFFF80 = 0xFFFF00000000FF80 ++masklw2 0x7FFFFFFFFFFFFFFF = 0x7FFF00000000FFFF ++masklw2 0x123456789ABCDEF0 = 0x123400000000DEF0 ++masklw2 0xF0DEBC9A78563412 = 0xF0DE000000003412 ++=== Running test on masklw3 === ++masklw3 0x0000000000000000 = 0x0000000000000000 ++masklw3 0x0000000000000001 = 0x0000000000000001 ++masklw3 0x0000000000000002 = 0x0000000000000002 ++masklw3 0x0000000000000003 = 0x0000000000000003 ++masklw3 0x000000000000000F = 0x000000000000000F ++masklw3 0xFFFFFFFFFFFFFFFF = 0xFF00000000FFFFFF ++masklw3 0xFFFFFFFFFFFFFFFE = 0xFF00000000FFFFFE ++masklw3 0xFFFFFFFFFFFFFFFD = 0xFF00000000FFFFFD ++masklw3 0x000000000000007F = 0x000000000000007F ++masklw3 0x0000000000000080 = 0x0000000000000080 ++masklw3 0x0000000000007FFF = 0x0000000000007FFF ++masklw3 0x0000000000008000 = 0x0000000000008000 ++masklw3 0x000000007FFFFFFF = 0x0000000000FFFFFF ++masklw3 0x0000000080000000 = 0x0000000000000000 ++masklw3 0x8000000000000000 = 0x8000000000000000 ++masklw3 0xFFFFFFFF80000000 = 0xFF00000000000000 ++masklw3 0xFFFFFFFFFFFF8000 = 0xFF00000000FF8000 ++masklw3 0xFFFFFFFFFFFFFF80 = 0xFF00000000FFFF80 ++masklw3 0x7FFFFFFFFFFFFFFF = 0x7F00000000FFFFFF ++masklw3 0x123456789ABCDEF0 = 0x1200000000BCDEF0 ++masklw3 0xF0DEBC9A78563412 = 0xF000000000563412 ++=== Running test on masklw15 === ++masklw15 0x0000000000000000 = 0x0000000000000000 ++masklw15 0x0000000000000001 = 0x0000000000000001 ++masklw15 0x0000000000000002 = 0x0000000000000002 ++masklw15 0x0000000000000003 = 0x0000000000000003 ++masklw15 0x000000000000000F = 0x000000000000000F ++masklw15 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklw15 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFE ++masklw15 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFD ++masklw15 0x000000000000007F = 0x000000000000007F ++masklw15 0x0000000000000080 = 0x0000000000000080 ++masklw15 0x0000000000007FFF = 0x0000000000007FFF ++masklw15 0x0000000000008000 = 0x0000000000008000 ++masklw15 0x000000007FFFFFFF = 0x000000007FFFFFFF ++masklw15 0x0000000080000000 = 0x0000000080000000 ++masklw15 0x8000000000000000 = 0x0000000000000000 ++masklw15 0xFFFFFFFF80000000 = 0x00FFFFFF80000000 ++masklw15 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFF8000 ++masklw15 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++masklw15 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklw15 0x123456789ABCDEF0 = 0x003456789ABCDEF0 ++masklw15 0xF0DEBC9A78563412 = 0x00DEBC9A78563412 ++=== Running test on masklw127 === ++masklw127 0x0000000000000000 = 0x0000000000000000 ++masklw127 0x0000000000000001 = 0x0000000000000001 ++masklw127 0x0000000000000002 = 0x0000000000000002 ++masklw127 0x0000000000000003 = 0x0000000000000003 ++masklw127 0x000000000000000F = 0x000000000000000F ++masklw127 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklw127 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFE ++masklw127 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFD ++masklw127 0x000000000000007F = 0x000000000000007F ++masklw127 0x0000000000000080 = 0x0000000000000080 ++masklw127 0x0000000000007FFF = 0x0000000000007FFF ++masklw127 0x0000000000008000 = 0x0000000000008000 ++masklw127 0x000000007FFFFFFF = 0x000000007FFFFFFF ++masklw127 0x0000000080000000 = 0x0000000080000000 ++masklw127 0x8000000000000000 = 0x0000000000000000 ++masklw127 0xFFFFFFFF80000000 = 0x00FFFFFF80000000 ++masklw127 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFF8000 ++masklw127 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++masklw127 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklw127 0x123456789ABCDEF0 = 0x003456789ABCDEF0 ++masklw127 0xF0DEBC9A78563412 = 0x00DEBC9A78563412 ++=== Running test on masklw128 === ++masklw128 0x0000000000000000 = 0x0000000000000000 ++masklw128 0x0000000000000001 = 0x0000000000000000 ++masklw128 0x0000000000000002 = 0x0000000000000000 ++masklw128 0x0000000000000003 = 0x0000000000000000 ++masklw128 0x000000000000000F = 0x0000000000000000 ++masklw128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF00000000 ++masklw128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF00000000 ++masklw128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF00000000 ++masklw128 0x000000000000007F = 0x0000000000000000 ++masklw128 0x0000000000000080 = 0x0000000000000000 ++masklw128 0x0000000000007FFF = 0x0000000000000000 ++masklw128 0x0000000000008000 = 0x0000000000000000 ++masklw128 0x000000007FFFFFFF = 0x0000000000000000 ++masklw128 0x0000000080000000 = 0x0000000000000000 ++masklw128 0x8000000000000000 = 0x8000000000000000 ++masklw128 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++masklw128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF00000000 ++masklw128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF00000000 ++masklw128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFF00000000 ++masklw128 0x123456789ABCDEF0 = 0x1234567800000000 ++masklw128 0xF0DEBC9A78563412 = 0xF0DEBC9A00000000 ++=== Running test on masklw255 === ++masklw255 0x0000000000000000 = 0x0000000000000000 ++masklw255 0x0000000000000001 = 0x0000000000000001 ++masklw255 0x0000000000000002 = 0x0000000000000002 ++masklw255 0x0000000000000003 = 0x0000000000000003 ++masklw255 0x000000000000000F = 0x000000000000000F ++masklw255 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklw255 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFE ++masklw255 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFD ++masklw255 0x000000000000007F = 0x000000000000007F ++masklw255 0x0000000000000080 = 0x0000000000000080 ++masklw255 0x0000000000007FFF = 0x0000000000007FFF ++masklw255 0x0000000000008000 = 0x0000000000008000 ++masklw255 0x000000007FFFFFFF = 0x000000007FFFFFFF ++masklw255 0x0000000080000000 = 0x0000000080000000 ++masklw255 0x8000000000000000 = 0x0000000000000000 ++masklw255 0xFFFFFFFF80000000 = 0x00FFFFFF80000000 ++masklw255 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFF8000 ++masklw255 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++masklw255 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklw255 0x123456789ABCDEF0 = 0x003456789ABCDEF0 ++masklw255 0xF0DEBC9A78563412 = 0x00DEBC9A78563412 ++=== Running test on maskll0 === ++maskll0 0x0000000000000000 = 0x0000000000000000 ++maskll0 0x0000000000000001 = 0x0000000000000000 ++maskll0 0x0000000000000002 = 0x0000000000000000 ++maskll0 0x0000000000000003 = 0x0000000000000000 ++maskll0 0x000000000000000F = 0x0000000000000000 ++maskll0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskll0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskll0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskll0 0x000000000000007F = 0x0000000000000000 ++maskll0 0x0000000000000080 = 0x0000000000000000 ++maskll0 0x0000000000007FFF = 0x0000000000000000 ++maskll0 0x0000000000008000 = 0x0000000000000000 ++maskll0 0x000000007FFFFFFF = 0x0000000000000000 ++maskll0 0x0000000080000000 = 0x0000000000000000 ++maskll0 0x8000000000000000 = 0x0000000000000000 ++maskll0 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskll0 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll0 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on maskll1 === ++maskll1 0x0000000000000000 = 0x0000000000000000 ++maskll1 0x0000000000000001 = 0x0000000000000001 ++maskll1 0x0000000000000002 = 0x0000000000000002 ++maskll1 0x0000000000000003 = 0x0000000000000003 ++maskll1 0x000000000000000F = 0x000000000000000F ++maskll1 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++maskll1 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++maskll1 0xFFFFFFFFFFFFFFFD = 0x00000000000000FD ++maskll1 0x000000000000007F = 0x000000000000007F ++maskll1 0x0000000000000080 = 0x0000000000000080 ++maskll1 0x0000000000007FFF = 0x00000000000000FF ++maskll1 0x0000000000008000 = 0x0000000000000000 ++maskll1 0x000000007FFFFFFF = 0x00000000000000FF ++maskll1 0x0000000080000000 = 0x0000000000000000 ++maskll1 0x8000000000000000 = 0x0000000000000000 ++maskll1 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll1 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++maskll1 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++maskll1 0x123456789ABCDEF0 = 0x00000000000000F0 ++maskll1 0xF0DEBC9A78563412 = 0x0000000000000012 ++=== Running test on maskll2 === ++maskll2 0x0000000000000000 = 0x0000000000000000 ++maskll2 0x0000000000000001 = 0x0000000000000001 ++maskll2 0x0000000000000002 = 0x0000000000000002 ++maskll2 0x0000000000000003 = 0x0000000000000003 ++maskll2 0x000000000000000F = 0x000000000000000F ++maskll2 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++maskll2 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFE ++maskll2 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFD ++maskll2 0x000000000000007F = 0x000000000000007F ++maskll2 0x0000000000000080 = 0x0000000000000080 ++maskll2 0x0000000000007FFF = 0x0000000000007FFF ++maskll2 0x0000000000008000 = 0x0000000000008000 ++maskll2 0x000000007FFFFFFF = 0x000000000000FFFF ++maskll2 0x0000000080000000 = 0x0000000000000000 ++maskll2 0x8000000000000000 = 0x0000000000000000 ++maskll2 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll2 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++maskll2 0xFFFFFFFFFFFFFF80 = 0x000000000000FF80 ++maskll2 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++maskll2 0x123456789ABCDEF0 = 0x000000000000DEF0 ++maskll2 0xF0DEBC9A78563412 = 0x0000000000003412 ++=== Running test on maskll3 === ++maskll3 0x0000000000000000 = 0x0000000000000000 ++maskll3 0x0000000000000001 = 0x0000000000000001 ++maskll3 0x0000000000000002 = 0x0000000000000002 ++maskll3 0x0000000000000003 = 0x0000000000000003 ++maskll3 0x000000000000000F = 0x000000000000000F ++maskll3 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++maskll3 0xFFFFFFFFFFFFFFFE = 0x0000000000FFFFFE ++maskll3 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFD ++maskll3 0x000000000000007F = 0x000000000000007F ++maskll3 0x0000000000000080 = 0x0000000000000080 ++maskll3 0x0000000000007FFF = 0x0000000000007FFF ++maskll3 0x0000000000008000 = 0x0000000000008000 ++maskll3 0x000000007FFFFFFF = 0x0000000000FFFFFF ++maskll3 0x0000000080000000 = 0x0000000000000000 ++maskll3 0x8000000000000000 = 0x0000000000000000 ++maskll3 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll3 0xFFFFFFFFFFFF8000 = 0x0000000000FF8000 ++maskll3 0xFFFFFFFFFFFFFF80 = 0x0000000000FFFF80 ++maskll3 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++maskll3 0x123456789ABCDEF0 = 0x0000000000BCDEF0 ++maskll3 0xF0DEBC9A78563412 = 0x0000000000563412 ++=== Running test on maskll15 === ++maskll15 0x0000000000000000 = 0x0000000000000000 ++maskll15 0x0000000000000001 = 0x0000000000000001 ++maskll15 0x0000000000000002 = 0x0000000000000002 ++maskll15 0x0000000000000003 = 0x0000000000000003 ++maskll15 0x000000000000000F = 0x000000000000000F ++maskll15 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++maskll15 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFE ++maskll15 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFD ++maskll15 0x000000000000007F = 0x000000000000007F ++maskll15 0x0000000000000080 = 0x0000000000000080 ++maskll15 0x0000000000007FFF = 0x0000000000007FFF ++maskll15 0x0000000000008000 = 0x0000000000008000 ++maskll15 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskll15 0x0000000080000000 = 0x0000000080000000 ++maskll15 0x8000000000000000 = 0x0000000000000000 ++maskll15 0xFFFFFFFF80000000 = 0x00FFFFFF80000000 ++maskll15 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFF8000 ++maskll15 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++maskll15 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++maskll15 0x123456789ABCDEF0 = 0x003456789ABCDEF0 ++maskll15 0xF0DEBC9A78563412 = 0x00DEBC9A78563412 ++=== Running test on maskll127 === ++maskll127 0x0000000000000000 = 0x0000000000000000 ++maskll127 0x0000000000000001 = 0x0000000000000001 ++maskll127 0x0000000000000002 = 0x0000000000000002 ++maskll127 0x0000000000000003 = 0x0000000000000003 ++maskll127 0x000000000000000F = 0x000000000000000F ++maskll127 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++maskll127 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFE ++maskll127 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFD ++maskll127 0x000000000000007F = 0x000000000000007F ++maskll127 0x0000000000000080 = 0x0000000000000080 ++maskll127 0x0000000000007FFF = 0x0000000000007FFF ++maskll127 0x0000000000008000 = 0x0000000000008000 ++maskll127 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskll127 0x0000000080000000 = 0x0000000080000000 ++maskll127 0x8000000000000000 = 0x0000000000000000 ++maskll127 0xFFFFFFFF80000000 = 0x00FFFFFF80000000 ++maskll127 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFF8000 ++maskll127 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++maskll127 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++maskll127 0x123456789ABCDEF0 = 0x003456789ABCDEF0 ++maskll127 0xF0DEBC9A78563412 = 0x00DEBC9A78563412 ++=== Running test on maskll128 === ++maskll128 0x0000000000000000 = 0x0000000000000000 ++maskll128 0x0000000000000001 = 0x0000000000000000 ++maskll128 0x0000000000000002 = 0x0000000000000000 ++maskll128 0x0000000000000003 = 0x0000000000000000 ++maskll128 0x000000000000000F = 0x0000000000000000 ++maskll128 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskll128 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskll128 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskll128 0x000000000000007F = 0x0000000000000000 ++maskll128 0x0000000000000080 = 0x0000000000000000 ++maskll128 0x0000000000007FFF = 0x0000000000000000 ++maskll128 0x0000000000008000 = 0x0000000000000000 ++maskll128 0x000000007FFFFFFF = 0x0000000000000000 ++maskll128 0x0000000080000000 = 0x0000000000000000 ++maskll128 0x8000000000000000 = 0x0000000000000000 ++maskll128 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll128 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll128 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll128 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskll128 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll128 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on maskll255 === ++maskll255 0x0000000000000000 = 0x0000000000000000 ++maskll255 0x0000000000000001 = 0x0000000000000001 ++maskll255 0x0000000000000002 = 0x0000000000000002 ++maskll255 0x0000000000000003 = 0x0000000000000003 ++maskll255 0x000000000000000F = 0x000000000000000F ++maskll255 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++maskll255 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFE ++maskll255 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFD ++maskll255 0x000000000000007F = 0x000000000000007F ++maskll255 0x0000000000000080 = 0x0000000000000080 ++maskll255 0x0000000000007FFF = 0x0000000000007FFF ++maskll255 0x0000000000008000 = 0x0000000000008000 ++maskll255 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskll255 0x0000000080000000 = 0x0000000080000000 ++maskll255 0x8000000000000000 = 0x0000000000000000 ++maskll255 0xFFFFFFFF80000000 = 0x00FFFFFF80000000 ++maskll255 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFF8000 ++maskll255 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++maskll255 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++maskll255 0x123456789ABCDEF0 = 0x003456789ABCDEF0 ++maskll255 0xF0DEBC9A78563412 = 0x00DEBC9A78563412 ++=== Running test on maskhb0 === ++maskhb0 0x0000000000000000 = 0x0000000000000000 ++maskhb0 0x0000000000000001 = 0x0000000000000001 ++maskhb0 0x0000000000000002 = 0x0000000000000002 ++maskhb0 0x0000000000000003 = 0x0000000000000003 ++maskhb0 0x000000000000000F = 0x000000000000000F ++maskhb0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhb0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhb0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhb0 0x000000000000007F = 0x000000000000007F ++maskhb0 0x0000000000000080 = 0x0000000000000080 ++maskhb0 0x0000000000007FFF = 0x0000000000007FFF ++maskhb0 0x0000000000008000 = 0x0000000000008000 ++maskhb0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhb0 0x0000000080000000 = 0x0000000080000000 ++maskhb0 0x8000000000000000 = 0x8000000000000000 ++maskhb0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhb0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhb0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhb0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhb0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhb0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhb1 === ++maskhb1 0x0000000000000000 = 0x0000000000000000 ++maskhb1 0x0000000000000001 = 0x0000000000000001 ++maskhb1 0x0000000000000002 = 0x0000000000000002 ++maskhb1 0x0000000000000003 = 0x0000000000000003 ++maskhb1 0x000000000000000F = 0x000000000000000F ++maskhb1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhb1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhb1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhb1 0x000000000000007F = 0x000000000000007F ++maskhb1 0x0000000000000080 = 0x0000000000000080 ++maskhb1 0x0000000000007FFF = 0x0000000000007FFF ++maskhb1 0x0000000000008000 = 0x0000000000008000 ++maskhb1 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhb1 0x0000000080000000 = 0x0000000080000000 ++maskhb1 0x8000000000000000 = 0x8000000000000000 ++maskhb1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhb1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhb1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhb1 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhb1 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhb1 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhb2 === ++maskhb2 0x0000000000000000 = 0x0000000000000000 ++maskhb2 0x0000000000000001 = 0x0000000000000001 ++maskhb2 0x0000000000000002 = 0x0000000000000002 ++maskhb2 0x0000000000000003 = 0x0000000000000003 ++maskhb2 0x000000000000000F = 0x000000000000000F ++maskhb2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhb2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhb2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhb2 0x000000000000007F = 0x000000000000007F ++maskhb2 0x0000000000000080 = 0x0000000000000080 ++maskhb2 0x0000000000007FFF = 0x0000000000007FFF ++maskhb2 0x0000000000008000 = 0x0000000000008000 ++maskhb2 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhb2 0x0000000080000000 = 0x0000000080000000 ++maskhb2 0x8000000000000000 = 0x8000000000000000 ++maskhb2 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhb2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhb2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhb2 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhb2 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhb2 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhb3 === ++maskhb3 0x0000000000000000 = 0x0000000000000000 ++maskhb3 0x0000000000000001 = 0x0000000000000001 ++maskhb3 0x0000000000000002 = 0x0000000000000002 ++maskhb3 0x0000000000000003 = 0x0000000000000003 ++maskhb3 0x000000000000000F = 0x000000000000000F ++maskhb3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhb3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhb3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhb3 0x000000000000007F = 0x000000000000007F ++maskhb3 0x0000000000000080 = 0x0000000000000080 ++maskhb3 0x0000000000007FFF = 0x0000000000007FFF ++maskhb3 0x0000000000008000 = 0x0000000000008000 ++maskhb3 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhb3 0x0000000080000000 = 0x0000000080000000 ++maskhb3 0x8000000000000000 = 0x8000000000000000 ++maskhb3 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhb3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhb3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhb3 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhb3 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhb3 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhb15 === ++maskhb15 0x0000000000000000 = 0x0000000000000000 ++maskhb15 0x0000000000000001 = 0x0000000000000001 ++maskhb15 0x0000000000000002 = 0x0000000000000002 ++maskhb15 0x0000000000000003 = 0x0000000000000003 ++maskhb15 0x000000000000000F = 0x000000000000000F ++maskhb15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhb15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhb15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhb15 0x000000000000007F = 0x000000000000007F ++maskhb15 0x0000000000000080 = 0x0000000000000080 ++maskhb15 0x0000000000007FFF = 0x0000000000007FFF ++maskhb15 0x0000000000008000 = 0x0000000000008000 ++maskhb15 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhb15 0x0000000080000000 = 0x0000000080000000 ++maskhb15 0x8000000000000000 = 0x8000000000000000 ++maskhb15 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhb15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhb15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhb15 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhb15 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhb15 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhb127 === ++maskhb127 0x0000000000000000 = 0x0000000000000000 ++maskhb127 0x0000000000000001 = 0x0000000000000001 ++maskhb127 0x0000000000000002 = 0x0000000000000002 ++maskhb127 0x0000000000000003 = 0x0000000000000003 ++maskhb127 0x000000000000000F = 0x000000000000000F ++maskhb127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhb127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhb127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhb127 0x000000000000007F = 0x000000000000007F ++maskhb127 0x0000000000000080 = 0x0000000000000080 ++maskhb127 0x0000000000007FFF = 0x0000000000007FFF ++maskhb127 0x0000000000008000 = 0x0000000000008000 ++maskhb127 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhb127 0x0000000080000000 = 0x0000000080000000 ++maskhb127 0x8000000000000000 = 0x8000000000000000 ++maskhb127 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhb127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhb127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhb127 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhb127 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhb127 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhb128 === ++maskhb128 0x0000000000000000 = 0x0000000000000000 ++maskhb128 0x0000000000000001 = 0x0000000000000001 ++maskhb128 0x0000000000000002 = 0x0000000000000002 ++maskhb128 0x0000000000000003 = 0x0000000000000003 ++maskhb128 0x000000000000000F = 0x000000000000000F ++maskhb128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhb128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhb128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhb128 0x000000000000007F = 0x000000000000007F ++maskhb128 0x0000000000000080 = 0x0000000000000080 ++maskhb128 0x0000000000007FFF = 0x0000000000007FFF ++maskhb128 0x0000000000008000 = 0x0000000000008000 ++maskhb128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhb128 0x0000000080000000 = 0x0000000080000000 ++maskhb128 0x8000000000000000 = 0x8000000000000000 ++maskhb128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhb128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhb128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhb128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhb128 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhb128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhb255 === ++maskhb255 0x0000000000000000 = 0x0000000000000000 ++maskhb255 0x0000000000000001 = 0x0000000000000001 ++maskhb255 0x0000000000000002 = 0x0000000000000002 ++maskhb255 0x0000000000000003 = 0x0000000000000003 ++maskhb255 0x000000000000000F = 0x000000000000000F ++maskhb255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhb255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhb255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhb255 0x000000000000007F = 0x000000000000007F ++maskhb255 0x0000000000000080 = 0x0000000000000080 ++maskhb255 0x0000000000007FFF = 0x0000000000007FFF ++maskhb255 0x0000000000008000 = 0x0000000000008000 ++maskhb255 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhb255 0x0000000080000000 = 0x0000000080000000 ++maskhb255 0x8000000000000000 = 0x8000000000000000 ++maskhb255 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhb255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhb255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhb255 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhb255 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhb255 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhh0 === ++maskhh0 0x0000000000000000 = 0x0000000000000000 ++maskhh0 0x0000000000000001 = 0x0000000000000001 ++maskhh0 0x0000000000000002 = 0x0000000000000002 ++maskhh0 0x0000000000000003 = 0x0000000000000003 ++maskhh0 0x000000000000000F = 0x000000000000000F ++maskhh0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhh0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhh0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhh0 0x000000000000007F = 0x000000000000007F ++maskhh0 0x0000000000000080 = 0x0000000000000080 ++maskhh0 0x0000000000007FFF = 0x0000000000007FFF ++maskhh0 0x0000000000008000 = 0x0000000000008000 ++maskhh0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhh0 0x0000000080000000 = 0x0000000080000000 ++maskhh0 0x8000000000000000 = 0x8000000000000000 ++maskhh0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhh0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhh0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhh0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhh0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhh0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhh1 === ++maskhh1 0x0000000000000000 = 0x0000000000000000 ++maskhh1 0x0000000000000001 = 0x0000000000000001 ++maskhh1 0x0000000000000002 = 0x0000000000000002 ++maskhh1 0x0000000000000003 = 0x0000000000000003 ++maskhh1 0x000000000000000F = 0x000000000000000F ++maskhh1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhh1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhh1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhh1 0x000000000000007F = 0x000000000000007F ++maskhh1 0x0000000000000080 = 0x0000000000000080 ++maskhh1 0x0000000000007FFF = 0x0000000000007FFF ++maskhh1 0x0000000000008000 = 0x0000000000008000 ++maskhh1 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhh1 0x0000000080000000 = 0x0000000080000000 ++maskhh1 0x8000000000000000 = 0x8000000000000000 ++maskhh1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhh1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhh1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhh1 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhh1 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhh1 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhh2 === ++maskhh2 0x0000000000000000 = 0x0000000000000000 ++maskhh2 0x0000000000000001 = 0x0000000000000001 ++maskhh2 0x0000000000000002 = 0x0000000000000002 ++maskhh2 0x0000000000000003 = 0x0000000000000003 ++maskhh2 0x000000000000000F = 0x000000000000000F ++maskhh2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhh2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhh2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhh2 0x000000000000007F = 0x000000000000007F ++maskhh2 0x0000000000000080 = 0x0000000000000080 ++maskhh2 0x0000000000007FFF = 0x0000000000007FFF ++maskhh2 0x0000000000008000 = 0x0000000000008000 ++maskhh2 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhh2 0x0000000080000000 = 0x0000000080000000 ++maskhh2 0x8000000000000000 = 0x8000000000000000 ++maskhh2 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhh2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhh2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhh2 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhh2 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhh2 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhh3 === ++maskhh3 0x0000000000000000 = 0x0000000000000000 ++maskhh3 0x0000000000000001 = 0x0000000000000001 ++maskhh3 0x0000000000000002 = 0x0000000000000002 ++maskhh3 0x0000000000000003 = 0x0000000000000003 ++maskhh3 0x000000000000000F = 0x000000000000000F ++maskhh3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhh3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhh3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhh3 0x000000000000007F = 0x000000000000007F ++maskhh3 0x0000000000000080 = 0x0000000000000080 ++maskhh3 0x0000000000007FFF = 0x0000000000007FFF ++maskhh3 0x0000000000008000 = 0x0000000000008000 ++maskhh3 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhh3 0x0000000080000000 = 0x0000000080000000 ++maskhh3 0x8000000000000000 = 0x8000000000000000 ++maskhh3 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhh3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhh3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhh3 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhh3 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhh3 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhh15 === ++maskhh15 0x0000000000000000 = 0x0000000000000000 ++maskhh15 0x0000000000000001 = 0x0000000000000000 ++maskhh15 0x0000000000000002 = 0x0000000000000000 ++maskhh15 0x0000000000000003 = 0x0000000000000000 ++maskhh15 0x000000000000000F = 0x0000000000000000 ++maskhh15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++maskhh15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF00 ++maskhh15 0x000000000000007F = 0x0000000000000000 ++maskhh15 0x0000000000000080 = 0x0000000000000000 ++maskhh15 0x0000000000007FFF = 0x0000000000007F00 ++maskhh15 0x0000000000008000 = 0x0000000000008000 ++maskhh15 0x000000007FFFFFFF = 0x000000007FFFFF00 ++maskhh15 0x0000000080000000 = 0x0000000080000000 ++maskhh15 0x8000000000000000 = 0x8000000000000000 ++maskhh15 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhh15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhh15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++maskhh15 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF00 ++maskhh15 0x123456789ABCDEF0 = 0x123456789ABCDE00 ++maskhh15 0xF0DEBC9A78563412 = 0xF0DEBC9A78563400 ++=== Running test on maskhh127 === ++maskhh127 0x0000000000000000 = 0x0000000000000000 ++maskhh127 0x0000000000000001 = 0x0000000000000000 ++maskhh127 0x0000000000000002 = 0x0000000000000000 ++maskhh127 0x0000000000000003 = 0x0000000000000000 ++maskhh127 0x000000000000000F = 0x0000000000000000 ++maskhh127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++maskhh127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF00 ++maskhh127 0x000000000000007F = 0x0000000000000000 ++maskhh127 0x0000000000000080 = 0x0000000000000000 ++maskhh127 0x0000000000007FFF = 0x0000000000007F00 ++maskhh127 0x0000000000008000 = 0x0000000000008000 ++maskhh127 0x000000007FFFFFFF = 0x000000007FFFFF00 ++maskhh127 0x0000000080000000 = 0x0000000080000000 ++maskhh127 0x8000000000000000 = 0x8000000000000000 ++maskhh127 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhh127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhh127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++maskhh127 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF00 ++maskhh127 0x123456789ABCDEF0 = 0x123456789ABCDE00 ++maskhh127 0xF0DEBC9A78563412 = 0xF0DEBC9A78563400 ++=== Running test on maskhh128 === ++maskhh128 0x0000000000000000 = 0x0000000000000000 ++maskhh128 0x0000000000000001 = 0x0000000000000001 ++maskhh128 0x0000000000000002 = 0x0000000000000002 ++maskhh128 0x0000000000000003 = 0x0000000000000003 ++maskhh128 0x000000000000000F = 0x000000000000000F ++maskhh128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhh128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhh128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhh128 0x000000000000007F = 0x000000000000007F ++maskhh128 0x0000000000000080 = 0x0000000000000080 ++maskhh128 0x0000000000007FFF = 0x0000000000007FFF ++maskhh128 0x0000000000008000 = 0x0000000000008000 ++maskhh128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhh128 0x0000000080000000 = 0x0000000080000000 ++maskhh128 0x8000000000000000 = 0x8000000000000000 ++maskhh128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhh128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhh128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhh128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhh128 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhh128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhh255 === ++maskhh255 0x0000000000000000 = 0x0000000000000000 ++maskhh255 0x0000000000000001 = 0x0000000000000000 ++maskhh255 0x0000000000000002 = 0x0000000000000000 ++maskhh255 0x0000000000000003 = 0x0000000000000000 ++maskhh255 0x000000000000000F = 0x0000000000000000 ++maskhh255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++maskhh255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF00 ++maskhh255 0x000000000000007F = 0x0000000000000000 ++maskhh255 0x0000000000000080 = 0x0000000000000000 ++maskhh255 0x0000000000007FFF = 0x0000000000007F00 ++maskhh255 0x0000000000008000 = 0x0000000000008000 ++maskhh255 0x000000007FFFFFFF = 0x000000007FFFFF00 ++maskhh255 0x0000000080000000 = 0x0000000080000000 ++maskhh255 0x8000000000000000 = 0x8000000000000000 ++maskhh255 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhh255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhh255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++maskhh255 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF00 ++maskhh255 0x123456789ABCDEF0 = 0x123456789ABCDE00 ++maskhh255 0xF0DEBC9A78563412 = 0xF0DEBC9A78563400 ++=== Running test on maskhw0 === ++maskhw0 0x0000000000000000 = 0x0000000000000000 ++maskhw0 0x0000000000000001 = 0x0000000000000001 ++maskhw0 0x0000000000000002 = 0x0000000000000002 ++maskhw0 0x0000000000000003 = 0x0000000000000003 ++maskhw0 0x000000000000000F = 0x000000000000000F ++maskhw0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhw0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhw0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhw0 0x000000000000007F = 0x000000000000007F ++maskhw0 0x0000000000000080 = 0x0000000000000080 ++maskhw0 0x0000000000007FFF = 0x0000000000007FFF ++maskhw0 0x0000000000008000 = 0x0000000000008000 ++maskhw0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhw0 0x0000000080000000 = 0x0000000080000000 ++maskhw0 0x8000000000000000 = 0x8000000000000000 ++maskhw0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhw0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhw0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhw0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhw0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhw0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhw1 === ++maskhw1 0x0000000000000000 = 0x0000000000000000 ++maskhw1 0x0000000000000001 = 0x0000000000000001 ++maskhw1 0x0000000000000002 = 0x0000000000000002 ++maskhw1 0x0000000000000003 = 0x0000000000000003 ++maskhw1 0x000000000000000F = 0x000000000000000F ++maskhw1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhw1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhw1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhw1 0x000000000000007F = 0x000000000000007F ++maskhw1 0x0000000000000080 = 0x0000000000000080 ++maskhw1 0x0000000000007FFF = 0x0000000000007FFF ++maskhw1 0x0000000000008000 = 0x0000000000008000 ++maskhw1 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhw1 0x0000000080000000 = 0x0000000080000000 ++maskhw1 0x8000000000000000 = 0x8000000000000000 ++maskhw1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhw1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhw1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhw1 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhw1 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhw1 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhw2 === ++maskhw2 0x0000000000000000 = 0x0000000000000000 ++maskhw2 0x0000000000000001 = 0x0000000000000001 ++maskhw2 0x0000000000000002 = 0x0000000000000002 ++maskhw2 0x0000000000000003 = 0x0000000000000003 ++maskhw2 0x000000000000000F = 0x000000000000000F ++maskhw2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhw2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhw2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhw2 0x000000000000007F = 0x000000000000007F ++maskhw2 0x0000000000000080 = 0x0000000000000080 ++maskhw2 0x0000000000007FFF = 0x0000000000007FFF ++maskhw2 0x0000000000008000 = 0x0000000000008000 ++maskhw2 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhw2 0x0000000080000000 = 0x0000000080000000 ++maskhw2 0x8000000000000000 = 0x8000000000000000 ++maskhw2 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhw2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhw2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhw2 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhw2 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhw2 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhw3 === ++maskhw3 0x0000000000000000 = 0x0000000000000000 ++maskhw3 0x0000000000000001 = 0x0000000000000001 ++maskhw3 0x0000000000000002 = 0x0000000000000002 ++maskhw3 0x0000000000000003 = 0x0000000000000003 ++maskhw3 0x000000000000000F = 0x000000000000000F ++maskhw3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhw3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhw3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhw3 0x000000000000007F = 0x000000000000007F ++maskhw3 0x0000000000000080 = 0x0000000000000080 ++maskhw3 0x0000000000007FFF = 0x0000000000007FFF ++maskhw3 0x0000000000008000 = 0x0000000000008000 ++maskhw3 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhw3 0x0000000080000000 = 0x0000000080000000 ++maskhw3 0x8000000000000000 = 0x8000000000000000 ++maskhw3 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhw3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhw3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhw3 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhw3 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhw3 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhw15 === ++maskhw15 0x0000000000000000 = 0x0000000000000000 ++maskhw15 0x0000000000000001 = 0x0000000000000000 ++maskhw15 0x0000000000000002 = 0x0000000000000000 ++maskhw15 0x0000000000000003 = 0x0000000000000000 ++maskhw15 0x000000000000000F = 0x0000000000000000 ++maskhw15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++maskhw15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFF000000 ++maskhw15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFF000000 ++maskhw15 0x000000000000007F = 0x0000000000000000 ++maskhw15 0x0000000000000080 = 0x0000000000000000 ++maskhw15 0x0000000000007FFF = 0x0000000000000000 ++maskhw15 0x0000000000008000 = 0x0000000000000000 ++maskhw15 0x000000007FFFFFFF = 0x000000007F000000 ++maskhw15 0x0000000080000000 = 0x0000000080000000 ++maskhw15 0x8000000000000000 = 0x8000000000000000 ++maskhw15 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhw15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFF000000 ++maskhw15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFF000000 ++maskhw15 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFF000000 ++maskhw15 0x123456789ABCDEF0 = 0x123456789A000000 ++maskhw15 0xF0DEBC9A78563412 = 0xF0DEBC9A78000000 ++=== Running test on maskhw127 === ++maskhw127 0x0000000000000000 = 0x0000000000000000 ++maskhw127 0x0000000000000001 = 0x0000000000000000 ++maskhw127 0x0000000000000002 = 0x0000000000000000 ++maskhw127 0x0000000000000003 = 0x0000000000000000 ++maskhw127 0x000000000000000F = 0x0000000000000000 ++maskhw127 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++maskhw127 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFF000000 ++maskhw127 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFF000000 ++maskhw127 0x000000000000007F = 0x0000000000000000 ++maskhw127 0x0000000000000080 = 0x0000000000000000 ++maskhw127 0x0000000000007FFF = 0x0000000000000000 ++maskhw127 0x0000000000008000 = 0x0000000000000000 ++maskhw127 0x000000007FFFFFFF = 0x000000007F000000 ++maskhw127 0x0000000080000000 = 0x0000000080000000 ++maskhw127 0x8000000000000000 = 0x8000000000000000 ++maskhw127 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhw127 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFF000000 ++maskhw127 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFF000000 ++maskhw127 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFF000000 ++maskhw127 0x123456789ABCDEF0 = 0x123456789A000000 ++maskhw127 0xF0DEBC9A78563412 = 0xF0DEBC9A78000000 ++=== Running test on maskhw128 === ++maskhw128 0x0000000000000000 = 0x0000000000000000 ++maskhw128 0x0000000000000001 = 0x0000000000000001 ++maskhw128 0x0000000000000002 = 0x0000000000000002 ++maskhw128 0x0000000000000003 = 0x0000000000000003 ++maskhw128 0x000000000000000F = 0x000000000000000F ++maskhw128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhw128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhw128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhw128 0x000000000000007F = 0x000000000000007F ++maskhw128 0x0000000000000080 = 0x0000000000000080 ++maskhw128 0x0000000000007FFF = 0x0000000000007FFF ++maskhw128 0x0000000000008000 = 0x0000000000008000 ++maskhw128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhw128 0x0000000080000000 = 0x0000000080000000 ++maskhw128 0x8000000000000000 = 0x8000000000000000 ++maskhw128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhw128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhw128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhw128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhw128 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhw128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhw255 === ++maskhw255 0x0000000000000000 = 0x0000000000000000 ++maskhw255 0x0000000000000001 = 0x0000000000000000 ++maskhw255 0x0000000000000002 = 0x0000000000000000 ++maskhw255 0x0000000000000003 = 0x0000000000000000 ++maskhw255 0x000000000000000F = 0x0000000000000000 ++maskhw255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++maskhw255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFF000000 ++maskhw255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFF000000 ++maskhw255 0x000000000000007F = 0x0000000000000000 ++maskhw255 0x0000000000000080 = 0x0000000000000000 ++maskhw255 0x0000000000007FFF = 0x0000000000000000 ++maskhw255 0x0000000000008000 = 0x0000000000000000 ++maskhw255 0x000000007FFFFFFF = 0x000000007F000000 ++maskhw255 0x0000000080000000 = 0x0000000080000000 ++maskhw255 0x8000000000000000 = 0x8000000000000000 ++maskhw255 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhw255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFF000000 ++maskhw255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFF000000 ++maskhw255 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFF000000 ++maskhw255 0x123456789ABCDEF0 = 0x123456789A000000 ++maskhw255 0xF0DEBC9A78563412 = 0xF0DEBC9A78000000 ++=== Running test on maskhl0 === ++maskhl0 0x0000000000000000 = 0x0000000000000000 ++maskhl0 0x0000000000000001 = 0x0000000000000001 ++maskhl0 0x0000000000000002 = 0x0000000000000002 ++maskhl0 0x0000000000000003 = 0x0000000000000003 ++maskhl0 0x000000000000000F = 0x000000000000000F ++maskhl0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhl0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhl0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhl0 0x000000000000007F = 0x000000000000007F ++maskhl0 0x0000000000000080 = 0x0000000000000080 ++maskhl0 0x0000000000007FFF = 0x0000000000007FFF ++maskhl0 0x0000000000008000 = 0x0000000000008000 ++maskhl0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhl0 0x0000000080000000 = 0x0000000080000000 ++maskhl0 0x8000000000000000 = 0x8000000000000000 ++maskhl0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhl0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhl0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhl0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhl0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhl0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhl1 === ++maskhl1 0x0000000000000000 = 0x0000000000000000 ++maskhl1 0x0000000000000001 = 0x0000000000000000 ++maskhl1 0x0000000000000002 = 0x0000000000000000 ++maskhl1 0x0000000000000003 = 0x0000000000000000 ++maskhl1 0x000000000000000F = 0x0000000000000000 ++maskhl1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhl1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++maskhl1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF00 ++maskhl1 0x000000000000007F = 0x0000000000000000 ++maskhl1 0x0000000000000080 = 0x0000000000000000 ++maskhl1 0x0000000000007FFF = 0x0000000000007F00 ++maskhl1 0x0000000000008000 = 0x0000000000008000 ++maskhl1 0x000000007FFFFFFF = 0x000000007FFFFF00 ++maskhl1 0x0000000080000000 = 0x0000000080000000 ++maskhl1 0x8000000000000000 = 0x8000000000000000 ++maskhl1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhl1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhl1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++maskhl1 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF00 ++maskhl1 0x123456789ABCDEF0 = 0x123456789ABCDE00 ++maskhl1 0xF0DEBC9A78563412 = 0xF0DEBC9A78563400 ++=== Running test on maskhl2 === ++maskhl2 0x0000000000000000 = 0x0000000000000000 ++maskhl2 0x0000000000000001 = 0x0000000000000000 ++maskhl2 0x0000000000000002 = 0x0000000000000000 ++maskhl2 0x0000000000000003 = 0x0000000000000000 ++maskhl2 0x000000000000000F = 0x0000000000000000 ++maskhl2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF0000 ++maskhl2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++maskhl2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF0000 ++maskhl2 0x000000000000007F = 0x0000000000000000 ++maskhl2 0x0000000000000080 = 0x0000000000000000 ++maskhl2 0x0000000000007FFF = 0x0000000000000000 ++maskhl2 0x0000000000008000 = 0x0000000000000000 ++maskhl2 0x000000007FFFFFFF = 0x000000007FFF0000 ++maskhl2 0x0000000080000000 = 0x0000000080000000 ++maskhl2 0x8000000000000000 = 0x8000000000000000 ++maskhl2 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhl2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++maskhl2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF0000 ++maskhl2 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF0000 ++maskhl2 0x123456789ABCDEF0 = 0x123456789ABC0000 ++maskhl2 0xF0DEBC9A78563412 = 0xF0DEBC9A78560000 ++=== Running test on maskhl3 === ++maskhl3 0x0000000000000000 = 0x0000000000000000 ++maskhl3 0x0000000000000001 = 0x0000000000000000 ++maskhl3 0x0000000000000002 = 0x0000000000000000 ++maskhl3 0x0000000000000003 = 0x0000000000000000 ++maskhl3 0x000000000000000F = 0x0000000000000000 ++maskhl3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++maskhl3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFF000000 ++maskhl3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFF000000 ++maskhl3 0x000000000000007F = 0x0000000000000000 ++maskhl3 0x0000000000000080 = 0x0000000000000000 ++maskhl3 0x0000000000007FFF = 0x0000000000000000 ++maskhl3 0x0000000000008000 = 0x0000000000000000 ++maskhl3 0x000000007FFFFFFF = 0x000000007F000000 ++maskhl3 0x0000000080000000 = 0x0000000080000000 ++maskhl3 0x8000000000000000 = 0x8000000000000000 ++maskhl3 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhl3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFF000000 ++maskhl3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFF000000 ++maskhl3 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFF000000 ++maskhl3 0x123456789ABCDEF0 = 0x123456789A000000 ++maskhl3 0xF0DEBC9A78563412 = 0xF0DEBC9A78000000 ++=== Running test on maskhl15 === ++maskhl15 0x0000000000000000 = 0x0000000000000000 ++maskhl15 0x0000000000000001 = 0x0000000000000000 ++maskhl15 0x0000000000000002 = 0x0000000000000000 ++maskhl15 0x0000000000000003 = 0x0000000000000000 ++maskhl15 0x000000000000000F = 0x0000000000000000 ++maskhl15 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl15 0xFFFFFFFFFFFFFFFE = 0xFF00000000000000 ++maskhl15 0xFFFFFFFFFFFFFFFD = 0xFF00000000000000 ++maskhl15 0x000000000000007F = 0x0000000000000000 ++maskhl15 0x0000000000000080 = 0x0000000000000000 ++maskhl15 0x0000000000007FFF = 0x0000000000000000 ++maskhl15 0x0000000000008000 = 0x0000000000000000 ++maskhl15 0x000000007FFFFFFF = 0x0000000000000000 ++maskhl15 0x0000000080000000 = 0x0000000000000000 ++maskhl15 0x8000000000000000 = 0x8000000000000000 ++maskhl15 0xFFFFFFFF80000000 = 0xFF00000000000000 ++maskhl15 0xFFFFFFFFFFFF8000 = 0xFF00000000000000 ++maskhl15 0xFFFFFFFFFFFFFF80 = 0xFF00000000000000 ++maskhl15 0x7FFFFFFFFFFFFFFF = 0x7F00000000000000 ++maskhl15 0x123456789ABCDEF0 = 0x1200000000000000 ++maskhl15 0xF0DEBC9A78563412 = 0xF000000000000000 ++=== Running test on maskhl127 === ++maskhl127 0x0000000000000000 = 0x0000000000000000 ++maskhl127 0x0000000000000001 = 0x0000000000000000 ++maskhl127 0x0000000000000002 = 0x0000000000000000 ++maskhl127 0x0000000000000003 = 0x0000000000000000 ++maskhl127 0x000000000000000F = 0x0000000000000000 ++maskhl127 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl127 0xFFFFFFFFFFFFFFFE = 0xFF00000000000000 ++maskhl127 0xFFFFFFFFFFFFFFFD = 0xFF00000000000000 ++maskhl127 0x000000000000007F = 0x0000000000000000 ++maskhl127 0x0000000000000080 = 0x0000000000000000 ++maskhl127 0x0000000000007FFF = 0x0000000000000000 ++maskhl127 0x0000000000008000 = 0x0000000000000000 ++maskhl127 0x000000007FFFFFFF = 0x0000000000000000 ++maskhl127 0x0000000080000000 = 0x0000000000000000 ++maskhl127 0x8000000000000000 = 0x8000000000000000 ++maskhl127 0xFFFFFFFF80000000 = 0xFF00000000000000 ++maskhl127 0xFFFFFFFFFFFF8000 = 0xFF00000000000000 ++maskhl127 0xFFFFFFFFFFFFFF80 = 0xFF00000000000000 ++maskhl127 0x7FFFFFFFFFFFFFFF = 0x7F00000000000000 ++maskhl127 0x123456789ABCDEF0 = 0x1200000000000000 ++maskhl127 0xF0DEBC9A78563412 = 0xF000000000000000 ++=== Running test on maskhl128 === ++maskhl128 0x0000000000000000 = 0x0000000000000000 ++maskhl128 0x0000000000000001 = 0x0000000000000001 ++maskhl128 0x0000000000000002 = 0x0000000000000002 ++maskhl128 0x0000000000000003 = 0x0000000000000003 ++maskhl128 0x000000000000000F = 0x000000000000000F ++maskhl128 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhl128 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhl128 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhl128 0x000000000000007F = 0x000000000000007F ++maskhl128 0x0000000000000080 = 0x0000000000000080 ++maskhl128 0x0000000000007FFF = 0x0000000000007FFF ++maskhl128 0x0000000000008000 = 0x0000000000008000 ++maskhl128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhl128 0x0000000080000000 = 0x0000000080000000 ++maskhl128 0x8000000000000000 = 0x8000000000000000 ++maskhl128 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhl128 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhl128 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhl128 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhl128 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhl128 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhl255 === ++maskhl255 0x0000000000000000 = 0x0000000000000000 ++maskhl255 0x0000000000000001 = 0x0000000000000000 ++maskhl255 0x0000000000000002 = 0x0000000000000000 ++maskhl255 0x0000000000000003 = 0x0000000000000000 ++maskhl255 0x000000000000000F = 0x0000000000000000 ++maskhl255 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl255 0xFFFFFFFFFFFFFFFE = 0xFF00000000000000 ++maskhl255 0xFFFFFFFFFFFFFFFD = 0xFF00000000000000 ++maskhl255 0x000000000000007F = 0x0000000000000000 ++maskhl255 0x0000000000000080 = 0x0000000000000000 ++maskhl255 0x0000000000007FFF = 0x0000000000000000 ++maskhl255 0x0000000000008000 = 0x0000000000000000 ++maskhl255 0x000000007FFFFFFF = 0x0000000000000000 ++maskhl255 0x0000000080000000 = 0x0000000000000000 ++maskhl255 0x8000000000000000 = 0x8000000000000000 ++maskhl255 0xFFFFFFFF80000000 = 0xFF00000000000000 ++maskhl255 0xFFFFFFFFFFFF8000 = 0xFF00000000000000 ++maskhl255 0xFFFFFFFFFFFFFF80 = 0xFF00000000000000 ++maskhl255 0x7FFFFFFFFFFFFFFF = 0x7F00000000000000 ++maskhl255 0x123456789ABCDEF0 = 0x1200000000000000 ++maskhl255 0xF0DEBC9A78563412 = 0xF000000000000000 ++=== Running test on zap0 === ++zap0 0x0000000000000000 = 0x0000000000000000 ++zap0 0x0000000000000001 = 0x0000000000000001 ++zap0 0x0000000000000002 = 0x0000000000000002 ++zap0 0x0000000000000003 = 0x0000000000000003 ++zap0 0x000000000000000F = 0x000000000000000F ++zap0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++zap0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++zap0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++zap0 0x000000000000007F = 0x000000000000007F ++zap0 0x0000000000000080 = 0x0000000000000080 ++zap0 0x0000000000007FFF = 0x0000000000007FFF ++zap0 0x0000000000008000 = 0x0000000000008000 ++zap0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++zap0 0x0000000080000000 = 0x0000000080000000 ++zap0 0x8000000000000000 = 0x8000000000000000 ++zap0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++zap0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++zap0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++zap0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++zap0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++zap0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on zap1 === ++zap1 0x0000000000000000 = 0x0000000000000000 ++zap1 0x0000000000000001 = 0x0000000000000000 ++zap1 0x0000000000000002 = 0x0000000000000000 ++zap1 0x0000000000000003 = 0x0000000000000000 ++zap1 0x000000000000000F = 0x0000000000000000 ++zap1 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++zap1 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++zap1 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF00 ++zap1 0x000000000000007F = 0x0000000000000000 ++zap1 0x0000000000000080 = 0x0000000000000000 ++zap1 0x0000000000007FFF = 0x0000000000007F00 ++zap1 0x0000000000008000 = 0x0000000000008000 ++zap1 0x000000007FFFFFFF = 0x000000007FFFFF00 ++zap1 0x0000000080000000 = 0x0000000080000000 ++zap1 0x8000000000000000 = 0x8000000000000000 ++zap1 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++zap1 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++zap1 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++zap1 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF00 ++zap1 0x123456789ABCDEF0 = 0x123456789ABCDE00 ++zap1 0xF0DEBC9A78563412 = 0xF0DEBC9A78563400 ++=== Running test on zap2 === ++zap2 0x0000000000000000 = 0x0000000000000000 ++zap2 0x0000000000000001 = 0x0000000000000001 ++zap2 0x0000000000000002 = 0x0000000000000002 ++zap2 0x0000000000000003 = 0x0000000000000003 ++zap2 0x000000000000000F = 0x000000000000000F ++zap2 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF00FF ++zap2 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF00FE ++zap2 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF00FD ++zap2 0x000000000000007F = 0x000000000000007F ++zap2 0x0000000000000080 = 0x0000000000000080 ++zap2 0x0000000000007FFF = 0x00000000000000FF ++zap2 0x0000000000008000 = 0x0000000000000000 ++zap2 0x000000007FFFFFFF = 0x000000007FFF00FF ++zap2 0x0000000080000000 = 0x0000000080000000 ++zap2 0x8000000000000000 = 0x8000000000000000 ++zap2 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++zap2 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++zap2 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF0080 ++zap2 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF00FF ++zap2 0x123456789ABCDEF0 = 0x123456789ABC00F0 ++zap2 0xF0DEBC9A78563412 = 0xF0DEBC9A78560012 ++=== Running test on zap3 === ++zap3 0x0000000000000000 = 0x0000000000000000 ++zap3 0x0000000000000001 = 0x0000000000000000 ++zap3 0x0000000000000002 = 0x0000000000000000 ++zap3 0x0000000000000003 = 0x0000000000000000 ++zap3 0x000000000000000F = 0x0000000000000000 ++zap3 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF0000 ++zap3 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++zap3 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF0000 ++zap3 0x000000000000007F = 0x0000000000000000 ++zap3 0x0000000000000080 = 0x0000000000000000 ++zap3 0x0000000000007FFF = 0x0000000000000000 ++zap3 0x0000000000008000 = 0x0000000000000000 ++zap3 0x000000007FFFFFFF = 0x000000007FFF0000 ++zap3 0x0000000080000000 = 0x0000000080000000 ++zap3 0x8000000000000000 = 0x8000000000000000 ++zap3 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++zap3 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++zap3 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF0000 ++zap3 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF0000 ++zap3 0x123456789ABCDEF0 = 0x123456789ABC0000 ++zap3 0xF0DEBC9A78563412 = 0xF0DEBC9A78560000 ++=== Running test on zap15 === ++zap15 0x0000000000000000 = 0x0000000000000000 ++zap15 0x0000000000000001 = 0x0000000000000000 ++zap15 0x0000000000000002 = 0x0000000000000000 ++zap15 0x0000000000000003 = 0x0000000000000000 ++zap15 0x000000000000000F = 0x0000000000000000 ++zap15 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF00000000 ++zap15 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF00000000 ++zap15 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF00000000 ++zap15 0x000000000000007F = 0x0000000000000000 ++zap15 0x0000000000000080 = 0x0000000000000000 ++zap15 0x0000000000007FFF = 0x0000000000000000 ++zap15 0x0000000000008000 = 0x0000000000000000 ++zap15 0x000000007FFFFFFF = 0x0000000000000000 ++zap15 0x0000000080000000 = 0x0000000000000000 ++zap15 0x8000000000000000 = 0x8000000000000000 ++zap15 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++zap15 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF00000000 ++zap15 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF00000000 ++zap15 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFF00000000 ++zap15 0x123456789ABCDEF0 = 0x1234567800000000 ++zap15 0xF0DEBC9A78563412 = 0xF0DEBC9A00000000 ++=== Running test on zap127 === ++zap127 0x0000000000000000 = 0x0000000000000000 ++zap127 0x0000000000000001 = 0x0000000000000000 ++zap127 0x0000000000000002 = 0x0000000000000000 ++zap127 0x0000000000000003 = 0x0000000000000000 ++zap127 0x000000000000000F = 0x0000000000000000 ++zap127 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++zap127 0xFFFFFFFFFFFFFFFE = 0xFF00000000000000 ++zap127 0xFFFFFFFFFFFFFFFD = 0xFF00000000000000 ++zap127 0x000000000000007F = 0x0000000000000000 ++zap127 0x0000000000000080 = 0x0000000000000000 ++zap127 0x0000000000007FFF = 0x0000000000000000 ++zap127 0x0000000000008000 = 0x0000000000000000 ++zap127 0x000000007FFFFFFF = 0x0000000000000000 ++zap127 0x0000000080000000 = 0x0000000000000000 ++zap127 0x8000000000000000 = 0x8000000000000000 ++zap127 0xFFFFFFFF80000000 = 0xFF00000000000000 ++zap127 0xFFFFFFFFFFFF8000 = 0xFF00000000000000 ++zap127 0xFFFFFFFFFFFFFF80 = 0xFF00000000000000 ++zap127 0x7FFFFFFFFFFFFFFF = 0x7F00000000000000 ++zap127 0x123456789ABCDEF0 = 0x1200000000000000 ++zap127 0xF0DEBC9A78563412 = 0xF000000000000000 ++=== Running test on zap128 === ++zap128 0x0000000000000000 = 0x0000000000000000 ++zap128 0x0000000000000001 = 0x0000000000000001 ++zap128 0x0000000000000002 = 0x0000000000000002 ++zap128 0x0000000000000003 = 0x0000000000000003 ++zap128 0x000000000000000F = 0x000000000000000F ++zap128 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++zap128 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFE ++zap128 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFD ++zap128 0x000000000000007F = 0x000000000000007F ++zap128 0x0000000000000080 = 0x0000000000000080 ++zap128 0x0000000000007FFF = 0x0000000000007FFF ++zap128 0x0000000000008000 = 0x0000000000008000 ++zap128 0x000000007FFFFFFF = 0x000000007FFFFFFF ++zap128 0x0000000080000000 = 0x0000000080000000 ++zap128 0x8000000000000000 = 0x0000000000000000 ++zap128 0xFFFFFFFF80000000 = 0x00FFFFFF80000000 ++zap128 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFF8000 ++zap128 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++zap128 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++zap128 0x123456789ABCDEF0 = 0x003456789ABCDEF0 ++zap128 0xF0DEBC9A78563412 = 0x00DEBC9A78563412 ++=== Running test on zap255 === ++zap255 0x0000000000000000 = 0x0000000000000000 ++zap255 0x0000000000000001 = 0x0000000000000000 ++zap255 0x0000000000000002 = 0x0000000000000000 ++zap255 0x0000000000000003 = 0x0000000000000000 ++zap255 0x000000000000000F = 0x0000000000000000 ++zap255 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap255 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zap255 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++zap255 0x000000000000007F = 0x0000000000000000 ++zap255 0x0000000000000080 = 0x0000000000000000 ++zap255 0x0000000000007FFF = 0x0000000000000000 ++zap255 0x0000000000008000 = 0x0000000000000000 ++zap255 0x000000007FFFFFFF = 0x0000000000000000 ++zap255 0x0000000080000000 = 0x0000000000000000 ++zap255 0x8000000000000000 = 0x0000000000000000 ++zap255 0xFFFFFFFF80000000 = 0x0000000000000000 ++zap255 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zap255 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zap255 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap255 0x123456789ABCDEF0 = 0x0000000000000000 ++zap255 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on zapnot0 === ++zapnot0 0x0000000000000000 = 0x0000000000000000 ++zapnot0 0x0000000000000001 = 0x0000000000000000 ++zapnot0 0x0000000000000002 = 0x0000000000000000 ++zapnot0 0x0000000000000003 = 0x0000000000000000 ++zapnot0 0x000000000000000F = 0x0000000000000000 ++zapnot0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zapnot0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zapnot0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++zapnot0 0x000000000000007F = 0x0000000000000000 ++zapnot0 0x0000000000000080 = 0x0000000000000000 ++zapnot0 0x0000000000007FFF = 0x0000000000000000 ++zapnot0 0x0000000000008000 = 0x0000000000000000 ++zapnot0 0x000000007FFFFFFF = 0x0000000000000000 ++zapnot0 0x0000000080000000 = 0x0000000000000000 ++zapnot0 0x8000000000000000 = 0x0000000000000000 ++zapnot0 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zapnot0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zapnot0 0x123456789ABCDEF0 = 0x0000000000000000 ++zapnot0 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on zapnot1 === ++zapnot1 0x0000000000000000 = 0x0000000000000000 ++zapnot1 0x0000000000000001 = 0x0000000000000001 ++zapnot1 0x0000000000000002 = 0x0000000000000002 ++zapnot1 0x0000000000000003 = 0x0000000000000003 ++zapnot1 0x000000000000000F = 0x000000000000000F ++zapnot1 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++zapnot1 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++zapnot1 0xFFFFFFFFFFFFFFFD = 0x00000000000000FD ++zapnot1 0x000000000000007F = 0x000000000000007F ++zapnot1 0x0000000000000080 = 0x0000000000000080 ++zapnot1 0x0000000000007FFF = 0x00000000000000FF ++zapnot1 0x0000000000008000 = 0x0000000000000000 ++zapnot1 0x000000007FFFFFFF = 0x00000000000000FF ++zapnot1 0x0000000080000000 = 0x0000000000000000 ++zapnot1 0x8000000000000000 = 0x0000000000000000 ++zapnot1 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot1 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot1 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++zapnot1 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++zapnot1 0x123456789ABCDEF0 = 0x00000000000000F0 ++zapnot1 0xF0DEBC9A78563412 = 0x0000000000000012 ++=== Running test on zapnot2 === ++zapnot2 0x0000000000000000 = 0x0000000000000000 ++zapnot2 0x0000000000000001 = 0x0000000000000000 ++zapnot2 0x0000000000000002 = 0x0000000000000000 ++zapnot2 0x0000000000000003 = 0x0000000000000000 ++zapnot2 0x000000000000000F = 0x0000000000000000 ++zapnot2 0xFFFFFFFFFFFFFFFF = 0x000000000000FF00 ++zapnot2 0xFFFFFFFFFFFFFFFE = 0x000000000000FF00 ++zapnot2 0xFFFFFFFFFFFFFFFD = 0x000000000000FF00 ++zapnot2 0x000000000000007F = 0x0000000000000000 ++zapnot2 0x0000000000000080 = 0x0000000000000000 ++zapnot2 0x0000000000007FFF = 0x0000000000007F00 ++zapnot2 0x0000000000008000 = 0x0000000000008000 ++zapnot2 0x000000007FFFFFFF = 0x000000000000FF00 ++zapnot2 0x0000000080000000 = 0x0000000000000000 ++zapnot2 0x8000000000000000 = 0x0000000000000000 ++zapnot2 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot2 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++zapnot2 0xFFFFFFFFFFFFFF80 = 0x000000000000FF00 ++zapnot2 0x7FFFFFFFFFFFFFFF = 0x000000000000FF00 ++zapnot2 0x123456789ABCDEF0 = 0x000000000000DE00 ++zapnot2 0xF0DEBC9A78563412 = 0x0000000000003400 ++=== Running test on zapnot3 === ++zapnot3 0x0000000000000000 = 0x0000000000000000 ++zapnot3 0x0000000000000001 = 0x0000000000000001 ++zapnot3 0x0000000000000002 = 0x0000000000000002 ++zapnot3 0x0000000000000003 = 0x0000000000000003 ++zapnot3 0x000000000000000F = 0x000000000000000F ++zapnot3 0xFFFFFFFFFFFFFFFF = 0x000000000000FFFF ++zapnot3 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFE ++zapnot3 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFD ++zapnot3 0x000000000000007F = 0x000000000000007F ++zapnot3 0x0000000000000080 = 0x0000000000000080 ++zapnot3 0x0000000000007FFF = 0x0000000000007FFF ++zapnot3 0x0000000000008000 = 0x0000000000008000 ++zapnot3 0x000000007FFFFFFF = 0x000000000000FFFF ++zapnot3 0x0000000080000000 = 0x0000000000000000 ++zapnot3 0x8000000000000000 = 0x0000000000000000 ++zapnot3 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot3 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++zapnot3 0xFFFFFFFFFFFFFF80 = 0x000000000000FF80 ++zapnot3 0x7FFFFFFFFFFFFFFF = 0x000000000000FFFF ++zapnot3 0x123456789ABCDEF0 = 0x000000000000DEF0 ++zapnot3 0xF0DEBC9A78563412 = 0x0000000000003412 ++=== Running test on zapnot15 === ++zapnot15 0x0000000000000000 = 0x0000000000000000 ++zapnot15 0x0000000000000001 = 0x0000000000000001 ++zapnot15 0x0000000000000002 = 0x0000000000000002 ++zapnot15 0x0000000000000003 = 0x0000000000000003 ++zapnot15 0x000000000000000F = 0x000000000000000F ++zapnot15 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++zapnot15 0xFFFFFFFFFFFFFFFE = 0x00000000FFFFFFFE ++zapnot15 0xFFFFFFFFFFFFFFFD = 0x00000000FFFFFFFD ++zapnot15 0x000000000000007F = 0x000000000000007F ++zapnot15 0x0000000000000080 = 0x0000000000000080 ++zapnot15 0x0000000000007FFF = 0x0000000000007FFF ++zapnot15 0x0000000000008000 = 0x0000000000008000 ++zapnot15 0x000000007FFFFFFF = 0x000000007FFFFFFF ++zapnot15 0x0000000080000000 = 0x0000000080000000 ++zapnot15 0x8000000000000000 = 0x0000000000000000 ++zapnot15 0xFFFFFFFF80000000 = 0x0000000080000000 ++zapnot15 0xFFFFFFFFFFFF8000 = 0x00000000FFFF8000 ++zapnot15 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFF80 ++zapnot15 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFFFF ++zapnot15 0x123456789ABCDEF0 = 0x000000009ABCDEF0 ++zapnot15 0xF0DEBC9A78563412 = 0x0000000078563412 ++=== Running test on zapnot127 === ++zapnot127 0x0000000000000000 = 0x0000000000000000 ++zapnot127 0x0000000000000001 = 0x0000000000000001 ++zapnot127 0x0000000000000002 = 0x0000000000000002 ++zapnot127 0x0000000000000003 = 0x0000000000000003 ++zapnot127 0x000000000000000F = 0x000000000000000F ++zapnot127 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++zapnot127 0xFFFFFFFFFFFFFFFE = 0x00FFFFFFFFFFFFFE ++zapnot127 0xFFFFFFFFFFFFFFFD = 0x00FFFFFFFFFFFFFD ++zapnot127 0x000000000000007F = 0x000000000000007F ++zapnot127 0x0000000000000080 = 0x0000000000000080 ++zapnot127 0x0000000000007FFF = 0x0000000000007FFF ++zapnot127 0x0000000000008000 = 0x0000000000008000 ++zapnot127 0x000000007FFFFFFF = 0x000000007FFFFFFF ++zapnot127 0x0000000080000000 = 0x0000000080000000 ++zapnot127 0x8000000000000000 = 0x0000000000000000 ++zapnot127 0xFFFFFFFF80000000 = 0x00FFFFFF80000000 ++zapnot127 0xFFFFFFFFFFFF8000 = 0x00FFFFFFFFFF8000 ++zapnot127 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++zapnot127 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++zapnot127 0x123456789ABCDEF0 = 0x003456789ABCDEF0 ++zapnot127 0xF0DEBC9A78563412 = 0x00DEBC9A78563412 ++=== Running test on zapnot128 === ++zapnot128 0x0000000000000000 = 0x0000000000000000 ++zapnot128 0x0000000000000001 = 0x0000000000000000 ++zapnot128 0x0000000000000002 = 0x0000000000000000 ++zapnot128 0x0000000000000003 = 0x0000000000000000 ++zapnot128 0x000000000000000F = 0x0000000000000000 ++zapnot128 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++zapnot128 0xFFFFFFFFFFFFFFFE = 0xFF00000000000000 ++zapnot128 0xFFFFFFFFFFFFFFFD = 0xFF00000000000000 ++zapnot128 0x000000000000007F = 0x0000000000000000 ++zapnot128 0x0000000000000080 = 0x0000000000000000 ++zapnot128 0x0000000000007FFF = 0x0000000000000000 ++zapnot128 0x0000000000008000 = 0x0000000000000000 ++zapnot128 0x000000007FFFFFFF = 0x0000000000000000 ++zapnot128 0x0000000080000000 = 0x0000000000000000 ++zapnot128 0x8000000000000000 = 0x8000000000000000 ++zapnot128 0xFFFFFFFF80000000 = 0xFF00000000000000 ++zapnot128 0xFFFFFFFFFFFF8000 = 0xFF00000000000000 ++zapnot128 0xFFFFFFFFFFFFFF80 = 0xFF00000000000000 ++zapnot128 0x7FFFFFFFFFFFFFFF = 0x7F00000000000000 ++zapnot128 0x123456789ABCDEF0 = 0x1200000000000000 ++zapnot128 0xF0DEBC9A78563412 = 0xF000000000000000 ++=== Running test on zapnot255 === ++zapnot255 0x0000000000000000 = 0x0000000000000000 ++zapnot255 0x0000000000000001 = 0x0000000000000001 ++zapnot255 0x0000000000000002 = 0x0000000000000002 ++zapnot255 0x0000000000000003 = 0x0000000000000003 ++zapnot255 0x000000000000000F = 0x000000000000000F ++zapnot255 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++zapnot255 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++zapnot255 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++zapnot255 0x000000000000007F = 0x000000000000007F ++zapnot255 0x0000000000000080 = 0x0000000000000080 ++zapnot255 0x0000000000007FFF = 0x0000000000007FFF ++zapnot255 0x0000000000008000 = 0x0000000000008000 ++zapnot255 0x000000007FFFFFFF = 0x000000007FFFFFFF ++zapnot255 0x0000000080000000 = 0x0000000080000000 ++zapnot255 0x8000000000000000 = 0x8000000000000000 ++zapnot255 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++zapnot255 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++zapnot255 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++zapnot255 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++zapnot255 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++zapnot255 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on sextb0 === ++sextb0 = 0x0000000000000000 ++=== Running test on sextb1 === ++sextb1 = 0x0000000000000001 ++=== Running test on sextb2 === ++sextb2 = 0x0000000000000002 ++=== Running test on sextb3 === ++sextb3 = 0x0000000000000003 ++=== Running test on sextb15 === ++sextb15 = 0x000000000000000F ++=== Running test on sextb127 === ++sextb127 = 0x000000000000007F ++=== Running test on sextb128 === ++sextb128 = 0xFFFFFFFFFFFFFF80 ++=== Running test on sextb255 === ++sextb255 = 0xFFFFFFFFFFFFFFFF ++=== Running test on sexth0 === ++sexth0 = 0x0000000000000000 ++=== Running test on sexth1 === ++sexth1 = 0x0000000000000001 ++=== Running test on sexth2 === ++sexth2 = 0x0000000000000002 ++=== Running test on sexth3 === ++sexth3 = 0x0000000000000003 ++=== Running test on sexth15 === ++sexth15 = 0x000000000000000F ++=== Running test on sexth127 === ++sexth127 = 0x000000000000007F ++=== Running test on sexth128 === ++sexth128 = 0x0000000000000080 ++=== Running test on sexth255 === ++sexth255 = 0x00000000000000FF ++=== Running test on cmpgeb0 === ++cmpgeb0 0x0000000000000000 = 0x00000000000000FF ++cmpgeb0 0x0000000000000001 = 0x00000000000000FF ++cmpgeb0 0x0000000000000002 = 0x00000000000000FF ++cmpgeb0 0x0000000000000003 = 0x00000000000000FF ++cmpgeb0 0x000000000000000F = 0x00000000000000FF ++cmpgeb0 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb0 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++cmpgeb0 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++cmpgeb0 0x000000000000007F = 0x00000000000000FF ++cmpgeb0 0x0000000000000080 = 0x00000000000000FF ++cmpgeb0 0x0000000000007FFF = 0x00000000000000FF ++cmpgeb0 0x0000000000008000 = 0x00000000000000FF ++cmpgeb0 0x000000007FFFFFFF = 0x00000000000000FF ++cmpgeb0 0x0000000080000000 = 0x00000000000000FF ++cmpgeb0 0x8000000000000000 = 0x00000000000000FF ++cmpgeb0 0xFFFFFFFF80000000 = 0x00000000000000FF ++cmpgeb0 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++cmpgeb0 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++cmpgeb0 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb0 0x123456789ABCDEF0 = 0x00000000000000FF ++cmpgeb0 0xF0DEBC9A78563412 = 0x00000000000000FF ++=== Running test on cmpgeb1 === ++cmpgeb1 0x0000000000000000 = 0x00000000000000FE ++cmpgeb1 0x0000000000000001 = 0x00000000000000FF ++cmpgeb1 0x0000000000000002 = 0x00000000000000FF ++cmpgeb1 0x0000000000000003 = 0x00000000000000FF ++cmpgeb1 0x000000000000000F = 0x00000000000000FF ++cmpgeb1 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb1 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++cmpgeb1 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++cmpgeb1 0x000000000000007F = 0x00000000000000FF ++cmpgeb1 0x0000000000000080 = 0x00000000000000FF ++cmpgeb1 0x0000000000007FFF = 0x00000000000000FF ++cmpgeb1 0x0000000000008000 = 0x00000000000000FE ++cmpgeb1 0x000000007FFFFFFF = 0x00000000000000FF ++cmpgeb1 0x0000000080000000 = 0x00000000000000FE ++cmpgeb1 0x8000000000000000 = 0x00000000000000FE ++cmpgeb1 0xFFFFFFFF80000000 = 0x00000000000000FE ++cmpgeb1 0xFFFFFFFFFFFF8000 = 0x00000000000000FE ++cmpgeb1 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++cmpgeb1 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb1 0x123456789ABCDEF0 = 0x00000000000000FF ++cmpgeb1 0xF0DEBC9A78563412 = 0x00000000000000FF ++=== Running test on cmpgeb2 === ++cmpgeb2 0x0000000000000000 = 0x00000000000000FE ++cmpgeb2 0x0000000000000001 = 0x00000000000000FE ++cmpgeb2 0x0000000000000002 = 0x00000000000000FF ++cmpgeb2 0x0000000000000003 = 0x00000000000000FF ++cmpgeb2 0x000000000000000F = 0x00000000000000FF ++cmpgeb2 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb2 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++cmpgeb2 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++cmpgeb2 0x000000000000007F = 0x00000000000000FF ++cmpgeb2 0x0000000000000080 = 0x00000000000000FF ++cmpgeb2 0x0000000000007FFF = 0x00000000000000FF ++cmpgeb2 0x0000000000008000 = 0x00000000000000FE ++cmpgeb2 0x000000007FFFFFFF = 0x00000000000000FF ++cmpgeb2 0x0000000080000000 = 0x00000000000000FE ++cmpgeb2 0x8000000000000000 = 0x00000000000000FE ++cmpgeb2 0xFFFFFFFF80000000 = 0x00000000000000FE ++cmpgeb2 0xFFFFFFFFFFFF8000 = 0x00000000000000FE ++cmpgeb2 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++cmpgeb2 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb2 0x123456789ABCDEF0 = 0x00000000000000FF ++cmpgeb2 0xF0DEBC9A78563412 = 0x00000000000000FF ++=== Running test on cmpgeb3 === ++cmpgeb3 0x0000000000000000 = 0x00000000000000FE ++cmpgeb3 0x0000000000000001 = 0x00000000000000FE ++cmpgeb3 0x0000000000000002 = 0x00000000000000FE ++cmpgeb3 0x0000000000000003 = 0x00000000000000FF ++cmpgeb3 0x000000000000000F = 0x00000000000000FF ++cmpgeb3 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb3 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++cmpgeb3 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++cmpgeb3 0x000000000000007F = 0x00000000000000FF ++cmpgeb3 0x0000000000000080 = 0x00000000000000FF ++cmpgeb3 0x0000000000007FFF = 0x00000000000000FF ++cmpgeb3 0x0000000000008000 = 0x00000000000000FE ++cmpgeb3 0x000000007FFFFFFF = 0x00000000000000FF ++cmpgeb3 0x0000000080000000 = 0x00000000000000FE ++cmpgeb3 0x8000000000000000 = 0x00000000000000FE ++cmpgeb3 0xFFFFFFFF80000000 = 0x00000000000000FE ++cmpgeb3 0xFFFFFFFFFFFF8000 = 0x00000000000000FE ++cmpgeb3 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++cmpgeb3 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb3 0x123456789ABCDEF0 = 0x00000000000000FF ++cmpgeb3 0xF0DEBC9A78563412 = 0x00000000000000FF ++=== Running test on cmpgeb15 === ++cmpgeb15 0x0000000000000000 = 0x00000000000000FE ++cmpgeb15 0x0000000000000001 = 0x00000000000000FE ++cmpgeb15 0x0000000000000002 = 0x00000000000000FE ++cmpgeb15 0x0000000000000003 = 0x00000000000000FE ++cmpgeb15 0x000000000000000F = 0x00000000000000FF ++cmpgeb15 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb15 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++cmpgeb15 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++cmpgeb15 0x000000000000007F = 0x00000000000000FF ++cmpgeb15 0x0000000000000080 = 0x00000000000000FF ++cmpgeb15 0x0000000000007FFF = 0x00000000000000FF ++cmpgeb15 0x0000000000008000 = 0x00000000000000FE ++cmpgeb15 0x000000007FFFFFFF = 0x00000000000000FF ++cmpgeb15 0x0000000080000000 = 0x00000000000000FE ++cmpgeb15 0x8000000000000000 = 0x00000000000000FE ++cmpgeb15 0xFFFFFFFF80000000 = 0x00000000000000FE ++cmpgeb15 0xFFFFFFFFFFFF8000 = 0x00000000000000FE ++cmpgeb15 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++cmpgeb15 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb15 0x123456789ABCDEF0 = 0x00000000000000FF ++cmpgeb15 0xF0DEBC9A78563412 = 0x00000000000000FF ++=== Running test on cmpgeb127 === ++cmpgeb127 0x0000000000000000 = 0x00000000000000FE ++cmpgeb127 0x0000000000000001 = 0x00000000000000FE ++cmpgeb127 0x0000000000000002 = 0x00000000000000FE ++cmpgeb127 0x0000000000000003 = 0x00000000000000FE ++cmpgeb127 0x000000000000000F = 0x00000000000000FE ++cmpgeb127 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb127 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++cmpgeb127 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++cmpgeb127 0x000000000000007F = 0x00000000000000FF ++cmpgeb127 0x0000000000000080 = 0x00000000000000FF ++cmpgeb127 0x0000000000007FFF = 0x00000000000000FF ++cmpgeb127 0x0000000000008000 = 0x00000000000000FE ++cmpgeb127 0x000000007FFFFFFF = 0x00000000000000FF ++cmpgeb127 0x0000000080000000 = 0x00000000000000FE ++cmpgeb127 0x8000000000000000 = 0x00000000000000FE ++cmpgeb127 0xFFFFFFFF80000000 = 0x00000000000000FE ++cmpgeb127 0xFFFFFFFFFFFF8000 = 0x00000000000000FE ++cmpgeb127 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++cmpgeb127 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb127 0x123456789ABCDEF0 = 0x00000000000000FF ++cmpgeb127 0xF0DEBC9A78563412 = 0x00000000000000FE ++=== Running test on cmpgeb128 === ++cmpgeb128 0x0000000000000000 = 0x00000000000000FE ++cmpgeb128 0x0000000000000001 = 0x00000000000000FE ++cmpgeb128 0x0000000000000002 = 0x00000000000000FE ++cmpgeb128 0x0000000000000003 = 0x00000000000000FE ++cmpgeb128 0x000000000000000F = 0x00000000000000FE ++cmpgeb128 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb128 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++cmpgeb128 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++cmpgeb128 0x000000000000007F = 0x00000000000000FE ++cmpgeb128 0x0000000000000080 = 0x00000000000000FF ++cmpgeb128 0x0000000000007FFF = 0x00000000000000FF ++cmpgeb128 0x0000000000008000 = 0x00000000000000FE ++cmpgeb128 0x000000007FFFFFFF = 0x00000000000000FF ++cmpgeb128 0x0000000080000000 = 0x00000000000000FE ++cmpgeb128 0x8000000000000000 = 0x00000000000000FE ++cmpgeb128 0xFFFFFFFF80000000 = 0x00000000000000FE ++cmpgeb128 0xFFFFFFFFFFFF8000 = 0x00000000000000FE ++cmpgeb128 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++cmpgeb128 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb128 0x123456789ABCDEF0 = 0x00000000000000FF ++cmpgeb128 0xF0DEBC9A78563412 = 0x00000000000000FE ++=== Running test on cmpgeb255 === ++cmpgeb255 0x0000000000000000 = 0x00000000000000FE ++cmpgeb255 0x0000000000000001 = 0x00000000000000FE ++cmpgeb255 0x0000000000000002 = 0x00000000000000FE ++cmpgeb255 0x0000000000000003 = 0x00000000000000FE ++cmpgeb255 0x000000000000000F = 0x00000000000000FE ++cmpgeb255 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb255 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++cmpgeb255 0xFFFFFFFFFFFFFFFD = 0x00000000000000FE ++cmpgeb255 0x000000000000007F = 0x00000000000000FE ++cmpgeb255 0x0000000000000080 = 0x00000000000000FE ++cmpgeb255 0x0000000000007FFF = 0x00000000000000FF ++cmpgeb255 0x0000000000008000 = 0x00000000000000FE ++cmpgeb255 0x000000007FFFFFFF = 0x00000000000000FF ++cmpgeb255 0x0000000080000000 = 0x00000000000000FE ++cmpgeb255 0x8000000000000000 = 0x00000000000000FE ++cmpgeb255 0xFFFFFFFF80000000 = 0x00000000000000FE ++cmpgeb255 0xFFFFFFFFFFFF8000 = 0x00000000000000FE ++cmpgeb255 0xFFFFFFFFFFFFFF80 = 0x00000000000000FE ++cmpgeb255 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb255 0x123456789ABCDEF0 = 0x00000000000000FE ++cmpgeb255 0xF0DEBC9A78563412 = 0x00000000000000FE ++=== Running test on seleq0 === ++seleq0 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++seleq0 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++seleq0 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++seleq0 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++seleq0 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++seleq0 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++seleq0 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++seleq0 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++seleq0 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++seleq0 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++seleq0 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++seleq0 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++seleq0 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++seleq0 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++seleq0 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++seleq0 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++seleq0 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++seleq0 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++seleq0 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++seleq0 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++seleq0 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++seleq0 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++seleq0 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++seleq0 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++seleq0 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++seleq0 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++seleq0 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++seleq0 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++seleq0 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++seleq0 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++seleq0 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++seleq0 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++seleq0 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++seleq0 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++seleq0 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++seleq0 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++seleq0 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++seleq0 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++seleq0 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++seleq0 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++seleq0 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++seleq0 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++seleq0 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++seleq0 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++seleq0 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++seleq0 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++seleq0 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++seleq0 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++seleq0 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++seleq0 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++seleq0 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++seleq0 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++seleq0 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++seleq0 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++seleq0 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++seleq0 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++seleq0 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++seleq0 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++seleq0 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++seleq0 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++seleq0 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++seleq0 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq0 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq0 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq0 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq0 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq0 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq0 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq0 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++seleq0 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++seleq0 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++seleq0 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++seleq0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++seleq0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++seleq0 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++seleq0 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++seleq0 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++seleq0 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++seleq0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++seleq0 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++seleq0 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++seleq0 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++seleq0 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++seleq0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++seleq0 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++seleq0 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++seleq0 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++seleq0 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++seleq0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++seleq0 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++seleq0 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++seleq0 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++seleq0 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++seleq0 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++seleq0 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++seleq0 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++seleq0 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++seleq0 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++seleq0 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++seleq0 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++seleq0 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++seleq0 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++seleq0 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++seleq0 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++seleq0 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++seleq0 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++seleq0 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++seleq0 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++seleq0 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++seleq0 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++seleq0 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++seleq0 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++seleq0 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++seleq0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++seleq0 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++seleq0 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++seleq0 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++seleq0 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++seleq0 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++seleq0 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++seleq0 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++seleq0 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++seleq0 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++seleq0 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++seleq0 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++seleq0 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++seleq0 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++seleq0 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++seleq0 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq0 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq0 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq0 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq0 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq0 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq0 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq0 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq0 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq0 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++seleq0 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++seleq0 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++seleq0 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++seleq0 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++seleq0 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++seleq0 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++seleq0 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++seleq0 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++seleq0 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++seleq0 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++seleq0 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++seleq0 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++seleq0 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++seleq0 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++seleq0 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++seleq0 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++seleq0 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++seleq0 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++seleq0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++seleq0 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++seleq0 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++seleq0 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++seleq0 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++seleq0 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++seleq0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++seleq0 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++seleq0 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++seleq0 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++seleq0 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++seleq0 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++seleq0 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++seleq0 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++seleq0 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++seleq0 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++seleq0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++seleq0 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++seleq0 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++seleq0 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++seleq0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++seleq0 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++seleq0 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++seleq0 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++seleq0 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++seleq0 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++seleq0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++seleq0 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++seleq0 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++seleq0 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++seleq0 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++seleq0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq0 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq0 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq0 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq0 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq0 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq0 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq0 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq0 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++seleq0 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++seleq0 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++seleq0 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++seleq0 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++seleq0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++seleq0 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++seleq0 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++seleq0 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++seleq0 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++seleq0 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq0 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++seleq0 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++seleq0 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++seleq0 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++seleq0 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++seleq0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq0 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++seleq0 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++seleq0 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++seleq0 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++seleq0 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq0 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++seleq0 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++seleq0 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq0 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq0 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq0 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on seleq1 === ++seleq1 0x0000000000000000 0x0000000000000000 = 0x0000000000000001 ++seleq1 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++seleq1 0x0000000000000000 0x0000000000000002 = 0x0000000000000001 ++seleq1 0x0000000000000000 0x0000000000000003 = 0x0000000000000001 ++seleq1 0x0000000000000000 0x000000000000000F = 0x0000000000000001 ++seleq1 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++seleq1 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++seleq1 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++seleq1 0x0000000000000000 0x000000000000007F = 0x0000000000000001 ++seleq1 0x0000000000000000 0x0000000000000080 = 0x0000000000000001 ++seleq1 0x0000000000000000 0x0000000000007FFF = 0x0000000000000001 ++seleq1 0x0000000000000000 0x0000000000008000 = 0x0000000000000001 ++seleq1 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++seleq1 0x0000000000000000 0x0000000080000000 = 0x0000000000000001 ++seleq1 0x0000000000000000 0x8000000000000000 = 0x0000000000000001 ++seleq1 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++seleq1 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++seleq1 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++seleq1 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++seleq1 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000001 ++seleq1 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++seleq1 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++seleq1 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++seleq1 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++seleq1 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++seleq1 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++seleq1 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++seleq1 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++seleq1 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++seleq1 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++seleq1 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++seleq1 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++seleq1 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++seleq1 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++seleq1 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++seleq1 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++seleq1 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++seleq1 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++seleq1 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++seleq1 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++seleq1 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++seleq1 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++seleq1 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++seleq1 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++seleq1 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++seleq1 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++seleq1 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++seleq1 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++seleq1 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++seleq1 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++seleq1 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++seleq1 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++seleq1 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++seleq1 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++seleq1 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++seleq1 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++seleq1 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++seleq1 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++seleq1 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++seleq1 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++seleq1 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++seleq1 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq1 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq1 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq1 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq1 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq1 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq1 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq1 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq1 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++seleq1 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++seleq1 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++seleq1 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++seleq1 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++seleq1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++seleq1 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++seleq1 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++seleq1 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++seleq1 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++seleq1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++seleq1 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++seleq1 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++seleq1 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++seleq1 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++seleq1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++seleq1 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++seleq1 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++seleq1 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++seleq1 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++seleq1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++seleq1 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++seleq1 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++seleq1 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++seleq1 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++seleq1 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++seleq1 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++seleq1 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++seleq1 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++seleq1 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++seleq1 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++seleq1 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++seleq1 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++seleq1 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++seleq1 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++seleq1 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++seleq1 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++seleq1 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++seleq1 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++seleq1 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++seleq1 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++seleq1 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++seleq1 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++seleq1 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++seleq1 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++seleq1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++seleq1 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++seleq1 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++seleq1 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++seleq1 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++seleq1 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++seleq1 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++seleq1 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++seleq1 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++seleq1 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++seleq1 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++seleq1 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++seleq1 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++seleq1 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++seleq1 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++seleq1 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq1 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq1 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq1 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq1 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq1 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq1 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq1 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq1 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq1 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++seleq1 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++seleq1 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++seleq1 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++seleq1 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++seleq1 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++seleq1 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++seleq1 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++seleq1 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++seleq1 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++seleq1 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++seleq1 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++seleq1 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++seleq1 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++seleq1 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++seleq1 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++seleq1 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++seleq1 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++seleq1 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++seleq1 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++seleq1 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++seleq1 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++seleq1 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++seleq1 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++seleq1 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++seleq1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++seleq1 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++seleq1 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++seleq1 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++seleq1 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++seleq1 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++seleq1 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++seleq1 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++seleq1 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++seleq1 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++seleq1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++seleq1 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++seleq1 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++seleq1 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++seleq1 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++seleq1 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++seleq1 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++seleq1 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++seleq1 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++seleq1 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++seleq1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++seleq1 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++seleq1 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++seleq1 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++seleq1 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++seleq1 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq1 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq1 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq1 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq1 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq1 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq1 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq1 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq1 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++seleq1 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++seleq1 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++seleq1 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++seleq1 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++seleq1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++seleq1 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++seleq1 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++seleq1 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++seleq1 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++seleq1 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq1 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++seleq1 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++seleq1 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++seleq1 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++seleq1 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++seleq1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq1 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++seleq1 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++seleq1 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++seleq1 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++seleq1 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq1 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++seleq1 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++seleq1 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq1 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq1 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq1 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq1 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on seleq2 === ++seleq2 0x0000000000000000 0x0000000000000000 = 0x0000000000000002 ++seleq2 0x0000000000000000 0x0000000000000001 = 0x0000000000000002 ++seleq2 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++seleq2 0x0000000000000000 0x0000000000000003 = 0x0000000000000002 ++seleq2 0x0000000000000000 0x000000000000000F = 0x0000000000000002 ++seleq2 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++seleq2 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++seleq2 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++seleq2 0x0000000000000000 0x000000000000007F = 0x0000000000000002 ++seleq2 0x0000000000000000 0x0000000000000080 = 0x0000000000000002 ++seleq2 0x0000000000000000 0x0000000000007FFF = 0x0000000000000002 ++seleq2 0x0000000000000000 0x0000000000008000 = 0x0000000000000002 ++seleq2 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000002 ++seleq2 0x0000000000000000 0x0000000080000000 = 0x0000000000000002 ++seleq2 0x0000000000000000 0x8000000000000000 = 0x0000000000000002 ++seleq2 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++seleq2 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++seleq2 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++seleq2 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++seleq2 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000002 ++seleq2 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++seleq2 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++seleq2 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++seleq2 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++seleq2 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++seleq2 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++seleq2 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++seleq2 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++seleq2 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++seleq2 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++seleq2 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++seleq2 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++seleq2 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++seleq2 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++seleq2 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++seleq2 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++seleq2 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++seleq2 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++seleq2 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++seleq2 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++seleq2 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++seleq2 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++seleq2 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++seleq2 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++seleq2 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++seleq2 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++seleq2 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++seleq2 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++seleq2 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++seleq2 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++seleq2 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++seleq2 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++seleq2 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++seleq2 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++seleq2 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++seleq2 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++seleq2 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++seleq2 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++seleq2 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++seleq2 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++seleq2 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++seleq2 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq2 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq2 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq2 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq2 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq2 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq2 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq2 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq2 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++seleq2 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++seleq2 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++seleq2 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++seleq2 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++seleq2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++seleq2 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++seleq2 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++seleq2 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++seleq2 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++seleq2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++seleq2 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++seleq2 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++seleq2 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++seleq2 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++seleq2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++seleq2 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++seleq2 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++seleq2 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++seleq2 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++seleq2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++seleq2 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++seleq2 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++seleq2 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++seleq2 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++seleq2 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++seleq2 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++seleq2 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++seleq2 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++seleq2 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++seleq2 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++seleq2 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++seleq2 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++seleq2 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++seleq2 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++seleq2 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++seleq2 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++seleq2 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++seleq2 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++seleq2 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++seleq2 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++seleq2 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++seleq2 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++seleq2 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++seleq2 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++seleq2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++seleq2 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++seleq2 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++seleq2 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++seleq2 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++seleq2 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++seleq2 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++seleq2 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++seleq2 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++seleq2 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++seleq2 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++seleq2 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++seleq2 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++seleq2 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++seleq2 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++seleq2 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq2 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq2 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq2 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq2 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq2 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq2 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq2 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq2 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq2 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++seleq2 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++seleq2 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++seleq2 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++seleq2 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++seleq2 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++seleq2 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++seleq2 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++seleq2 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++seleq2 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++seleq2 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++seleq2 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++seleq2 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++seleq2 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++seleq2 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++seleq2 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++seleq2 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++seleq2 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++seleq2 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++seleq2 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++seleq2 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++seleq2 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++seleq2 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++seleq2 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++seleq2 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++seleq2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++seleq2 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++seleq2 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++seleq2 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++seleq2 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++seleq2 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++seleq2 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++seleq2 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++seleq2 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++seleq2 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++seleq2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++seleq2 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++seleq2 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++seleq2 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++seleq2 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++seleq2 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++seleq2 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++seleq2 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++seleq2 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++seleq2 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++seleq2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++seleq2 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++seleq2 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++seleq2 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++seleq2 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++seleq2 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq2 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq2 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq2 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq2 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq2 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq2 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq2 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq2 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++seleq2 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++seleq2 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++seleq2 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++seleq2 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++seleq2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++seleq2 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++seleq2 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++seleq2 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++seleq2 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++seleq2 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq2 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++seleq2 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++seleq2 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++seleq2 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++seleq2 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++seleq2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq2 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++seleq2 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++seleq2 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++seleq2 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++seleq2 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq2 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++seleq2 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++seleq2 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq2 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq2 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq2 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq2 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on seleq3 === ++seleq3 0x0000000000000000 0x0000000000000000 = 0x0000000000000003 ++seleq3 0x0000000000000000 0x0000000000000001 = 0x0000000000000003 ++seleq3 0x0000000000000000 0x0000000000000002 = 0x0000000000000003 ++seleq3 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++seleq3 0x0000000000000000 0x000000000000000F = 0x0000000000000003 ++seleq3 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++seleq3 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++seleq3 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++seleq3 0x0000000000000000 0x000000000000007F = 0x0000000000000003 ++seleq3 0x0000000000000000 0x0000000000000080 = 0x0000000000000003 ++seleq3 0x0000000000000000 0x0000000000007FFF = 0x0000000000000003 ++seleq3 0x0000000000000000 0x0000000000008000 = 0x0000000000000003 ++seleq3 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000003 ++seleq3 0x0000000000000000 0x0000000080000000 = 0x0000000000000003 ++seleq3 0x0000000000000000 0x8000000000000000 = 0x0000000000000003 ++seleq3 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++seleq3 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++seleq3 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++seleq3 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++seleq3 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000003 ++seleq3 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++seleq3 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++seleq3 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++seleq3 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++seleq3 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++seleq3 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++seleq3 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++seleq3 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++seleq3 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++seleq3 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++seleq3 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++seleq3 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++seleq3 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++seleq3 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++seleq3 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++seleq3 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++seleq3 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++seleq3 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++seleq3 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++seleq3 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++seleq3 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++seleq3 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++seleq3 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++seleq3 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++seleq3 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++seleq3 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++seleq3 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++seleq3 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++seleq3 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++seleq3 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++seleq3 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++seleq3 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++seleq3 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++seleq3 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++seleq3 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++seleq3 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++seleq3 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++seleq3 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++seleq3 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++seleq3 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++seleq3 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++seleq3 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq3 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq3 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq3 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq3 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq3 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq3 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq3 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq3 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++seleq3 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++seleq3 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++seleq3 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++seleq3 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++seleq3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++seleq3 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++seleq3 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++seleq3 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++seleq3 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++seleq3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++seleq3 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++seleq3 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++seleq3 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++seleq3 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++seleq3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++seleq3 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++seleq3 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++seleq3 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++seleq3 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++seleq3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++seleq3 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++seleq3 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++seleq3 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++seleq3 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++seleq3 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++seleq3 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++seleq3 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++seleq3 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++seleq3 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++seleq3 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++seleq3 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++seleq3 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++seleq3 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++seleq3 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++seleq3 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++seleq3 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++seleq3 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++seleq3 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++seleq3 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++seleq3 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++seleq3 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++seleq3 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++seleq3 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++seleq3 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++seleq3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++seleq3 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++seleq3 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++seleq3 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++seleq3 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++seleq3 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++seleq3 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++seleq3 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++seleq3 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++seleq3 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++seleq3 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++seleq3 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++seleq3 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++seleq3 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++seleq3 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++seleq3 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq3 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq3 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq3 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq3 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq3 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq3 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq3 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq3 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq3 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++seleq3 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++seleq3 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++seleq3 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++seleq3 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++seleq3 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++seleq3 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++seleq3 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++seleq3 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++seleq3 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++seleq3 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++seleq3 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++seleq3 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++seleq3 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++seleq3 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++seleq3 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++seleq3 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++seleq3 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++seleq3 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++seleq3 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++seleq3 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++seleq3 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++seleq3 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++seleq3 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++seleq3 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++seleq3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++seleq3 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++seleq3 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++seleq3 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++seleq3 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++seleq3 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++seleq3 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++seleq3 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++seleq3 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++seleq3 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++seleq3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++seleq3 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++seleq3 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++seleq3 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++seleq3 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++seleq3 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++seleq3 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++seleq3 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++seleq3 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++seleq3 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++seleq3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++seleq3 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++seleq3 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++seleq3 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++seleq3 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++seleq3 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq3 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq3 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq3 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq3 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq3 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq3 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq3 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq3 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++seleq3 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++seleq3 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++seleq3 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++seleq3 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++seleq3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++seleq3 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++seleq3 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++seleq3 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++seleq3 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++seleq3 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq3 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++seleq3 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++seleq3 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++seleq3 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++seleq3 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++seleq3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq3 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++seleq3 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++seleq3 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++seleq3 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++seleq3 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq3 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++seleq3 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++seleq3 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq3 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq3 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq3 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq3 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on seleq15 === ++seleq15 0x0000000000000000 0x0000000000000000 = 0x000000000000000F ++seleq15 0x0000000000000000 0x0000000000000001 = 0x000000000000000F ++seleq15 0x0000000000000000 0x0000000000000002 = 0x000000000000000F ++seleq15 0x0000000000000000 0x0000000000000003 = 0x000000000000000F ++seleq15 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++seleq15 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++seleq15 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++seleq15 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++seleq15 0x0000000000000000 0x000000000000007F = 0x000000000000000F ++seleq15 0x0000000000000000 0x0000000000000080 = 0x000000000000000F ++seleq15 0x0000000000000000 0x0000000000007FFF = 0x000000000000000F ++seleq15 0x0000000000000000 0x0000000000008000 = 0x000000000000000F ++seleq15 0x0000000000000000 0x000000007FFFFFFF = 0x000000000000000F ++seleq15 0x0000000000000000 0x0000000080000000 = 0x000000000000000F ++seleq15 0x0000000000000000 0x8000000000000000 = 0x000000000000000F ++seleq15 0x0000000000000000 0xFFFFFFFF80000000 = 0x000000000000000F ++seleq15 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++seleq15 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++seleq15 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++seleq15 0x0000000000000000 0x123456789ABCDEF0 = 0x000000000000000F ++seleq15 0x0000000000000000 0xF0DEBC9A78563412 = 0x000000000000000F ++seleq15 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++seleq15 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++seleq15 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++seleq15 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++seleq15 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++seleq15 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++seleq15 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++seleq15 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++seleq15 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++seleq15 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++seleq15 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++seleq15 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++seleq15 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++seleq15 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++seleq15 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++seleq15 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++seleq15 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++seleq15 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++seleq15 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++seleq15 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++seleq15 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++seleq15 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++seleq15 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++seleq15 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++seleq15 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++seleq15 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++seleq15 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++seleq15 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++seleq15 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++seleq15 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++seleq15 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++seleq15 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++seleq15 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++seleq15 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++seleq15 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++seleq15 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++seleq15 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++seleq15 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++seleq15 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++seleq15 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++seleq15 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq15 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq15 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq15 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq15 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq15 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq15 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq15 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq15 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++seleq15 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++seleq15 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++seleq15 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++seleq15 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++seleq15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++seleq15 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++seleq15 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++seleq15 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++seleq15 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++seleq15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++seleq15 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++seleq15 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++seleq15 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++seleq15 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++seleq15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++seleq15 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++seleq15 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++seleq15 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++seleq15 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++seleq15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++seleq15 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++seleq15 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++seleq15 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++seleq15 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++seleq15 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++seleq15 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++seleq15 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++seleq15 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++seleq15 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++seleq15 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++seleq15 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++seleq15 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++seleq15 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++seleq15 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++seleq15 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++seleq15 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++seleq15 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++seleq15 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++seleq15 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++seleq15 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++seleq15 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++seleq15 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++seleq15 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++seleq15 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++seleq15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++seleq15 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++seleq15 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++seleq15 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++seleq15 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++seleq15 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++seleq15 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++seleq15 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++seleq15 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++seleq15 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++seleq15 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++seleq15 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++seleq15 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++seleq15 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++seleq15 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++seleq15 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq15 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq15 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq15 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq15 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq15 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq15 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq15 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq15 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq15 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++seleq15 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++seleq15 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++seleq15 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++seleq15 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++seleq15 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++seleq15 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++seleq15 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++seleq15 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++seleq15 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++seleq15 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++seleq15 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++seleq15 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++seleq15 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++seleq15 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++seleq15 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++seleq15 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++seleq15 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++seleq15 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++seleq15 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++seleq15 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++seleq15 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++seleq15 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++seleq15 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++seleq15 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++seleq15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++seleq15 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++seleq15 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++seleq15 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++seleq15 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++seleq15 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++seleq15 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++seleq15 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++seleq15 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++seleq15 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++seleq15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++seleq15 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++seleq15 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++seleq15 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++seleq15 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++seleq15 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++seleq15 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++seleq15 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++seleq15 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++seleq15 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++seleq15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++seleq15 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++seleq15 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++seleq15 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++seleq15 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++seleq15 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq15 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq15 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq15 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq15 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq15 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq15 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq15 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq15 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++seleq15 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++seleq15 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++seleq15 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++seleq15 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++seleq15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++seleq15 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++seleq15 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++seleq15 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++seleq15 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++seleq15 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq15 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++seleq15 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++seleq15 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++seleq15 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++seleq15 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++seleq15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq15 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++seleq15 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++seleq15 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++seleq15 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++seleq15 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq15 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++seleq15 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++seleq15 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq15 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq15 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq15 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq15 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on seleq127 === ++seleq127 0x0000000000000000 0x0000000000000000 = 0x000000000000007F ++seleq127 0x0000000000000000 0x0000000000000001 = 0x000000000000007F ++seleq127 0x0000000000000000 0x0000000000000002 = 0x000000000000007F ++seleq127 0x0000000000000000 0x0000000000000003 = 0x000000000000007F ++seleq127 0x0000000000000000 0x000000000000000F = 0x000000000000007F ++seleq127 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++seleq127 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++seleq127 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++seleq127 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++seleq127 0x0000000000000000 0x0000000000000080 = 0x000000000000007F ++seleq127 0x0000000000000000 0x0000000000007FFF = 0x000000000000007F ++seleq127 0x0000000000000000 0x0000000000008000 = 0x000000000000007F ++seleq127 0x0000000000000000 0x000000007FFFFFFF = 0x000000000000007F ++seleq127 0x0000000000000000 0x0000000080000000 = 0x000000000000007F ++seleq127 0x0000000000000000 0x8000000000000000 = 0x000000000000007F ++seleq127 0x0000000000000000 0xFFFFFFFF80000000 = 0x000000000000007F ++seleq127 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++seleq127 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++seleq127 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++seleq127 0x0000000000000000 0x123456789ABCDEF0 = 0x000000000000007F ++seleq127 0x0000000000000000 0xF0DEBC9A78563412 = 0x000000000000007F ++seleq127 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++seleq127 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++seleq127 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++seleq127 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++seleq127 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++seleq127 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++seleq127 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++seleq127 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++seleq127 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++seleq127 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++seleq127 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++seleq127 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++seleq127 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++seleq127 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++seleq127 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++seleq127 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++seleq127 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++seleq127 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++seleq127 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++seleq127 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++seleq127 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++seleq127 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++seleq127 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++seleq127 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++seleq127 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++seleq127 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++seleq127 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++seleq127 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++seleq127 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++seleq127 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++seleq127 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++seleq127 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++seleq127 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++seleq127 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++seleq127 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++seleq127 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++seleq127 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++seleq127 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++seleq127 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++seleq127 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++seleq127 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq127 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq127 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq127 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq127 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq127 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq127 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq127 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq127 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++seleq127 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++seleq127 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++seleq127 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++seleq127 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++seleq127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++seleq127 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++seleq127 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++seleq127 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++seleq127 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++seleq127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++seleq127 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++seleq127 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++seleq127 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++seleq127 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++seleq127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++seleq127 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++seleq127 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++seleq127 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++seleq127 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++seleq127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++seleq127 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++seleq127 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++seleq127 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++seleq127 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++seleq127 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++seleq127 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++seleq127 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++seleq127 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++seleq127 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++seleq127 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++seleq127 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++seleq127 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++seleq127 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++seleq127 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++seleq127 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++seleq127 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++seleq127 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++seleq127 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++seleq127 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++seleq127 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++seleq127 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++seleq127 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++seleq127 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++seleq127 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++seleq127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++seleq127 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++seleq127 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++seleq127 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++seleq127 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++seleq127 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++seleq127 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++seleq127 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++seleq127 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++seleq127 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++seleq127 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++seleq127 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++seleq127 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++seleq127 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++seleq127 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++seleq127 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq127 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq127 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq127 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq127 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq127 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq127 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq127 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq127 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq127 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++seleq127 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++seleq127 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++seleq127 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++seleq127 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++seleq127 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++seleq127 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++seleq127 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++seleq127 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++seleq127 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++seleq127 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++seleq127 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++seleq127 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++seleq127 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++seleq127 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++seleq127 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++seleq127 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++seleq127 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++seleq127 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++seleq127 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++seleq127 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++seleq127 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++seleq127 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++seleq127 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++seleq127 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++seleq127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++seleq127 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++seleq127 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++seleq127 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++seleq127 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++seleq127 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++seleq127 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++seleq127 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++seleq127 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++seleq127 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++seleq127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++seleq127 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++seleq127 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++seleq127 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++seleq127 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++seleq127 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++seleq127 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++seleq127 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++seleq127 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++seleq127 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++seleq127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++seleq127 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++seleq127 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++seleq127 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++seleq127 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++seleq127 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq127 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq127 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq127 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq127 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq127 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq127 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq127 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq127 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++seleq127 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++seleq127 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++seleq127 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++seleq127 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++seleq127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++seleq127 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++seleq127 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++seleq127 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++seleq127 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++seleq127 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq127 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++seleq127 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++seleq127 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++seleq127 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++seleq127 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++seleq127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq127 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++seleq127 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++seleq127 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++seleq127 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++seleq127 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq127 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++seleq127 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++seleq127 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq127 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq127 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq127 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq127 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on seleq128 === ++seleq128 0x0000000000000000 0x0000000000000000 = 0x0000000000000080 ++seleq128 0x0000000000000000 0x0000000000000001 = 0x0000000000000080 ++seleq128 0x0000000000000000 0x0000000000000002 = 0x0000000000000080 ++seleq128 0x0000000000000000 0x0000000000000003 = 0x0000000000000080 ++seleq128 0x0000000000000000 0x000000000000000F = 0x0000000000000080 ++seleq128 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++seleq128 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++seleq128 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++seleq128 0x0000000000000000 0x000000000000007F = 0x0000000000000080 ++seleq128 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++seleq128 0x0000000000000000 0x0000000000007FFF = 0x0000000000000080 ++seleq128 0x0000000000000000 0x0000000000008000 = 0x0000000000000080 ++seleq128 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000080 ++seleq128 0x0000000000000000 0x0000000080000000 = 0x0000000000000080 ++seleq128 0x0000000000000000 0x8000000000000000 = 0x0000000000000080 ++seleq128 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++seleq128 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++seleq128 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++seleq128 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++seleq128 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000080 ++seleq128 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++seleq128 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++seleq128 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++seleq128 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++seleq128 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++seleq128 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++seleq128 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++seleq128 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++seleq128 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++seleq128 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++seleq128 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++seleq128 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++seleq128 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++seleq128 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++seleq128 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++seleq128 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++seleq128 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++seleq128 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++seleq128 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++seleq128 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++seleq128 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++seleq128 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++seleq128 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++seleq128 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++seleq128 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++seleq128 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++seleq128 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++seleq128 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++seleq128 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++seleq128 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++seleq128 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++seleq128 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++seleq128 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++seleq128 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++seleq128 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++seleq128 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++seleq128 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++seleq128 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++seleq128 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++seleq128 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++seleq128 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++seleq128 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq128 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq128 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq128 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq128 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq128 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq128 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq128 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq128 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++seleq128 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++seleq128 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++seleq128 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++seleq128 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++seleq128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++seleq128 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++seleq128 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++seleq128 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++seleq128 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++seleq128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++seleq128 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++seleq128 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++seleq128 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++seleq128 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++seleq128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++seleq128 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++seleq128 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++seleq128 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++seleq128 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++seleq128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++seleq128 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++seleq128 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++seleq128 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++seleq128 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++seleq128 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++seleq128 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++seleq128 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++seleq128 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++seleq128 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++seleq128 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++seleq128 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++seleq128 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++seleq128 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++seleq128 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++seleq128 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++seleq128 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++seleq128 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++seleq128 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++seleq128 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++seleq128 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++seleq128 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++seleq128 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++seleq128 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++seleq128 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++seleq128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++seleq128 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++seleq128 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++seleq128 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++seleq128 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++seleq128 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++seleq128 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++seleq128 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++seleq128 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++seleq128 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++seleq128 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++seleq128 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++seleq128 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++seleq128 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++seleq128 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++seleq128 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq128 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq128 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq128 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq128 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq128 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq128 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq128 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq128 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq128 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++seleq128 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++seleq128 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++seleq128 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++seleq128 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++seleq128 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++seleq128 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++seleq128 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++seleq128 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++seleq128 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++seleq128 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++seleq128 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++seleq128 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++seleq128 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++seleq128 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++seleq128 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++seleq128 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++seleq128 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++seleq128 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++seleq128 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++seleq128 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++seleq128 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++seleq128 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++seleq128 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++seleq128 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++seleq128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++seleq128 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++seleq128 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++seleq128 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++seleq128 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++seleq128 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++seleq128 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++seleq128 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++seleq128 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++seleq128 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++seleq128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++seleq128 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++seleq128 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++seleq128 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++seleq128 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++seleq128 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++seleq128 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++seleq128 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++seleq128 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++seleq128 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++seleq128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++seleq128 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++seleq128 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++seleq128 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++seleq128 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++seleq128 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq128 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq128 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq128 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq128 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq128 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq128 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq128 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq128 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++seleq128 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++seleq128 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++seleq128 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++seleq128 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++seleq128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++seleq128 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++seleq128 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++seleq128 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++seleq128 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++seleq128 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq128 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++seleq128 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++seleq128 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++seleq128 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++seleq128 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++seleq128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq128 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++seleq128 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++seleq128 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++seleq128 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++seleq128 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq128 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++seleq128 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++seleq128 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq128 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq128 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq128 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq128 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on seleq255 === ++seleq255 0x0000000000000000 0x0000000000000000 = 0x00000000000000FF ++seleq255 0x0000000000000000 0x0000000000000001 = 0x00000000000000FF ++seleq255 0x0000000000000000 0x0000000000000002 = 0x00000000000000FF ++seleq255 0x0000000000000000 0x0000000000000003 = 0x00000000000000FF ++seleq255 0x0000000000000000 0x000000000000000F = 0x00000000000000FF ++seleq255 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++seleq255 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++seleq255 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++seleq255 0x0000000000000000 0x000000000000007F = 0x00000000000000FF ++seleq255 0x0000000000000000 0x0000000000000080 = 0x00000000000000FF ++seleq255 0x0000000000000000 0x0000000000007FFF = 0x00000000000000FF ++seleq255 0x0000000000000000 0x0000000000008000 = 0x00000000000000FF ++seleq255 0x0000000000000000 0x000000007FFFFFFF = 0x00000000000000FF ++seleq255 0x0000000000000000 0x0000000080000000 = 0x00000000000000FF ++seleq255 0x0000000000000000 0x8000000000000000 = 0x00000000000000FF ++seleq255 0x0000000000000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++seleq255 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++seleq255 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++seleq255 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++seleq255 0x0000000000000000 0x123456789ABCDEF0 = 0x00000000000000FF ++seleq255 0x0000000000000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++seleq255 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++seleq255 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++seleq255 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++seleq255 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++seleq255 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++seleq255 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++seleq255 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++seleq255 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++seleq255 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++seleq255 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++seleq255 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++seleq255 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++seleq255 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++seleq255 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++seleq255 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++seleq255 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++seleq255 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++seleq255 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++seleq255 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++seleq255 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++seleq255 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++seleq255 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++seleq255 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++seleq255 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++seleq255 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++seleq255 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++seleq255 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++seleq255 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++seleq255 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++seleq255 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++seleq255 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++seleq255 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++seleq255 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++seleq255 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++seleq255 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++seleq255 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++seleq255 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++seleq255 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++seleq255 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++seleq255 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++seleq255 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq255 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq255 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq255 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq255 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq255 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq255 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq255 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq255 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++seleq255 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++seleq255 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++seleq255 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++seleq255 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++seleq255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++seleq255 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++seleq255 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++seleq255 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++seleq255 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++seleq255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++seleq255 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++seleq255 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++seleq255 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++seleq255 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++seleq255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++seleq255 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++seleq255 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++seleq255 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++seleq255 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++seleq255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++seleq255 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++seleq255 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++seleq255 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++seleq255 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++seleq255 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++seleq255 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++seleq255 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++seleq255 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++seleq255 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++seleq255 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++seleq255 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++seleq255 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++seleq255 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++seleq255 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++seleq255 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++seleq255 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++seleq255 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++seleq255 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++seleq255 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++seleq255 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++seleq255 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++seleq255 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++seleq255 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++seleq255 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++seleq255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++seleq255 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++seleq255 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++seleq255 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++seleq255 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++seleq255 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++seleq255 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++seleq255 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++seleq255 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++seleq255 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++seleq255 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++seleq255 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++seleq255 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++seleq255 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++seleq255 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++seleq255 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq255 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq255 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq255 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq255 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq255 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq255 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq255 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq255 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq255 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++seleq255 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++seleq255 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++seleq255 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++seleq255 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++seleq255 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++seleq255 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++seleq255 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++seleq255 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++seleq255 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++seleq255 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++seleq255 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++seleq255 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++seleq255 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++seleq255 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++seleq255 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++seleq255 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++seleq255 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++seleq255 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++seleq255 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++seleq255 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++seleq255 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++seleq255 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++seleq255 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++seleq255 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++seleq255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++seleq255 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++seleq255 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++seleq255 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++seleq255 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++seleq255 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++seleq255 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++seleq255 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++seleq255 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++seleq255 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++seleq255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++seleq255 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++seleq255 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++seleq255 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++seleq255 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++seleq255 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++seleq255 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++seleq255 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++seleq255 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++seleq255 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++seleq255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++seleq255 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++seleq255 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++seleq255 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++seleq255 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++seleq255 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq255 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq255 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq255 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq255 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq255 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq255 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq255 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq255 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++seleq255 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++seleq255 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++seleq255 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++seleq255 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++seleq255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++seleq255 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++seleq255 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++seleq255 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++seleq255 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++seleq255 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq255 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++seleq255 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++seleq255 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++seleq255 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++seleq255 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++seleq255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq255 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++seleq255 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++seleq255 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++seleq255 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++seleq255 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq255 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++seleq255 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++seleq255 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq255 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq255 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq255 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq255 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selge0 === ++selge0 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selge0 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++selge0 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++selge0 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++selge0 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++selge0 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selge0 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selge0 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++selge0 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++selge0 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++selge0 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++selge0 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++selge0 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++selge0 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selge0 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selge0 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selge0 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++selge0 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selge0 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++selge0 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++selge0 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++selge0 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++selge0 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++selge0 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selge0 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selge0 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++selge0 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++selge0 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++selge0 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++selge0 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++selge0 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++selge0 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++selge0 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selge0 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selge0 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++selge0 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++selge0 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++selge0 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++selge0 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++selge0 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++selge0 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++selge0 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selge0 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selge0 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++selge0 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++selge0 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++selge0 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++selge0 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++selge0 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++selge0 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++selge0 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selge0 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selge0 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++selge0 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++selge0 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++selge0 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++selge0 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++selge0 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++selge0 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++selge0 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selge0 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selge0 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++selge0 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++selge0 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++selge0 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++selge0 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++selge0 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++selge0 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++selge0 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selge0 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selge0 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++selge0 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++selge0 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++selge0 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++selge0 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++selge0 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++selge0 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++selge0 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selge0 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selge0 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++selge0 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++selge0 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++selge0 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++selge0 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++selge0 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++selge0 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++selge0 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++selge0 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selge0 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selge0 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++selge0 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++selge0 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selge0 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selge0 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selge0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selge0 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selge0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge0 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selge0 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selge0 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selge0 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selge0 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge0 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selge0 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selge0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge0 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge0 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge0 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge0 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selge0 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selge0 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selge0 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selge0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selge0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge0 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selge0 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selge0 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selge0 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selge0 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge0 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selge0 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selge0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge0 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge0 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge0 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge0 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selge0 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selge0 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selge0 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selge0 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selge0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge0 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selge0 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selge0 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selge0 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selge0 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge0 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selge0 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selge0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge0 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge0 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge0 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge0 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++selge0 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++selge0 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++selge0 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++selge0 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++selge0 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selge0 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selge0 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++selge0 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++selge0 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++selge0 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++selge0 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++selge0 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++selge0 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++selge0 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++selge0 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selge0 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selge0 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++selge0 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++selge0 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++selge0 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++selge0 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++selge0 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++selge0 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++selge0 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selge0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selge0 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++selge0 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++selge0 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++selge0 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++selge0 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++selge0 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++selge0 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++selge0 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selge0 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selge0 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++selge0 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++selge0 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++selge0 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++selge0 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++selge0 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++selge0 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++selge0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selge0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selge0 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++selge0 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++selge0 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++selge0 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++selge0 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++selge0 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++selge0 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++selge0 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++selge0 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selge0 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selge0 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++selge0 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++selge0 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++selge0 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++selge0 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++selge0 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++selge0 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++selge0 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selge0 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selge0 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++selge0 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++selge0 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++selge0 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++selge0 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++selge0 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++selge0 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++selge0 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selge0 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selge0 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selge0 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++selge0 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++selge0 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++selge0 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++selge0 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++selge0 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++selge0 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++selge0 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++selge0 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selge0 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selge0 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++selge0 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++selge0 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++selge0 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++selge0 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++selge0 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++selge0 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++selge0 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selge0 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selge0 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selge0 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++selge0 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selge0 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selge0 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selge0 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selge0 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selge0 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selge0 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge0 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge0 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge0 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selge0 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selge0 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selge0 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selge0 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge0 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selge0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selge0 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge0 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge0 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge0 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge0 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge0 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge0 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selge0 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selge0 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selge0 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selge0 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selge0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge0 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selge0 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selge0 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selge0 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selge0 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge0 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selge0 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selge0 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge0 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge0 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge0 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge0 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge0 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selge0 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selge0 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selge0 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selge0 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selge0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge0 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selge0 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selge0 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selge0 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selge0 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge0 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selge0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selge0 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge0 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge0 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge0 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge0 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selge0 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selge0 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selge0 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selge0 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selge0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge0 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selge0 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selge0 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selge0 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selge0 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge0 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selge0 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selge0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge0 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge0 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge0 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge0 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++selge0 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++selge0 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++selge0 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selge0 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selge0 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selge0 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selge0 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selge0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge0 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selge0 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selge0 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selge0 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selge0 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge0 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selge0 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selge0 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge0 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge0 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge0 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selge1 === ++selge1 0x0000000000000000 0x0000000000000000 = 0x0000000000000001 ++selge1 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selge1 0x0000000000000000 0x0000000000000002 = 0x0000000000000001 ++selge1 0x0000000000000000 0x0000000000000003 = 0x0000000000000001 ++selge1 0x0000000000000000 0x000000000000000F = 0x0000000000000001 ++selge1 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selge1 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selge1 0x0000000000000000 0x000000000000007F = 0x0000000000000001 ++selge1 0x0000000000000000 0x0000000000000080 = 0x0000000000000001 ++selge1 0x0000000000000000 0x0000000000007FFF = 0x0000000000000001 ++selge1 0x0000000000000000 0x0000000000008000 = 0x0000000000000001 ++selge1 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000000 0x0000000080000000 = 0x0000000000000001 ++selge1 0x0000000000000000 0x8000000000000000 = 0x0000000000000001 ++selge1 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++selge1 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selge1 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selge1 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000001 ++selge1 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++selge1 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++selge1 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selge1 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++selge1 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++selge1 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++selge1 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selge1 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selge1 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++selge1 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++selge1 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++selge1 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++selge1 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++selge1 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++selge1 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++selge1 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selge1 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selge1 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++selge1 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++selge1 0x0000000000000002 0x0000000000000000 = 0x0000000000000001 ++selge1 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++selge1 0x0000000000000002 0x0000000000000002 = 0x0000000000000001 ++selge1 0x0000000000000002 0x0000000000000003 = 0x0000000000000001 ++selge1 0x0000000000000002 0x000000000000000F = 0x0000000000000001 ++selge1 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selge1 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selge1 0x0000000000000002 0x000000000000007F = 0x0000000000000001 ++selge1 0x0000000000000002 0x0000000000000080 = 0x0000000000000001 ++selge1 0x0000000000000002 0x0000000000007FFF = 0x0000000000000001 ++selge1 0x0000000000000002 0x0000000000008000 = 0x0000000000000001 ++selge1 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000002 0x0000000080000000 = 0x0000000000000001 ++selge1 0x0000000000000002 0x8000000000000000 = 0x0000000000000001 ++selge1 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000001 ++selge1 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selge1 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selge1 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000001 ++selge1 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000001 ++selge1 0x0000000000000003 0x0000000000000000 = 0x0000000000000001 ++selge1 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++selge1 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++selge1 0x0000000000000003 0x0000000000000003 = 0x0000000000000001 ++selge1 0x0000000000000003 0x000000000000000F = 0x0000000000000001 ++selge1 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selge1 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selge1 0x0000000000000003 0x000000000000007F = 0x0000000000000001 ++selge1 0x0000000000000003 0x0000000000000080 = 0x0000000000000001 ++selge1 0x0000000000000003 0x0000000000007FFF = 0x0000000000000001 ++selge1 0x0000000000000003 0x0000000000008000 = 0x0000000000000001 ++selge1 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000003 0x0000000080000000 = 0x0000000000000001 ++selge1 0x0000000000000003 0x8000000000000000 = 0x0000000000000001 ++selge1 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000001 ++selge1 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selge1 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selge1 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000001 ++selge1 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000001 ++selge1 0x000000000000000F 0x0000000000000000 = 0x0000000000000001 ++selge1 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++selge1 0x000000000000000F 0x0000000000000002 = 0x0000000000000001 ++selge1 0x000000000000000F 0x0000000000000003 = 0x0000000000000001 ++selge1 0x000000000000000F 0x000000000000000F = 0x0000000000000001 ++selge1 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selge1 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selge1 0x000000000000000F 0x000000000000007F = 0x0000000000000001 ++selge1 0x000000000000000F 0x0000000000000080 = 0x0000000000000001 ++selge1 0x000000000000000F 0x0000000000007FFF = 0x0000000000000001 ++selge1 0x000000000000000F 0x0000000000008000 = 0x0000000000000001 ++selge1 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000001 ++selge1 0x000000000000000F 0x0000000080000000 = 0x0000000000000001 ++selge1 0x000000000000000F 0x8000000000000000 = 0x0000000000000001 ++selge1 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000001 ++selge1 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selge1 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selge1 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000001 ++selge1 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000001 ++selge1 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selge1 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selge1 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selge1 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selge1 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selge1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge1 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selge1 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selge1 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selge1 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selge1 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge1 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selge1 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selge1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge1 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge1 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge1 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge1 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selge1 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selge1 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selge1 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selge1 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selge1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge1 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selge1 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selge1 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selge1 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selge1 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge1 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selge1 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selge1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge1 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge1 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge1 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge1 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selge1 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selge1 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selge1 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selge1 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selge1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge1 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selge1 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selge1 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selge1 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selge1 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge1 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selge1 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selge1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge1 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge1 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge1 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge1 0x000000000000007F 0x0000000000000000 = 0x0000000000000001 ++selge1 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++selge1 0x000000000000007F 0x0000000000000002 = 0x0000000000000001 ++selge1 0x000000000000007F 0x0000000000000003 = 0x0000000000000001 ++selge1 0x000000000000007F 0x000000000000000F = 0x0000000000000001 ++selge1 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selge1 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selge1 0x000000000000007F 0x000000000000007F = 0x0000000000000001 ++selge1 0x000000000000007F 0x0000000000000080 = 0x0000000000000001 ++selge1 0x000000000000007F 0x0000000000007FFF = 0x0000000000000001 ++selge1 0x000000000000007F 0x0000000000008000 = 0x0000000000000001 ++selge1 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000001 ++selge1 0x000000000000007F 0x0000000080000000 = 0x0000000000000001 ++selge1 0x000000000000007F 0x8000000000000000 = 0x0000000000000001 ++selge1 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000001 ++selge1 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selge1 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selge1 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000001 ++selge1 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000001 ++selge1 0x0000000000000080 0x0000000000000000 = 0x0000000000000001 ++selge1 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++selge1 0x0000000000000080 0x0000000000000002 = 0x0000000000000001 ++selge1 0x0000000000000080 0x0000000000000003 = 0x0000000000000001 ++selge1 0x0000000000000080 0x000000000000000F = 0x0000000000000001 ++selge1 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selge1 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selge1 0x0000000000000080 0x000000000000007F = 0x0000000000000001 ++selge1 0x0000000000000080 0x0000000000000080 = 0x0000000000000001 ++selge1 0x0000000000000080 0x0000000000007FFF = 0x0000000000000001 ++selge1 0x0000000000000080 0x0000000000008000 = 0x0000000000000001 ++selge1 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000080 0x0000000080000000 = 0x0000000000000001 ++selge1 0x0000000000000080 0x8000000000000000 = 0x0000000000000001 ++selge1 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000001 ++selge1 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selge1 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selge1 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000001 ++selge1 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000001 ++selge1 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000001 ++selge1 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++selge1 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000001 ++selge1 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000001 ++selge1 0x0000000000007FFF 0x000000000000000F = 0x0000000000000001 ++selge1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selge1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selge1 0x0000000000007FFF 0x000000000000007F = 0x0000000000000001 ++selge1 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000001 ++selge1 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000001 ++selge1 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000001 ++selge1 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000001 ++selge1 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000001 ++selge1 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000001 ++selge1 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++selge1 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selge1 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selge1 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000001 ++selge1 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++selge1 0x0000000000008000 0x0000000000000000 = 0x0000000000000001 ++selge1 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++selge1 0x0000000000008000 0x0000000000000002 = 0x0000000000000001 ++selge1 0x0000000000008000 0x0000000000000003 = 0x0000000000000001 ++selge1 0x0000000000008000 0x000000000000000F = 0x0000000000000001 ++selge1 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selge1 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selge1 0x0000000000008000 0x000000000000007F = 0x0000000000000001 ++selge1 0x0000000000008000 0x0000000000000080 = 0x0000000000000001 ++selge1 0x0000000000008000 0x0000000000007FFF = 0x0000000000000001 ++selge1 0x0000000000008000 0x0000000000008000 = 0x0000000000000001 ++selge1 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000001 ++selge1 0x0000000000008000 0x0000000080000000 = 0x0000000000000001 ++selge1 0x0000000000008000 0x8000000000000000 = 0x0000000000000001 ++selge1 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000001 ++selge1 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selge1 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selge1 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000001 ++selge1 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++selge1 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++selge1 0x0000000080000000 0x0000000000000000 = 0x0000000000000001 ++selge1 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++selge1 0x0000000080000000 0x0000000000000002 = 0x0000000000000001 ++selge1 0x0000000080000000 0x0000000000000003 = 0x0000000000000001 ++selge1 0x0000000080000000 0x000000000000000F = 0x0000000000000001 ++selge1 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selge1 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selge1 0x0000000080000000 0x000000000000007F = 0x0000000000000001 ++selge1 0x0000000080000000 0x0000000000000080 = 0x0000000000000001 ++selge1 0x0000000080000000 0x0000000000007FFF = 0x0000000000000001 ++selge1 0x0000000080000000 0x0000000000008000 = 0x0000000000000001 ++selge1 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000001 ++selge1 0x0000000080000000 0x0000000080000000 = 0x0000000000000001 ++selge1 0x0000000080000000 0x8000000000000000 = 0x0000000000000001 ++selge1 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++selge1 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selge1 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selge1 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000001 ++selge1 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++selge1 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selge1 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selge1 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selge1 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selge1 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selge1 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge1 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge1 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge1 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selge1 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selge1 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selge1 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selge1 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge1 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selge1 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selge1 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge1 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge1 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge1 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge1 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge1 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge1 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selge1 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selge1 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selge1 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selge1 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selge1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge1 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selge1 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selge1 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selge1 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selge1 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge1 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selge1 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selge1 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge1 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge1 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge1 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge1 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge1 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selge1 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selge1 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selge1 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selge1 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selge1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge1 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selge1 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selge1 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selge1 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selge1 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge1 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selge1 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selge1 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge1 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge1 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge1 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge1 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selge1 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selge1 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selge1 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selge1 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selge1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge1 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selge1 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selge1 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selge1 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selge1 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge1 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selge1 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selge1 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge1 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge1 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge1 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge1 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++selge1 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000001 ++selge1 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000001 ++selge1 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selge1 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selge1 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selge1 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selge1 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selge1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge1 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selge1 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selge1 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selge1 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selge1 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge1 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selge1 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selge1 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge1 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge1 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge1 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge1 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selge2 === ++selge2 0x0000000000000000 0x0000000000000000 = 0x0000000000000002 ++selge2 0x0000000000000000 0x0000000000000001 = 0x0000000000000002 ++selge2 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selge2 0x0000000000000000 0x0000000000000003 = 0x0000000000000002 ++selge2 0x0000000000000000 0x000000000000000F = 0x0000000000000002 ++selge2 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selge2 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selge2 0x0000000000000000 0x000000000000007F = 0x0000000000000002 ++selge2 0x0000000000000000 0x0000000000000080 = 0x0000000000000002 ++selge2 0x0000000000000000 0x0000000000007FFF = 0x0000000000000002 ++selge2 0x0000000000000000 0x0000000000008000 = 0x0000000000000002 ++selge2 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000000 0x0000000080000000 = 0x0000000000000002 ++selge2 0x0000000000000000 0x8000000000000000 = 0x0000000000000002 ++selge2 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++selge2 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selge2 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selge2 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000002 ++selge2 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++selge2 0x0000000000000001 0x0000000000000000 = 0x0000000000000002 ++selge2 0x0000000000000001 0x0000000000000001 = 0x0000000000000002 ++selge2 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++selge2 0x0000000000000001 0x0000000000000003 = 0x0000000000000002 ++selge2 0x0000000000000001 0x000000000000000F = 0x0000000000000002 ++selge2 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selge2 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selge2 0x0000000000000001 0x000000000000007F = 0x0000000000000002 ++selge2 0x0000000000000001 0x0000000000000080 = 0x0000000000000002 ++selge2 0x0000000000000001 0x0000000000007FFF = 0x0000000000000002 ++selge2 0x0000000000000001 0x0000000000008000 = 0x0000000000000002 ++selge2 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000001 0x0000000080000000 = 0x0000000000000002 ++selge2 0x0000000000000001 0x8000000000000000 = 0x0000000000000002 ++selge2 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000002 ++selge2 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selge2 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selge2 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000002 ++selge2 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000002 ++selge2 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++selge2 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++selge2 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selge2 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++selge2 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++selge2 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selge2 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selge2 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++selge2 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++selge2 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++selge2 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++selge2 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++selge2 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++selge2 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++selge2 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selge2 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selge2 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++selge2 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++selge2 0x0000000000000003 0x0000000000000000 = 0x0000000000000002 ++selge2 0x0000000000000003 0x0000000000000001 = 0x0000000000000002 ++selge2 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++selge2 0x0000000000000003 0x0000000000000003 = 0x0000000000000002 ++selge2 0x0000000000000003 0x000000000000000F = 0x0000000000000002 ++selge2 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selge2 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selge2 0x0000000000000003 0x000000000000007F = 0x0000000000000002 ++selge2 0x0000000000000003 0x0000000000000080 = 0x0000000000000002 ++selge2 0x0000000000000003 0x0000000000007FFF = 0x0000000000000002 ++selge2 0x0000000000000003 0x0000000000008000 = 0x0000000000000002 ++selge2 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000003 0x0000000080000000 = 0x0000000000000002 ++selge2 0x0000000000000003 0x8000000000000000 = 0x0000000000000002 ++selge2 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000002 ++selge2 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selge2 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selge2 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000002 ++selge2 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000002 ++selge2 0x000000000000000F 0x0000000000000000 = 0x0000000000000002 ++selge2 0x000000000000000F 0x0000000000000001 = 0x0000000000000002 ++selge2 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++selge2 0x000000000000000F 0x0000000000000003 = 0x0000000000000002 ++selge2 0x000000000000000F 0x000000000000000F = 0x0000000000000002 ++selge2 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selge2 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selge2 0x000000000000000F 0x000000000000007F = 0x0000000000000002 ++selge2 0x000000000000000F 0x0000000000000080 = 0x0000000000000002 ++selge2 0x000000000000000F 0x0000000000007FFF = 0x0000000000000002 ++selge2 0x000000000000000F 0x0000000000008000 = 0x0000000000000002 ++selge2 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000002 ++selge2 0x000000000000000F 0x0000000080000000 = 0x0000000000000002 ++selge2 0x000000000000000F 0x8000000000000000 = 0x0000000000000002 ++selge2 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000002 ++selge2 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selge2 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selge2 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000002 ++selge2 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000002 ++selge2 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selge2 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selge2 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selge2 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selge2 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selge2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge2 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selge2 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selge2 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selge2 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selge2 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge2 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selge2 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selge2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge2 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge2 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge2 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge2 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selge2 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selge2 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selge2 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selge2 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selge2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge2 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selge2 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selge2 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selge2 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selge2 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge2 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selge2 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selge2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge2 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge2 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge2 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge2 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selge2 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selge2 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selge2 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selge2 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selge2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge2 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selge2 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selge2 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selge2 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selge2 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge2 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selge2 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selge2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge2 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge2 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge2 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge2 0x000000000000007F 0x0000000000000000 = 0x0000000000000002 ++selge2 0x000000000000007F 0x0000000000000001 = 0x0000000000000002 ++selge2 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++selge2 0x000000000000007F 0x0000000000000003 = 0x0000000000000002 ++selge2 0x000000000000007F 0x000000000000000F = 0x0000000000000002 ++selge2 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selge2 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selge2 0x000000000000007F 0x000000000000007F = 0x0000000000000002 ++selge2 0x000000000000007F 0x0000000000000080 = 0x0000000000000002 ++selge2 0x000000000000007F 0x0000000000007FFF = 0x0000000000000002 ++selge2 0x000000000000007F 0x0000000000008000 = 0x0000000000000002 ++selge2 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000002 ++selge2 0x000000000000007F 0x0000000080000000 = 0x0000000000000002 ++selge2 0x000000000000007F 0x8000000000000000 = 0x0000000000000002 ++selge2 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000002 ++selge2 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selge2 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selge2 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000002 ++selge2 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000002 ++selge2 0x0000000000000080 0x0000000000000000 = 0x0000000000000002 ++selge2 0x0000000000000080 0x0000000000000001 = 0x0000000000000002 ++selge2 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++selge2 0x0000000000000080 0x0000000000000003 = 0x0000000000000002 ++selge2 0x0000000000000080 0x000000000000000F = 0x0000000000000002 ++selge2 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selge2 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selge2 0x0000000000000080 0x000000000000007F = 0x0000000000000002 ++selge2 0x0000000000000080 0x0000000000000080 = 0x0000000000000002 ++selge2 0x0000000000000080 0x0000000000007FFF = 0x0000000000000002 ++selge2 0x0000000000000080 0x0000000000008000 = 0x0000000000000002 ++selge2 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000080 0x0000000080000000 = 0x0000000000000002 ++selge2 0x0000000000000080 0x8000000000000000 = 0x0000000000000002 ++selge2 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000002 ++selge2 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selge2 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selge2 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000002 ++selge2 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000002 ++selge2 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000002 ++selge2 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000002 ++selge2 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++selge2 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000002 ++selge2 0x0000000000007FFF 0x000000000000000F = 0x0000000000000002 ++selge2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selge2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selge2 0x0000000000007FFF 0x000000000000007F = 0x0000000000000002 ++selge2 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000002 ++selge2 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000002 ++selge2 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000002 ++selge2 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000002 ++selge2 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000002 ++selge2 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000002 ++selge2 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++selge2 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selge2 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selge2 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000002 ++selge2 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++selge2 0x0000000000008000 0x0000000000000000 = 0x0000000000000002 ++selge2 0x0000000000008000 0x0000000000000001 = 0x0000000000000002 ++selge2 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++selge2 0x0000000000008000 0x0000000000000003 = 0x0000000000000002 ++selge2 0x0000000000008000 0x000000000000000F = 0x0000000000000002 ++selge2 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selge2 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selge2 0x0000000000008000 0x000000000000007F = 0x0000000000000002 ++selge2 0x0000000000008000 0x0000000000000080 = 0x0000000000000002 ++selge2 0x0000000000008000 0x0000000000007FFF = 0x0000000000000002 ++selge2 0x0000000000008000 0x0000000000008000 = 0x0000000000000002 ++selge2 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000002 ++selge2 0x0000000000008000 0x0000000080000000 = 0x0000000000000002 ++selge2 0x0000000000008000 0x8000000000000000 = 0x0000000000000002 ++selge2 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000002 ++selge2 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selge2 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selge2 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000002 ++selge2 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000002 ++selge2 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++selge2 0x0000000080000000 0x0000000000000000 = 0x0000000000000002 ++selge2 0x0000000080000000 0x0000000000000001 = 0x0000000000000002 ++selge2 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++selge2 0x0000000080000000 0x0000000000000003 = 0x0000000000000002 ++selge2 0x0000000080000000 0x000000000000000F = 0x0000000000000002 ++selge2 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selge2 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selge2 0x0000000080000000 0x000000000000007F = 0x0000000000000002 ++selge2 0x0000000080000000 0x0000000000000080 = 0x0000000000000002 ++selge2 0x0000000080000000 0x0000000000007FFF = 0x0000000000000002 ++selge2 0x0000000080000000 0x0000000000008000 = 0x0000000000000002 ++selge2 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000002 ++selge2 0x0000000080000000 0x0000000080000000 = 0x0000000000000002 ++selge2 0x0000000080000000 0x8000000000000000 = 0x0000000000000002 ++selge2 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++selge2 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selge2 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selge2 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000002 ++selge2 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++selge2 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selge2 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selge2 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selge2 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selge2 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selge2 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge2 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge2 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge2 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selge2 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selge2 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selge2 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selge2 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge2 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selge2 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selge2 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge2 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge2 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge2 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge2 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge2 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge2 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selge2 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selge2 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selge2 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selge2 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selge2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge2 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selge2 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selge2 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selge2 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selge2 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge2 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selge2 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selge2 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge2 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge2 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge2 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge2 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge2 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selge2 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selge2 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selge2 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selge2 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selge2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge2 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selge2 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selge2 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selge2 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selge2 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge2 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selge2 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selge2 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge2 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge2 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge2 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge2 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selge2 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selge2 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selge2 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selge2 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selge2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge2 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selge2 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selge2 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selge2 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selge2 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge2 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selge2 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selge2 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge2 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge2 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge2 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge2 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000002 ++selge2 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000002 ++selge2 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000002 ++selge2 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selge2 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selge2 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selge2 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selge2 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selge2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge2 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selge2 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selge2 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selge2 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selge2 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge2 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selge2 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selge2 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge2 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge2 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge2 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge2 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selge3 === ++selge3 0x0000000000000000 0x0000000000000000 = 0x0000000000000003 ++selge3 0x0000000000000000 0x0000000000000001 = 0x0000000000000003 ++selge3 0x0000000000000000 0x0000000000000002 = 0x0000000000000003 ++selge3 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selge3 0x0000000000000000 0x000000000000000F = 0x0000000000000003 ++selge3 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selge3 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selge3 0x0000000000000000 0x000000000000007F = 0x0000000000000003 ++selge3 0x0000000000000000 0x0000000000000080 = 0x0000000000000003 ++selge3 0x0000000000000000 0x0000000000007FFF = 0x0000000000000003 ++selge3 0x0000000000000000 0x0000000000008000 = 0x0000000000000003 ++selge3 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000000 0x0000000080000000 = 0x0000000000000003 ++selge3 0x0000000000000000 0x8000000000000000 = 0x0000000000000003 ++selge3 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++selge3 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selge3 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selge3 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000003 ++selge3 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++selge3 0x0000000000000001 0x0000000000000000 = 0x0000000000000003 ++selge3 0x0000000000000001 0x0000000000000001 = 0x0000000000000003 ++selge3 0x0000000000000001 0x0000000000000002 = 0x0000000000000003 ++selge3 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++selge3 0x0000000000000001 0x000000000000000F = 0x0000000000000003 ++selge3 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selge3 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selge3 0x0000000000000001 0x000000000000007F = 0x0000000000000003 ++selge3 0x0000000000000001 0x0000000000000080 = 0x0000000000000003 ++selge3 0x0000000000000001 0x0000000000007FFF = 0x0000000000000003 ++selge3 0x0000000000000001 0x0000000000008000 = 0x0000000000000003 ++selge3 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000001 0x0000000080000000 = 0x0000000000000003 ++selge3 0x0000000000000001 0x8000000000000000 = 0x0000000000000003 ++selge3 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000003 ++selge3 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selge3 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selge3 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000003 ++selge3 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000003 ++selge3 0x0000000000000002 0x0000000000000000 = 0x0000000000000003 ++selge3 0x0000000000000002 0x0000000000000001 = 0x0000000000000003 ++selge3 0x0000000000000002 0x0000000000000002 = 0x0000000000000003 ++selge3 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++selge3 0x0000000000000002 0x000000000000000F = 0x0000000000000003 ++selge3 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selge3 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selge3 0x0000000000000002 0x000000000000007F = 0x0000000000000003 ++selge3 0x0000000000000002 0x0000000000000080 = 0x0000000000000003 ++selge3 0x0000000000000002 0x0000000000007FFF = 0x0000000000000003 ++selge3 0x0000000000000002 0x0000000000008000 = 0x0000000000000003 ++selge3 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000002 0x0000000080000000 = 0x0000000000000003 ++selge3 0x0000000000000002 0x8000000000000000 = 0x0000000000000003 ++selge3 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000003 ++selge3 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selge3 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selge3 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000003 ++selge3 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000003 ++selge3 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++selge3 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++selge3 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++selge3 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selge3 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++selge3 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selge3 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selge3 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++selge3 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++selge3 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++selge3 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++selge3 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++selge3 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++selge3 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++selge3 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selge3 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selge3 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++selge3 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++selge3 0x000000000000000F 0x0000000000000000 = 0x0000000000000003 ++selge3 0x000000000000000F 0x0000000000000001 = 0x0000000000000003 ++selge3 0x000000000000000F 0x0000000000000002 = 0x0000000000000003 ++selge3 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++selge3 0x000000000000000F 0x000000000000000F = 0x0000000000000003 ++selge3 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selge3 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selge3 0x000000000000000F 0x000000000000007F = 0x0000000000000003 ++selge3 0x000000000000000F 0x0000000000000080 = 0x0000000000000003 ++selge3 0x000000000000000F 0x0000000000007FFF = 0x0000000000000003 ++selge3 0x000000000000000F 0x0000000000008000 = 0x0000000000000003 ++selge3 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000003 ++selge3 0x000000000000000F 0x0000000080000000 = 0x0000000000000003 ++selge3 0x000000000000000F 0x8000000000000000 = 0x0000000000000003 ++selge3 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000003 ++selge3 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selge3 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selge3 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000003 ++selge3 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000003 ++selge3 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selge3 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selge3 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selge3 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selge3 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selge3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge3 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selge3 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selge3 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selge3 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selge3 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge3 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selge3 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selge3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge3 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge3 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge3 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge3 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selge3 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selge3 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selge3 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selge3 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selge3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge3 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selge3 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selge3 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selge3 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selge3 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge3 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selge3 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selge3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge3 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge3 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge3 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge3 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selge3 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selge3 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selge3 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selge3 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selge3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge3 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selge3 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selge3 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selge3 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selge3 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge3 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selge3 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selge3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge3 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge3 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge3 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge3 0x000000000000007F 0x0000000000000000 = 0x0000000000000003 ++selge3 0x000000000000007F 0x0000000000000001 = 0x0000000000000003 ++selge3 0x000000000000007F 0x0000000000000002 = 0x0000000000000003 ++selge3 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++selge3 0x000000000000007F 0x000000000000000F = 0x0000000000000003 ++selge3 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selge3 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selge3 0x000000000000007F 0x000000000000007F = 0x0000000000000003 ++selge3 0x000000000000007F 0x0000000000000080 = 0x0000000000000003 ++selge3 0x000000000000007F 0x0000000000007FFF = 0x0000000000000003 ++selge3 0x000000000000007F 0x0000000000008000 = 0x0000000000000003 ++selge3 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000003 ++selge3 0x000000000000007F 0x0000000080000000 = 0x0000000000000003 ++selge3 0x000000000000007F 0x8000000000000000 = 0x0000000000000003 ++selge3 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000003 ++selge3 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selge3 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selge3 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000003 ++selge3 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000003 ++selge3 0x0000000000000080 0x0000000000000000 = 0x0000000000000003 ++selge3 0x0000000000000080 0x0000000000000001 = 0x0000000000000003 ++selge3 0x0000000000000080 0x0000000000000002 = 0x0000000000000003 ++selge3 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++selge3 0x0000000000000080 0x000000000000000F = 0x0000000000000003 ++selge3 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selge3 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selge3 0x0000000000000080 0x000000000000007F = 0x0000000000000003 ++selge3 0x0000000000000080 0x0000000000000080 = 0x0000000000000003 ++selge3 0x0000000000000080 0x0000000000007FFF = 0x0000000000000003 ++selge3 0x0000000000000080 0x0000000000008000 = 0x0000000000000003 ++selge3 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000080 0x0000000080000000 = 0x0000000000000003 ++selge3 0x0000000000000080 0x8000000000000000 = 0x0000000000000003 ++selge3 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000003 ++selge3 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selge3 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selge3 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000003 ++selge3 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000003 ++selge3 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000003 ++selge3 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000003 ++selge3 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000003 ++selge3 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++selge3 0x0000000000007FFF 0x000000000000000F = 0x0000000000000003 ++selge3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selge3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selge3 0x0000000000007FFF 0x000000000000007F = 0x0000000000000003 ++selge3 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000003 ++selge3 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000003 ++selge3 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000003 ++selge3 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000003 ++selge3 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000003 ++selge3 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000003 ++selge3 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++selge3 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selge3 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selge3 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000003 ++selge3 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++selge3 0x0000000000008000 0x0000000000000000 = 0x0000000000000003 ++selge3 0x0000000000008000 0x0000000000000001 = 0x0000000000000003 ++selge3 0x0000000000008000 0x0000000000000002 = 0x0000000000000003 ++selge3 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++selge3 0x0000000000008000 0x000000000000000F = 0x0000000000000003 ++selge3 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selge3 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selge3 0x0000000000008000 0x000000000000007F = 0x0000000000000003 ++selge3 0x0000000000008000 0x0000000000000080 = 0x0000000000000003 ++selge3 0x0000000000008000 0x0000000000007FFF = 0x0000000000000003 ++selge3 0x0000000000008000 0x0000000000008000 = 0x0000000000000003 ++selge3 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000003 ++selge3 0x0000000000008000 0x0000000080000000 = 0x0000000000000003 ++selge3 0x0000000000008000 0x8000000000000000 = 0x0000000000000003 ++selge3 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000003 ++selge3 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selge3 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selge3 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000003 ++selge3 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000003 ++selge3 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++selge3 0x0000000080000000 0x0000000000000000 = 0x0000000000000003 ++selge3 0x0000000080000000 0x0000000000000001 = 0x0000000000000003 ++selge3 0x0000000080000000 0x0000000000000002 = 0x0000000000000003 ++selge3 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++selge3 0x0000000080000000 0x000000000000000F = 0x0000000000000003 ++selge3 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selge3 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selge3 0x0000000080000000 0x000000000000007F = 0x0000000000000003 ++selge3 0x0000000080000000 0x0000000000000080 = 0x0000000000000003 ++selge3 0x0000000080000000 0x0000000000007FFF = 0x0000000000000003 ++selge3 0x0000000080000000 0x0000000000008000 = 0x0000000000000003 ++selge3 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000003 ++selge3 0x0000000080000000 0x0000000080000000 = 0x0000000000000003 ++selge3 0x0000000080000000 0x8000000000000000 = 0x0000000000000003 ++selge3 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++selge3 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selge3 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selge3 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000003 ++selge3 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++selge3 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selge3 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selge3 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selge3 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selge3 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selge3 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge3 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge3 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge3 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selge3 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selge3 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selge3 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selge3 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge3 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selge3 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selge3 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge3 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge3 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge3 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge3 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge3 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge3 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selge3 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selge3 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selge3 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selge3 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selge3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge3 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selge3 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selge3 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selge3 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selge3 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge3 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selge3 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selge3 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge3 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge3 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge3 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge3 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge3 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selge3 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selge3 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selge3 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selge3 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selge3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge3 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selge3 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selge3 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selge3 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selge3 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge3 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selge3 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selge3 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge3 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge3 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge3 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge3 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selge3 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selge3 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selge3 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selge3 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selge3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge3 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selge3 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selge3 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selge3 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selge3 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge3 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selge3 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selge3 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge3 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge3 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge3 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge3 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000003 ++selge3 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000003 ++selge3 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000003 ++selge3 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selge3 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selge3 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selge3 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selge3 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selge3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge3 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selge3 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selge3 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selge3 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selge3 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge3 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selge3 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selge3 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge3 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge3 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge3 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge3 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selge15 === ++selge15 0x0000000000000000 0x0000000000000000 = 0x000000000000000F ++selge15 0x0000000000000000 0x0000000000000001 = 0x000000000000000F ++selge15 0x0000000000000000 0x0000000000000002 = 0x000000000000000F ++selge15 0x0000000000000000 0x0000000000000003 = 0x000000000000000F ++selge15 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selge15 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selge15 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selge15 0x0000000000000000 0x000000000000007F = 0x000000000000000F ++selge15 0x0000000000000000 0x0000000000000080 = 0x000000000000000F ++selge15 0x0000000000000000 0x0000000000007FFF = 0x000000000000000F ++selge15 0x0000000000000000 0x0000000000008000 = 0x000000000000000F ++selge15 0x0000000000000000 0x000000007FFFFFFF = 0x000000000000000F ++selge15 0x0000000000000000 0x0000000080000000 = 0x000000000000000F ++selge15 0x0000000000000000 0x8000000000000000 = 0x000000000000000F ++selge15 0x0000000000000000 0xFFFFFFFF80000000 = 0x000000000000000F ++selge15 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selge15 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selge15 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000000000000 0x123456789ABCDEF0 = 0x000000000000000F ++selge15 0x0000000000000000 0xF0DEBC9A78563412 = 0x000000000000000F ++selge15 0x0000000000000001 0x0000000000000000 = 0x000000000000000F ++selge15 0x0000000000000001 0x0000000000000001 = 0x000000000000000F ++selge15 0x0000000000000001 0x0000000000000002 = 0x000000000000000F ++selge15 0x0000000000000001 0x0000000000000003 = 0x000000000000000F ++selge15 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++selge15 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selge15 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selge15 0x0000000000000001 0x000000000000007F = 0x000000000000000F ++selge15 0x0000000000000001 0x0000000000000080 = 0x000000000000000F ++selge15 0x0000000000000001 0x0000000000007FFF = 0x000000000000000F ++selge15 0x0000000000000001 0x0000000000008000 = 0x000000000000000F ++selge15 0x0000000000000001 0x000000007FFFFFFF = 0x000000000000000F ++selge15 0x0000000000000001 0x0000000080000000 = 0x000000000000000F ++selge15 0x0000000000000001 0x8000000000000000 = 0x000000000000000F ++selge15 0x0000000000000001 0xFFFFFFFF80000000 = 0x000000000000000F ++selge15 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selge15 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selge15 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000000000001 0x123456789ABCDEF0 = 0x000000000000000F ++selge15 0x0000000000000001 0xF0DEBC9A78563412 = 0x000000000000000F ++selge15 0x0000000000000002 0x0000000000000000 = 0x000000000000000F ++selge15 0x0000000000000002 0x0000000000000001 = 0x000000000000000F ++selge15 0x0000000000000002 0x0000000000000002 = 0x000000000000000F ++selge15 0x0000000000000002 0x0000000000000003 = 0x000000000000000F ++selge15 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++selge15 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selge15 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selge15 0x0000000000000002 0x000000000000007F = 0x000000000000000F ++selge15 0x0000000000000002 0x0000000000000080 = 0x000000000000000F ++selge15 0x0000000000000002 0x0000000000007FFF = 0x000000000000000F ++selge15 0x0000000000000002 0x0000000000008000 = 0x000000000000000F ++selge15 0x0000000000000002 0x000000007FFFFFFF = 0x000000000000000F ++selge15 0x0000000000000002 0x0000000080000000 = 0x000000000000000F ++selge15 0x0000000000000002 0x8000000000000000 = 0x000000000000000F ++selge15 0x0000000000000002 0xFFFFFFFF80000000 = 0x000000000000000F ++selge15 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selge15 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selge15 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000000000002 0x123456789ABCDEF0 = 0x000000000000000F ++selge15 0x0000000000000002 0xF0DEBC9A78563412 = 0x000000000000000F ++selge15 0x0000000000000003 0x0000000000000000 = 0x000000000000000F ++selge15 0x0000000000000003 0x0000000000000001 = 0x000000000000000F ++selge15 0x0000000000000003 0x0000000000000002 = 0x000000000000000F ++selge15 0x0000000000000003 0x0000000000000003 = 0x000000000000000F ++selge15 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++selge15 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selge15 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selge15 0x0000000000000003 0x000000000000007F = 0x000000000000000F ++selge15 0x0000000000000003 0x0000000000000080 = 0x000000000000000F ++selge15 0x0000000000000003 0x0000000000007FFF = 0x000000000000000F ++selge15 0x0000000000000003 0x0000000000008000 = 0x000000000000000F ++selge15 0x0000000000000003 0x000000007FFFFFFF = 0x000000000000000F ++selge15 0x0000000000000003 0x0000000080000000 = 0x000000000000000F ++selge15 0x0000000000000003 0x8000000000000000 = 0x000000000000000F ++selge15 0x0000000000000003 0xFFFFFFFF80000000 = 0x000000000000000F ++selge15 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selge15 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selge15 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000000000003 0x123456789ABCDEF0 = 0x000000000000000F ++selge15 0x0000000000000003 0xF0DEBC9A78563412 = 0x000000000000000F ++selge15 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++selge15 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++selge15 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++selge15 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++selge15 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selge15 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selge15 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selge15 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++selge15 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++selge15 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++selge15 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++selge15 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++selge15 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++selge15 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++selge15 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++selge15 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selge15 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selge15 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++selge15 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++selge15 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selge15 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selge15 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selge15 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selge15 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selge15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge15 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selge15 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selge15 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selge15 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selge15 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge15 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selge15 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selge15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge15 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge15 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge15 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge15 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selge15 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selge15 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selge15 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selge15 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selge15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge15 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selge15 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selge15 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selge15 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selge15 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge15 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selge15 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selge15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge15 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge15 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge15 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge15 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selge15 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selge15 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selge15 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selge15 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selge15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge15 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selge15 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selge15 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selge15 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selge15 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge15 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selge15 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selge15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge15 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge15 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge15 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge15 0x000000000000007F 0x0000000000000000 = 0x000000000000000F ++selge15 0x000000000000007F 0x0000000000000001 = 0x000000000000000F ++selge15 0x000000000000007F 0x0000000000000002 = 0x000000000000000F ++selge15 0x000000000000007F 0x0000000000000003 = 0x000000000000000F ++selge15 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++selge15 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selge15 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selge15 0x000000000000007F 0x000000000000007F = 0x000000000000000F ++selge15 0x000000000000007F 0x0000000000000080 = 0x000000000000000F ++selge15 0x000000000000007F 0x0000000000007FFF = 0x000000000000000F ++selge15 0x000000000000007F 0x0000000000008000 = 0x000000000000000F ++selge15 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000000F ++selge15 0x000000000000007F 0x0000000080000000 = 0x000000000000000F ++selge15 0x000000000000007F 0x8000000000000000 = 0x000000000000000F ++selge15 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000000F ++selge15 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selge15 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selge15 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000000F ++selge15 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000000F ++selge15 0x0000000000000080 0x0000000000000000 = 0x000000000000000F ++selge15 0x0000000000000080 0x0000000000000001 = 0x000000000000000F ++selge15 0x0000000000000080 0x0000000000000002 = 0x000000000000000F ++selge15 0x0000000000000080 0x0000000000000003 = 0x000000000000000F ++selge15 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++selge15 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selge15 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selge15 0x0000000000000080 0x000000000000007F = 0x000000000000000F ++selge15 0x0000000000000080 0x0000000000000080 = 0x000000000000000F ++selge15 0x0000000000000080 0x0000000000007FFF = 0x000000000000000F ++selge15 0x0000000000000080 0x0000000000008000 = 0x000000000000000F ++selge15 0x0000000000000080 0x000000007FFFFFFF = 0x000000000000000F ++selge15 0x0000000000000080 0x0000000080000000 = 0x000000000000000F ++selge15 0x0000000000000080 0x8000000000000000 = 0x000000000000000F ++selge15 0x0000000000000080 0xFFFFFFFF80000000 = 0x000000000000000F ++selge15 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selge15 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selge15 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000000000080 0x123456789ABCDEF0 = 0x000000000000000F ++selge15 0x0000000000000080 0xF0DEBC9A78563412 = 0x000000000000000F ++selge15 0x0000000000007FFF 0x0000000000000000 = 0x000000000000000F ++selge15 0x0000000000007FFF 0x0000000000000001 = 0x000000000000000F ++selge15 0x0000000000007FFF 0x0000000000000002 = 0x000000000000000F ++selge15 0x0000000000007FFF 0x0000000000000003 = 0x000000000000000F ++selge15 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++selge15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selge15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selge15 0x0000000000007FFF 0x000000000000007F = 0x000000000000000F ++selge15 0x0000000000007FFF 0x0000000000000080 = 0x000000000000000F ++selge15 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000000F ++selge15 0x0000000000007FFF 0x0000000000008000 = 0x000000000000000F ++selge15 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000000000000F ++selge15 0x0000000000007FFF 0x0000000080000000 = 0x000000000000000F ++selge15 0x0000000000007FFF 0x8000000000000000 = 0x000000000000000F ++selge15 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000000000000F ++selge15 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selge15 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selge15 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000000000000F ++selge15 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000000000000F ++selge15 0x0000000000008000 0x0000000000000000 = 0x000000000000000F ++selge15 0x0000000000008000 0x0000000000000001 = 0x000000000000000F ++selge15 0x0000000000008000 0x0000000000000002 = 0x000000000000000F ++selge15 0x0000000000008000 0x0000000000000003 = 0x000000000000000F ++selge15 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++selge15 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selge15 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selge15 0x0000000000008000 0x000000000000007F = 0x000000000000000F ++selge15 0x0000000000008000 0x0000000000000080 = 0x000000000000000F ++selge15 0x0000000000008000 0x0000000000007FFF = 0x000000000000000F ++selge15 0x0000000000008000 0x0000000000008000 = 0x000000000000000F ++selge15 0x0000000000008000 0x000000007FFFFFFF = 0x000000000000000F ++selge15 0x0000000000008000 0x0000000080000000 = 0x000000000000000F ++selge15 0x0000000000008000 0x8000000000000000 = 0x000000000000000F ++selge15 0x0000000000008000 0xFFFFFFFF80000000 = 0x000000000000000F ++selge15 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selge15 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selge15 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000000008000 0x123456789ABCDEF0 = 0x000000000000000F ++selge15 0x0000000000008000 0xF0DEBC9A78563412 = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0x0000000000000000 = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0x0000000000000001 = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0x0000000000000002 = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0x0000000080000000 = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0x8000000000000000 = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000000000000F ++selge15 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000000000000F ++selge15 0x0000000080000000 0x0000000000000000 = 0x000000000000000F ++selge15 0x0000000080000000 0x0000000000000001 = 0x000000000000000F ++selge15 0x0000000080000000 0x0000000000000002 = 0x000000000000000F ++selge15 0x0000000080000000 0x0000000000000003 = 0x000000000000000F ++selge15 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++selge15 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selge15 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selge15 0x0000000080000000 0x000000000000007F = 0x000000000000000F ++selge15 0x0000000080000000 0x0000000000000080 = 0x000000000000000F ++selge15 0x0000000080000000 0x0000000000007FFF = 0x000000000000000F ++selge15 0x0000000080000000 0x0000000000008000 = 0x000000000000000F ++selge15 0x0000000080000000 0x000000007FFFFFFF = 0x000000000000000F ++selge15 0x0000000080000000 0x0000000080000000 = 0x000000000000000F ++selge15 0x0000000080000000 0x8000000000000000 = 0x000000000000000F ++selge15 0x0000000080000000 0xFFFFFFFF80000000 = 0x000000000000000F ++selge15 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selge15 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selge15 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x0000000080000000 0x123456789ABCDEF0 = 0x000000000000000F ++selge15 0x0000000080000000 0xF0DEBC9A78563412 = 0x000000000000000F ++selge15 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selge15 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selge15 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selge15 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selge15 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selge15 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge15 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge15 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge15 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selge15 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selge15 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selge15 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selge15 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge15 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selge15 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selge15 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge15 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge15 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge15 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge15 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge15 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge15 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selge15 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selge15 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selge15 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selge15 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selge15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge15 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selge15 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selge15 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selge15 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selge15 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge15 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selge15 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selge15 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge15 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge15 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge15 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge15 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge15 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selge15 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selge15 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selge15 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selge15 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selge15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge15 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selge15 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selge15 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selge15 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selge15 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge15 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selge15 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selge15 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge15 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge15 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge15 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge15 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selge15 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selge15 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selge15 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selge15 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selge15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge15 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selge15 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selge15 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selge15 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selge15 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge15 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selge15 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selge15 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge15 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge15 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge15 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge15 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000000F ++selge15 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0x0000000000000000 = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0x0000000000000001 = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0x0000000000000002 = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0x0000000000000003 = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0x0000000000000080 = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0x0000000000008000 = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0x0000000080000000 = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0x8000000000000000 = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000000000000F ++selge15 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000000000000F ++selge15 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selge15 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selge15 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selge15 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selge15 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selge15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge15 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selge15 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selge15 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selge15 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selge15 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge15 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selge15 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selge15 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge15 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge15 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge15 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge15 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selge127 === ++selge127 0x0000000000000000 0x0000000000000000 = 0x000000000000007F ++selge127 0x0000000000000000 0x0000000000000001 = 0x000000000000007F ++selge127 0x0000000000000000 0x0000000000000002 = 0x000000000000007F ++selge127 0x0000000000000000 0x0000000000000003 = 0x000000000000007F ++selge127 0x0000000000000000 0x000000000000000F = 0x000000000000007F ++selge127 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selge127 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selge127 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selge127 0x0000000000000000 0x0000000000000080 = 0x000000000000007F ++selge127 0x0000000000000000 0x0000000000007FFF = 0x000000000000007F ++selge127 0x0000000000000000 0x0000000000008000 = 0x000000000000007F ++selge127 0x0000000000000000 0x000000007FFFFFFF = 0x000000000000007F ++selge127 0x0000000000000000 0x0000000080000000 = 0x000000000000007F ++selge127 0x0000000000000000 0x8000000000000000 = 0x000000000000007F ++selge127 0x0000000000000000 0xFFFFFFFF80000000 = 0x000000000000007F ++selge127 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selge127 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selge127 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000000000000 0x123456789ABCDEF0 = 0x000000000000007F ++selge127 0x0000000000000000 0xF0DEBC9A78563412 = 0x000000000000007F ++selge127 0x0000000000000001 0x0000000000000000 = 0x000000000000007F ++selge127 0x0000000000000001 0x0000000000000001 = 0x000000000000007F ++selge127 0x0000000000000001 0x0000000000000002 = 0x000000000000007F ++selge127 0x0000000000000001 0x0000000000000003 = 0x000000000000007F ++selge127 0x0000000000000001 0x000000000000000F = 0x000000000000007F ++selge127 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selge127 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selge127 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++selge127 0x0000000000000001 0x0000000000000080 = 0x000000000000007F ++selge127 0x0000000000000001 0x0000000000007FFF = 0x000000000000007F ++selge127 0x0000000000000001 0x0000000000008000 = 0x000000000000007F ++selge127 0x0000000000000001 0x000000007FFFFFFF = 0x000000000000007F ++selge127 0x0000000000000001 0x0000000080000000 = 0x000000000000007F ++selge127 0x0000000000000001 0x8000000000000000 = 0x000000000000007F ++selge127 0x0000000000000001 0xFFFFFFFF80000000 = 0x000000000000007F ++selge127 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selge127 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selge127 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000000000001 0x123456789ABCDEF0 = 0x000000000000007F ++selge127 0x0000000000000001 0xF0DEBC9A78563412 = 0x000000000000007F ++selge127 0x0000000000000002 0x0000000000000000 = 0x000000000000007F ++selge127 0x0000000000000002 0x0000000000000001 = 0x000000000000007F ++selge127 0x0000000000000002 0x0000000000000002 = 0x000000000000007F ++selge127 0x0000000000000002 0x0000000000000003 = 0x000000000000007F ++selge127 0x0000000000000002 0x000000000000000F = 0x000000000000007F ++selge127 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selge127 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selge127 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++selge127 0x0000000000000002 0x0000000000000080 = 0x000000000000007F ++selge127 0x0000000000000002 0x0000000000007FFF = 0x000000000000007F ++selge127 0x0000000000000002 0x0000000000008000 = 0x000000000000007F ++selge127 0x0000000000000002 0x000000007FFFFFFF = 0x000000000000007F ++selge127 0x0000000000000002 0x0000000080000000 = 0x000000000000007F ++selge127 0x0000000000000002 0x8000000000000000 = 0x000000000000007F ++selge127 0x0000000000000002 0xFFFFFFFF80000000 = 0x000000000000007F ++selge127 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selge127 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selge127 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000000000002 0x123456789ABCDEF0 = 0x000000000000007F ++selge127 0x0000000000000002 0xF0DEBC9A78563412 = 0x000000000000007F ++selge127 0x0000000000000003 0x0000000000000000 = 0x000000000000007F ++selge127 0x0000000000000003 0x0000000000000001 = 0x000000000000007F ++selge127 0x0000000000000003 0x0000000000000002 = 0x000000000000007F ++selge127 0x0000000000000003 0x0000000000000003 = 0x000000000000007F ++selge127 0x0000000000000003 0x000000000000000F = 0x000000000000007F ++selge127 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selge127 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selge127 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++selge127 0x0000000000000003 0x0000000000000080 = 0x000000000000007F ++selge127 0x0000000000000003 0x0000000000007FFF = 0x000000000000007F ++selge127 0x0000000000000003 0x0000000000008000 = 0x000000000000007F ++selge127 0x0000000000000003 0x000000007FFFFFFF = 0x000000000000007F ++selge127 0x0000000000000003 0x0000000080000000 = 0x000000000000007F ++selge127 0x0000000000000003 0x8000000000000000 = 0x000000000000007F ++selge127 0x0000000000000003 0xFFFFFFFF80000000 = 0x000000000000007F ++selge127 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selge127 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selge127 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000000000003 0x123456789ABCDEF0 = 0x000000000000007F ++selge127 0x0000000000000003 0xF0DEBC9A78563412 = 0x000000000000007F ++selge127 0x000000000000000F 0x0000000000000000 = 0x000000000000007F ++selge127 0x000000000000000F 0x0000000000000001 = 0x000000000000007F ++selge127 0x000000000000000F 0x0000000000000002 = 0x000000000000007F ++selge127 0x000000000000000F 0x0000000000000003 = 0x000000000000007F ++selge127 0x000000000000000F 0x000000000000000F = 0x000000000000007F ++selge127 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selge127 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selge127 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++selge127 0x000000000000000F 0x0000000000000080 = 0x000000000000007F ++selge127 0x000000000000000F 0x0000000000007FFF = 0x000000000000007F ++selge127 0x000000000000000F 0x0000000000008000 = 0x000000000000007F ++selge127 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000007F ++selge127 0x000000000000000F 0x0000000080000000 = 0x000000000000007F ++selge127 0x000000000000000F 0x8000000000000000 = 0x000000000000007F ++selge127 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000007F ++selge127 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selge127 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selge127 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000007F ++selge127 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000007F ++selge127 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selge127 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selge127 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selge127 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selge127 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selge127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge127 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selge127 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selge127 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selge127 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selge127 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge127 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selge127 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selge127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge127 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge127 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge127 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge127 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selge127 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selge127 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selge127 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selge127 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selge127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge127 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selge127 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selge127 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selge127 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selge127 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge127 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selge127 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selge127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge127 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge127 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge127 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge127 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selge127 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selge127 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selge127 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selge127 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selge127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge127 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selge127 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selge127 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selge127 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selge127 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge127 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selge127 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selge127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge127 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge127 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge127 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge127 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++selge127 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++selge127 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++selge127 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++selge127 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++selge127 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selge127 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selge127 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selge127 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++selge127 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++selge127 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++selge127 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++selge127 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++selge127 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++selge127 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++selge127 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selge127 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selge127 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++selge127 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++selge127 0x0000000000000080 0x0000000000000000 = 0x000000000000007F ++selge127 0x0000000000000080 0x0000000000000001 = 0x000000000000007F ++selge127 0x0000000000000080 0x0000000000000002 = 0x000000000000007F ++selge127 0x0000000000000080 0x0000000000000003 = 0x000000000000007F ++selge127 0x0000000000000080 0x000000000000000F = 0x000000000000007F ++selge127 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selge127 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selge127 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++selge127 0x0000000000000080 0x0000000000000080 = 0x000000000000007F ++selge127 0x0000000000000080 0x0000000000007FFF = 0x000000000000007F ++selge127 0x0000000000000080 0x0000000000008000 = 0x000000000000007F ++selge127 0x0000000000000080 0x000000007FFFFFFF = 0x000000000000007F ++selge127 0x0000000000000080 0x0000000080000000 = 0x000000000000007F ++selge127 0x0000000000000080 0x8000000000000000 = 0x000000000000007F ++selge127 0x0000000000000080 0xFFFFFFFF80000000 = 0x000000000000007F ++selge127 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selge127 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selge127 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000000000080 0x123456789ABCDEF0 = 0x000000000000007F ++selge127 0x0000000000000080 0xF0DEBC9A78563412 = 0x000000000000007F ++selge127 0x0000000000007FFF 0x0000000000000000 = 0x000000000000007F ++selge127 0x0000000000007FFF 0x0000000000000001 = 0x000000000000007F ++selge127 0x0000000000007FFF 0x0000000000000002 = 0x000000000000007F ++selge127 0x0000000000007FFF 0x0000000000000003 = 0x000000000000007F ++selge127 0x0000000000007FFF 0x000000000000000F = 0x000000000000007F ++selge127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selge127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selge127 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++selge127 0x0000000000007FFF 0x0000000000000080 = 0x000000000000007F ++selge127 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000007F ++selge127 0x0000000000007FFF 0x0000000000008000 = 0x000000000000007F ++selge127 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000000000007F ++selge127 0x0000000000007FFF 0x0000000080000000 = 0x000000000000007F ++selge127 0x0000000000007FFF 0x8000000000000000 = 0x000000000000007F ++selge127 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000000000007F ++selge127 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selge127 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selge127 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000000000007F ++selge127 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000000000007F ++selge127 0x0000000000008000 0x0000000000000000 = 0x000000000000007F ++selge127 0x0000000000008000 0x0000000000000001 = 0x000000000000007F ++selge127 0x0000000000008000 0x0000000000000002 = 0x000000000000007F ++selge127 0x0000000000008000 0x0000000000000003 = 0x000000000000007F ++selge127 0x0000000000008000 0x000000000000000F = 0x000000000000007F ++selge127 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selge127 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selge127 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++selge127 0x0000000000008000 0x0000000000000080 = 0x000000000000007F ++selge127 0x0000000000008000 0x0000000000007FFF = 0x000000000000007F ++selge127 0x0000000000008000 0x0000000000008000 = 0x000000000000007F ++selge127 0x0000000000008000 0x000000007FFFFFFF = 0x000000000000007F ++selge127 0x0000000000008000 0x0000000080000000 = 0x000000000000007F ++selge127 0x0000000000008000 0x8000000000000000 = 0x000000000000007F ++selge127 0x0000000000008000 0xFFFFFFFF80000000 = 0x000000000000007F ++selge127 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selge127 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selge127 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000000008000 0x123456789ABCDEF0 = 0x000000000000007F ++selge127 0x0000000000008000 0xF0DEBC9A78563412 = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0x0000000000000000 = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0x0000000000000001 = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0x0000000000000002 = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0x0000000080000000 = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0x8000000000000000 = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000000000007F ++selge127 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000000000007F ++selge127 0x0000000080000000 0x0000000000000000 = 0x000000000000007F ++selge127 0x0000000080000000 0x0000000000000001 = 0x000000000000007F ++selge127 0x0000000080000000 0x0000000000000002 = 0x000000000000007F ++selge127 0x0000000080000000 0x0000000000000003 = 0x000000000000007F ++selge127 0x0000000080000000 0x000000000000000F = 0x000000000000007F ++selge127 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selge127 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selge127 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++selge127 0x0000000080000000 0x0000000000000080 = 0x000000000000007F ++selge127 0x0000000080000000 0x0000000000007FFF = 0x000000000000007F ++selge127 0x0000000080000000 0x0000000000008000 = 0x000000000000007F ++selge127 0x0000000080000000 0x000000007FFFFFFF = 0x000000000000007F ++selge127 0x0000000080000000 0x0000000080000000 = 0x000000000000007F ++selge127 0x0000000080000000 0x8000000000000000 = 0x000000000000007F ++selge127 0x0000000080000000 0xFFFFFFFF80000000 = 0x000000000000007F ++selge127 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selge127 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selge127 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x0000000080000000 0x123456789ABCDEF0 = 0x000000000000007F ++selge127 0x0000000080000000 0xF0DEBC9A78563412 = 0x000000000000007F ++selge127 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selge127 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selge127 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selge127 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selge127 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selge127 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge127 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge127 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge127 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selge127 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selge127 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selge127 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selge127 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge127 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selge127 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selge127 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge127 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge127 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge127 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge127 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge127 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge127 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selge127 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selge127 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selge127 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selge127 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selge127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge127 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selge127 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selge127 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selge127 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selge127 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge127 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selge127 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selge127 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge127 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge127 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge127 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge127 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge127 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selge127 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selge127 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selge127 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selge127 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selge127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge127 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selge127 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selge127 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selge127 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selge127 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge127 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selge127 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selge127 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge127 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge127 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge127 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge127 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selge127 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selge127 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selge127 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selge127 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selge127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge127 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selge127 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selge127 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selge127 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selge127 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge127 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selge127 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selge127 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge127 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge127 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge127 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge127 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000007F ++selge127 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0x0000000000000000 = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0x0000000000000001 = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0x0000000000000002 = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0x0000000000000003 = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0x0000000000000080 = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0x0000000000008000 = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0x0000000080000000 = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0x8000000000000000 = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000000000007F ++selge127 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000000000007F ++selge127 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selge127 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selge127 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selge127 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selge127 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selge127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge127 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selge127 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selge127 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selge127 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selge127 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge127 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selge127 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selge127 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge127 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge127 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge127 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge127 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selge128 === ++selge128 0x0000000000000000 0x0000000000000000 = 0x0000000000000080 ++selge128 0x0000000000000000 0x0000000000000001 = 0x0000000000000080 ++selge128 0x0000000000000000 0x0000000000000002 = 0x0000000000000080 ++selge128 0x0000000000000000 0x0000000000000003 = 0x0000000000000080 ++selge128 0x0000000000000000 0x000000000000000F = 0x0000000000000080 ++selge128 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selge128 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selge128 0x0000000000000000 0x000000000000007F = 0x0000000000000080 ++selge128 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selge128 0x0000000000000000 0x0000000000007FFF = 0x0000000000000080 ++selge128 0x0000000000000000 0x0000000000008000 = 0x0000000000000080 ++selge128 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000000 0x0000000080000000 = 0x0000000000000080 ++selge128 0x0000000000000000 0x8000000000000000 = 0x0000000000000080 ++selge128 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++selge128 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selge128 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selge128 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000080 ++selge128 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++selge128 0x0000000000000001 0x0000000000000000 = 0x0000000000000080 ++selge128 0x0000000000000001 0x0000000000000001 = 0x0000000000000080 ++selge128 0x0000000000000001 0x0000000000000002 = 0x0000000000000080 ++selge128 0x0000000000000001 0x0000000000000003 = 0x0000000000000080 ++selge128 0x0000000000000001 0x000000000000000F = 0x0000000000000080 ++selge128 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selge128 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selge128 0x0000000000000001 0x000000000000007F = 0x0000000000000080 ++selge128 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++selge128 0x0000000000000001 0x0000000000007FFF = 0x0000000000000080 ++selge128 0x0000000000000001 0x0000000000008000 = 0x0000000000000080 ++selge128 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000001 0x0000000080000000 = 0x0000000000000080 ++selge128 0x0000000000000001 0x8000000000000000 = 0x0000000000000080 ++selge128 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000080 ++selge128 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selge128 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selge128 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000080 ++selge128 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000080 ++selge128 0x0000000000000002 0x0000000000000000 = 0x0000000000000080 ++selge128 0x0000000000000002 0x0000000000000001 = 0x0000000000000080 ++selge128 0x0000000000000002 0x0000000000000002 = 0x0000000000000080 ++selge128 0x0000000000000002 0x0000000000000003 = 0x0000000000000080 ++selge128 0x0000000000000002 0x000000000000000F = 0x0000000000000080 ++selge128 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selge128 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selge128 0x0000000000000002 0x000000000000007F = 0x0000000000000080 ++selge128 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++selge128 0x0000000000000002 0x0000000000007FFF = 0x0000000000000080 ++selge128 0x0000000000000002 0x0000000000008000 = 0x0000000000000080 ++selge128 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000002 0x0000000080000000 = 0x0000000000000080 ++selge128 0x0000000000000002 0x8000000000000000 = 0x0000000000000080 ++selge128 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000080 ++selge128 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selge128 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selge128 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000080 ++selge128 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000080 ++selge128 0x0000000000000003 0x0000000000000000 = 0x0000000000000080 ++selge128 0x0000000000000003 0x0000000000000001 = 0x0000000000000080 ++selge128 0x0000000000000003 0x0000000000000002 = 0x0000000000000080 ++selge128 0x0000000000000003 0x0000000000000003 = 0x0000000000000080 ++selge128 0x0000000000000003 0x000000000000000F = 0x0000000000000080 ++selge128 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selge128 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selge128 0x0000000000000003 0x000000000000007F = 0x0000000000000080 ++selge128 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++selge128 0x0000000000000003 0x0000000000007FFF = 0x0000000000000080 ++selge128 0x0000000000000003 0x0000000000008000 = 0x0000000000000080 ++selge128 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000003 0x0000000080000000 = 0x0000000000000080 ++selge128 0x0000000000000003 0x8000000000000000 = 0x0000000000000080 ++selge128 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000080 ++selge128 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selge128 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selge128 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000080 ++selge128 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000080 ++selge128 0x000000000000000F 0x0000000000000000 = 0x0000000000000080 ++selge128 0x000000000000000F 0x0000000000000001 = 0x0000000000000080 ++selge128 0x000000000000000F 0x0000000000000002 = 0x0000000000000080 ++selge128 0x000000000000000F 0x0000000000000003 = 0x0000000000000080 ++selge128 0x000000000000000F 0x000000000000000F = 0x0000000000000080 ++selge128 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selge128 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selge128 0x000000000000000F 0x000000000000007F = 0x0000000000000080 ++selge128 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++selge128 0x000000000000000F 0x0000000000007FFF = 0x0000000000000080 ++selge128 0x000000000000000F 0x0000000000008000 = 0x0000000000000080 ++selge128 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000080 ++selge128 0x000000000000000F 0x0000000080000000 = 0x0000000000000080 ++selge128 0x000000000000000F 0x8000000000000000 = 0x0000000000000080 ++selge128 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000080 ++selge128 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selge128 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selge128 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000080 ++selge128 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000080 ++selge128 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selge128 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selge128 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selge128 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selge128 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selge128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge128 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selge128 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selge128 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selge128 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selge128 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge128 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selge128 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selge128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge128 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge128 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge128 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge128 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selge128 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selge128 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selge128 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selge128 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selge128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge128 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selge128 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selge128 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selge128 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selge128 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge128 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selge128 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selge128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge128 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge128 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge128 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge128 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selge128 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selge128 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selge128 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selge128 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selge128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge128 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selge128 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selge128 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selge128 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selge128 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge128 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selge128 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selge128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge128 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge128 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge128 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge128 0x000000000000007F 0x0000000000000000 = 0x0000000000000080 ++selge128 0x000000000000007F 0x0000000000000001 = 0x0000000000000080 ++selge128 0x000000000000007F 0x0000000000000002 = 0x0000000000000080 ++selge128 0x000000000000007F 0x0000000000000003 = 0x0000000000000080 ++selge128 0x000000000000007F 0x000000000000000F = 0x0000000000000080 ++selge128 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selge128 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selge128 0x000000000000007F 0x000000000000007F = 0x0000000000000080 ++selge128 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++selge128 0x000000000000007F 0x0000000000007FFF = 0x0000000000000080 ++selge128 0x000000000000007F 0x0000000000008000 = 0x0000000000000080 ++selge128 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000080 ++selge128 0x000000000000007F 0x0000000080000000 = 0x0000000000000080 ++selge128 0x000000000000007F 0x8000000000000000 = 0x0000000000000080 ++selge128 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000080 ++selge128 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selge128 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selge128 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000080 ++selge128 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000080 ++selge128 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++selge128 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++selge128 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++selge128 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++selge128 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++selge128 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selge128 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selge128 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++selge128 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selge128 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++selge128 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++selge128 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++selge128 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++selge128 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++selge128 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selge128 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selge128 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++selge128 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++selge128 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000080 ++selge128 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000080 ++selge128 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000080 ++selge128 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000080 ++selge128 0x0000000000007FFF 0x000000000000000F = 0x0000000000000080 ++selge128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selge128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selge128 0x0000000000007FFF 0x000000000000007F = 0x0000000000000080 ++selge128 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++selge128 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000080 ++selge128 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000080 ++selge128 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000080 ++selge128 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000080 ++selge128 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000080 ++selge128 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++selge128 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selge128 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selge128 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000080 ++selge128 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++selge128 0x0000000000008000 0x0000000000000000 = 0x0000000000000080 ++selge128 0x0000000000008000 0x0000000000000001 = 0x0000000000000080 ++selge128 0x0000000000008000 0x0000000000000002 = 0x0000000000000080 ++selge128 0x0000000000008000 0x0000000000000003 = 0x0000000000000080 ++selge128 0x0000000000008000 0x000000000000000F = 0x0000000000000080 ++selge128 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selge128 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selge128 0x0000000000008000 0x000000000000007F = 0x0000000000000080 ++selge128 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++selge128 0x0000000000008000 0x0000000000007FFF = 0x0000000000000080 ++selge128 0x0000000000008000 0x0000000000008000 = 0x0000000000000080 ++selge128 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000080 ++selge128 0x0000000000008000 0x0000000080000000 = 0x0000000000000080 ++selge128 0x0000000000008000 0x8000000000000000 = 0x0000000000000080 ++selge128 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000080 ++selge128 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selge128 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selge128 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000080 ++selge128 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000080 ++selge128 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++selge128 0x0000000080000000 0x0000000000000000 = 0x0000000000000080 ++selge128 0x0000000080000000 0x0000000000000001 = 0x0000000000000080 ++selge128 0x0000000080000000 0x0000000000000002 = 0x0000000000000080 ++selge128 0x0000000080000000 0x0000000000000003 = 0x0000000000000080 ++selge128 0x0000000080000000 0x000000000000000F = 0x0000000000000080 ++selge128 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selge128 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selge128 0x0000000080000000 0x000000000000007F = 0x0000000000000080 ++selge128 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++selge128 0x0000000080000000 0x0000000000007FFF = 0x0000000000000080 ++selge128 0x0000000080000000 0x0000000000008000 = 0x0000000000000080 ++selge128 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000080 ++selge128 0x0000000080000000 0x0000000080000000 = 0x0000000000000080 ++selge128 0x0000000080000000 0x8000000000000000 = 0x0000000000000080 ++selge128 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++selge128 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selge128 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selge128 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000080 ++selge128 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++selge128 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selge128 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selge128 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selge128 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selge128 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selge128 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge128 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge128 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge128 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selge128 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selge128 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selge128 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selge128 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge128 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selge128 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selge128 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge128 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge128 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge128 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge128 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge128 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge128 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selge128 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selge128 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selge128 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selge128 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selge128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge128 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selge128 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selge128 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selge128 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selge128 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge128 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selge128 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selge128 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge128 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge128 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge128 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge128 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge128 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selge128 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selge128 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selge128 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selge128 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selge128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge128 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selge128 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selge128 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selge128 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selge128 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge128 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selge128 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selge128 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge128 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge128 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge128 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge128 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selge128 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selge128 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selge128 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selge128 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selge128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge128 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selge128 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selge128 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selge128 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selge128 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge128 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selge128 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selge128 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge128 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge128 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge128 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge128 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000080 ++selge128 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000080 ++selge128 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000080 ++selge128 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selge128 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selge128 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selge128 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selge128 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selge128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge128 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selge128 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selge128 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selge128 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selge128 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge128 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selge128 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selge128 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge128 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge128 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge128 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge128 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selge255 === ++selge255 0x0000000000000000 0x0000000000000000 = 0x00000000000000FF ++selge255 0x0000000000000000 0x0000000000000001 = 0x00000000000000FF ++selge255 0x0000000000000000 0x0000000000000002 = 0x00000000000000FF ++selge255 0x0000000000000000 0x0000000000000003 = 0x00000000000000FF ++selge255 0x0000000000000000 0x000000000000000F = 0x00000000000000FF ++selge255 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selge255 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selge255 0x0000000000000000 0x000000000000007F = 0x00000000000000FF ++selge255 0x0000000000000000 0x0000000000000080 = 0x00000000000000FF ++selge255 0x0000000000000000 0x0000000000007FFF = 0x00000000000000FF ++selge255 0x0000000000000000 0x0000000000008000 = 0x00000000000000FF ++selge255 0x0000000000000000 0x000000007FFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000000 0x0000000080000000 = 0x00000000000000FF ++selge255 0x0000000000000000 0x8000000000000000 = 0x00000000000000FF ++selge255 0x0000000000000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++selge255 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selge255 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selge255 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000000 0x123456789ABCDEF0 = 0x00000000000000FF ++selge255 0x0000000000000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++selge255 0x0000000000000001 0x0000000000000000 = 0x00000000000000FF ++selge255 0x0000000000000001 0x0000000000000001 = 0x00000000000000FF ++selge255 0x0000000000000001 0x0000000000000002 = 0x00000000000000FF ++selge255 0x0000000000000001 0x0000000000000003 = 0x00000000000000FF ++selge255 0x0000000000000001 0x000000000000000F = 0x00000000000000FF ++selge255 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selge255 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selge255 0x0000000000000001 0x000000000000007F = 0x00000000000000FF ++selge255 0x0000000000000001 0x0000000000000080 = 0x00000000000000FF ++selge255 0x0000000000000001 0x0000000000007FFF = 0x00000000000000FF ++selge255 0x0000000000000001 0x0000000000008000 = 0x00000000000000FF ++selge255 0x0000000000000001 0x000000007FFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000001 0x0000000080000000 = 0x00000000000000FF ++selge255 0x0000000000000001 0x8000000000000000 = 0x00000000000000FF ++selge255 0x0000000000000001 0xFFFFFFFF80000000 = 0x00000000000000FF ++selge255 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selge255 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selge255 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000001 0x123456789ABCDEF0 = 0x00000000000000FF ++selge255 0x0000000000000001 0xF0DEBC9A78563412 = 0x00000000000000FF ++selge255 0x0000000000000002 0x0000000000000000 = 0x00000000000000FF ++selge255 0x0000000000000002 0x0000000000000001 = 0x00000000000000FF ++selge255 0x0000000000000002 0x0000000000000002 = 0x00000000000000FF ++selge255 0x0000000000000002 0x0000000000000003 = 0x00000000000000FF ++selge255 0x0000000000000002 0x000000000000000F = 0x00000000000000FF ++selge255 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selge255 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selge255 0x0000000000000002 0x000000000000007F = 0x00000000000000FF ++selge255 0x0000000000000002 0x0000000000000080 = 0x00000000000000FF ++selge255 0x0000000000000002 0x0000000000007FFF = 0x00000000000000FF ++selge255 0x0000000000000002 0x0000000000008000 = 0x00000000000000FF ++selge255 0x0000000000000002 0x000000007FFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000002 0x0000000080000000 = 0x00000000000000FF ++selge255 0x0000000000000002 0x8000000000000000 = 0x00000000000000FF ++selge255 0x0000000000000002 0xFFFFFFFF80000000 = 0x00000000000000FF ++selge255 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selge255 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selge255 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000002 0x123456789ABCDEF0 = 0x00000000000000FF ++selge255 0x0000000000000002 0xF0DEBC9A78563412 = 0x00000000000000FF ++selge255 0x0000000000000003 0x0000000000000000 = 0x00000000000000FF ++selge255 0x0000000000000003 0x0000000000000001 = 0x00000000000000FF ++selge255 0x0000000000000003 0x0000000000000002 = 0x00000000000000FF ++selge255 0x0000000000000003 0x0000000000000003 = 0x00000000000000FF ++selge255 0x0000000000000003 0x000000000000000F = 0x00000000000000FF ++selge255 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selge255 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selge255 0x0000000000000003 0x000000000000007F = 0x00000000000000FF ++selge255 0x0000000000000003 0x0000000000000080 = 0x00000000000000FF ++selge255 0x0000000000000003 0x0000000000007FFF = 0x00000000000000FF ++selge255 0x0000000000000003 0x0000000000008000 = 0x00000000000000FF ++selge255 0x0000000000000003 0x000000007FFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000003 0x0000000080000000 = 0x00000000000000FF ++selge255 0x0000000000000003 0x8000000000000000 = 0x00000000000000FF ++selge255 0x0000000000000003 0xFFFFFFFF80000000 = 0x00000000000000FF ++selge255 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selge255 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selge255 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000003 0x123456789ABCDEF0 = 0x00000000000000FF ++selge255 0x0000000000000003 0xF0DEBC9A78563412 = 0x00000000000000FF ++selge255 0x000000000000000F 0x0000000000000000 = 0x00000000000000FF ++selge255 0x000000000000000F 0x0000000000000001 = 0x00000000000000FF ++selge255 0x000000000000000F 0x0000000000000002 = 0x00000000000000FF ++selge255 0x000000000000000F 0x0000000000000003 = 0x00000000000000FF ++selge255 0x000000000000000F 0x000000000000000F = 0x00000000000000FF ++selge255 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selge255 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selge255 0x000000000000000F 0x000000000000007F = 0x00000000000000FF ++selge255 0x000000000000000F 0x0000000000000080 = 0x00000000000000FF ++selge255 0x000000000000000F 0x0000000000007FFF = 0x00000000000000FF ++selge255 0x000000000000000F 0x0000000000008000 = 0x00000000000000FF ++selge255 0x000000000000000F 0x000000007FFFFFFF = 0x00000000000000FF ++selge255 0x000000000000000F 0x0000000080000000 = 0x00000000000000FF ++selge255 0x000000000000000F 0x8000000000000000 = 0x00000000000000FF ++selge255 0x000000000000000F 0xFFFFFFFF80000000 = 0x00000000000000FF ++selge255 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selge255 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selge255 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x000000000000000F 0x123456789ABCDEF0 = 0x00000000000000FF ++selge255 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000000000FF ++selge255 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selge255 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selge255 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selge255 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selge255 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selge255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge255 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selge255 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selge255 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selge255 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selge255 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge255 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selge255 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selge255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge255 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge255 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge255 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge255 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selge255 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selge255 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selge255 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selge255 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selge255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge255 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selge255 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selge255 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selge255 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selge255 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge255 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selge255 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selge255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge255 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge255 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge255 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge255 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selge255 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selge255 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selge255 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selge255 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selge255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge255 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selge255 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selge255 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selge255 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selge255 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge255 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selge255 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selge255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge255 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge255 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge255 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge255 0x000000000000007F 0x0000000000000000 = 0x00000000000000FF ++selge255 0x000000000000007F 0x0000000000000001 = 0x00000000000000FF ++selge255 0x000000000000007F 0x0000000000000002 = 0x00000000000000FF ++selge255 0x000000000000007F 0x0000000000000003 = 0x00000000000000FF ++selge255 0x000000000000007F 0x000000000000000F = 0x00000000000000FF ++selge255 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selge255 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selge255 0x000000000000007F 0x000000000000007F = 0x00000000000000FF ++selge255 0x000000000000007F 0x0000000000000080 = 0x00000000000000FF ++selge255 0x000000000000007F 0x0000000000007FFF = 0x00000000000000FF ++selge255 0x000000000000007F 0x0000000000008000 = 0x00000000000000FF ++selge255 0x000000000000007F 0x000000007FFFFFFF = 0x00000000000000FF ++selge255 0x000000000000007F 0x0000000080000000 = 0x00000000000000FF ++selge255 0x000000000000007F 0x8000000000000000 = 0x00000000000000FF ++selge255 0x000000000000007F 0xFFFFFFFF80000000 = 0x00000000000000FF ++selge255 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selge255 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selge255 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x000000000000007F 0x123456789ABCDEF0 = 0x00000000000000FF ++selge255 0x000000000000007F 0xF0DEBC9A78563412 = 0x00000000000000FF ++selge255 0x0000000000000080 0x0000000000000000 = 0x00000000000000FF ++selge255 0x0000000000000080 0x0000000000000001 = 0x00000000000000FF ++selge255 0x0000000000000080 0x0000000000000002 = 0x00000000000000FF ++selge255 0x0000000000000080 0x0000000000000003 = 0x00000000000000FF ++selge255 0x0000000000000080 0x000000000000000F = 0x00000000000000FF ++selge255 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selge255 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selge255 0x0000000000000080 0x000000000000007F = 0x00000000000000FF ++selge255 0x0000000000000080 0x0000000000000080 = 0x00000000000000FF ++selge255 0x0000000000000080 0x0000000000007FFF = 0x00000000000000FF ++selge255 0x0000000000000080 0x0000000000008000 = 0x00000000000000FF ++selge255 0x0000000000000080 0x000000007FFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000080 0x0000000080000000 = 0x00000000000000FF ++selge255 0x0000000000000080 0x8000000000000000 = 0x00000000000000FF ++selge255 0x0000000000000080 0xFFFFFFFF80000000 = 0x00000000000000FF ++selge255 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selge255 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selge255 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000000000080 0x123456789ABCDEF0 = 0x00000000000000FF ++selge255 0x0000000000000080 0xF0DEBC9A78563412 = 0x00000000000000FF ++selge255 0x0000000000007FFF 0x0000000000000000 = 0x00000000000000FF ++selge255 0x0000000000007FFF 0x0000000000000001 = 0x00000000000000FF ++selge255 0x0000000000007FFF 0x0000000000000002 = 0x00000000000000FF ++selge255 0x0000000000007FFF 0x0000000000000003 = 0x00000000000000FF ++selge255 0x0000000000007FFF 0x000000000000000F = 0x00000000000000FF ++selge255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selge255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selge255 0x0000000000007FFF 0x000000000000007F = 0x00000000000000FF ++selge255 0x0000000000007FFF 0x0000000000000080 = 0x00000000000000FF ++selge255 0x0000000000007FFF 0x0000000000007FFF = 0x00000000000000FF ++selge255 0x0000000000007FFF 0x0000000000008000 = 0x00000000000000FF ++selge255 0x0000000000007FFF 0x000000007FFFFFFF = 0x00000000000000FF ++selge255 0x0000000000007FFF 0x0000000080000000 = 0x00000000000000FF ++selge255 0x0000000000007FFF 0x8000000000000000 = 0x00000000000000FF ++selge255 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++selge255 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selge255 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selge255 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000000007FFF 0x123456789ABCDEF0 = 0x00000000000000FF ++selge255 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++selge255 0x0000000000008000 0x0000000000000000 = 0x00000000000000FF ++selge255 0x0000000000008000 0x0000000000000001 = 0x00000000000000FF ++selge255 0x0000000000008000 0x0000000000000002 = 0x00000000000000FF ++selge255 0x0000000000008000 0x0000000000000003 = 0x00000000000000FF ++selge255 0x0000000000008000 0x000000000000000F = 0x00000000000000FF ++selge255 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selge255 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selge255 0x0000000000008000 0x000000000000007F = 0x00000000000000FF ++selge255 0x0000000000008000 0x0000000000000080 = 0x00000000000000FF ++selge255 0x0000000000008000 0x0000000000007FFF = 0x00000000000000FF ++selge255 0x0000000000008000 0x0000000000008000 = 0x00000000000000FF ++selge255 0x0000000000008000 0x000000007FFFFFFF = 0x00000000000000FF ++selge255 0x0000000000008000 0x0000000080000000 = 0x00000000000000FF ++selge255 0x0000000000008000 0x8000000000000000 = 0x00000000000000FF ++selge255 0x0000000000008000 0xFFFFFFFF80000000 = 0x00000000000000FF ++selge255 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selge255 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selge255 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000000008000 0x123456789ABCDEF0 = 0x00000000000000FF ++selge255 0x0000000000008000 0xF0DEBC9A78563412 = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0x0000000000000000 = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0x0000000000000002 = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0x0000000000000003 = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0x000000000000000F = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0x000000000000007F = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0x0000000000000080 = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0x0000000000008000 = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0x8000000000000000 = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++selge255 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++selge255 0x0000000080000000 0x0000000000000000 = 0x00000000000000FF ++selge255 0x0000000080000000 0x0000000000000001 = 0x00000000000000FF ++selge255 0x0000000080000000 0x0000000000000002 = 0x00000000000000FF ++selge255 0x0000000080000000 0x0000000000000003 = 0x00000000000000FF ++selge255 0x0000000080000000 0x000000000000000F = 0x00000000000000FF ++selge255 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selge255 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selge255 0x0000000080000000 0x000000000000007F = 0x00000000000000FF ++selge255 0x0000000080000000 0x0000000000000080 = 0x00000000000000FF ++selge255 0x0000000080000000 0x0000000000007FFF = 0x00000000000000FF ++selge255 0x0000000080000000 0x0000000000008000 = 0x00000000000000FF ++selge255 0x0000000080000000 0x000000007FFFFFFF = 0x00000000000000FF ++selge255 0x0000000080000000 0x0000000080000000 = 0x00000000000000FF ++selge255 0x0000000080000000 0x8000000000000000 = 0x00000000000000FF ++selge255 0x0000000080000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++selge255 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selge255 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selge255 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x0000000080000000 0x123456789ABCDEF0 = 0x00000000000000FF ++selge255 0x0000000080000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++selge255 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selge255 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selge255 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selge255 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selge255 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selge255 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge255 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge255 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge255 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selge255 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selge255 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selge255 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selge255 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge255 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selge255 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selge255 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge255 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge255 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge255 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge255 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge255 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge255 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selge255 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selge255 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selge255 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selge255 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selge255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge255 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selge255 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selge255 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selge255 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selge255 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge255 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selge255 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selge255 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge255 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge255 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge255 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge255 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge255 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selge255 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selge255 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selge255 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selge255 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selge255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge255 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selge255 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selge255 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selge255 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selge255 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge255 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selge255 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selge255 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge255 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge255 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge255 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge255 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selge255 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selge255 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selge255 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selge255 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selge255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge255 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selge255 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selge255 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selge255 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selge255 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge255 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selge255 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selge255 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge255 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge255 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge255 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge255 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++selge255 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0x0000000000000000 = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0x0000000000000001 = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0x0000000000000002 = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0x0000000000000003 = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0x000000000000000F = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0x000000000000007F = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0x0000000000000080 = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0x0000000000007FFF = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0x0000000080000000 = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0x8000000000000000 = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x00000000000000FF ++selge255 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x00000000000000FF ++selge255 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selge255 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selge255 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selge255 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selge255 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selge255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge255 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selge255 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selge255 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selge255 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selge255 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge255 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selge255 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selge255 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge255 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge255 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge255 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge255 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selgt0 === ++selgt0 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt0 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt0 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt0 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt0 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selgt0 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt0 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt0 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt0 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selgt0 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt0 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt0 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt0 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt0 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt0 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt0 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt0 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt0 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt0 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt0 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt0 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt0 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++selgt0 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++selgt0 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++selgt0 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++selgt0 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++selgt0 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selgt0 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selgt0 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++selgt0 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++selgt0 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++selgt0 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++selgt0 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++selgt0 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++selgt0 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++selgt0 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selgt0 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selgt0 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++selgt0 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++selgt0 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++selgt0 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++selgt0 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++selgt0 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++selgt0 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++selgt0 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selgt0 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selgt0 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++selgt0 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++selgt0 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++selgt0 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++selgt0 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++selgt0 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++selgt0 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++selgt0 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selgt0 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selgt0 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++selgt0 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++selgt0 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++selgt0 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++selgt0 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++selgt0 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++selgt0 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++selgt0 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selgt0 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selgt0 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++selgt0 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++selgt0 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++selgt0 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++selgt0 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++selgt0 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++selgt0 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++selgt0 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selgt0 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selgt0 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++selgt0 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++selgt0 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++selgt0 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++selgt0 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++selgt0 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++selgt0 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++selgt0 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selgt0 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selgt0 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++selgt0 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++selgt0 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++selgt0 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++selgt0 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++selgt0 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++selgt0 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++selgt0 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++selgt0 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selgt0 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selgt0 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++selgt0 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++selgt0 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selgt0 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selgt0 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selgt0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selgt0 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selgt0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt0 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selgt0 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selgt0 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selgt0 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selgt0 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt0 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selgt0 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selgt0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt0 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt0 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt0 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt0 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selgt0 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selgt0 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selgt0 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selgt0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selgt0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt0 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selgt0 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selgt0 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selgt0 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selgt0 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt0 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selgt0 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selgt0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt0 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt0 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt0 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt0 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selgt0 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selgt0 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selgt0 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selgt0 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selgt0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt0 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selgt0 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selgt0 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selgt0 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selgt0 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt0 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selgt0 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selgt0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt0 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt0 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt0 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt0 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++selgt0 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++selgt0 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++selgt0 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++selgt0 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++selgt0 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selgt0 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selgt0 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++selgt0 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++selgt0 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++selgt0 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++selgt0 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++selgt0 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++selgt0 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++selgt0 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++selgt0 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selgt0 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selgt0 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++selgt0 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++selgt0 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++selgt0 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++selgt0 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++selgt0 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++selgt0 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++selgt0 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selgt0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selgt0 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++selgt0 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++selgt0 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++selgt0 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++selgt0 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++selgt0 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++selgt0 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++selgt0 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selgt0 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selgt0 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++selgt0 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++selgt0 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++selgt0 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++selgt0 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++selgt0 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++selgt0 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++selgt0 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++selgt0 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selgt0 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selgt0 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++selgt0 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++selgt0 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++selgt0 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++selgt0 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++selgt0 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++selgt0 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selgt0 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selgt0 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selgt0 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++selgt0 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++selgt0 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++selgt0 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++selgt0 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++selgt0 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++selgt0 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++selgt0 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++selgt0 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selgt0 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selgt0 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++selgt0 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++selgt0 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++selgt0 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++selgt0 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++selgt0 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++selgt0 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++selgt0 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selgt0 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selgt0 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selgt0 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++selgt0 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selgt0 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt0 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt0 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt0 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt0 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selgt0 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt0 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt0 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt0 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selgt0 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt0 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt0 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt0 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt0 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt0 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt0 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt0 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt0 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt0 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt0 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt0 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selgt0 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selgt0 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selgt0 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selgt0 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selgt0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt0 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selgt0 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selgt0 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt0 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selgt0 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt0 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selgt0 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selgt0 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt0 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt0 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt0 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt0 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt0 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selgt0 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selgt0 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selgt0 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selgt0 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selgt0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt0 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selgt0 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selgt0 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selgt0 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selgt0 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt0 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selgt0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selgt0 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt0 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt0 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt0 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt0 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selgt0 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selgt0 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selgt0 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selgt0 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selgt0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt0 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selgt0 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selgt0 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selgt0 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selgt0 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt0 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selgt0 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selgt0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt0 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt0 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt0 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt0 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++selgt0 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++selgt0 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++selgt0 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selgt0 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selgt0 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selgt0 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selgt0 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selgt0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt0 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selgt0 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selgt0 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selgt0 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selgt0 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt0 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selgt0 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selgt0 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt0 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt0 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt0 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selgt1 === ++selgt1 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt1 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt1 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt1 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt1 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selgt1 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt1 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt1 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt1 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selgt1 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt1 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt1 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt1 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt1 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt1 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt1 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt1 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt1 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt1 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt1 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt1 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt1 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++selgt1 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selgt1 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++selgt1 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++selgt1 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++selgt1 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selgt1 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selgt1 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++selgt1 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++selgt1 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++selgt1 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++selgt1 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++selgt1 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++selgt1 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++selgt1 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selgt1 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selgt1 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++selgt1 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++selgt1 0x0000000000000002 0x0000000000000000 = 0x0000000000000001 ++selgt1 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++selgt1 0x0000000000000002 0x0000000000000002 = 0x0000000000000001 ++selgt1 0x0000000000000002 0x0000000000000003 = 0x0000000000000001 ++selgt1 0x0000000000000002 0x000000000000000F = 0x0000000000000001 ++selgt1 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selgt1 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selgt1 0x0000000000000002 0x000000000000007F = 0x0000000000000001 ++selgt1 0x0000000000000002 0x0000000000000080 = 0x0000000000000001 ++selgt1 0x0000000000000002 0x0000000000007FFF = 0x0000000000000001 ++selgt1 0x0000000000000002 0x0000000000008000 = 0x0000000000000001 ++selgt1 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000000002 0x0000000080000000 = 0x0000000000000001 ++selgt1 0x0000000000000002 0x8000000000000000 = 0x0000000000000001 ++selgt1 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000001 ++selgt1 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selgt1 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selgt1 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000001 ++selgt1 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000001 ++selgt1 0x0000000000000003 0x0000000000000000 = 0x0000000000000001 ++selgt1 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++selgt1 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++selgt1 0x0000000000000003 0x0000000000000003 = 0x0000000000000001 ++selgt1 0x0000000000000003 0x000000000000000F = 0x0000000000000001 ++selgt1 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selgt1 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selgt1 0x0000000000000003 0x000000000000007F = 0x0000000000000001 ++selgt1 0x0000000000000003 0x0000000000000080 = 0x0000000000000001 ++selgt1 0x0000000000000003 0x0000000000007FFF = 0x0000000000000001 ++selgt1 0x0000000000000003 0x0000000000008000 = 0x0000000000000001 ++selgt1 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000000003 0x0000000080000000 = 0x0000000000000001 ++selgt1 0x0000000000000003 0x8000000000000000 = 0x0000000000000001 ++selgt1 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000001 ++selgt1 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selgt1 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selgt1 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000001 ++selgt1 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000001 ++selgt1 0x000000000000000F 0x0000000000000000 = 0x0000000000000001 ++selgt1 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++selgt1 0x000000000000000F 0x0000000000000002 = 0x0000000000000001 ++selgt1 0x000000000000000F 0x0000000000000003 = 0x0000000000000001 ++selgt1 0x000000000000000F 0x000000000000000F = 0x0000000000000001 ++selgt1 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selgt1 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selgt1 0x000000000000000F 0x000000000000007F = 0x0000000000000001 ++selgt1 0x000000000000000F 0x0000000000000080 = 0x0000000000000001 ++selgt1 0x000000000000000F 0x0000000000007FFF = 0x0000000000000001 ++selgt1 0x000000000000000F 0x0000000000008000 = 0x0000000000000001 ++selgt1 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000001 ++selgt1 0x000000000000000F 0x0000000080000000 = 0x0000000000000001 ++selgt1 0x000000000000000F 0x8000000000000000 = 0x0000000000000001 ++selgt1 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000001 ++selgt1 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selgt1 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selgt1 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000001 ++selgt1 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000001 ++selgt1 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selgt1 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selgt1 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selgt1 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selgt1 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selgt1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt1 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selgt1 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selgt1 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selgt1 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selgt1 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt1 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selgt1 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selgt1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt1 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt1 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt1 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt1 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selgt1 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selgt1 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selgt1 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selgt1 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selgt1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt1 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selgt1 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selgt1 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selgt1 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selgt1 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt1 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selgt1 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selgt1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt1 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt1 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt1 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt1 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selgt1 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selgt1 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selgt1 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selgt1 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selgt1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt1 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selgt1 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selgt1 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selgt1 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selgt1 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt1 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selgt1 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selgt1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt1 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt1 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt1 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt1 0x000000000000007F 0x0000000000000000 = 0x0000000000000001 ++selgt1 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++selgt1 0x000000000000007F 0x0000000000000002 = 0x0000000000000001 ++selgt1 0x000000000000007F 0x0000000000000003 = 0x0000000000000001 ++selgt1 0x000000000000007F 0x000000000000000F = 0x0000000000000001 ++selgt1 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selgt1 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selgt1 0x000000000000007F 0x000000000000007F = 0x0000000000000001 ++selgt1 0x000000000000007F 0x0000000000000080 = 0x0000000000000001 ++selgt1 0x000000000000007F 0x0000000000007FFF = 0x0000000000000001 ++selgt1 0x000000000000007F 0x0000000000008000 = 0x0000000000000001 ++selgt1 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000001 ++selgt1 0x000000000000007F 0x0000000080000000 = 0x0000000000000001 ++selgt1 0x000000000000007F 0x8000000000000000 = 0x0000000000000001 ++selgt1 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000001 ++selgt1 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selgt1 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selgt1 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000001 ++selgt1 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000001 ++selgt1 0x0000000000000080 0x0000000000000000 = 0x0000000000000001 ++selgt1 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++selgt1 0x0000000000000080 0x0000000000000002 = 0x0000000000000001 ++selgt1 0x0000000000000080 0x0000000000000003 = 0x0000000000000001 ++selgt1 0x0000000000000080 0x000000000000000F = 0x0000000000000001 ++selgt1 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selgt1 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selgt1 0x0000000000000080 0x000000000000007F = 0x0000000000000001 ++selgt1 0x0000000000000080 0x0000000000000080 = 0x0000000000000001 ++selgt1 0x0000000000000080 0x0000000000007FFF = 0x0000000000000001 ++selgt1 0x0000000000000080 0x0000000000008000 = 0x0000000000000001 ++selgt1 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000000080 0x0000000080000000 = 0x0000000000000001 ++selgt1 0x0000000000000080 0x8000000000000000 = 0x0000000000000001 ++selgt1 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000001 ++selgt1 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selgt1 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selgt1 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000001 ++selgt1 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0x000000000000000F = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0x000000000000007F = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000001 ++selgt1 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++selgt1 0x0000000000008000 0x0000000000000000 = 0x0000000000000001 ++selgt1 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++selgt1 0x0000000000008000 0x0000000000000002 = 0x0000000000000001 ++selgt1 0x0000000000008000 0x0000000000000003 = 0x0000000000000001 ++selgt1 0x0000000000008000 0x000000000000000F = 0x0000000000000001 ++selgt1 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selgt1 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selgt1 0x0000000000008000 0x000000000000007F = 0x0000000000000001 ++selgt1 0x0000000000008000 0x0000000000000080 = 0x0000000000000001 ++selgt1 0x0000000000008000 0x0000000000007FFF = 0x0000000000000001 ++selgt1 0x0000000000008000 0x0000000000008000 = 0x0000000000000001 ++selgt1 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000008000 0x0000000080000000 = 0x0000000000000001 ++selgt1 0x0000000000008000 0x8000000000000000 = 0x0000000000000001 ++selgt1 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000001 ++selgt1 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selgt1 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selgt1 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000001 ++selgt1 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++selgt1 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++selgt1 0x0000000080000000 0x0000000000000000 = 0x0000000000000001 ++selgt1 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++selgt1 0x0000000080000000 0x0000000000000002 = 0x0000000000000001 ++selgt1 0x0000000080000000 0x0000000000000003 = 0x0000000000000001 ++selgt1 0x0000000080000000 0x000000000000000F = 0x0000000000000001 ++selgt1 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selgt1 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selgt1 0x0000000080000000 0x000000000000007F = 0x0000000000000001 ++selgt1 0x0000000080000000 0x0000000000000080 = 0x0000000000000001 ++selgt1 0x0000000080000000 0x0000000000007FFF = 0x0000000000000001 ++selgt1 0x0000000080000000 0x0000000000008000 = 0x0000000000000001 ++selgt1 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000001 ++selgt1 0x0000000080000000 0x0000000080000000 = 0x0000000000000001 ++selgt1 0x0000000080000000 0x8000000000000000 = 0x0000000000000001 ++selgt1 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++selgt1 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selgt1 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selgt1 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000001 ++selgt1 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++selgt1 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt1 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt1 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt1 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt1 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selgt1 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt1 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt1 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt1 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selgt1 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt1 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt1 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt1 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt1 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt1 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt1 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt1 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt1 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt1 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt1 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt1 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt1 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selgt1 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selgt1 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selgt1 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selgt1 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selgt1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt1 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selgt1 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selgt1 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt1 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selgt1 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt1 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selgt1 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selgt1 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt1 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt1 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt1 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt1 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt1 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selgt1 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selgt1 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selgt1 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selgt1 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selgt1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt1 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selgt1 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selgt1 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selgt1 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selgt1 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt1 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selgt1 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selgt1 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt1 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt1 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt1 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt1 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selgt1 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selgt1 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selgt1 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selgt1 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selgt1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt1 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selgt1 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selgt1 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selgt1 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selgt1 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt1 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selgt1 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selgt1 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt1 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt1 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt1 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt1 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++selgt1 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000001 ++selgt1 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000001 ++selgt1 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selgt1 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selgt1 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selgt1 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selgt1 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selgt1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt1 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selgt1 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selgt1 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selgt1 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selgt1 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt1 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selgt1 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selgt1 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt1 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt1 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt1 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt1 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selgt2 === ++selgt2 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt2 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt2 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt2 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt2 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selgt2 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt2 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt2 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt2 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selgt2 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt2 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt2 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt2 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt2 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt2 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt2 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt2 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt2 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt2 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt2 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt2 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt2 0x0000000000000001 0x0000000000000000 = 0x0000000000000002 ++selgt2 0x0000000000000001 0x0000000000000001 = 0x0000000000000002 ++selgt2 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++selgt2 0x0000000000000001 0x0000000000000003 = 0x0000000000000002 ++selgt2 0x0000000000000001 0x000000000000000F = 0x0000000000000002 ++selgt2 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selgt2 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selgt2 0x0000000000000001 0x000000000000007F = 0x0000000000000002 ++selgt2 0x0000000000000001 0x0000000000000080 = 0x0000000000000002 ++selgt2 0x0000000000000001 0x0000000000007FFF = 0x0000000000000002 ++selgt2 0x0000000000000001 0x0000000000008000 = 0x0000000000000002 ++selgt2 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000000001 0x0000000080000000 = 0x0000000000000002 ++selgt2 0x0000000000000001 0x8000000000000000 = 0x0000000000000002 ++selgt2 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000002 ++selgt2 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selgt2 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selgt2 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000002 ++selgt2 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000002 ++selgt2 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++selgt2 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++selgt2 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selgt2 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++selgt2 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++selgt2 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selgt2 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selgt2 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++selgt2 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++selgt2 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++selgt2 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++selgt2 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++selgt2 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++selgt2 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++selgt2 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selgt2 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selgt2 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++selgt2 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++selgt2 0x0000000000000003 0x0000000000000000 = 0x0000000000000002 ++selgt2 0x0000000000000003 0x0000000000000001 = 0x0000000000000002 ++selgt2 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++selgt2 0x0000000000000003 0x0000000000000003 = 0x0000000000000002 ++selgt2 0x0000000000000003 0x000000000000000F = 0x0000000000000002 ++selgt2 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selgt2 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selgt2 0x0000000000000003 0x000000000000007F = 0x0000000000000002 ++selgt2 0x0000000000000003 0x0000000000000080 = 0x0000000000000002 ++selgt2 0x0000000000000003 0x0000000000007FFF = 0x0000000000000002 ++selgt2 0x0000000000000003 0x0000000000008000 = 0x0000000000000002 ++selgt2 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000000003 0x0000000080000000 = 0x0000000000000002 ++selgt2 0x0000000000000003 0x8000000000000000 = 0x0000000000000002 ++selgt2 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000002 ++selgt2 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selgt2 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selgt2 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000002 ++selgt2 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000002 ++selgt2 0x000000000000000F 0x0000000000000000 = 0x0000000000000002 ++selgt2 0x000000000000000F 0x0000000000000001 = 0x0000000000000002 ++selgt2 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++selgt2 0x000000000000000F 0x0000000000000003 = 0x0000000000000002 ++selgt2 0x000000000000000F 0x000000000000000F = 0x0000000000000002 ++selgt2 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selgt2 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selgt2 0x000000000000000F 0x000000000000007F = 0x0000000000000002 ++selgt2 0x000000000000000F 0x0000000000000080 = 0x0000000000000002 ++selgt2 0x000000000000000F 0x0000000000007FFF = 0x0000000000000002 ++selgt2 0x000000000000000F 0x0000000000008000 = 0x0000000000000002 ++selgt2 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000002 ++selgt2 0x000000000000000F 0x0000000080000000 = 0x0000000000000002 ++selgt2 0x000000000000000F 0x8000000000000000 = 0x0000000000000002 ++selgt2 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000002 ++selgt2 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selgt2 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selgt2 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000002 ++selgt2 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000002 ++selgt2 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selgt2 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selgt2 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selgt2 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selgt2 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selgt2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt2 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selgt2 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selgt2 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selgt2 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selgt2 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt2 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selgt2 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selgt2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt2 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt2 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt2 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt2 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selgt2 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selgt2 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selgt2 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selgt2 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selgt2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt2 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selgt2 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selgt2 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selgt2 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selgt2 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt2 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selgt2 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selgt2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt2 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt2 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt2 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt2 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selgt2 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selgt2 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selgt2 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selgt2 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selgt2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt2 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selgt2 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selgt2 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selgt2 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selgt2 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt2 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selgt2 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selgt2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt2 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt2 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt2 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt2 0x000000000000007F 0x0000000000000000 = 0x0000000000000002 ++selgt2 0x000000000000007F 0x0000000000000001 = 0x0000000000000002 ++selgt2 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++selgt2 0x000000000000007F 0x0000000000000003 = 0x0000000000000002 ++selgt2 0x000000000000007F 0x000000000000000F = 0x0000000000000002 ++selgt2 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selgt2 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selgt2 0x000000000000007F 0x000000000000007F = 0x0000000000000002 ++selgt2 0x000000000000007F 0x0000000000000080 = 0x0000000000000002 ++selgt2 0x000000000000007F 0x0000000000007FFF = 0x0000000000000002 ++selgt2 0x000000000000007F 0x0000000000008000 = 0x0000000000000002 ++selgt2 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000002 ++selgt2 0x000000000000007F 0x0000000080000000 = 0x0000000000000002 ++selgt2 0x000000000000007F 0x8000000000000000 = 0x0000000000000002 ++selgt2 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000002 ++selgt2 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selgt2 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selgt2 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000002 ++selgt2 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000002 ++selgt2 0x0000000000000080 0x0000000000000000 = 0x0000000000000002 ++selgt2 0x0000000000000080 0x0000000000000001 = 0x0000000000000002 ++selgt2 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++selgt2 0x0000000000000080 0x0000000000000003 = 0x0000000000000002 ++selgt2 0x0000000000000080 0x000000000000000F = 0x0000000000000002 ++selgt2 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selgt2 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selgt2 0x0000000000000080 0x000000000000007F = 0x0000000000000002 ++selgt2 0x0000000000000080 0x0000000000000080 = 0x0000000000000002 ++selgt2 0x0000000000000080 0x0000000000007FFF = 0x0000000000000002 ++selgt2 0x0000000000000080 0x0000000000008000 = 0x0000000000000002 ++selgt2 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000000080 0x0000000080000000 = 0x0000000000000002 ++selgt2 0x0000000000000080 0x8000000000000000 = 0x0000000000000002 ++selgt2 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000002 ++selgt2 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selgt2 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selgt2 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000002 ++selgt2 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0x000000000000000F = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0x000000000000007F = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000002 ++selgt2 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++selgt2 0x0000000000008000 0x0000000000000000 = 0x0000000000000002 ++selgt2 0x0000000000008000 0x0000000000000001 = 0x0000000000000002 ++selgt2 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++selgt2 0x0000000000008000 0x0000000000000003 = 0x0000000000000002 ++selgt2 0x0000000000008000 0x000000000000000F = 0x0000000000000002 ++selgt2 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selgt2 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selgt2 0x0000000000008000 0x000000000000007F = 0x0000000000000002 ++selgt2 0x0000000000008000 0x0000000000000080 = 0x0000000000000002 ++selgt2 0x0000000000008000 0x0000000000007FFF = 0x0000000000000002 ++selgt2 0x0000000000008000 0x0000000000008000 = 0x0000000000000002 ++selgt2 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000008000 0x0000000080000000 = 0x0000000000000002 ++selgt2 0x0000000000008000 0x8000000000000000 = 0x0000000000000002 ++selgt2 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000002 ++selgt2 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selgt2 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selgt2 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000002 ++selgt2 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000002 ++selgt2 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++selgt2 0x0000000080000000 0x0000000000000000 = 0x0000000000000002 ++selgt2 0x0000000080000000 0x0000000000000001 = 0x0000000000000002 ++selgt2 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++selgt2 0x0000000080000000 0x0000000000000003 = 0x0000000000000002 ++selgt2 0x0000000080000000 0x000000000000000F = 0x0000000000000002 ++selgt2 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selgt2 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selgt2 0x0000000080000000 0x000000000000007F = 0x0000000000000002 ++selgt2 0x0000000080000000 0x0000000000000080 = 0x0000000000000002 ++selgt2 0x0000000080000000 0x0000000000007FFF = 0x0000000000000002 ++selgt2 0x0000000080000000 0x0000000000008000 = 0x0000000000000002 ++selgt2 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000002 ++selgt2 0x0000000080000000 0x0000000080000000 = 0x0000000000000002 ++selgt2 0x0000000080000000 0x8000000000000000 = 0x0000000000000002 ++selgt2 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++selgt2 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selgt2 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selgt2 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000002 ++selgt2 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++selgt2 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt2 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt2 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt2 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt2 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selgt2 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt2 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt2 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt2 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selgt2 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt2 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt2 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt2 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt2 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt2 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt2 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt2 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt2 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt2 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt2 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt2 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt2 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selgt2 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selgt2 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selgt2 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selgt2 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selgt2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt2 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selgt2 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selgt2 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt2 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selgt2 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt2 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selgt2 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selgt2 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt2 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt2 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt2 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt2 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt2 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selgt2 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selgt2 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selgt2 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selgt2 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selgt2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt2 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selgt2 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selgt2 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selgt2 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selgt2 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt2 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selgt2 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selgt2 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt2 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt2 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt2 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt2 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selgt2 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selgt2 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selgt2 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selgt2 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selgt2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt2 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selgt2 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selgt2 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selgt2 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selgt2 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt2 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selgt2 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selgt2 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt2 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt2 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt2 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt2 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000002 ++selgt2 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000002 ++selgt2 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000002 ++selgt2 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selgt2 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selgt2 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selgt2 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selgt2 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selgt2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt2 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selgt2 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selgt2 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selgt2 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selgt2 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt2 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selgt2 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selgt2 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt2 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt2 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt2 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt2 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selgt3 === ++selgt3 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt3 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt3 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt3 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt3 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selgt3 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt3 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt3 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt3 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selgt3 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt3 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt3 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt3 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt3 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt3 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt3 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt3 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt3 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt3 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt3 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt3 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt3 0x0000000000000001 0x0000000000000000 = 0x0000000000000003 ++selgt3 0x0000000000000001 0x0000000000000001 = 0x0000000000000003 ++selgt3 0x0000000000000001 0x0000000000000002 = 0x0000000000000003 ++selgt3 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++selgt3 0x0000000000000001 0x000000000000000F = 0x0000000000000003 ++selgt3 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selgt3 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selgt3 0x0000000000000001 0x000000000000007F = 0x0000000000000003 ++selgt3 0x0000000000000001 0x0000000000000080 = 0x0000000000000003 ++selgt3 0x0000000000000001 0x0000000000007FFF = 0x0000000000000003 ++selgt3 0x0000000000000001 0x0000000000008000 = 0x0000000000000003 ++selgt3 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000000001 0x0000000080000000 = 0x0000000000000003 ++selgt3 0x0000000000000001 0x8000000000000000 = 0x0000000000000003 ++selgt3 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000003 ++selgt3 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selgt3 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selgt3 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000003 ++selgt3 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000003 ++selgt3 0x0000000000000002 0x0000000000000000 = 0x0000000000000003 ++selgt3 0x0000000000000002 0x0000000000000001 = 0x0000000000000003 ++selgt3 0x0000000000000002 0x0000000000000002 = 0x0000000000000003 ++selgt3 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++selgt3 0x0000000000000002 0x000000000000000F = 0x0000000000000003 ++selgt3 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selgt3 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selgt3 0x0000000000000002 0x000000000000007F = 0x0000000000000003 ++selgt3 0x0000000000000002 0x0000000000000080 = 0x0000000000000003 ++selgt3 0x0000000000000002 0x0000000000007FFF = 0x0000000000000003 ++selgt3 0x0000000000000002 0x0000000000008000 = 0x0000000000000003 ++selgt3 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000000002 0x0000000080000000 = 0x0000000000000003 ++selgt3 0x0000000000000002 0x8000000000000000 = 0x0000000000000003 ++selgt3 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000003 ++selgt3 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selgt3 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selgt3 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000003 ++selgt3 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000003 ++selgt3 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++selgt3 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++selgt3 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++selgt3 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selgt3 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++selgt3 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selgt3 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selgt3 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++selgt3 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++selgt3 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++selgt3 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++selgt3 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++selgt3 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++selgt3 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++selgt3 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selgt3 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selgt3 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++selgt3 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++selgt3 0x000000000000000F 0x0000000000000000 = 0x0000000000000003 ++selgt3 0x000000000000000F 0x0000000000000001 = 0x0000000000000003 ++selgt3 0x000000000000000F 0x0000000000000002 = 0x0000000000000003 ++selgt3 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++selgt3 0x000000000000000F 0x000000000000000F = 0x0000000000000003 ++selgt3 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selgt3 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selgt3 0x000000000000000F 0x000000000000007F = 0x0000000000000003 ++selgt3 0x000000000000000F 0x0000000000000080 = 0x0000000000000003 ++selgt3 0x000000000000000F 0x0000000000007FFF = 0x0000000000000003 ++selgt3 0x000000000000000F 0x0000000000008000 = 0x0000000000000003 ++selgt3 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000003 ++selgt3 0x000000000000000F 0x0000000080000000 = 0x0000000000000003 ++selgt3 0x000000000000000F 0x8000000000000000 = 0x0000000000000003 ++selgt3 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000003 ++selgt3 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selgt3 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selgt3 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000003 ++selgt3 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000003 ++selgt3 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selgt3 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selgt3 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selgt3 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selgt3 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selgt3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt3 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selgt3 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selgt3 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selgt3 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selgt3 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt3 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selgt3 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selgt3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt3 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt3 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt3 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt3 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selgt3 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selgt3 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selgt3 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selgt3 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selgt3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt3 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selgt3 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selgt3 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selgt3 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selgt3 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt3 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selgt3 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selgt3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt3 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt3 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt3 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt3 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selgt3 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selgt3 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selgt3 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selgt3 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selgt3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt3 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selgt3 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selgt3 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selgt3 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selgt3 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt3 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selgt3 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selgt3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt3 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt3 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt3 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt3 0x000000000000007F 0x0000000000000000 = 0x0000000000000003 ++selgt3 0x000000000000007F 0x0000000000000001 = 0x0000000000000003 ++selgt3 0x000000000000007F 0x0000000000000002 = 0x0000000000000003 ++selgt3 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++selgt3 0x000000000000007F 0x000000000000000F = 0x0000000000000003 ++selgt3 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selgt3 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selgt3 0x000000000000007F 0x000000000000007F = 0x0000000000000003 ++selgt3 0x000000000000007F 0x0000000000000080 = 0x0000000000000003 ++selgt3 0x000000000000007F 0x0000000000007FFF = 0x0000000000000003 ++selgt3 0x000000000000007F 0x0000000000008000 = 0x0000000000000003 ++selgt3 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000003 ++selgt3 0x000000000000007F 0x0000000080000000 = 0x0000000000000003 ++selgt3 0x000000000000007F 0x8000000000000000 = 0x0000000000000003 ++selgt3 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000003 ++selgt3 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selgt3 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selgt3 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000003 ++selgt3 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000003 ++selgt3 0x0000000000000080 0x0000000000000000 = 0x0000000000000003 ++selgt3 0x0000000000000080 0x0000000000000001 = 0x0000000000000003 ++selgt3 0x0000000000000080 0x0000000000000002 = 0x0000000000000003 ++selgt3 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++selgt3 0x0000000000000080 0x000000000000000F = 0x0000000000000003 ++selgt3 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selgt3 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selgt3 0x0000000000000080 0x000000000000007F = 0x0000000000000003 ++selgt3 0x0000000000000080 0x0000000000000080 = 0x0000000000000003 ++selgt3 0x0000000000000080 0x0000000000007FFF = 0x0000000000000003 ++selgt3 0x0000000000000080 0x0000000000008000 = 0x0000000000000003 ++selgt3 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000000080 0x0000000080000000 = 0x0000000000000003 ++selgt3 0x0000000000000080 0x8000000000000000 = 0x0000000000000003 ++selgt3 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000003 ++selgt3 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selgt3 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selgt3 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000003 ++selgt3 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0x000000000000000F = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0x000000000000007F = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000003 ++selgt3 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++selgt3 0x0000000000008000 0x0000000000000000 = 0x0000000000000003 ++selgt3 0x0000000000008000 0x0000000000000001 = 0x0000000000000003 ++selgt3 0x0000000000008000 0x0000000000000002 = 0x0000000000000003 ++selgt3 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++selgt3 0x0000000000008000 0x000000000000000F = 0x0000000000000003 ++selgt3 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selgt3 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selgt3 0x0000000000008000 0x000000000000007F = 0x0000000000000003 ++selgt3 0x0000000000008000 0x0000000000000080 = 0x0000000000000003 ++selgt3 0x0000000000008000 0x0000000000007FFF = 0x0000000000000003 ++selgt3 0x0000000000008000 0x0000000000008000 = 0x0000000000000003 ++selgt3 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000008000 0x0000000080000000 = 0x0000000000000003 ++selgt3 0x0000000000008000 0x8000000000000000 = 0x0000000000000003 ++selgt3 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000003 ++selgt3 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selgt3 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selgt3 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000003 ++selgt3 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000003 ++selgt3 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++selgt3 0x0000000080000000 0x0000000000000000 = 0x0000000000000003 ++selgt3 0x0000000080000000 0x0000000000000001 = 0x0000000000000003 ++selgt3 0x0000000080000000 0x0000000000000002 = 0x0000000000000003 ++selgt3 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++selgt3 0x0000000080000000 0x000000000000000F = 0x0000000000000003 ++selgt3 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selgt3 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selgt3 0x0000000080000000 0x000000000000007F = 0x0000000000000003 ++selgt3 0x0000000080000000 0x0000000000000080 = 0x0000000000000003 ++selgt3 0x0000000080000000 0x0000000000007FFF = 0x0000000000000003 ++selgt3 0x0000000080000000 0x0000000000008000 = 0x0000000000000003 ++selgt3 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000003 ++selgt3 0x0000000080000000 0x0000000080000000 = 0x0000000000000003 ++selgt3 0x0000000080000000 0x8000000000000000 = 0x0000000000000003 ++selgt3 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++selgt3 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selgt3 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selgt3 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000003 ++selgt3 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++selgt3 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt3 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt3 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt3 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt3 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selgt3 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt3 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt3 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt3 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selgt3 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt3 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt3 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt3 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt3 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt3 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt3 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt3 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt3 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt3 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt3 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt3 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt3 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selgt3 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selgt3 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selgt3 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selgt3 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selgt3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt3 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selgt3 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selgt3 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt3 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selgt3 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt3 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selgt3 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selgt3 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt3 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt3 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt3 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt3 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt3 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selgt3 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selgt3 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selgt3 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selgt3 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selgt3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt3 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selgt3 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selgt3 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selgt3 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selgt3 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt3 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selgt3 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selgt3 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt3 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt3 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt3 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt3 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selgt3 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selgt3 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selgt3 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selgt3 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selgt3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt3 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selgt3 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selgt3 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selgt3 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selgt3 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt3 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selgt3 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selgt3 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt3 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt3 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt3 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt3 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000003 ++selgt3 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000003 ++selgt3 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000003 ++selgt3 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selgt3 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selgt3 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selgt3 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selgt3 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selgt3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt3 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selgt3 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selgt3 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selgt3 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selgt3 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt3 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selgt3 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selgt3 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt3 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt3 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt3 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt3 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selgt15 === ++selgt15 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt15 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt15 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt15 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt15 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selgt15 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt15 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt15 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt15 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selgt15 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt15 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt15 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt15 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt15 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt15 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt15 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt15 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt15 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt15 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt15 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt15 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt15 0x0000000000000001 0x0000000000000000 = 0x000000000000000F ++selgt15 0x0000000000000001 0x0000000000000001 = 0x000000000000000F ++selgt15 0x0000000000000001 0x0000000000000002 = 0x000000000000000F ++selgt15 0x0000000000000001 0x0000000000000003 = 0x000000000000000F ++selgt15 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++selgt15 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selgt15 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selgt15 0x0000000000000001 0x000000000000007F = 0x000000000000000F ++selgt15 0x0000000000000001 0x0000000000000080 = 0x000000000000000F ++selgt15 0x0000000000000001 0x0000000000007FFF = 0x000000000000000F ++selgt15 0x0000000000000001 0x0000000000008000 = 0x000000000000000F ++selgt15 0x0000000000000001 0x000000007FFFFFFF = 0x000000000000000F ++selgt15 0x0000000000000001 0x0000000080000000 = 0x000000000000000F ++selgt15 0x0000000000000001 0x8000000000000000 = 0x000000000000000F ++selgt15 0x0000000000000001 0xFFFFFFFF80000000 = 0x000000000000000F ++selgt15 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selgt15 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selgt15 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x0000000000000001 0x123456789ABCDEF0 = 0x000000000000000F ++selgt15 0x0000000000000001 0xF0DEBC9A78563412 = 0x000000000000000F ++selgt15 0x0000000000000002 0x0000000000000000 = 0x000000000000000F ++selgt15 0x0000000000000002 0x0000000000000001 = 0x000000000000000F ++selgt15 0x0000000000000002 0x0000000000000002 = 0x000000000000000F ++selgt15 0x0000000000000002 0x0000000000000003 = 0x000000000000000F ++selgt15 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++selgt15 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selgt15 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selgt15 0x0000000000000002 0x000000000000007F = 0x000000000000000F ++selgt15 0x0000000000000002 0x0000000000000080 = 0x000000000000000F ++selgt15 0x0000000000000002 0x0000000000007FFF = 0x000000000000000F ++selgt15 0x0000000000000002 0x0000000000008000 = 0x000000000000000F ++selgt15 0x0000000000000002 0x000000007FFFFFFF = 0x000000000000000F ++selgt15 0x0000000000000002 0x0000000080000000 = 0x000000000000000F ++selgt15 0x0000000000000002 0x8000000000000000 = 0x000000000000000F ++selgt15 0x0000000000000002 0xFFFFFFFF80000000 = 0x000000000000000F ++selgt15 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selgt15 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selgt15 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x0000000000000002 0x123456789ABCDEF0 = 0x000000000000000F ++selgt15 0x0000000000000002 0xF0DEBC9A78563412 = 0x000000000000000F ++selgt15 0x0000000000000003 0x0000000000000000 = 0x000000000000000F ++selgt15 0x0000000000000003 0x0000000000000001 = 0x000000000000000F ++selgt15 0x0000000000000003 0x0000000000000002 = 0x000000000000000F ++selgt15 0x0000000000000003 0x0000000000000003 = 0x000000000000000F ++selgt15 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++selgt15 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selgt15 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selgt15 0x0000000000000003 0x000000000000007F = 0x000000000000000F ++selgt15 0x0000000000000003 0x0000000000000080 = 0x000000000000000F ++selgt15 0x0000000000000003 0x0000000000007FFF = 0x000000000000000F ++selgt15 0x0000000000000003 0x0000000000008000 = 0x000000000000000F ++selgt15 0x0000000000000003 0x000000007FFFFFFF = 0x000000000000000F ++selgt15 0x0000000000000003 0x0000000080000000 = 0x000000000000000F ++selgt15 0x0000000000000003 0x8000000000000000 = 0x000000000000000F ++selgt15 0x0000000000000003 0xFFFFFFFF80000000 = 0x000000000000000F ++selgt15 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selgt15 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selgt15 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x0000000000000003 0x123456789ABCDEF0 = 0x000000000000000F ++selgt15 0x0000000000000003 0xF0DEBC9A78563412 = 0x000000000000000F ++selgt15 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++selgt15 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++selgt15 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++selgt15 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++selgt15 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selgt15 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selgt15 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selgt15 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++selgt15 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++selgt15 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++selgt15 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++selgt15 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++selgt15 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++selgt15 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++selgt15 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++selgt15 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selgt15 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selgt15 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++selgt15 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++selgt15 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selgt15 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selgt15 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selgt15 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selgt15 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selgt15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt15 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selgt15 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selgt15 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selgt15 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selgt15 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt15 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selgt15 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selgt15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt15 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt15 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt15 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt15 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selgt15 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selgt15 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selgt15 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selgt15 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selgt15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt15 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selgt15 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selgt15 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selgt15 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selgt15 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt15 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selgt15 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selgt15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt15 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt15 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt15 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt15 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selgt15 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selgt15 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selgt15 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selgt15 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selgt15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt15 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selgt15 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selgt15 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selgt15 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selgt15 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt15 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selgt15 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selgt15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt15 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt15 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt15 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt15 0x000000000000007F 0x0000000000000000 = 0x000000000000000F ++selgt15 0x000000000000007F 0x0000000000000001 = 0x000000000000000F ++selgt15 0x000000000000007F 0x0000000000000002 = 0x000000000000000F ++selgt15 0x000000000000007F 0x0000000000000003 = 0x000000000000000F ++selgt15 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++selgt15 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selgt15 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selgt15 0x000000000000007F 0x000000000000007F = 0x000000000000000F ++selgt15 0x000000000000007F 0x0000000000000080 = 0x000000000000000F ++selgt15 0x000000000000007F 0x0000000000007FFF = 0x000000000000000F ++selgt15 0x000000000000007F 0x0000000000008000 = 0x000000000000000F ++selgt15 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000000F ++selgt15 0x000000000000007F 0x0000000080000000 = 0x000000000000000F ++selgt15 0x000000000000007F 0x8000000000000000 = 0x000000000000000F ++selgt15 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000000F ++selgt15 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selgt15 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selgt15 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000000F ++selgt15 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000000F ++selgt15 0x0000000000000080 0x0000000000000000 = 0x000000000000000F ++selgt15 0x0000000000000080 0x0000000000000001 = 0x000000000000000F ++selgt15 0x0000000000000080 0x0000000000000002 = 0x000000000000000F ++selgt15 0x0000000000000080 0x0000000000000003 = 0x000000000000000F ++selgt15 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++selgt15 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selgt15 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selgt15 0x0000000000000080 0x000000000000007F = 0x000000000000000F ++selgt15 0x0000000000000080 0x0000000000000080 = 0x000000000000000F ++selgt15 0x0000000000000080 0x0000000000007FFF = 0x000000000000000F ++selgt15 0x0000000000000080 0x0000000000008000 = 0x000000000000000F ++selgt15 0x0000000000000080 0x000000007FFFFFFF = 0x000000000000000F ++selgt15 0x0000000000000080 0x0000000080000000 = 0x000000000000000F ++selgt15 0x0000000000000080 0x8000000000000000 = 0x000000000000000F ++selgt15 0x0000000000000080 0xFFFFFFFF80000000 = 0x000000000000000F ++selgt15 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selgt15 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selgt15 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x0000000000000080 0x123456789ABCDEF0 = 0x000000000000000F ++selgt15 0x0000000000000080 0xF0DEBC9A78563412 = 0x000000000000000F ++selgt15 0x0000000000007FFF 0x0000000000000000 = 0x000000000000000F ++selgt15 0x0000000000007FFF 0x0000000000000001 = 0x000000000000000F ++selgt15 0x0000000000007FFF 0x0000000000000002 = 0x000000000000000F ++selgt15 0x0000000000007FFF 0x0000000000000003 = 0x000000000000000F ++selgt15 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++selgt15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selgt15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selgt15 0x0000000000007FFF 0x000000000000007F = 0x000000000000000F ++selgt15 0x0000000000007FFF 0x0000000000000080 = 0x000000000000000F ++selgt15 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000000F ++selgt15 0x0000000000007FFF 0x0000000000008000 = 0x000000000000000F ++selgt15 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000000000000F ++selgt15 0x0000000000007FFF 0x0000000080000000 = 0x000000000000000F ++selgt15 0x0000000000007FFF 0x8000000000000000 = 0x000000000000000F ++selgt15 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000000000000F ++selgt15 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selgt15 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selgt15 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000000000000F ++selgt15 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000000000000F ++selgt15 0x0000000000008000 0x0000000000000000 = 0x000000000000000F ++selgt15 0x0000000000008000 0x0000000000000001 = 0x000000000000000F ++selgt15 0x0000000000008000 0x0000000000000002 = 0x000000000000000F ++selgt15 0x0000000000008000 0x0000000000000003 = 0x000000000000000F ++selgt15 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++selgt15 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selgt15 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selgt15 0x0000000000008000 0x000000000000007F = 0x000000000000000F ++selgt15 0x0000000000008000 0x0000000000000080 = 0x000000000000000F ++selgt15 0x0000000000008000 0x0000000000007FFF = 0x000000000000000F ++selgt15 0x0000000000008000 0x0000000000008000 = 0x000000000000000F ++selgt15 0x0000000000008000 0x000000007FFFFFFF = 0x000000000000000F ++selgt15 0x0000000000008000 0x0000000080000000 = 0x000000000000000F ++selgt15 0x0000000000008000 0x8000000000000000 = 0x000000000000000F ++selgt15 0x0000000000008000 0xFFFFFFFF80000000 = 0x000000000000000F ++selgt15 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selgt15 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selgt15 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x0000000000008000 0x123456789ABCDEF0 = 0x000000000000000F ++selgt15 0x0000000000008000 0xF0DEBC9A78563412 = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0x0000000000000000 = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0x0000000000000001 = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0x0000000000000002 = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0x0000000080000000 = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0x8000000000000000 = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000000000000F ++selgt15 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000000000000F ++selgt15 0x0000000080000000 0x0000000000000000 = 0x000000000000000F ++selgt15 0x0000000080000000 0x0000000000000001 = 0x000000000000000F ++selgt15 0x0000000080000000 0x0000000000000002 = 0x000000000000000F ++selgt15 0x0000000080000000 0x0000000000000003 = 0x000000000000000F ++selgt15 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++selgt15 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selgt15 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selgt15 0x0000000080000000 0x000000000000007F = 0x000000000000000F ++selgt15 0x0000000080000000 0x0000000000000080 = 0x000000000000000F ++selgt15 0x0000000080000000 0x0000000000007FFF = 0x000000000000000F ++selgt15 0x0000000080000000 0x0000000000008000 = 0x000000000000000F ++selgt15 0x0000000080000000 0x000000007FFFFFFF = 0x000000000000000F ++selgt15 0x0000000080000000 0x0000000080000000 = 0x000000000000000F ++selgt15 0x0000000080000000 0x8000000000000000 = 0x000000000000000F ++selgt15 0x0000000080000000 0xFFFFFFFF80000000 = 0x000000000000000F ++selgt15 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selgt15 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selgt15 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x0000000080000000 0x123456789ABCDEF0 = 0x000000000000000F ++selgt15 0x0000000080000000 0xF0DEBC9A78563412 = 0x000000000000000F ++selgt15 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt15 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt15 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt15 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt15 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selgt15 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt15 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt15 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt15 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selgt15 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt15 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt15 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt15 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt15 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt15 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt15 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt15 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt15 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt15 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt15 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt15 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt15 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selgt15 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selgt15 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selgt15 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selgt15 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selgt15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt15 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selgt15 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selgt15 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt15 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selgt15 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt15 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selgt15 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selgt15 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt15 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt15 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt15 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt15 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt15 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selgt15 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selgt15 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selgt15 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selgt15 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selgt15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt15 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selgt15 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selgt15 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selgt15 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selgt15 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt15 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selgt15 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selgt15 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt15 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt15 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt15 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt15 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selgt15 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selgt15 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selgt15 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selgt15 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selgt15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt15 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selgt15 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selgt15 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selgt15 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selgt15 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt15 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selgt15 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selgt15 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt15 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt15 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt15 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt15 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000000F ++selgt15 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0x0000000000000000 = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0x0000000000000001 = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0x0000000000000002 = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0x0000000000000003 = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0x0000000000000080 = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0x0000000000008000 = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0x0000000080000000 = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0x8000000000000000 = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000000000000F ++selgt15 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000000000000F ++selgt15 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selgt15 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selgt15 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selgt15 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selgt15 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selgt15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt15 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selgt15 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selgt15 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selgt15 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selgt15 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt15 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selgt15 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selgt15 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt15 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt15 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt15 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt15 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selgt127 === ++selgt127 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt127 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt127 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt127 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt127 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selgt127 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt127 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt127 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt127 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selgt127 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt127 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt127 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt127 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt127 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt127 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt127 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt127 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt127 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt127 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt127 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt127 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt127 0x0000000000000001 0x0000000000000000 = 0x000000000000007F ++selgt127 0x0000000000000001 0x0000000000000001 = 0x000000000000007F ++selgt127 0x0000000000000001 0x0000000000000002 = 0x000000000000007F ++selgt127 0x0000000000000001 0x0000000000000003 = 0x000000000000007F ++selgt127 0x0000000000000001 0x000000000000000F = 0x000000000000007F ++selgt127 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selgt127 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selgt127 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++selgt127 0x0000000000000001 0x0000000000000080 = 0x000000000000007F ++selgt127 0x0000000000000001 0x0000000000007FFF = 0x000000000000007F ++selgt127 0x0000000000000001 0x0000000000008000 = 0x000000000000007F ++selgt127 0x0000000000000001 0x000000007FFFFFFF = 0x000000000000007F ++selgt127 0x0000000000000001 0x0000000080000000 = 0x000000000000007F ++selgt127 0x0000000000000001 0x8000000000000000 = 0x000000000000007F ++selgt127 0x0000000000000001 0xFFFFFFFF80000000 = 0x000000000000007F ++selgt127 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selgt127 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selgt127 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x0000000000000001 0x123456789ABCDEF0 = 0x000000000000007F ++selgt127 0x0000000000000001 0xF0DEBC9A78563412 = 0x000000000000007F ++selgt127 0x0000000000000002 0x0000000000000000 = 0x000000000000007F ++selgt127 0x0000000000000002 0x0000000000000001 = 0x000000000000007F ++selgt127 0x0000000000000002 0x0000000000000002 = 0x000000000000007F ++selgt127 0x0000000000000002 0x0000000000000003 = 0x000000000000007F ++selgt127 0x0000000000000002 0x000000000000000F = 0x000000000000007F ++selgt127 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selgt127 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selgt127 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++selgt127 0x0000000000000002 0x0000000000000080 = 0x000000000000007F ++selgt127 0x0000000000000002 0x0000000000007FFF = 0x000000000000007F ++selgt127 0x0000000000000002 0x0000000000008000 = 0x000000000000007F ++selgt127 0x0000000000000002 0x000000007FFFFFFF = 0x000000000000007F ++selgt127 0x0000000000000002 0x0000000080000000 = 0x000000000000007F ++selgt127 0x0000000000000002 0x8000000000000000 = 0x000000000000007F ++selgt127 0x0000000000000002 0xFFFFFFFF80000000 = 0x000000000000007F ++selgt127 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selgt127 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selgt127 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x0000000000000002 0x123456789ABCDEF0 = 0x000000000000007F ++selgt127 0x0000000000000002 0xF0DEBC9A78563412 = 0x000000000000007F ++selgt127 0x0000000000000003 0x0000000000000000 = 0x000000000000007F ++selgt127 0x0000000000000003 0x0000000000000001 = 0x000000000000007F ++selgt127 0x0000000000000003 0x0000000000000002 = 0x000000000000007F ++selgt127 0x0000000000000003 0x0000000000000003 = 0x000000000000007F ++selgt127 0x0000000000000003 0x000000000000000F = 0x000000000000007F ++selgt127 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selgt127 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selgt127 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++selgt127 0x0000000000000003 0x0000000000000080 = 0x000000000000007F ++selgt127 0x0000000000000003 0x0000000000007FFF = 0x000000000000007F ++selgt127 0x0000000000000003 0x0000000000008000 = 0x000000000000007F ++selgt127 0x0000000000000003 0x000000007FFFFFFF = 0x000000000000007F ++selgt127 0x0000000000000003 0x0000000080000000 = 0x000000000000007F ++selgt127 0x0000000000000003 0x8000000000000000 = 0x000000000000007F ++selgt127 0x0000000000000003 0xFFFFFFFF80000000 = 0x000000000000007F ++selgt127 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selgt127 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selgt127 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x0000000000000003 0x123456789ABCDEF0 = 0x000000000000007F ++selgt127 0x0000000000000003 0xF0DEBC9A78563412 = 0x000000000000007F ++selgt127 0x000000000000000F 0x0000000000000000 = 0x000000000000007F ++selgt127 0x000000000000000F 0x0000000000000001 = 0x000000000000007F ++selgt127 0x000000000000000F 0x0000000000000002 = 0x000000000000007F ++selgt127 0x000000000000000F 0x0000000000000003 = 0x000000000000007F ++selgt127 0x000000000000000F 0x000000000000000F = 0x000000000000007F ++selgt127 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selgt127 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selgt127 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++selgt127 0x000000000000000F 0x0000000000000080 = 0x000000000000007F ++selgt127 0x000000000000000F 0x0000000000007FFF = 0x000000000000007F ++selgt127 0x000000000000000F 0x0000000000008000 = 0x000000000000007F ++selgt127 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000007F ++selgt127 0x000000000000000F 0x0000000080000000 = 0x000000000000007F ++selgt127 0x000000000000000F 0x8000000000000000 = 0x000000000000007F ++selgt127 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000007F ++selgt127 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selgt127 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selgt127 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000007F ++selgt127 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000007F ++selgt127 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selgt127 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selgt127 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selgt127 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selgt127 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selgt127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt127 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selgt127 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selgt127 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selgt127 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selgt127 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt127 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selgt127 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selgt127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt127 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt127 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt127 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt127 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selgt127 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selgt127 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selgt127 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selgt127 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selgt127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt127 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selgt127 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selgt127 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selgt127 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selgt127 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt127 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selgt127 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selgt127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt127 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt127 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt127 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt127 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selgt127 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selgt127 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selgt127 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selgt127 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selgt127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt127 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selgt127 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selgt127 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selgt127 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selgt127 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt127 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selgt127 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selgt127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt127 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt127 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt127 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt127 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++selgt127 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++selgt127 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++selgt127 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++selgt127 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++selgt127 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selgt127 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selgt127 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selgt127 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++selgt127 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++selgt127 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++selgt127 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++selgt127 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++selgt127 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++selgt127 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++selgt127 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selgt127 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selgt127 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++selgt127 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++selgt127 0x0000000000000080 0x0000000000000000 = 0x000000000000007F ++selgt127 0x0000000000000080 0x0000000000000001 = 0x000000000000007F ++selgt127 0x0000000000000080 0x0000000000000002 = 0x000000000000007F ++selgt127 0x0000000000000080 0x0000000000000003 = 0x000000000000007F ++selgt127 0x0000000000000080 0x000000000000000F = 0x000000000000007F ++selgt127 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selgt127 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selgt127 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++selgt127 0x0000000000000080 0x0000000000000080 = 0x000000000000007F ++selgt127 0x0000000000000080 0x0000000000007FFF = 0x000000000000007F ++selgt127 0x0000000000000080 0x0000000000008000 = 0x000000000000007F ++selgt127 0x0000000000000080 0x000000007FFFFFFF = 0x000000000000007F ++selgt127 0x0000000000000080 0x0000000080000000 = 0x000000000000007F ++selgt127 0x0000000000000080 0x8000000000000000 = 0x000000000000007F ++selgt127 0x0000000000000080 0xFFFFFFFF80000000 = 0x000000000000007F ++selgt127 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selgt127 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selgt127 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x0000000000000080 0x123456789ABCDEF0 = 0x000000000000007F ++selgt127 0x0000000000000080 0xF0DEBC9A78563412 = 0x000000000000007F ++selgt127 0x0000000000007FFF 0x0000000000000000 = 0x000000000000007F ++selgt127 0x0000000000007FFF 0x0000000000000001 = 0x000000000000007F ++selgt127 0x0000000000007FFF 0x0000000000000002 = 0x000000000000007F ++selgt127 0x0000000000007FFF 0x0000000000000003 = 0x000000000000007F ++selgt127 0x0000000000007FFF 0x000000000000000F = 0x000000000000007F ++selgt127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selgt127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selgt127 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++selgt127 0x0000000000007FFF 0x0000000000000080 = 0x000000000000007F ++selgt127 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000007F ++selgt127 0x0000000000007FFF 0x0000000000008000 = 0x000000000000007F ++selgt127 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000000000007F ++selgt127 0x0000000000007FFF 0x0000000080000000 = 0x000000000000007F ++selgt127 0x0000000000007FFF 0x8000000000000000 = 0x000000000000007F ++selgt127 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000000000007F ++selgt127 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selgt127 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selgt127 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000000000007F ++selgt127 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000000000007F ++selgt127 0x0000000000008000 0x0000000000000000 = 0x000000000000007F ++selgt127 0x0000000000008000 0x0000000000000001 = 0x000000000000007F ++selgt127 0x0000000000008000 0x0000000000000002 = 0x000000000000007F ++selgt127 0x0000000000008000 0x0000000000000003 = 0x000000000000007F ++selgt127 0x0000000000008000 0x000000000000000F = 0x000000000000007F ++selgt127 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selgt127 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selgt127 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++selgt127 0x0000000000008000 0x0000000000000080 = 0x000000000000007F ++selgt127 0x0000000000008000 0x0000000000007FFF = 0x000000000000007F ++selgt127 0x0000000000008000 0x0000000000008000 = 0x000000000000007F ++selgt127 0x0000000000008000 0x000000007FFFFFFF = 0x000000000000007F ++selgt127 0x0000000000008000 0x0000000080000000 = 0x000000000000007F ++selgt127 0x0000000000008000 0x8000000000000000 = 0x000000000000007F ++selgt127 0x0000000000008000 0xFFFFFFFF80000000 = 0x000000000000007F ++selgt127 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selgt127 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selgt127 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x0000000000008000 0x123456789ABCDEF0 = 0x000000000000007F ++selgt127 0x0000000000008000 0xF0DEBC9A78563412 = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0x0000000000000000 = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0x0000000000000001 = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0x0000000000000002 = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0x0000000080000000 = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0x8000000000000000 = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000000000007F ++selgt127 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000000000007F ++selgt127 0x0000000080000000 0x0000000000000000 = 0x000000000000007F ++selgt127 0x0000000080000000 0x0000000000000001 = 0x000000000000007F ++selgt127 0x0000000080000000 0x0000000000000002 = 0x000000000000007F ++selgt127 0x0000000080000000 0x0000000000000003 = 0x000000000000007F ++selgt127 0x0000000080000000 0x000000000000000F = 0x000000000000007F ++selgt127 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selgt127 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selgt127 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++selgt127 0x0000000080000000 0x0000000000000080 = 0x000000000000007F ++selgt127 0x0000000080000000 0x0000000000007FFF = 0x000000000000007F ++selgt127 0x0000000080000000 0x0000000000008000 = 0x000000000000007F ++selgt127 0x0000000080000000 0x000000007FFFFFFF = 0x000000000000007F ++selgt127 0x0000000080000000 0x0000000080000000 = 0x000000000000007F ++selgt127 0x0000000080000000 0x8000000000000000 = 0x000000000000007F ++selgt127 0x0000000080000000 0xFFFFFFFF80000000 = 0x000000000000007F ++selgt127 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selgt127 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selgt127 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x0000000080000000 0x123456789ABCDEF0 = 0x000000000000007F ++selgt127 0x0000000080000000 0xF0DEBC9A78563412 = 0x000000000000007F ++selgt127 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt127 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt127 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt127 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt127 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selgt127 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt127 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt127 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt127 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selgt127 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt127 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt127 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt127 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt127 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt127 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt127 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt127 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt127 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt127 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt127 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt127 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt127 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selgt127 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selgt127 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selgt127 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selgt127 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selgt127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt127 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selgt127 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selgt127 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt127 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selgt127 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt127 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selgt127 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selgt127 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt127 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt127 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt127 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt127 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt127 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selgt127 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selgt127 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selgt127 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selgt127 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selgt127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt127 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selgt127 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selgt127 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selgt127 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selgt127 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt127 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selgt127 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selgt127 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt127 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt127 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt127 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt127 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selgt127 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selgt127 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selgt127 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selgt127 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selgt127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt127 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selgt127 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selgt127 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selgt127 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selgt127 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt127 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selgt127 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selgt127 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt127 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt127 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt127 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt127 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000007F ++selgt127 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0x0000000000000000 = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0x0000000000000001 = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0x0000000000000002 = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0x0000000000000003 = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0x0000000000000080 = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0x0000000000008000 = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0x0000000080000000 = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0x8000000000000000 = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000000000007F ++selgt127 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000000000007F ++selgt127 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selgt127 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selgt127 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selgt127 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selgt127 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selgt127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt127 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selgt127 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selgt127 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selgt127 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selgt127 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt127 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selgt127 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selgt127 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt127 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt127 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt127 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt127 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selgt128 === ++selgt128 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt128 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt128 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt128 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt128 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selgt128 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt128 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt128 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt128 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selgt128 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt128 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt128 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt128 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt128 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt128 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt128 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt128 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt128 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt128 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt128 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt128 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt128 0x0000000000000001 0x0000000000000000 = 0x0000000000000080 ++selgt128 0x0000000000000001 0x0000000000000001 = 0x0000000000000080 ++selgt128 0x0000000000000001 0x0000000000000002 = 0x0000000000000080 ++selgt128 0x0000000000000001 0x0000000000000003 = 0x0000000000000080 ++selgt128 0x0000000000000001 0x000000000000000F = 0x0000000000000080 ++selgt128 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selgt128 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selgt128 0x0000000000000001 0x000000000000007F = 0x0000000000000080 ++selgt128 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++selgt128 0x0000000000000001 0x0000000000007FFF = 0x0000000000000080 ++selgt128 0x0000000000000001 0x0000000000008000 = 0x0000000000000080 ++selgt128 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000000001 0x0000000080000000 = 0x0000000000000080 ++selgt128 0x0000000000000001 0x8000000000000000 = 0x0000000000000080 ++selgt128 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000080 ++selgt128 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selgt128 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selgt128 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000080 ++selgt128 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000080 ++selgt128 0x0000000000000002 0x0000000000000000 = 0x0000000000000080 ++selgt128 0x0000000000000002 0x0000000000000001 = 0x0000000000000080 ++selgt128 0x0000000000000002 0x0000000000000002 = 0x0000000000000080 ++selgt128 0x0000000000000002 0x0000000000000003 = 0x0000000000000080 ++selgt128 0x0000000000000002 0x000000000000000F = 0x0000000000000080 ++selgt128 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selgt128 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selgt128 0x0000000000000002 0x000000000000007F = 0x0000000000000080 ++selgt128 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++selgt128 0x0000000000000002 0x0000000000007FFF = 0x0000000000000080 ++selgt128 0x0000000000000002 0x0000000000008000 = 0x0000000000000080 ++selgt128 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000000002 0x0000000080000000 = 0x0000000000000080 ++selgt128 0x0000000000000002 0x8000000000000000 = 0x0000000000000080 ++selgt128 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000080 ++selgt128 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selgt128 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selgt128 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000080 ++selgt128 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000080 ++selgt128 0x0000000000000003 0x0000000000000000 = 0x0000000000000080 ++selgt128 0x0000000000000003 0x0000000000000001 = 0x0000000000000080 ++selgt128 0x0000000000000003 0x0000000000000002 = 0x0000000000000080 ++selgt128 0x0000000000000003 0x0000000000000003 = 0x0000000000000080 ++selgt128 0x0000000000000003 0x000000000000000F = 0x0000000000000080 ++selgt128 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selgt128 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selgt128 0x0000000000000003 0x000000000000007F = 0x0000000000000080 ++selgt128 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++selgt128 0x0000000000000003 0x0000000000007FFF = 0x0000000000000080 ++selgt128 0x0000000000000003 0x0000000000008000 = 0x0000000000000080 ++selgt128 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000000003 0x0000000080000000 = 0x0000000000000080 ++selgt128 0x0000000000000003 0x8000000000000000 = 0x0000000000000080 ++selgt128 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000080 ++selgt128 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selgt128 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selgt128 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000080 ++selgt128 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000080 ++selgt128 0x000000000000000F 0x0000000000000000 = 0x0000000000000080 ++selgt128 0x000000000000000F 0x0000000000000001 = 0x0000000000000080 ++selgt128 0x000000000000000F 0x0000000000000002 = 0x0000000000000080 ++selgt128 0x000000000000000F 0x0000000000000003 = 0x0000000000000080 ++selgt128 0x000000000000000F 0x000000000000000F = 0x0000000000000080 ++selgt128 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selgt128 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selgt128 0x000000000000000F 0x000000000000007F = 0x0000000000000080 ++selgt128 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++selgt128 0x000000000000000F 0x0000000000007FFF = 0x0000000000000080 ++selgt128 0x000000000000000F 0x0000000000008000 = 0x0000000000000080 ++selgt128 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000080 ++selgt128 0x000000000000000F 0x0000000080000000 = 0x0000000000000080 ++selgt128 0x000000000000000F 0x8000000000000000 = 0x0000000000000080 ++selgt128 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000080 ++selgt128 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selgt128 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selgt128 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000080 ++selgt128 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000080 ++selgt128 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selgt128 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selgt128 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selgt128 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selgt128 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selgt128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt128 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selgt128 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selgt128 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selgt128 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selgt128 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt128 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selgt128 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selgt128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt128 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt128 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt128 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt128 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selgt128 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selgt128 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selgt128 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selgt128 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selgt128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt128 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selgt128 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selgt128 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selgt128 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selgt128 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt128 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selgt128 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selgt128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt128 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt128 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt128 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt128 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selgt128 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selgt128 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selgt128 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selgt128 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selgt128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt128 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selgt128 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selgt128 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selgt128 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selgt128 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt128 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selgt128 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selgt128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt128 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt128 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt128 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt128 0x000000000000007F 0x0000000000000000 = 0x0000000000000080 ++selgt128 0x000000000000007F 0x0000000000000001 = 0x0000000000000080 ++selgt128 0x000000000000007F 0x0000000000000002 = 0x0000000000000080 ++selgt128 0x000000000000007F 0x0000000000000003 = 0x0000000000000080 ++selgt128 0x000000000000007F 0x000000000000000F = 0x0000000000000080 ++selgt128 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selgt128 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selgt128 0x000000000000007F 0x000000000000007F = 0x0000000000000080 ++selgt128 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++selgt128 0x000000000000007F 0x0000000000007FFF = 0x0000000000000080 ++selgt128 0x000000000000007F 0x0000000000008000 = 0x0000000000000080 ++selgt128 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000080 ++selgt128 0x000000000000007F 0x0000000080000000 = 0x0000000000000080 ++selgt128 0x000000000000007F 0x8000000000000000 = 0x0000000000000080 ++selgt128 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000080 ++selgt128 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selgt128 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selgt128 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000080 ++selgt128 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000080 ++selgt128 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++selgt128 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++selgt128 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++selgt128 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++selgt128 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++selgt128 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selgt128 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selgt128 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++selgt128 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selgt128 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++selgt128 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++selgt128 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++selgt128 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++selgt128 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++selgt128 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selgt128 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selgt128 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++selgt128 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0x000000000000000F = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0x000000000000007F = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000080 ++selgt128 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++selgt128 0x0000000000008000 0x0000000000000000 = 0x0000000000000080 ++selgt128 0x0000000000008000 0x0000000000000001 = 0x0000000000000080 ++selgt128 0x0000000000008000 0x0000000000000002 = 0x0000000000000080 ++selgt128 0x0000000000008000 0x0000000000000003 = 0x0000000000000080 ++selgt128 0x0000000000008000 0x000000000000000F = 0x0000000000000080 ++selgt128 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selgt128 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selgt128 0x0000000000008000 0x000000000000007F = 0x0000000000000080 ++selgt128 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++selgt128 0x0000000000008000 0x0000000000007FFF = 0x0000000000000080 ++selgt128 0x0000000000008000 0x0000000000008000 = 0x0000000000000080 ++selgt128 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000008000 0x0000000080000000 = 0x0000000000000080 ++selgt128 0x0000000000008000 0x8000000000000000 = 0x0000000000000080 ++selgt128 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000080 ++selgt128 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selgt128 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selgt128 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000080 ++selgt128 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000080 ++selgt128 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++selgt128 0x0000000080000000 0x0000000000000000 = 0x0000000000000080 ++selgt128 0x0000000080000000 0x0000000000000001 = 0x0000000000000080 ++selgt128 0x0000000080000000 0x0000000000000002 = 0x0000000000000080 ++selgt128 0x0000000080000000 0x0000000000000003 = 0x0000000000000080 ++selgt128 0x0000000080000000 0x000000000000000F = 0x0000000000000080 ++selgt128 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selgt128 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selgt128 0x0000000080000000 0x000000000000007F = 0x0000000000000080 ++selgt128 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++selgt128 0x0000000080000000 0x0000000000007FFF = 0x0000000000000080 ++selgt128 0x0000000080000000 0x0000000000008000 = 0x0000000000000080 ++selgt128 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000080 ++selgt128 0x0000000080000000 0x0000000080000000 = 0x0000000000000080 ++selgt128 0x0000000080000000 0x8000000000000000 = 0x0000000000000080 ++selgt128 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++selgt128 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selgt128 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selgt128 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000080 ++selgt128 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++selgt128 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt128 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt128 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt128 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt128 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selgt128 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt128 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt128 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt128 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selgt128 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt128 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt128 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt128 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt128 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt128 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt128 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt128 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt128 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt128 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt128 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt128 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt128 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selgt128 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selgt128 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selgt128 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selgt128 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selgt128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt128 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selgt128 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selgt128 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt128 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selgt128 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt128 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selgt128 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selgt128 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt128 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt128 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt128 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt128 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt128 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selgt128 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selgt128 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selgt128 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selgt128 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selgt128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt128 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selgt128 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selgt128 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selgt128 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selgt128 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt128 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selgt128 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selgt128 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt128 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt128 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt128 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt128 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selgt128 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selgt128 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selgt128 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selgt128 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selgt128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt128 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selgt128 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selgt128 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selgt128 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selgt128 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt128 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selgt128 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selgt128 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt128 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt128 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt128 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt128 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000080 ++selgt128 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000080 ++selgt128 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000080 ++selgt128 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selgt128 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selgt128 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selgt128 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selgt128 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selgt128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt128 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selgt128 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selgt128 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selgt128 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selgt128 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt128 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selgt128 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selgt128 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt128 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt128 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt128 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt128 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selgt255 === ++selgt255 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt255 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt255 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt255 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt255 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selgt255 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt255 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt255 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt255 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selgt255 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt255 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt255 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt255 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt255 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt255 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt255 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt255 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt255 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt255 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt255 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt255 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt255 0x0000000000000001 0x0000000000000000 = 0x00000000000000FF ++selgt255 0x0000000000000001 0x0000000000000001 = 0x00000000000000FF ++selgt255 0x0000000000000001 0x0000000000000002 = 0x00000000000000FF ++selgt255 0x0000000000000001 0x0000000000000003 = 0x00000000000000FF ++selgt255 0x0000000000000001 0x000000000000000F = 0x00000000000000FF ++selgt255 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selgt255 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selgt255 0x0000000000000001 0x000000000000007F = 0x00000000000000FF ++selgt255 0x0000000000000001 0x0000000000000080 = 0x00000000000000FF ++selgt255 0x0000000000000001 0x0000000000007FFF = 0x00000000000000FF ++selgt255 0x0000000000000001 0x0000000000008000 = 0x00000000000000FF ++selgt255 0x0000000000000001 0x000000007FFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000000001 0x0000000080000000 = 0x00000000000000FF ++selgt255 0x0000000000000001 0x8000000000000000 = 0x00000000000000FF ++selgt255 0x0000000000000001 0xFFFFFFFF80000000 = 0x00000000000000FF ++selgt255 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selgt255 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selgt255 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000000001 0x123456789ABCDEF0 = 0x00000000000000FF ++selgt255 0x0000000000000001 0xF0DEBC9A78563412 = 0x00000000000000FF ++selgt255 0x0000000000000002 0x0000000000000000 = 0x00000000000000FF ++selgt255 0x0000000000000002 0x0000000000000001 = 0x00000000000000FF ++selgt255 0x0000000000000002 0x0000000000000002 = 0x00000000000000FF ++selgt255 0x0000000000000002 0x0000000000000003 = 0x00000000000000FF ++selgt255 0x0000000000000002 0x000000000000000F = 0x00000000000000FF ++selgt255 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selgt255 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selgt255 0x0000000000000002 0x000000000000007F = 0x00000000000000FF ++selgt255 0x0000000000000002 0x0000000000000080 = 0x00000000000000FF ++selgt255 0x0000000000000002 0x0000000000007FFF = 0x00000000000000FF ++selgt255 0x0000000000000002 0x0000000000008000 = 0x00000000000000FF ++selgt255 0x0000000000000002 0x000000007FFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000000002 0x0000000080000000 = 0x00000000000000FF ++selgt255 0x0000000000000002 0x8000000000000000 = 0x00000000000000FF ++selgt255 0x0000000000000002 0xFFFFFFFF80000000 = 0x00000000000000FF ++selgt255 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selgt255 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selgt255 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000000002 0x123456789ABCDEF0 = 0x00000000000000FF ++selgt255 0x0000000000000002 0xF0DEBC9A78563412 = 0x00000000000000FF ++selgt255 0x0000000000000003 0x0000000000000000 = 0x00000000000000FF ++selgt255 0x0000000000000003 0x0000000000000001 = 0x00000000000000FF ++selgt255 0x0000000000000003 0x0000000000000002 = 0x00000000000000FF ++selgt255 0x0000000000000003 0x0000000000000003 = 0x00000000000000FF ++selgt255 0x0000000000000003 0x000000000000000F = 0x00000000000000FF ++selgt255 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selgt255 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selgt255 0x0000000000000003 0x000000000000007F = 0x00000000000000FF ++selgt255 0x0000000000000003 0x0000000000000080 = 0x00000000000000FF ++selgt255 0x0000000000000003 0x0000000000007FFF = 0x00000000000000FF ++selgt255 0x0000000000000003 0x0000000000008000 = 0x00000000000000FF ++selgt255 0x0000000000000003 0x000000007FFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000000003 0x0000000080000000 = 0x00000000000000FF ++selgt255 0x0000000000000003 0x8000000000000000 = 0x00000000000000FF ++selgt255 0x0000000000000003 0xFFFFFFFF80000000 = 0x00000000000000FF ++selgt255 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selgt255 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selgt255 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000000003 0x123456789ABCDEF0 = 0x00000000000000FF ++selgt255 0x0000000000000003 0xF0DEBC9A78563412 = 0x00000000000000FF ++selgt255 0x000000000000000F 0x0000000000000000 = 0x00000000000000FF ++selgt255 0x000000000000000F 0x0000000000000001 = 0x00000000000000FF ++selgt255 0x000000000000000F 0x0000000000000002 = 0x00000000000000FF ++selgt255 0x000000000000000F 0x0000000000000003 = 0x00000000000000FF ++selgt255 0x000000000000000F 0x000000000000000F = 0x00000000000000FF ++selgt255 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selgt255 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selgt255 0x000000000000000F 0x000000000000007F = 0x00000000000000FF ++selgt255 0x000000000000000F 0x0000000000000080 = 0x00000000000000FF ++selgt255 0x000000000000000F 0x0000000000007FFF = 0x00000000000000FF ++selgt255 0x000000000000000F 0x0000000000008000 = 0x00000000000000FF ++selgt255 0x000000000000000F 0x000000007FFFFFFF = 0x00000000000000FF ++selgt255 0x000000000000000F 0x0000000080000000 = 0x00000000000000FF ++selgt255 0x000000000000000F 0x8000000000000000 = 0x00000000000000FF ++selgt255 0x000000000000000F 0xFFFFFFFF80000000 = 0x00000000000000FF ++selgt255 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selgt255 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selgt255 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x000000000000000F 0x123456789ABCDEF0 = 0x00000000000000FF ++selgt255 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000000000FF ++selgt255 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selgt255 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selgt255 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selgt255 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selgt255 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selgt255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt255 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selgt255 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selgt255 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selgt255 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selgt255 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt255 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selgt255 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selgt255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt255 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt255 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt255 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt255 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selgt255 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selgt255 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selgt255 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selgt255 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selgt255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt255 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selgt255 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selgt255 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selgt255 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selgt255 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt255 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selgt255 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selgt255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt255 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt255 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt255 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt255 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selgt255 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selgt255 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selgt255 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selgt255 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selgt255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt255 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selgt255 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selgt255 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selgt255 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selgt255 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt255 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selgt255 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selgt255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt255 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt255 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt255 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt255 0x000000000000007F 0x0000000000000000 = 0x00000000000000FF ++selgt255 0x000000000000007F 0x0000000000000001 = 0x00000000000000FF ++selgt255 0x000000000000007F 0x0000000000000002 = 0x00000000000000FF ++selgt255 0x000000000000007F 0x0000000000000003 = 0x00000000000000FF ++selgt255 0x000000000000007F 0x000000000000000F = 0x00000000000000FF ++selgt255 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selgt255 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selgt255 0x000000000000007F 0x000000000000007F = 0x00000000000000FF ++selgt255 0x000000000000007F 0x0000000000000080 = 0x00000000000000FF ++selgt255 0x000000000000007F 0x0000000000007FFF = 0x00000000000000FF ++selgt255 0x000000000000007F 0x0000000000008000 = 0x00000000000000FF ++selgt255 0x000000000000007F 0x000000007FFFFFFF = 0x00000000000000FF ++selgt255 0x000000000000007F 0x0000000080000000 = 0x00000000000000FF ++selgt255 0x000000000000007F 0x8000000000000000 = 0x00000000000000FF ++selgt255 0x000000000000007F 0xFFFFFFFF80000000 = 0x00000000000000FF ++selgt255 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selgt255 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selgt255 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x000000000000007F 0x123456789ABCDEF0 = 0x00000000000000FF ++selgt255 0x000000000000007F 0xF0DEBC9A78563412 = 0x00000000000000FF ++selgt255 0x0000000000000080 0x0000000000000000 = 0x00000000000000FF ++selgt255 0x0000000000000080 0x0000000000000001 = 0x00000000000000FF ++selgt255 0x0000000000000080 0x0000000000000002 = 0x00000000000000FF ++selgt255 0x0000000000000080 0x0000000000000003 = 0x00000000000000FF ++selgt255 0x0000000000000080 0x000000000000000F = 0x00000000000000FF ++selgt255 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selgt255 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selgt255 0x0000000000000080 0x000000000000007F = 0x00000000000000FF ++selgt255 0x0000000000000080 0x0000000000000080 = 0x00000000000000FF ++selgt255 0x0000000000000080 0x0000000000007FFF = 0x00000000000000FF ++selgt255 0x0000000000000080 0x0000000000008000 = 0x00000000000000FF ++selgt255 0x0000000000000080 0x000000007FFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000000080 0x0000000080000000 = 0x00000000000000FF ++selgt255 0x0000000000000080 0x8000000000000000 = 0x00000000000000FF ++selgt255 0x0000000000000080 0xFFFFFFFF80000000 = 0x00000000000000FF ++selgt255 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selgt255 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selgt255 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000000080 0x123456789ABCDEF0 = 0x00000000000000FF ++selgt255 0x0000000000000080 0xF0DEBC9A78563412 = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0x0000000000000000 = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0x0000000000000001 = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0x0000000000000002 = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0x0000000000000003 = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0x000000000000000F = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0x000000000000007F = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0x0000000000000080 = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0x0000000000007FFF = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0x0000000000008000 = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0x000000007FFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0x0000000080000000 = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0x8000000000000000 = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0x123456789ABCDEF0 = 0x00000000000000FF ++selgt255 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++selgt255 0x0000000000008000 0x0000000000000000 = 0x00000000000000FF ++selgt255 0x0000000000008000 0x0000000000000001 = 0x00000000000000FF ++selgt255 0x0000000000008000 0x0000000000000002 = 0x00000000000000FF ++selgt255 0x0000000000008000 0x0000000000000003 = 0x00000000000000FF ++selgt255 0x0000000000008000 0x000000000000000F = 0x00000000000000FF ++selgt255 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selgt255 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selgt255 0x0000000000008000 0x000000000000007F = 0x00000000000000FF ++selgt255 0x0000000000008000 0x0000000000000080 = 0x00000000000000FF ++selgt255 0x0000000000008000 0x0000000000007FFF = 0x00000000000000FF ++selgt255 0x0000000000008000 0x0000000000008000 = 0x00000000000000FF ++selgt255 0x0000000000008000 0x000000007FFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000008000 0x0000000080000000 = 0x00000000000000FF ++selgt255 0x0000000000008000 0x8000000000000000 = 0x00000000000000FF ++selgt255 0x0000000000008000 0xFFFFFFFF80000000 = 0x00000000000000FF ++selgt255 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selgt255 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selgt255 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x0000000000008000 0x123456789ABCDEF0 = 0x00000000000000FF ++selgt255 0x0000000000008000 0xF0DEBC9A78563412 = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0x0000000000000000 = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0x0000000000000002 = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0x0000000000000003 = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0x000000000000000F = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0x000000000000007F = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0x0000000000000080 = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0x0000000000008000 = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0x8000000000000000 = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++selgt255 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++selgt255 0x0000000080000000 0x0000000000000000 = 0x00000000000000FF ++selgt255 0x0000000080000000 0x0000000000000001 = 0x00000000000000FF ++selgt255 0x0000000080000000 0x0000000000000002 = 0x00000000000000FF ++selgt255 0x0000000080000000 0x0000000000000003 = 0x00000000000000FF ++selgt255 0x0000000080000000 0x000000000000000F = 0x00000000000000FF ++selgt255 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selgt255 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selgt255 0x0000000080000000 0x000000000000007F = 0x00000000000000FF ++selgt255 0x0000000080000000 0x0000000000000080 = 0x00000000000000FF ++selgt255 0x0000000080000000 0x0000000000007FFF = 0x00000000000000FF ++selgt255 0x0000000080000000 0x0000000000008000 = 0x00000000000000FF ++selgt255 0x0000000080000000 0x000000007FFFFFFF = 0x00000000000000FF ++selgt255 0x0000000080000000 0x0000000080000000 = 0x00000000000000FF ++selgt255 0x0000000080000000 0x8000000000000000 = 0x00000000000000FF ++selgt255 0x0000000080000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++selgt255 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selgt255 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selgt255 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x0000000080000000 0x123456789ABCDEF0 = 0x00000000000000FF ++selgt255 0x0000000080000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++selgt255 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt255 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selgt255 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selgt255 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selgt255 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selgt255 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt255 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt255 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt255 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selgt255 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt255 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt255 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selgt255 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt255 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt255 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt255 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt255 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt255 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt255 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt255 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt255 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt255 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selgt255 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selgt255 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selgt255 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selgt255 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selgt255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt255 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selgt255 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selgt255 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt255 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selgt255 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt255 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selgt255 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selgt255 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt255 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt255 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt255 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt255 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt255 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selgt255 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selgt255 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selgt255 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selgt255 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selgt255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt255 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selgt255 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selgt255 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selgt255 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selgt255 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt255 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selgt255 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selgt255 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt255 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt255 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt255 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt255 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selgt255 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selgt255 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selgt255 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selgt255 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selgt255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt255 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selgt255 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selgt255 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selgt255 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selgt255 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt255 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selgt255 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selgt255 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt255 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt255 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt255 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt255 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++selgt255 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0x0000000000000000 = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0x0000000000000001 = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0x0000000000000002 = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0x0000000000000003 = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0x000000000000000F = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0x000000000000007F = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0x0000000000000080 = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0x0000000000007FFF = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0x0000000080000000 = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0x8000000000000000 = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x00000000000000FF ++selgt255 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x00000000000000FF ++selgt255 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selgt255 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selgt255 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selgt255 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selgt255 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selgt255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt255 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selgt255 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selgt255 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selgt255 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selgt255 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt255 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selgt255 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selgt255 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt255 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt255 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt255 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt255 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on selle0 === ++selle0 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selle0 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++selle0 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++selle0 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++selle0 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++selle0 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selle0 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selle0 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++selle0 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++selle0 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++selle0 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++selle0 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++selle0 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++selle0 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++selle0 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selle0 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selle0 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selle0 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++selle0 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selle0 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++selle0 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selle0 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++selle0 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++selle0 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++selle0 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle0 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle0 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle0 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++selle0 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++selle0 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++selle0 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++selle0 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle0 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++selle0 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++selle0 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle0 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle0 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle0 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle0 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle0 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle0 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++selle0 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++selle0 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selle0 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++selle0 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++selle0 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle0 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle0 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle0 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++selle0 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++selle0 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++selle0 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++selle0 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle0 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++selle0 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++selle0 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle0 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle0 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle0 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle0 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle0 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle0 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++selle0 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++selle0 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++selle0 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selle0 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++selle0 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle0 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle0 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle0 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++selle0 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++selle0 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++selle0 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++selle0 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle0 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++selle0 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++selle0 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle0 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle0 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle0 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle0 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle0 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle0 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++selle0 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++selle0 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++selle0 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++selle0 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selle0 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle0 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle0 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle0 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++selle0 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++selle0 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++selle0 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++selle0 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle0 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++selle0 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++selle0 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle0 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle0 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle0 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle0 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle0 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle0 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++selle0 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++selle0 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++selle0 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++selle0 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++selle0 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++selle0 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle0 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle0 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selle0 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++selle0 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++selle0 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++selle0 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle0 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++selle0 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++selle0 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle0 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle0 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle0 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle0 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle0 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle0 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++selle0 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++selle0 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++selle0 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++selle0 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++selle0 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle0 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle0 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++selle0 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selle0 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++selle0 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++selle0 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle0 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++selle0 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++selle0 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle0 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle0 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle0 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle0 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle0 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle0 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++selle0 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++selle0 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++selle0 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++selle0 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++selle0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle0 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++selle0 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++selle0 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++selle0 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++selle0 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle0 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++selle0 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++selle0 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle0 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle0 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle0 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle0 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle0 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle0 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++selle0 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++selle0 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++selle0 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++selle0 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++selle0 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle0 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle0 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle0 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++selle0 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++selle0 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++selle0 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++selle0 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle0 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++selle0 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++selle0 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle0 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle0 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle0 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle0 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle0 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle0 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle0 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle0 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle0 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle0 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++selle0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle0 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++selle0 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle0 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle0 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle0 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle0 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle0 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle0 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle0 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle0 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle0 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle0 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle0 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++selle0 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++selle0 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++selle0 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++selle0 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++selle0 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle0 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle0 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle0 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++selle0 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++selle0 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++selle0 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++selle0 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle0 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++selle0 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++selle0 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle0 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle0 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle0 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle0 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle0 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle0 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selle0 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++selle0 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++selle0 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++selle0 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++selle0 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selle0 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selle0 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++selle0 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++selle0 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++selle0 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++selle0 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++selle0 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++selle0 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++selle0 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selle0 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selle0 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selle0 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++selle0 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++selle0 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000000 ++selle0 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++selle0 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle0 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle0 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle0 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle0 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selle0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle0 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selle0 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle0 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle0 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle0 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle0 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle0 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle0 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle0 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle0 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle0 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++selle0 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++selle0 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++selle0 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++selle0 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++selle0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle0 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++selle0 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++selle0 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++selle0 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++selle0 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle0 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++selle0 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++selle0 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle0 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle0 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle0 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle0 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle0 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000000 ++selle0 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on selle1 === ++selle1 0x0000000000000000 0x0000000000000000 = 0x0000000000000001 ++selle1 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selle1 0x0000000000000000 0x0000000000000002 = 0x0000000000000001 ++selle1 0x0000000000000000 0x0000000000000003 = 0x0000000000000001 ++selle1 0x0000000000000000 0x000000000000000F = 0x0000000000000001 ++selle1 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selle1 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selle1 0x0000000000000000 0x000000000000007F = 0x0000000000000001 ++selle1 0x0000000000000000 0x0000000000000080 = 0x0000000000000001 ++selle1 0x0000000000000000 0x0000000000007FFF = 0x0000000000000001 ++selle1 0x0000000000000000 0x0000000000008000 = 0x0000000000000001 ++selle1 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++selle1 0x0000000000000000 0x0000000080000000 = 0x0000000000000001 ++selle1 0x0000000000000000 0x8000000000000000 = 0x0000000000000001 ++selle1 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++selle1 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selle1 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selle1 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000001 ++selle1 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++selle1 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++selle1 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selle1 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++selle1 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++selle1 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++selle1 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle1 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle1 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle1 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++selle1 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++selle1 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++selle1 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++selle1 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle1 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++selle1 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++selle1 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle1 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle1 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle1 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle1 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle1 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle1 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++selle1 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++selle1 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selle1 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++selle1 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++selle1 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle1 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle1 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle1 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++selle1 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++selle1 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++selle1 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++selle1 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle1 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++selle1 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++selle1 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle1 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle1 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle1 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle1 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle1 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle1 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++selle1 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++selle1 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++selle1 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selle1 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++selle1 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle1 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle1 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle1 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++selle1 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++selle1 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++selle1 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++selle1 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle1 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++selle1 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++selle1 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle1 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle1 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle1 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle1 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle1 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle1 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++selle1 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++selle1 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++selle1 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++selle1 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selle1 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle1 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle1 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle1 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++selle1 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++selle1 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++selle1 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++selle1 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle1 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++selle1 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++selle1 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle1 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle1 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle1 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle1 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle1 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle1 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000001 ++selle1 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++selle1 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++selle1 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++selle1 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++selle1 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++selle1 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle1 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle1 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle1 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selle1 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++selle1 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++selle1 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++selle1 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle1 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++selle1 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++selle1 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle1 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle1 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle1 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle1 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle1 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle1 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++selle1 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++selle1 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++selle1 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++selle1 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++selle1 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle1 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle1 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle1 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++selle1 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selle1 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++selle1 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++selle1 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle1 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++selle1 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++selle1 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle1 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle1 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle1 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle1 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle1 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle1 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++selle1 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++selle1 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++selle1 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++selle1 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++selle1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle1 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++selle1 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++selle1 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++selle1 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++selle1 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle1 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++selle1 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++selle1 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle1 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle1 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle1 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle1 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle1 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle1 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++selle1 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++selle1 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++selle1 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++selle1 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++selle1 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle1 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle1 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle1 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++selle1 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++selle1 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++selle1 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++selle1 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle1 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++selle1 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++selle1 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle1 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle1 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle1 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle1 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle1 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle1 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle1 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle1 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle1 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle1 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++selle1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle1 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++selle1 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle1 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle1 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle1 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle1 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle1 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle1 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle1 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle1 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle1 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle1 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle1 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++selle1 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++selle1 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++selle1 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++selle1 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++selle1 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle1 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle1 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle1 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++selle1 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++selle1 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++selle1 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++selle1 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle1 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++selle1 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++selle1 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle1 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle1 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle1 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle1 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle1 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle1 0x8000000000000000 0x0000000000000000 = 0x0000000000000001 ++selle1 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selle1 0x8000000000000000 0x0000000000000002 = 0x0000000000000001 ++selle1 0x8000000000000000 0x0000000000000003 = 0x0000000000000001 ++selle1 0x8000000000000000 0x000000000000000F = 0x0000000000000001 ++selle1 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selle1 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selle1 0x8000000000000000 0x000000000000007F = 0x0000000000000001 ++selle1 0x8000000000000000 0x0000000000000080 = 0x0000000000000001 ++selle1 0x8000000000000000 0x0000000000007FFF = 0x0000000000000001 ++selle1 0x8000000000000000 0x0000000000008000 = 0x0000000000000001 ++selle1 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++selle1 0x8000000000000000 0x0000000080000000 = 0x0000000000000001 ++selle1 0x8000000000000000 0x8000000000000000 = 0x0000000000000001 ++selle1 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++selle1 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selle1 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selle1 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000001 ++selle1 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000001 ++selle1 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000001 ++selle1 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000001 ++selle1 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle1 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle1 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle1 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle1 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selle1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle1 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selle1 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle1 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle1 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle1 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle1 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle1 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle1 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle1 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle1 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle1 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++selle1 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++selle1 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++selle1 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++selle1 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++selle1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle1 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++selle1 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++selle1 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++selle1 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++selle1 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle1 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++selle1 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++selle1 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle1 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle1 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle1 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle1 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle1 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000001 ++selle1 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on selle2 === ++selle2 0x0000000000000000 0x0000000000000000 = 0x0000000000000002 ++selle2 0x0000000000000000 0x0000000000000001 = 0x0000000000000002 ++selle2 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selle2 0x0000000000000000 0x0000000000000003 = 0x0000000000000002 ++selle2 0x0000000000000000 0x000000000000000F = 0x0000000000000002 ++selle2 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selle2 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selle2 0x0000000000000000 0x000000000000007F = 0x0000000000000002 ++selle2 0x0000000000000000 0x0000000000000080 = 0x0000000000000002 ++selle2 0x0000000000000000 0x0000000000007FFF = 0x0000000000000002 ++selle2 0x0000000000000000 0x0000000000008000 = 0x0000000000000002 ++selle2 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000002 ++selle2 0x0000000000000000 0x0000000080000000 = 0x0000000000000002 ++selle2 0x0000000000000000 0x8000000000000000 = 0x0000000000000002 ++selle2 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++selle2 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selle2 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selle2 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000002 ++selle2 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++selle2 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++selle2 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selle2 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++selle2 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++selle2 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++selle2 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle2 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle2 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle2 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++selle2 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++selle2 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++selle2 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++selle2 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle2 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++selle2 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++selle2 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle2 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle2 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle2 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle2 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle2 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle2 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++selle2 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++selle2 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selle2 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++selle2 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++selle2 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle2 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle2 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle2 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++selle2 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++selle2 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++selle2 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++selle2 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle2 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++selle2 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++selle2 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle2 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle2 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle2 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle2 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle2 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle2 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++selle2 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++selle2 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++selle2 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selle2 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++selle2 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle2 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle2 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle2 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++selle2 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++selle2 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++selle2 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++selle2 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle2 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++selle2 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++selle2 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle2 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle2 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle2 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle2 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle2 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle2 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++selle2 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++selle2 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++selle2 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++selle2 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selle2 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle2 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle2 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle2 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++selle2 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++selle2 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++selle2 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++selle2 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle2 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++selle2 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++selle2 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle2 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle2 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle2 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle2 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle2 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle2 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000002 ++selle2 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++selle2 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++selle2 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++selle2 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++selle2 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++selle2 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle2 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle2 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle2 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selle2 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++selle2 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++selle2 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++selle2 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle2 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++selle2 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++selle2 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle2 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle2 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle2 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle2 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle2 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle2 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++selle2 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++selle2 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++selle2 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++selle2 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++selle2 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle2 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle2 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle2 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++selle2 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selle2 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++selle2 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++selle2 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle2 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++selle2 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++selle2 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle2 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle2 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle2 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle2 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle2 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle2 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++selle2 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++selle2 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++selle2 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++selle2 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++selle2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle2 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++selle2 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++selle2 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++selle2 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++selle2 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle2 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++selle2 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++selle2 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle2 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle2 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle2 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle2 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle2 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle2 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++selle2 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++selle2 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++selle2 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++selle2 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++selle2 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle2 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle2 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle2 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++selle2 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++selle2 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++selle2 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++selle2 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle2 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++selle2 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++selle2 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle2 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle2 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle2 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle2 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle2 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle2 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle2 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle2 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle2 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle2 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++selle2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle2 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++selle2 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle2 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle2 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle2 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle2 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle2 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle2 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle2 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle2 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle2 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle2 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle2 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++selle2 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++selle2 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++selle2 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++selle2 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++selle2 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle2 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle2 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle2 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++selle2 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++selle2 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++selle2 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++selle2 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle2 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++selle2 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++selle2 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle2 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle2 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle2 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle2 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle2 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle2 0x8000000000000000 0x0000000000000000 = 0x0000000000000002 ++selle2 0x8000000000000000 0x0000000000000001 = 0x0000000000000002 ++selle2 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selle2 0x8000000000000000 0x0000000000000003 = 0x0000000000000002 ++selle2 0x8000000000000000 0x000000000000000F = 0x0000000000000002 ++selle2 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selle2 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selle2 0x8000000000000000 0x000000000000007F = 0x0000000000000002 ++selle2 0x8000000000000000 0x0000000000000080 = 0x0000000000000002 ++selle2 0x8000000000000000 0x0000000000007FFF = 0x0000000000000002 ++selle2 0x8000000000000000 0x0000000000008000 = 0x0000000000000002 ++selle2 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000002 ++selle2 0x8000000000000000 0x0000000080000000 = 0x0000000000000002 ++selle2 0x8000000000000000 0x8000000000000000 = 0x0000000000000002 ++selle2 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++selle2 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selle2 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selle2 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000002 ++selle2 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000002 ++selle2 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000002 ++selle2 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000002 ++selle2 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle2 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle2 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle2 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle2 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selle2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle2 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selle2 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle2 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle2 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle2 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle2 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle2 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle2 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle2 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle2 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle2 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++selle2 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++selle2 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++selle2 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++selle2 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++selle2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle2 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++selle2 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++selle2 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++selle2 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++selle2 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle2 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++selle2 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++selle2 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle2 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle2 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle2 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle2 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle2 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000002 ++selle2 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000002 ++=== Running test on selle3 === ++selle3 0x0000000000000000 0x0000000000000000 = 0x0000000000000003 ++selle3 0x0000000000000000 0x0000000000000001 = 0x0000000000000003 ++selle3 0x0000000000000000 0x0000000000000002 = 0x0000000000000003 ++selle3 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selle3 0x0000000000000000 0x000000000000000F = 0x0000000000000003 ++selle3 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selle3 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selle3 0x0000000000000000 0x000000000000007F = 0x0000000000000003 ++selle3 0x0000000000000000 0x0000000000000080 = 0x0000000000000003 ++selle3 0x0000000000000000 0x0000000000007FFF = 0x0000000000000003 ++selle3 0x0000000000000000 0x0000000000008000 = 0x0000000000000003 ++selle3 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000003 ++selle3 0x0000000000000000 0x0000000080000000 = 0x0000000000000003 ++selle3 0x0000000000000000 0x8000000000000000 = 0x0000000000000003 ++selle3 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++selle3 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selle3 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selle3 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000003 ++selle3 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++selle3 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++selle3 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selle3 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++selle3 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++selle3 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++selle3 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle3 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle3 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle3 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++selle3 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++selle3 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++selle3 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++selle3 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle3 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++selle3 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++selle3 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle3 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle3 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle3 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle3 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle3 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle3 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++selle3 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++selle3 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selle3 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++selle3 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++selle3 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle3 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle3 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle3 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++selle3 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++selle3 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++selle3 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++selle3 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle3 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++selle3 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++selle3 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle3 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle3 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle3 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle3 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle3 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle3 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++selle3 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++selle3 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++selle3 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selle3 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++selle3 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle3 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle3 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle3 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++selle3 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++selle3 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++selle3 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++selle3 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle3 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++selle3 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++selle3 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle3 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle3 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle3 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle3 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle3 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle3 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++selle3 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++selle3 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++selle3 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++selle3 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selle3 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle3 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle3 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle3 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++selle3 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++selle3 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++selle3 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++selle3 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle3 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++selle3 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++selle3 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle3 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle3 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle3 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle3 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle3 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle3 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000003 ++selle3 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++selle3 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++selle3 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++selle3 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++selle3 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++selle3 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle3 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle3 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle3 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selle3 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++selle3 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++selle3 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++selle3 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle3 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++selle3 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++selle3 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle3 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle3 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle3 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle3 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle3 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle3 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++selle3 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++selle3 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++selle3 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++selle3 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++selle3 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle3 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle3 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle3 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++selle3 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selle3 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++selle3 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++selle3 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle3 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++selle3 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++selle3 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle3 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle3 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle3 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle3 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle3 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle3 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++selle3 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++selle3 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++selle3 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++selle3 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++selle3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle3 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++selle3 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++selle3 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++selle3 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++selle3 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle3 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++selle3 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++selle3 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle3 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle3 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle3 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle3 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle3 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle3 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++selle3 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++selle3 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++selle3 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++selle3 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++selle3 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle3 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle3 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle3 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++selle3 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++selle3 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++selle3 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++selle3 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle3 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++selle3 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++selle3 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle3 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle3 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle3 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle3 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle3 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle3 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle3 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle3 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle3 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle3 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++selle3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle3 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++selle3 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle3 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle3 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle3 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle3 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle3 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle3 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle3 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle3 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle3 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle3 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle3 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++selle3 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++selle3 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++selle3 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++selle3 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++selle3 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle3 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle3 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle3 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++selle3 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++selle3 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++selle3 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++selle3 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle3 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++selle3 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++selle3 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle3 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle3 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle3 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle3 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle3 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle3 0x8000000000000000 0x0000000000000000 = 0x0000000000000003 ++selle3 0x8000000000000000 0x0000000000000001 = 0x0000000000000003 ++selle3 0x8000000000000000 0x0000000000000002 = 0x0000000000000003 ++selle3 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selle3 0x8000000000000000 0x000000000000000F = 0x0000000000000003 ++selle3 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selle3 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selle3 0x8000000000000000 0x000000000000007F = 0x0000000000000003 ++selle3 0x8000000000000000 0x0000000000000080 = 0x0000000000000003 ++selle3 0x8000000000000000 0x0000000000007FFF = 0x0000000000000003 ++selle3 0x8000000000000000 0x0000000000008000 = 0x0000000000000003 ++selle3 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000003 ++selle3 0x8000000000000000 0x0000000080000000 = 0x0000000000000003 ++selle3 0x8000000000000000 0x8000000000000000 = 0x0000000000000003 ++selle3 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++selle3 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selle3 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selle3 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000003 ++selle3 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000003 ++selle3 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000003 ++selle3 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000003 ++selle3 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle3 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle3 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle3 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle3 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selle3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle3 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selle3 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle3 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle3 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle3 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle3 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle3 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle3 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle3 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle3 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle3 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++selle3 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++selle3 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++selle3 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++selle3 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++selle3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle3 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++selle3 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++selle3 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++selle3 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++selle3 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle3 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++selle3 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++selle3 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle3 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle3 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle3 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle3 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle3 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000003 ++selle3 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000003 ++=== Running test on selle15 === ++selle15 0x0000000000000000 0x0000000000000000 = 0x000000000000000F ++selle15 0x0000000000000000 0x0000000000000001 = 0x000000000000000F ++selle15 0x0000000000000000 0x0000000000000002 = 0x000000000000000F ++selle15 0x0000000000000000 0x0000000000000003 = 0x000000000000000F ++selle15 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selle15 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selle15 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selle15 0x0000000000000000 0x000000000000007F = 0x000000000000000F ++selle15 0x0000000000000000 0x0000000000000080 = 0x000000000000000F ++selle15 0x0000000000000000 0x0000000000007FFF = 0x000000000000000F ++selle15 0x0000000000000000 0x0000000000008000 = 0x000000000000000F ++selle15 0x0000000000000000 0x000000007FFFFFFF = 0x000000000000000F ++selle15 0x0000000000000000 0x0000000080000000 = 0x000000000000000F ++selle15 0x0000000000000000 0x8000000000000000 = 0x000000000000000F ++selle15 0x0000000000000000 0xFFFFFFFF80000000 = 0x000000000000000F ++selle15 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selle15 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selle15 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0x0000000000000000 0x123456789ABCDEF0 = 0x000000000000000F ++selle15 0x0000000000000000 0xF0DEBC9A78563412 = 0x000000000000000F ++selle15 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++selle15 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selle15 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++selle15 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++selle15 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++selle15 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle15 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle15 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle15 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++selle15 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++selle15 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++selle15 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++selle15 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle15 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++selle15 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++selle15 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle15 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle15 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle15 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle15 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle15 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle15 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++selle15 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++selle15 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selle15 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++selle15 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++selle15 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle15 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle15 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle15 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++selle15 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++selle15 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++selle15 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++selle15 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle15 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++selle15 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++selle15 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle15 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle15 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle15 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle15 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle15 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle15 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++selle15 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++selle15 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++selle15 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selle15 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++selle15 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle15 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle15 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle15 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++selle15 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++selle15 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++selle15 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++selle15 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle15 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++selle15 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++selle15 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle15 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle15 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle15 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle15 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle15 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle15 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++selle15 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++selle15 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++selle15 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++selle15 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selle15 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle15 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle15 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle15 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++selle15 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++selle15 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++selle15 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++selle15 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle15 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++selle15 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++selle15 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle15 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle15 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle15 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle15 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle15 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle15 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000000000000F ++selle15 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++selle15 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++selle15 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++selle15 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++selle15 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++selle15 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle15 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle15 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle15 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selle15 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++selle15 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++selle15 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++selle15 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle15 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++selle15 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++selle15 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle15 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle15 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle15 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle15 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle15 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle15 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++selle15 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++selle15 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++selle15 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++selle15 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++selle15 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle15 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle15 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle15 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++selle15 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selle15 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++selle15 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++selle15 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle15 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++selle15 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++selle15 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle15 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle15 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle15 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle15 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle15 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle15 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++selle15 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++selle15 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++selle15 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++selle15 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++selle15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle15 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++selle15 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++selle15 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++selle15 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++selle15 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle15 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++selle15 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++selle15 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle15 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle15 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle15 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle15 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle15 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle15 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++selle15 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++selle15 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++selle15 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++selle15 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++selle15 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle15 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle15 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle15 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++selle15 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++selle15 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++selle15 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++selle15 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle15 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++selle15 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++selle15 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle15 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle15 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle15 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle15 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle15 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle15 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle15 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle15 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle15 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle15 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++selle15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle15 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++selle15 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle15 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle15 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle15 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle15 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle15 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle15 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle15 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle15 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle15 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle15 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle15 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++selle15 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++selle15 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++selle15 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++selle15 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++selle15 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle15 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle15 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle15 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++selle15 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++selle15 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++selle15 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++selle15 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle15 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++selle15 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++selle15 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle15 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle15 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle15 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle15 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle15 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle15 0x8000000000000000 0x0000000000000000 = 0x000000000000000F ++selle15 0x8000000000000000 0x0000000000000001 = 0x000000000000000F ++selle15 0x8000000000000000 0x0000000000000002 = 0x000000000000000F ++selle15 0x8000000000000000 0x0000000000000003 = 0x000000000000000F ++selle15 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selle15 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selle15 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selle15 0x8000000000000000 0x000000000000007F = 0x000000000000000F ++selle15 0x8000000000000000 0x0000000000000080 = 0x000000000000000F ++selle15 0x8000000000000000 0x0000000000007FFF = 0x000000000000000F ++selle15 0x8000000000000000 0x0000000000008000 = 0x000000000000000F ++selle15 0x8000000000000000 0x000000007FFFFFFF = 0x000000000000000F ++selle15 0x8000000000000000 0x0000000080000000 = 0x000000000000000F ++selle15 0x8000000000000000 0x8000000000000000 = 0x000000000000000F ++selle15 0x8000000000000000 0xFFFFFFFF80000000 = 0x000000000000000F ++selle15 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selle15 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selle15 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0x8000000000000000 0x123456789ABCDEF0 = 0x000000000000000F ++selle15 0x8000000000000000 0xF0DEBC9A78563412 = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0x0000000000000000 = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0x0000000000000001 = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0x0000000000000002 = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0x0000000000000080 = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0x0000000000008000 = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0x0000000080000000 = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0x8000000000000000 = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x000000000000000F ++selle15 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000000000000F ++selle15 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000000000000F ++selle15 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle15 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle15 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle15 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle15 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selle15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle15 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selle15 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle15 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle15 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle15 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle15 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle15 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle15 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle15 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle15 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle15 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++selle15 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++selle15 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++selle15 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++selle15 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++selle15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle15 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++selle15 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++selle15 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++selle15 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++selle15 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle15 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++selle15 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++selle15 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle15 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle15 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle15 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle15 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle15 0xF0DEBC9A78563412 0x0000000000000000 = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0x0000000000000001 = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0x0000000000000003 = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0x0000000000000080 = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0x0000000080000000 = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0x8000000000000000 = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000000000000F ++selle15 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x000000000000000F ++=== Running test on selle127 === ++selle127 0x0000000000000000 0x0000000000000000 = 0x000000000000007F ++selle127 0x0000000000000000 0x0000000000000001 = 0x000000000000007F ++selle127 0x0000000000000000 0x0000000000000002 = 0x000000000000007F ++selle127 0x0000000000000000 0x0000000000000003 = 0x000000000000007F ++selle127 0x0000000000000000 0x000000000000000F = 0x000000000000007F ++selle127 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selle127 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selle127 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selle127 0x0000000000000000 0x0000000000000080 = 0x000000000000007F ++selle127 0x0000000000000000 0x0000000000007FFF = 0x000000000000007F ++selle127 0x0000000000000000 0x0000000000008000 = 0x000000000000007F ++selle127 0x0000000000000000 0x000000007FFFFFFF = 0x000000000000007F ++selle127 0x0000000000000000 0x0000000080000000 = 0x000000000000007F ++selle127 0x0000000000000000 0x8000000000000000 = 0x000000000000007F ++selle127 0x0000000000000000 0xFFFFFFFF80000000 = 0x000000000000007F ++selle127 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selle127 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selle127 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0x0000000000000000 0x123456789ABCDEF0 = 0x000000000000007F ++selle127 0x0000000000000000 0xF0DEBC9A78563412 = 0x000000000000007F ++selle127 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++selle127 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selle127 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++selle127 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++selle127 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++selle127 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle127 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle127 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle127 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++selle127 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++selle127 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++selle127 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++selle127 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle127 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++selle127 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++selle127 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle127 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle127 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle127 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle127 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle127 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle127 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++selle127 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++selle127 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selle127 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++selle127 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++selle127 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle127 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle127 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle127 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++selle127 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++selle127 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++selle127 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++selle127 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle127 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++selle127 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++selle127 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle127 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle127 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle127 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle127 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle127 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle127 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++selle127 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++selle127 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++selle127 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selle127 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++selle127 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle127 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle127 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle127 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++selle127 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++selle127 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++selle127 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++selle127 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle127 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++selle127 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++selle127 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle127 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle127 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle127 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle127 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle127 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle127 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++selle127 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++selle127 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++selle127 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++selle127 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selle127 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle127 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle127 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle127 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++selle127 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++selle127 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++selle127 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++selle127 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle127 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++selle127 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++selle127 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle127 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle127 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle127 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle127 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle127 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle127 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000000000007F ++selle127 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++selle127 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++selle127 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++selle127 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++selle127 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++selle127 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle127 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle127 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle127 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selle127 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++selle127 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++selle127 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++selle127 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle127 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++selle127 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++selle127 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle127 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle127 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle127 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle127 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle127 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle127 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++selle127 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++selle127 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++selle127 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++selle127 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++selle127 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle127 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle127 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle127 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++selle127 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selle127 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++selle127 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++selle127 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle127 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++selle127 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++selle127 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle127 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle127 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle127 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle127 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle127 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle127 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++selle127 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++selle127 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++selle127 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++selle127 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++selle127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle127 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++selle127 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++selle127 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++selle127 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++selle127 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle127 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++selle127 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++selle127 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle127 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle127 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle127 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle127 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle127 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle127 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++selle127 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++selle127 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++selle127 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++selle127 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++selle127 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle127 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle127 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle127 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++selle127 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++selle127 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++selle127 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++selle127 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle127 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++selle127 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++selle127 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle127 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle127 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle127 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle127 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle127 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle127 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle127 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle127 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle127 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle127 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++selle127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle127 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++selle127 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle127 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle127 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle127 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle127 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle127 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle127 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle127 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle127 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle127 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle127 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle127 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++selle127 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++selle127 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++selle127 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++selle127 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++selle127 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle127 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle127 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle127 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++selle127 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++selle127 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++selle127 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++selle127 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle127 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++selle127 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++selle127 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle127 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle127 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle127 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle127 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle127 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle127 0x8000000000000000 0x0000000000000000 = 0x000000000000007F ++selle127 0x8000000000000000 0x0000000000000001 = 0x000000000000007F ++selle127 0x8000000000000000 0x0000000000000002 = 0x000000000000007F ++selle127 0x8000000000000000 0x0000000000000003 = 0x000000000000007F ++selle127 0x8000000000000000 0x000000000000000F = 0x000000000000007F ++selle127 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selle127 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selle127 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selle127 0x8000000000000000 0x0000000000000080 = 0x000000000000007F ++selle127 0x8000000000000000 0x0000000000007FFF = 0x000000000000007F ++selle127 0x8000000000000000 0x0000000000008000 = 0x000000000000007F ++selle127 0x8000000000000000 0x000000007FFFFFFF = 0x000000000000007F ++selle127 0x8000000000000000 0x0000000080000000 = 0x000000000000007F ++selle127 0x8000000000000000 0x8000000000000000 = 0x000000000000007F ++selle127 0x8000000000000000 0xFFFFFFFF80000000 = 0x000000000000007F ++selle127 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selle127 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selle127 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0x8000000000000000 0x123456789ABCDEF0 = 0x000000000000007F ++selle127 0x8000000000000000 0xF0DEBC9A78563412 = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0x0000000000000000 = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0x0000000000000001 = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0x0000000000000002 = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0x0000000000000080 = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0x0000000000008000 = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0x0000000080000000 = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0x8000000000000000 = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x000000000000007F ++selle127 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000000000007F ++selle127 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000000000007F ++selle127 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle127 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle127 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle127 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle127 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selle127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle127 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selle127 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle127 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle127 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle127 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle127 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle127 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle127 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle127 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle127 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle127 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++selle127 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++selle127 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++selle127 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++selle127 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++selle127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle127 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++selle127 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++selle127 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++selle127 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++selle127 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle127 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++selle127 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++selle127 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle127 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle127 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle127 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle127 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle127 0xF0DEBC9A78563412 0x0000000000000000 = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0x0000000000000001 = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0x0000000000000003 = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0x0000000000000080 = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0x0000000080000000 = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0x8000000000000000 = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000000000007F ++selle127 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x000000000000007F ++=== Running test on selle128 === ++selle128 0x0000000000000000 0x0000000000000000 = 0x0000000000000080 ++selle128 0x0000000000000000 0x0000000000000001 = 0x0000000000000080 ++selle128 0x0000000000000000 0x0000000000000002 = 0x0000000000000080 ++selle128 0x0000000000000000 0x0000000000000003 = 0x0000000000000080 ++selle128 0x0000000000000000 0x000000000000000F = 0x0000000000000080 ++selle128 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selle128 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selle128 0x0000000000000000 0x000000000000007F = 0x0000000000000080 ++selle128 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selle128 0x0000000000000000 0x0000000000007FFF = 0x0000000000000080 ++selle128 0x0000000000000000 0x0000000000008000 = 0x0000000000000080 ++selle128 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000080 ++selle128 0x0000000000000000 0x0000000080000000 = 0x0000000000000080 ++selle128 0x0000000000000000 0x8000000000000000 = 0x0000000000000080 ++selle128 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++selle128 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selle128 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selle128 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000080 ++selle128 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++selle128 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++selle128 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selle128 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++selle128 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++selle128 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++selle128 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle128 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle128 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle128 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++selle128 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++selle128 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++selle128 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++selle128 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle128 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++selle128 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++selle128 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle128 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle128 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle128 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle128 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle128 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle128 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++selle128 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++selle128 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selle128 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++selle128 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++selle128 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle128 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle128 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle128 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++selle128 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++selle128 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++selle128 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++selle128 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle128 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++selle128 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++selle128 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle128 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle128 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle128 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle128 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle128 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle128 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++selle128 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++selle128 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++selle128 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selle128 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++selle128 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle128 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle128 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle128 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++selle128 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++selle128 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++selle128 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++selle128 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle128 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++selle128 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++selle128 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle128 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle128 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle128 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle128 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle128 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle128 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++selle128 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++selle128 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++selle128 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++selle128 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selle128 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle128 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle128 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle128 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++selle128 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++selle128 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++selle128 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++selle128 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle128 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++selle128 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++selle128 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle128 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle128 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle128 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle128 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle128 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle128 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000080 ++selle128 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++selle128 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++selle128 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++selle128 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++selle128 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++selle128 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle128 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle128 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle128 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selle128 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++selle128 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++selle128 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++selle128 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle128 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++selle128 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++selle128 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle128 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle128 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle128 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle128 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle128 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle128 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++selle128 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++selle128 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++selle128 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++selle128 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++selle128 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle128 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle128 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle128 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++selle128 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selle128 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++selle128 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++selle128 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle128 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++selle128 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++selle128 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle128 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle128 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle128 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle128 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle128 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle128 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++selle128 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++selle128 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++selle128 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++selle128 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++selle128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle128 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++selle128 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++selle128 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++selle128 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++selle128 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle128 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++selle128 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++selle128 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle128 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle128 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle128 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle128 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle128 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle128 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++selle128 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++selle128 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++selle128 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++selle128 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++selle128 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle128 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle128 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle128 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++selle128 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++selle128 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++selle128 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++selle128 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle128 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++selle128 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++selle128 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle128 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle128 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle128 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle128 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle128 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle128 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle128 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle128 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle128 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle128 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++selle128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle128 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++selle128 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle128 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle128 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle128 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle128 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle128 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle128 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle128 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle128 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle128 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle128 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle128 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++selle128 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++selle128 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++selle128 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++selle128 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++selle128 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle128 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle128 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle128 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++selle128 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++selle128 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++selle128 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++selle128 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle128 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++selle128 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++selle128 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle128 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle128 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle128 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle128 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle128 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle128 0x8000000000000000 0x0000000000000000 = 0x0000000000000080 ++selle128 0x8000000000000000 0x0000000000000001 = 0x0000000000000080 ++selle128 0x8000000000000000 0x0000000000000002 = 0x0000000000000080 ++selle128 0x8000000000000000 0x0000000000000003 = 0x0000000000000080 ++selle128 0x8000000000000000 0x000000000000000F = 0x0000000000000080 ++selle128 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selle128 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selle128 0x8000000000000000 0x000000000000007F = 0x0000000000000080 ++selle128 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selle128 0x8000000000000000 0x0000000000007FFF = 0x0000000000000080 ++selle128 0x8000000000000000 0x0000000000008000 = 0x0000000000000080 ++selle128 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000080 ++selle128 0x8000000000000000 0x0000000080000000 = 0x0000000000000080 ++selle128 0x8000000000000000 0x8000000000000000 = 0x0000000000000080 ++selle128 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++selle128 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selle128 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selle128 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000080 ++selle128 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000080 ++selle128 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000080 ++selle128 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000080 ++selle128 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle128 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle128 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle128 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle128 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selle128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle128 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selle128 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle128 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle128 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle128 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle128 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle128 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle128 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle128 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle128 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle128 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++selle128 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++selle128 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++selle128 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++selle128 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++selle128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle128 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++selle128 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++selle128 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++selle128 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++selle128 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle128 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++selle128 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++selle128 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle128 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle128 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle128 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle128 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle128 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000080 ++selle128 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000080 ++=== Running test on selle255 === ++selle255 0x0000000000000000 0x0000000000000000 = 0x00000000000000FF ++selle255 0x0000000000000000 0x0000000000000001 = 0x00000000000000FF ++selle255 0x0000000000000000 0x0000000000000002 = 0x00000000000000FF ++selle255 0x0000000000000000 0x0000000000000003 = 0x00000000000000FF ++selle255 0x0000000000000000 0x000000000000000F = 0x00000000000000FF ++selle255 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selle255 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selle255 0x0000000000000000 0x000000000000007F = 0x00000000000000FF ++selle255 0x0000000000000000 0x0000000000000080 = 0x00000000000000FF ++selle255 0x0000000000000000 0x0000000000007FFF = 0x00000000000000FF ++selle255 0x0000000000000000 0x0000000000008000 = 0x00000000000000FF ++selle255 0x0000000000000000 0x000000007FFFFFFF = 0x00000000000000FF ++selle255 0x0000000000000000 0x0000000080000000 = 0x00000000000000FF ++selle255 0x0000000000000000 0x8000000000000000 = 0x00000000000000FF ++selle255 0x0000000000000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++selle255 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selle255 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selle255 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0x0000000000000000 0x123456789ABCDEF0 = 0x00000000000000FF ++selle255 0x0000000000000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++selle255 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++selle255 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selle255 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++selle255 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++selle255 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++selle255 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle255 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle255 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle255 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++selle255 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++selle255 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++selle255 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++selle255 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle255 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++selle255 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++selle255 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle255 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle255 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle255 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle255 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle255 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle255 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++selle255 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++selle255 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selle255 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++selle255 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++selle255 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle255 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle255 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle255 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++selle255 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++selle255 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++selle255 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++selle255 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle255 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++selle255 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++selle255 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle255 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle255 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle255 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle255 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle255 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle255 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++selle255 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++selle255 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++selle255 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selle255 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++selle255 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle255 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle255 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle255 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++selle255 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++selle255 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++selle255 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++selle255 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle255 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++selle255 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++selle255 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle255 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle255 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle255 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle255 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle255 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle255 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++selle255 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++selle255 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++selle255 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++selle255 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selle255 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle255 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle255 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle255 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++selle255 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++selle255 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++selle255 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++selle255 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle255 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++selle255 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++selle255 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle255 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle255 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle255 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle255 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle255 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle255 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x00000000000000FF ++selle255 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++selle255 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++selle255 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++selle255 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++selle255 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++selle255 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle255 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle255 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle255 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selle255 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++selle255 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++selle255 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++selle255 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle255 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++selle255 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++selle255 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle255 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle255 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle255 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle255 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle255 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle255 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++selle255 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++selle255 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++selle255 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++selle255 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++selle255 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle255 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle255 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle255 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++selle255 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selle255 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++selle255 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++selle255 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle255 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++selle255 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++selle255 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle255 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle255 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle255 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle255 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle255 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle255 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++selle255 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++selle255 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++selle255 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++selle255 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++selle255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle255 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++selle255 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++selle255 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++selle255 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++selle255 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle255 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++selle255 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++selle255 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle255 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle255 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle255 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle255 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle255 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle255 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++selle255 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++selle255 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++selle255 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++selle255 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++selle255 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle255 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle255 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle255 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++selle255 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++selle255 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++selle255 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++selle255 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle255 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++selle255 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++selle255 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle255 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle255 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle255 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle255 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle255 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle255 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle255 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle255 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle255 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle255 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++selle255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle255 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++selle255 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle255 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle255 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle255 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle255 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle255 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle255 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle255 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle255 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle255 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle255 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle255 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++selle255 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++selle255 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++selle255 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++selle255 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++selle255 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle255 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle255 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle255 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++selle255 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++selle255 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++selle255 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++selle255 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle255 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++selle255 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++selle255 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle255 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle255 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle255 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle255 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle255 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle255 0x8000000000000000 0x0000000000000000 = 0x00000000000000FF ++selle255 0x8000000000000000 0x0000000000000001 = 0x00000000000000FF ++selle255 0x8000000000000000 0x0000000000000002 = 0x00000000000000FF ++selle255 0x8000000000000000 0x0000000000000003 = 0x00000000000000FF ++selle255 0x8000000000000000 0x000000000000000F = 0x00000000000000FF ++selle255 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selle255 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selle255 0x8000000000000000 0x000000000000007F = 0x00000000000000FF ++selle255 0x8000000000000000 0x0000000000000080 = 0x00000000000000FF ++selle255 0x8000000000000000 0x0000000000007FFF = 0x00000000000000FF ++selle255 0x8000000000000000 0x0000000000008000 = 0x00000000000000FF ++selle255 0x8000000000000000 0x000000007FFFFFFF = 0x00000000000000FF ++selle255 0x8000000000000000 0x0000000080000000 = 0x00000000000000FF ++selle255 0x8000000000000000 0x8000000000000000 = 0x00000000000000FF ++selle255 0x8000000000000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++selle255 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selle255 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selle255 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0x8000000000000000 0x123456789ABCDEF0 = 0x00000000000000FF ++selle255 0x8000000000000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0x0000000000000000 = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0x0000000000000001 = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0x0000000000000002 = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0x0000000000000003 = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0x000000000000000F = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0x000000000000007F = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0x0000000000000080 = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0x0000000000008000 = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0x0000000080000000 = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0x8000000000000000 = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x00000000000000FF ++selle255 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x00000000000000FF ++selle255 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x00000000000000FF ++selle255 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle255 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle255 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle255 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle255 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selle255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle255 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selle255 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle255 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle255 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selle255 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle255 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle255 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle255 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle255 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle255 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle255 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++selle255 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++selle255 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++selle255 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++selle255 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++selle255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle255 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++selle255 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++selle255 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++selle255 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++selle255 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle255 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++selle255 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++selle255 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle255 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle255 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle255 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle255 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle255 0xF0DEBC9A78563412 0x0000000000000000 = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0x0000000000000001 = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0x0000000000000002 = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0x0000000000000003 = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0x000000000000007F = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0x0000000000000080 = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0x0000000000008000 = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0x0000000080000000 = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0x8000000000000000 = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x00000000000000FF ++selle255 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x00000000000000FF ++=== Running test on sellt0 === ++sellt0 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellt0 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellt0 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellt0 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellt0 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellt0 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt0 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt0 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt0 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellt0 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellt0 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt0 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellt0 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt0 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellt0 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellt0 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt0 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt0 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt0 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt0 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt0 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt0 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellt0 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellt0 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellt0 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellt0 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellt0 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt0 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt0 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt0 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellt0 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellt0 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellt0 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellt0 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt0 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellt0 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellt0 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt0 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt0 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt0 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt0 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt0 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt0 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellt0 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellt0 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellt0 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellt0 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellt0 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt0 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt0 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt0 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellt0 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellt0 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellt0 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellt0 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt0 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellt0 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellt0 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt0 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt0 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt0 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt0 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt0 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt0 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellt0 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellt0 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellt0 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellt0 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellt0 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt0 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt0 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt0 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellt0 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellt0 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellt0 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellt0 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt0 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellt0 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellt0 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt0 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt0 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt0 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt0 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt0 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt0 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellt0 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellt0 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellt0 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellt0 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellt0 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt0 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt0 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt0 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellt0 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellt0 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellt0 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellt0 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt0 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellt0 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellt0 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt0 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt0 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt0 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt0 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt0 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt0 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellt0 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellt0 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellt0 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellt0 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellt0 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellt0 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt0 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt0 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellt0 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellt0 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellt0 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellt0 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt0 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellt0 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellt0 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt0 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt0 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt0 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt0 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt0 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt0 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellt0 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellt0 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellt0 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellt0 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellt0 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt0 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt0 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellt0 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellt0 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellt0 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellt0 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt0 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellt0 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellt0 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt0 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt0 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt0 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt0 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt0 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt0 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellt0 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellt0 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellt0 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellt0 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellt0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt0 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellt0 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellt0 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt0 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellt0 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt0 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellt0 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellt0 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt0 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt0 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt0 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt0 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt0 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt0 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellt0 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellt0 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellt0 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellt0 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellt0 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt0 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt0 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt0 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellt0 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellt0 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellt0 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellt0 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt0 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellt0 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellt0 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt0 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt0 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt0 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt0 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt0 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt0 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt0 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt0 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt0 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt0 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt0 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt0 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt0 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt0 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt0 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt0 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt0 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt0 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt0 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt0 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt0 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt0 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt0 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellt0 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellt0 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellt0 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellt0 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellt0 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt0 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt0 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt0 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellt0 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellt0 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt0 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellt0 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt0 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellt0 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellt0 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt0 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt0 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt0 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt0 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt0 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt0 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellt0 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++sellt0 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++sellt0 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++sellt0 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++sellt0 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellt0 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellt0 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++sellt0 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++sellt0 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++sellt0 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++sellt0 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++sellt0 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++sellt0 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++sellt0 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellt0 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellt0 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellt0 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sellt0 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sellt0 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000000 ++sellt0 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellt0 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt0 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt0 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt0 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt0 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt0 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt0 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt0 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt0 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt0 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt0 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt0 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt0 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt0 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt0 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt0 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellt0 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellt0 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellt0 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellt0 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellt0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt0 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellt0 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellt0 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellt0 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellt0 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt0 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellt0 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellt0 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt0 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt0 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt0 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt0 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt0 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000000 ++sellt0 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on sellt1 === ++sellt1 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellt1 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellt1 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellt1 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellt1 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellt1 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt1 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt1 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt1 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellt1 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellt1 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt1 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellt1 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt1 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellt1 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellt1 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt1 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt1 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt1 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt1 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt1 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt1 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellt1 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellt1 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellt1 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellt1 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellt1 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt1 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt1 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt1 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellt1 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellt1 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellt1 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellt1 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt1 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellt1 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellt1 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt1 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt1 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt1 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt1 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt1 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt1 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellt1 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellt1 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellt1 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellt1 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellt1 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt1 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt1 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt1 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellt1 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellt1 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellt1 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellt1 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt1 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellt1 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellt1 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt1 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt1 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt1 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt1 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt1 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt1 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellt1 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellt1 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellt1 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellt1 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellt1 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt1 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt1 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt1 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellt1 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellt1 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellt1 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellt1 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt1 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellt1 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellt1 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt1 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt1 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt1 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt1 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt1 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt1 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellt1 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellt1 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellt1 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellt1 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellt1 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt1 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt1 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt1 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellt1 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellt1 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellt1 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellt1 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt1 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellt1 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellt1 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt1 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt1 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt1 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt1 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt1 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt1 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellt1 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellt1 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellt1 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellt1 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellt1 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellt1 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt1 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt1 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt1 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellt1 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellt1 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellt1 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellt1 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt1 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellt1 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellt1 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt1 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt1 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt1 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt1 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt1 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt1 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellt1 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellt1 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellt1 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellt1 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellt1 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt1 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt1 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt1 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellt1 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellt1 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellt1 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellt1 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt1 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellt1 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellt1 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt1 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt1 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt1 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt1 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt1 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt1 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellt1 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellt1 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellt1 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellt1 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellt1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt1 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellt1 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellt1 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt1 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellt1 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt1 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellt1 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellt1 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt1 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt1 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt1 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt1 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt1 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt1 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellt1 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellt1 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellt1 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellt1 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellt1 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt1 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt1 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt1 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellt1 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellt1 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellt1 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellt1 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt1 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellt1 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellt1 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt1 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt1 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt1 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt1 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt1 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt1 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt1 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt1 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt1 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt1 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt1 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt1 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt1 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt1 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt1 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt1 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt1 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt1 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt1 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt1 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt1 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt1 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt1 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellt1 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellt1 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellt1 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellt1 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellt1 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt1 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt1 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt1 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellt1 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellt1 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt1 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellt1 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt1 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellt1 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellt1 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt1 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt1 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt1 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt1 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt1 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt1 0x8000000000000000 0x0000000000000000 = 0x0000000000000001 ++sellt1 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellt1 0x8000000000000000 0x0000000000000002 = 0x0000000000000001 ++sellt1 0x8000000000000000 0x0000000000000003 = 0x0000000000000001 ++sellt1 0x8000000000000000 0x000000000000000F = 0x0000000000000001 ++sellt1 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellt1 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellt1 0x8000000000000000 0x000000000000007F = 0x0000000000000001 ++sellt1 0x8000000000000000 0x0000000000000080 = 0x0000000000000001 ++sellt1 0x8000000000000000 0x0000000000007FFF = 0x0000000000000001 ++sellt1 0x8000000000000000 0x0000000000008000 = 0x0000000000000001 ++sellt1 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++sellt1 0x8000000000000000 0x0000000080000000 = 0x0000000000000001 ++sellt1 0x8000000000000000 0x8000000000000000 = 0x0000000000000001 ++sellt1 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellt1 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellt1 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellt1 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000001 ++sellt1 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000001 ++sellt1 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000001 ++sellt1 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellt1 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt1 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt1 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt1 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt1 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt1 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt1 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt1 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt1 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt1 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt1 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt1 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt1 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt1 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt1 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt1 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellt1 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellt1 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellt1 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellt1 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellt1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt1 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellt1 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellt1 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellt1 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellt1 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt1 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellt1 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellt1 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt1 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt1 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt1 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt1 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt1 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000001 ++sellt1 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on sellt2 === ++sellt2 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellt2 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellt2 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellt2 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellt2 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellt2 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt2 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt2 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt2 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellt2 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellt2 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt2 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellt2 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt2 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellt2 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellt2 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt2 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt2 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt2 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt2 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt2 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt2 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellt2 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellt2 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellt2 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellt2 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellt2 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt2 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt2 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt2 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellt2 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellt2 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellt2 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellt2 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt2 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellt2 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellt2 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt2 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt2 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt2 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt2 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt2 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt2 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellt2 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellt2 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellt2 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellt2 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellt2 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt2 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt2 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt2 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellt2 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellt2 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellt2 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellt2 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt2 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellt2 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellt2 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt2 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt2 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt2 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt2 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt2 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt2 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellt2 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellt2 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellt2 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellt2 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellt2 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt2 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt2 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt2 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellt2 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellt2 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellt2 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellt2 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt2 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellt2 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellt2 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt2 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt2 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt2 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt2 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt2 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt2 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellt2 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellt2 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellt2 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellt2 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellt2 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt2 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt2 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt2 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellt2 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellt2 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellt2 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellt2 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt2 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellt2 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellt2 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt2 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt2 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt2 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt2 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt2 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt2 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellt2 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellt2 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellt2 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellt2 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellt2 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellt2 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt2 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt2 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt2 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellt2 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellt2 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellt2 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellt2 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt2 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellt2 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellt2 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt2 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt2 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt2 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt2 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt2 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt2 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellt2 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellt2 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellt2 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellt2 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellt2 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt2 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt2 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt2 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellt2 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellt2 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellt2 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellt2 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt2 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellt2 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellt2 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt2 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt2 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt2 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt2 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt2 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt2 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellt2 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellt2 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellt2 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellt2 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellt2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt2 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellt2 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellt2 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt2 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellt2 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt2 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellt2 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellt2 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt2 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt2 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt2 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt2 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt2 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt2 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellt2 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellt2 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellt2 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellt2 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellt2 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt2 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt2 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt2 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellt2 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellt2 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellt2 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellt2 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt2 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellt2 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellt2 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt2 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt2 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt2 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt2 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt2 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt2 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt2 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt2 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt2 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt2 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt2 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt2 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt2 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt2 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt2 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt2 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt2 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt2 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt2 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt2 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt2 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt2 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt2 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellt2 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellt2 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellt2 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellt2 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellt2 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt2 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt2 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt2 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellt2 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellt2 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt2 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellt2 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt2 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellt2 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellt2 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt2 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt2 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt2 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt2 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt2 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt2 0x8000000000000000 0x0000000000000000 = 0x0000000000000002 ++sellt2 0x8000000000000000 0x0000000000000001 = 0x0000000000000002 ++sellt2 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellt2 0x8000000000000000 0x0000000000000003 = 0x0000000000000002 ++sellt2 0x8000000000000000 0x000000000000000F = 0x0000000000000002 ++sellt2 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellt2 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellt2 0x8000000000000000 0x000000000000007F = 0x0000000000000002 ++sellt2 0x8000000000000000 0x0000000000000080 = 0x0000000000000002 ++sellt2 0x8000000000000000 0x0000000000007FFF = 0x0000000000000002 ++sellt2 0x8000000000000000 0x0000000000008000 = 0x0000000000000002 ++sellt2 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000002 ++sellt2 0x8000000000000000 0x0000000080000000 = 0x0000000000000002 ++sellt2 0x8000000000000000 0x8000000000000000 = 0x0000000000000002 ++sellt2 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellt2 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellt2 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellt2 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000002 ++sellt2 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000002 ++sellt2 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000002 ++sellt2 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellt2 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt2 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt2 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt2 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt2 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt2 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt2 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt2 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt2 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt2 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt2 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt2 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt2 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt2 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt2 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt2 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellt2 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellt2 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellt2 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellt2 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellt2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt2 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellt2 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellt2 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellt2 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellt2 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt2 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellt2 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellt2 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt2 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt2 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt2 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt2 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt2 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000002 ++sellt2 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000002 ++=== Running test on sellt3 === ++sellt3 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellt3 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellt3 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellt3 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellt3 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellt3 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt3 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt3 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt3 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellt3 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellt3 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt3 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellt3 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt3 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellt3 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellt3 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt3 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt3 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt3 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt3 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt3 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt3 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellt3 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellt3 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellt3 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellt3 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellt3 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt3 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt3 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt3 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellt3 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellt3 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellt3 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellt3 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt3 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellt3 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellt3 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt3 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt3 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt3 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt3 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt3 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt3 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellt3 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellt3 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellt3 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellt3 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellt3 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt3 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt3 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt3 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellt3 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellt3 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellt3 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellt3 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt3 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellt3 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellt3 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt3 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt3 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt3 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt3 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt3 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt3 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellt3 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellt3 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellt3 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellt3 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellt3 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt3 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt3 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt3 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellt3 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellt3 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellt3 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellt3 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt3 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellt3 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellt3 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt3 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt3 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt3 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt3 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt3 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt3 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellt3 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellt3 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellt3 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellt3 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellt3 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt3 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt3 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt3 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellt3 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellt3 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellt3 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellt3 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt3 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellt3 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellt3 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt3 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt3 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt3 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt3 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt3 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt3 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellt3 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellt3 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellt3 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellt3 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellt3 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellt3 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt3 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt3 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt3 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellt3 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellt3 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellt3 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellt3 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt3 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellt3 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellt3 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt3 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt3 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt3 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt3 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt3 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt3 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellt3 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellt3 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellt3 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellt3 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellt3 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt3 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt3 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt3 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellt3 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellt3 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellt3 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellt3 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt3 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellt3 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellt3 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt3 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt3 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt3 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt3 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt3 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt3 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellt3 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellt3 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellt3 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellt3 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellt3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt3 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellt3 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellt3 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt3 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellt3 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt3 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellt3 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellt3 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt3 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt3 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt3 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt3 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt3 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt3 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellt3 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellt3 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellt3 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellt3 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellt3 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt3 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt3 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt3 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellt3 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellt3 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellt3 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellt3 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt3 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellt3 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellt3 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt3 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt3 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt3 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt3 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt3 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt3 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt3 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt3 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt3 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt3 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt3 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt3 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt3 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt3 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt3 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt3 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt3 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt3 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt3 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt3 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt3 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt3 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt3 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellt3 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellt3 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellt3 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellt3 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellt3 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt3 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt3 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt3 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellt3 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellt3 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt3 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellt3 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt3 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellt3 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellt3 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt3 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt3 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt3 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt3 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt3 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt3 0x8000000000000000 0x0000000000000000 = 0x0000000000000003 ++sellt3 0x8000000000000000 0x0000000000000001 = 0x0000000000000003 ++sellt3 0x8000000000000000 0x0000000000000002 = 0x0000000000000003 ++sellt3 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellt3 0x8000000000000000 0x000000000000000F = 0x0000000000000003 ++sellt3 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellt3 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellt3 0x8000000000000000 0x000000000000007F = 0x0000000000000003 ++sellt3 0x8000000000000000 0x0000000000000080 = 0x0000000000000003 ++sellt3 0x8000000000000000 0x0000000000007FFF = 0x0000000000000003 ++sellt3 0x8000000000000000 0x0000000000008000 = 0x0000000000000003 ++sellt3 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000003 ++sellt3 0x8000000000000000 0x0000000080000000 = 0x0000000000000003 ++sellt3 0x8000000000000000 0x8000000000000000 = 0x0000000000000003 ++sellt3 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellt3 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellt3 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellt3 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000003 ++sellt3 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000003 ++sellt3 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000003 ++sellt3 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellt3 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt3 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt3 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt3 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt3 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt3 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt3 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt3 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt3 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt3 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt3 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt3 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt3 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt3 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt3 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt3 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellt3 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellt3 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellt3 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellt3 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellt3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt3 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellt3 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellt3 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellt3 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellt3 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt3 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellt3 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellt3 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt3 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt3 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt3 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt3 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt3 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000003 ++sellt3 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000003 ++=== Running test on sellt15 === ++sellt15 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellt15 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellt15 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellt15 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellt15 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellt15 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt15 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt15 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt15 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellt15 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellt15 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt15 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellt15 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt15 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellt15 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellt15 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt15 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt15 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt15 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt15 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt15 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt15 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellt15 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellt15 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellt15 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellt15 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellt15 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt15 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt15 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt15 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellt15 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellt15 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellt15 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellt15 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt15 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellt15 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellt15 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt15 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt15 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt15 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt15 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt15 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt15 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellt15 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellt15 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellt15 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellt15 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellt15 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt15 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt15 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt15 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellt15 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellt15 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellt15 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellt15 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt15 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellt15 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellt15 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt15 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt15 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt15 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt15 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt15 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt15 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellt15 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellt15 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellt15 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellt15 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellt15 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt15 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt15 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt15 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellt15 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellt15 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellt15 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellt15 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt15 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellt15 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellt15 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt15 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt15 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt15 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt15 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt15 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt15 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellt15 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellt15 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellt15 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellt15 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellt15 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt15 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt15 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt15 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellt15 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellt15 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellt15 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellt15 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt15 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellt15 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellt15 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt15 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt15 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt15 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt15 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt15 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt15 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000000000000F ++sellt15 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellt15 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellt15 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellt15 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellt15 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellt15 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt15 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt15 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt15 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellt15 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellt15 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellt15 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellt15 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt15 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellt15 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellt15 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt15 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt15 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt15 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt15 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt15 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt15 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellt15 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellt15 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellt15 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellt15 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellt15 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt15 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt15 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt15 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellt15 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellt15 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellt15 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellt15 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt15 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellt15 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellt15 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt15 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt15 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt15 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt15 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt15 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt15 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellt15 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellt15 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellt15 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellt15 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellt15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt15 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellt15 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellt15 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt15 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellt15 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt15 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellt15 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellt15 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt15 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt15 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt15 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt15 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt15 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt15 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellt15 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellt15 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellt15 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellt15 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellt15 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt15 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt15 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt15 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellt15 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellt15 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellt15 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellt15 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt15 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellt15 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellt15 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt15 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt15 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt15 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt15 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt15 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt15 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt15 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt15 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt15 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt15 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt15 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt15 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt15 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt15 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt15 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt15 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt15 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt15 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt15 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt15 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt15 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt15 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt15 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellt15 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellt15 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellt15 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellt15 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellt15 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt15 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt15 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt15 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellt15 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellt15 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt15 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellt15 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt15 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellt15 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellt15 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt15 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt15 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt15 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt15 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt15 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt15 0x8000000000000000 0x0000000000000000 = 0x000000000000000F ++sellt15 0x8000000000000000 0x0000000000000001 = 0x000000000000000F ++sellt15 0x8000000000000000 0x0000000000000002 = 0x000000000000000F ++sellt15 0x8000000000000000 0x0000000000000003 = 0x000000000000000F ++sellt15 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++sellt15 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellt15 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellt15 0x8000000000000000 0x000000000000007F = 0x000000000000000F ++sellt15 0x8000000000000000 0x0000000000000080 = 0x000000000000000F ++sellt15 0x8000000000000000 0x0000000000007FFF = 0x000000000000000F ++sellt15 0x8000000000000000 0x0000000000008000 = 0x000000000000000F ++sellt15 0x8000000000000000 0x000000007FFFFFFF = 0x000000000000000F ++sellt15 0x8000000000000000 0x0000000080000000 = 0x000000000000000F ++sellt15 0x8000000000000000 0x8000000000000000 = 0x000000000000000F ++sellt15 0x8000000000000000 0xFFFFFFFF80000000 = 0x000000000000000F ++sellt15 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellt15 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellt15 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0x8000000000000000 0x123456789ABCDEF0 = 0x000000000000000F ++sellt15 0x8000000000000000 0xF0DEBC9A78563412 = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0x0000000000000000 = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0x0000000000000001 = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0x0000000000000002 = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0x0000000000000080 = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0x0000000000008000 = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0x0000000080000000 = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0x8000000000000000 = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x000000000000000F ++sellt15 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000000000000F ++sellt15 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000000000000F ++sellt15 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt15 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt15 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt15 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt15 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt15 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt15 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt15 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt15 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt15 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt15 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt15 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt15 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt15 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt15 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt15 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellt15 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellt15 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellt15 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellt15 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellt15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt15 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellt15 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellt15 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellt15 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellt15 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt15 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellt15 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellt15 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt15 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt15 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt15 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt15 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt15 0xF0DEBC9A78563412 0x0000000000000000 = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0x0000000000000001 = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0x0000000000000003 = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0x0000000000000080 = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0x0000000080000000 = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0x8000000000000000 = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000000000000F ++sellt15 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x000000000000000F ++=== Running test on sellt127 === ++sellt127 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellt127 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellt127 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellt127 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellt127 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellt127 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt127 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt127 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt127 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellt127 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellt127 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt127 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellt127 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt127 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellt127 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellt127 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt127 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt127 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt127 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt127 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt127 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt127 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellt127 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellt127 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellt127 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellt127 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellt127 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt127 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt127 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt127 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellt127 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellt127 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellt127 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellt127 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt127 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellt127 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellt127 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt127 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt127 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt127 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt127 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt127 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt127 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellt127 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellt127 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellt127 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellt127 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellt127 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt127 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt127 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt127 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellt127 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellt127 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellt127 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellt127 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt127 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellt127 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellt127 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt127 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt127 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt127 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt127 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt127 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt127 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellt127 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellt127 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellt127 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellt127 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellt127 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt127 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt127 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt127 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellt127 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellt127 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellt127 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellt127 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt127 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellt127 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellt127 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt127 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt127 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt127 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt127 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt127 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt127 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellt127 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellt127 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellt127 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellt127 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellt127 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt127 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt127 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt127 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellt127 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellt127 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellt127 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellt127 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt127 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellt127 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellt127 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt127 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt127 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt127 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt127 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt127 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt127 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000000000007F ++sellt127 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellt127 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellt127 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellt127 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellt127 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellt127 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt127 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt127 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt127 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellt127 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellt127 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellt127 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellt127 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt127 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellt127 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellt127 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt127 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt127 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt127 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt127 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt127 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt127 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellt127 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellt127 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellt127 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellt127 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellt127 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt127 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt127 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt127 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellt127 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellt127 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellt127 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellt127 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt127 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellt127 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellt127 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt127 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt127 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt127 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt127 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt127 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt127 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellt127 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellt127 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellt127 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellt127 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellt127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt127 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellt127 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellt127 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt127 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellt127 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt127 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellt127 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellt127 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt127 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt127 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt127 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt127 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt127 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt127 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellt127 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellt127 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellt127 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellt127 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellt127 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt127 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt127 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt127 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellt127 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellt127 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellt127 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellt127 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt127 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellt127 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellt127 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt127 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt127 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt127 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt127 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt127 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt127 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt127 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt127 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt127 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt127 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt127 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt127 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt127 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt127 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt127 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt127 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt127 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt127 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt127 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt127 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt127 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt127 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt127 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellt127 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellt127 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellt127 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellt127 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellt127 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt127 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt127 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt127 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellt127 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellt127 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt127 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellt127 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt127 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellt127 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellt127 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt127 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt127 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt127 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt127 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt127 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt127 0x8000000000000000 0x0000000000000000 = 0x000000000000007F ++sellt127 0x8000000000000000 0x0000000000000001 = 0x000000000000007F ++sellt127 0x8000000000000000 0x0000000000000002 = 0x000000000000007F ++sellt127 0x8000000000000000 0x0000000000000003 = 0x000000000000007F ++sellt127 0x8000000000000000 0x000000000000000F = 0x000000000000007F ++sellt127 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellt127 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellt127 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++sellt127 0x8000000000000000 0x0000000000000080 = 0x000000000000007F ++sellt127 0x8000000000000000 0x0000000000007FFF = 0x000000000000007F ++sellt127 0x8000000000000000 0x0000000000008000 = 0x000000000000007F ++sellt127 0x8000000000000000 0x000000007FFFFFFF = 0x000000000000007F ++sellt127 0x8000000000000000 0x0000000080000000 = 0x000000000000007F ++sellt127 0x8000000000000000 0x8000000000000000 = 0x000000000000007F ++sellt127 0x8000000000000000 0xFFFFFFFF80000000 = 0x000000000000007F ++sellt127 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellt127 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellt127 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0x8000000000000000 0x123456789ABCDEF0 = 0x000000000000007F ++sellt127 0x8000000000000000 0xF0DEBC9A78563412 = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0x0000000000000000 = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0x0000000000000001 = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0x0000000000000002 = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0x0000000000000080 = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0x0000000000008000 = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0x0000000080000000 = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0x8000000000000000 = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x000000000000007F ++sellt127 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000000000007F ++sellt127 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000000000007F ++sellt127 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt127 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt127 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt127 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt127 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt127 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt127 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt127 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt127 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt127 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt127 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt127 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt127 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt127 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt127 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt127 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellt127 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellt127 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellt127 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellt127 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellt127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt127 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellt127 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellt127 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellt127 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellt127 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt127 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellt127 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellt127 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt127 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt127 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt127 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt127 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt127 0xF0DEBC9A78563412 0x0000000000000000 = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0x0000000000000001 = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0x0000000000000003 = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0x0000000000000080 = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0x0000000080000000 = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0x8000000000000000 = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000000000007F ++sellt127 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x000000000000007F ++=== Running test on sellt128 === ++sellt128 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellt128 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellt128 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellt128 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellt128 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellt128 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt128 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt128 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt128 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellt128 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellt128 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt128 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellt128 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt128 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellt128 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellt128 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt128 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt128 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt128 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt128 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt128 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt128 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellt128 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellt128 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellt128 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellt128 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellt128 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt128 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt128 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt128 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellt128 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellt128 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellt128 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellt128 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt128 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellt128 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellt128 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt128 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt128 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt128 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt128 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt128 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt128 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellt128 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellt128 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellt128 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellt128 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellt128 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt128 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt128 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt128 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellt128 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellt128 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellt128 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellt128 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt128 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellt128 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellt128 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt128 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt128 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt128 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt128 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt128 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt128 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellt128 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellt128 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellt128 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellt128 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellt128 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt128 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt128 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt128 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellt128 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellt128 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellt128 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellt128 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt128 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellt128 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellt128 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt128 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt128 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt128 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt128 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt128 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt128 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellt128 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellt128 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellt128 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellt128 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellt128 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt128 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt128 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt128 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellt128 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellt128 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellt128 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellt128 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt128 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellt128 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellt128 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt128 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt128 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt128 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt128 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt128 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt128 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellt128 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellt128 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellt128 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellt128 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellt128 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellt128 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt128 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt128 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt128 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellt128 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellt128 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellt128 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellt128 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt128 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellt128 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellt128 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt128 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt128 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt128 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt128 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt128 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt128 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellt128 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellt128 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellt128 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellt128 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellt128 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt128 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt128 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt128 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellt128 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellt128 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellt128 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellt128 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt128 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellt128 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellt128 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt128 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt128 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt128 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt128 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt128 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt128 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellt128 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellt128 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellt128 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellt128 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellt128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt128 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellt128 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellt128 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt128 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellt128 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt128 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellt128 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellt128 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt128 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt128 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt128 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt128 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt128 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt128 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellt128 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellt128 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellt128 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellt128 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellt128 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt128 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt128 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt128 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellt128 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellt128 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellt128 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellt128 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt128 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellt128 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellt128 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt128 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt128 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt128 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt128 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt128 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt128 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt128 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt128 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt128 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt128 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt128 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt128 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt128 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt128 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt128 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt128 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt128 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt128 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt128 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt128 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt128 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt128 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt128 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellt128 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellt128 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellt128 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellt128 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellt128 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt128 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt128 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt128 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellt128 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellt128 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt128 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellt128 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt128 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellt128 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellt128 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt128 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt128 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt128 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt128 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt128 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt128 0x8000000000000000 0x0000000000000000 = 0x0000000000000080 ++sellt128 0x8000000000000000 0x0000000000000001 = 0x0000000000000080 ++sellt128 0x8000000000000000 0x0000000000000002 = 0x0000000000000080 ++sellt128 0x8000000000000000 0x0000000000000003 = 0x0000000000000080 ++sellt128 0x8000000000000000 0x000000000000000F = 0x0000000000000080 ++sellt128 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellt128 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellt128 0x8000000000000000 0x000000000000007F = 0x0000000000000080 ++sellt128 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellt128 0x8000000000000000 0x0000000000007FFF = 0x0000000000000080 ++sellt128 0x8000000000000000 0x0000000000008000 = 0x0000000000000080 ++sellt128 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000080 ++sellt128 0x8000000000000000 0x0000000080000000 = 0x0000000000000080 ++sellt128 0x8000000000000000 0x8000000000000000 = 0x0000000000000080 ++sellt128 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellt128 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellt128 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellt128 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000080 ++sellt128 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000080 ++sellt128 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000080 ++sellt128 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellt128 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt128 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt128 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt128 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt128 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt128 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt128 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt128 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt128 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt128 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt128 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt128 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt128 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt128 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt128 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt128 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellt128 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellt128 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellt128 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellt128 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellt128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt128 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellt128 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellt128 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellt128 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellt128 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt128 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellt128 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellt128 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt128 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt128 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt128 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt128 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt128 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000080 ++sellt128 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000080 ++=== Running test on sellt255 === ++sellt255 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellt255 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellt255 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellt255 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellt255 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellt255 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt255 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt255 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt255 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellt255 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellt255 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt255 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellt255 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt255 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellt255 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellt255 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt255 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt255 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt255 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt255 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt255 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt255 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellt255 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellt255 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellt255 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellt255 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellt255 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt255 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt255 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt255 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellt255 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellt255 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellt255 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellt255 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt255 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellt255 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellt255 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt255 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt255 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt255 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt255 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt255 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt255 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellt255 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellt255 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellt255 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellt255 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellt255 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt255 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt255 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt255 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellt255 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellt255 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellt255 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellt255 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt255 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellt255 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellt255 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt255 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt255 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt255 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt255 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt255 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt255 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellt255 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellt255 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellt255 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellt255 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellt255 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt255 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt255 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt255 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellt255 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellt255 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellt255 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellt255 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt255 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellt255 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellt255 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt255 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt255 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt255 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt255 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt255 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt255 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellt255 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellt255 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellt255 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellt255 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellt255 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt255 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt255 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt255 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellt255 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellt255 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellt255 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellt255 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt255 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellt255 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellt255 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt255 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt255 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt255 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt255 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt255 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt255 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellt255 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellt255 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellt255 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellt255 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellt255 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellt255 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt255 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt255 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt255 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellt255 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellt255 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellt255 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellt255 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt255 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellt255 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellt255 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt255 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt255 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt255 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt255 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt255 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt255 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellt255 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellt255 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellt255 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellt255 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellt255 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt255 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt255 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt255 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellt255 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellt255 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellt255 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellt255 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt255 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellt255 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellt255 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt255 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt255 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt255 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt255 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt255 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt255 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellt255 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellt255 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellt255 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellt255 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellt255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt255 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellt255 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellt255 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt255 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellt255 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt255 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellt255 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellt255 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt255 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt255 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt255 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt255 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt255 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt255 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellt255 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellt255 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellt255 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellt255 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellt255 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt255 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt255 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt255 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellt255 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellt255 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellt255 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellt255 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt255 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellt255 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellt255 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt255 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt255 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt255 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt255 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt255 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt255 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt255 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt255 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt255 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt255 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt255 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt255 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt255 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt255 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt255 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt255 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt255 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt255 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt255 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt255 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt255 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt255 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt255 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellt255 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellt255 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellt255 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellt255 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellt255 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt255 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt255 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt255 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellt255 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellt255 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt255 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellt255 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt255 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellt255 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellt255 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt255 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt255 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt255 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt255 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt255 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt255 0x8000000000000000 0x0000000000000000 = 0x00000000000000FF ++sellt255 0x8000000000000000 0x0000000000000001 = 0x00000000000000FF ++sellt255 0x8000000000000000 0x0000000000000002 = 0x00000000000000FF ++sellt255 0x8000000000000000 0x0000000000000003 = 0x00000000000000FF ++sellt255 0x8000000000000000 0x000000000000000F = 0x00000000000000FF ++sellt255 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellt255 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellt255 0x8000000000000000 0x000000000000007F = 0x00000000000000FF ++sellt255 0x8000000000000000 0x0000000000000080 = 0x00000000000000FF ++sellt255 0x8000000000000000 0x0000000000007FFF = 0x00000000000000FF ++sellt255 0x8000000000000000 0x0000000000008000 = 0x00000000000000FF ++sellt255 0x8000000000000000 0x000000007FFFFFFF = 0x00000000000000FF ++sellt255 0x8000000000000000 0x0000000080000000 = 0x00000000000000FF ++sellt255 0x8000000000000000 0x8000000000000000 = 0x00000000000000FF ++sellt255 0x8000000000000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellt255 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellt255 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellt255 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0x8000000000000000 0x123456789ABCDEF0 = 0x00000000000000FF ++sellt255 0x8000000000000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0x0000000000000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0x0000000000000001 = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0x0000000000000002 = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0x0000000000000003 = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0x000000000000000F = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0x000000000000007F = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0x0000000000000080 = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0x0000000000008000 = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0x0000000080000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0x8000000000000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x00000000000000FF ++sellt255 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x00000000000000FF ++sellt255 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellt255 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt255 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt255 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt255 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt255 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt255 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt255 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt255 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt255 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellt255 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt255 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt255 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt255 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt255 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt255 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt255 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellt255 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellt255 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellt255 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellt255 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellt255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt255 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellt255 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellt255 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellt255 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellt255 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt255 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellt255 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellt255 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt255 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt255 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt255 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt255 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt255 0xF0DEBC9A78563412 0x0000000000000000 = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0x0000000000000001 = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0x0000000000000002 = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0x0000000000000003 = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0x000000000000007F = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0x0000000000000080 = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0x0000000000008000 = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0x0000000080000000 = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0x8000000000000000 = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x00000000000000FF ++sellt255 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x00000000000000FF ++=== Running test on selne0 === ++selne0 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selne0 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selne0 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selne0 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selne0 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selne0 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selne0 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selne0 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selne0 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selne0 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selne0 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selne0 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selne0 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selne0 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selne0 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selne0 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selne0 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selne0 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selne0 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selne0 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selne0 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selne0 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++selne0 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++selne0 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++selne0 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++selne0 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++selne0 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++selne0 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++selne0 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++selne0 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++selne0 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++selne0 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++selne0 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++selne0 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++selne0 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++selne0 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++selne0 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++selne0 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++selne0 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++selne0 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++selne0 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++selne0 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++selne0 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++selne0 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++selne0 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++selne0 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++selne0 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++selne0 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++selne0 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++selne0 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++selne0 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++selne0 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++selne0 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++selne0 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++selne0 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++selne0 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++selne0 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++selne0 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++selne0 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++selne0 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++selne0 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++selne0 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++selne0 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++selne0 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++selne0 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++selne0 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++selne0 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++selne0 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++selne0 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++selne0 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++selne0 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++selne0 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++selne0 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++selne0 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++selne0 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++selne0 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++selne0 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++selne0 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++selne0 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++selne0 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++selne0 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++selne0 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++selne0 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++selne0 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++selne0 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++selne0 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++selne0 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++selne0 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++selne0 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++selne0 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++selne0 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++selne0 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++selne0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++selne0 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++selne0 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++selne0 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++selne0 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++selne0 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++selne0 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++selne0 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++selne0 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++selne0 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++selne0 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++selne0 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++selne0 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++selne0 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++selne0 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++selne0 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++selne0 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++selne0 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++selne0 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++selne0 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++selne0 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++selne0 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++selne0 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++selne0 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++selne0 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++selne0 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++selne0 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++selne0 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++selne0 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selne0 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++selne0 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++selne0 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++selne0 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++selne0 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++selne0 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++selne0 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++selne0 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++selne0 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++selne0 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++selne0 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000000 ++selne0 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on selne1 === ++selne1 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selne1 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selne1 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selne1 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selne1 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selne1 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selne1 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selne1 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selne1 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selne1 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selne1 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selne1 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selne1 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selne1 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selne1 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selne1 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selne1 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selne1 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selne1 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selne1 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selne1 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selne1 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++selne1 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selne1 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++selne1 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++selne1 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++selne1 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++selne1 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++selne1 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++selne1 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++selne1 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++selne1 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++selne1 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0x0000000000000002 0x0000000000000000 = 0x0000000000000001 ++selne1 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++selne1 0x0000000000000002 0x0000000000000002 = 0x0000000000000001 ++selne1 0x0000000000000002 0x0000000000000003 = 0x0000000000000001 ++selne1 0x0000000000000002 0x000000000000000F = 0x0000000000000001 ++selne1 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0x0000000000000002 0x000000000000007F = 0x0000000000000001 ++selne1 0x0000000000000002 0x0000000000000080 = 0x0000000000000001 ++selne1 0x0000000000000002 0x0000000000007FFF = 0x0000000000000001 ++selne1 0x0000000000000002 0x0000000000008000 = 0x0000000000000001 ++selne1 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0x0000000000000002 0x0000000080000000 = 0x0000000000000001 ++selne1 0x0000000000000002 0x8000000000000000 = 0x0000000000000001 ++selne1 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0x0000000000000003 0x0000000000000000 = 0x0000000000000001 ++selne1 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++selne1 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++selne1 0x0000000000000003 0x0000000000000003 = 0x0000000000000001 ++selne1 0x0000000000000003 0x000000000000000F = 0x0000000000000001 ++selne1 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0x0000000000000003 0x000000000000007F = 0x0000000000000001 ++selne1 0x0000000000000003 0x0000000000000080 = 0x0000000000000001 ++selne1 0x0000000000000003 0x0000000000007FFF = 0x0000000000000001 ++selne1 0x0000000000000003 0x0000000000008000 = 0x0000000000000001 ++selne1 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0x0000000000000003 0x0000000080000000 = 0x0000000000000001 ++selne1 0x0000000000000003 0x8000000000000000 = 0x0000000000000001 ++selne1 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0x000000000000000F 0x0000000000000000 = 0x0000000000000001 ++selne1 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++selne1 0x000000000000000F 0x0000000000000002 = 0x0000000000000001 ++selne1 0x000000000000000F 0x0000000000000003 = 0x0000000000000001 ++selne1 0x000000000000000F 0x000000000000000F = 0x0000000000000001 ++selne1 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0x000000000000000F 0x000000000000007F = 0x0000000000000001 ++selne1 0x000000000000000F 0x0000000000000080 = 0x0000000000000001 ++selne1 0x000000000000000F 0x0000000000007FFF = 0x0000000000000001 ++selne1 0x000000000000000F 0x0000000000008000 = 0x0000000000000001 ++selne1 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0x000000000000000F 0x0000000080000000 = 0x0000000000000001 ++selne1 0x000000000000000F 0x8000000000000000 = 0x0000000000000001 ++selne1 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0x000000000000007F 0x0000000000000000 = 0x0000000000000001 ++selne1 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++selne1 0x000000000000007F 0x0000000000000002 = 0x0000000000000001 ++selne1 0x000000000000007F 0x0000000000000003 = 0x0000000000000001 ++selne1 0x000000000000007F 0x000000000000000F = 0x0000000000000001 ++selne1 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0x000000000000007F 0x000000000000007F = 0x0000000000000001 ++selne1 0x000000000000007F 0x0000000000000080 = 0x0000000000000001 ++selne1 0x000000000000007F 0x0000000000007FFF = 0x0000000000000001 ++selne1 0x000000000000007F 0x0000000000008000 = 0x0000000000000001 ++selne1 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0x000000000000007F 0x0000000080000000 = 0x0000000000000001 ++selne1 0x000000000000007F 0x8000000000000000 = 0x0000000000000001 ++selne1 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0x0000000000000080 0x0000000000000000 = 0x0000000000000001 ++selne1 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++selne1 0x0000000000000080 0x0000000000000002 = 0x0000000000000001 ++selne1 0x0000000000000080 0x0000000000000003 = 0x0000000000000001 ++selne1 0x0000000000000080 0x000000000000000F = 0x0000000000000001 ++selne1 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0x0000000000000080 0x000000000000007F = 0x0000000000000001 ++selne1 0x0000000000000080 0x0000000000000080 = 0x0000000000000001 ++selne1 0x0000000000000080 0x0000000000007FFF = 0x0000000000000001 ++selne1 0x0000000000000080 0x0000000000008000 = 0x0000000000000001 ++selne1 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0x0000000000000080 0x0000000080000000 = 0x0000000000000001 ++selne1 0x0000000000000080 0x8000000000000000 = 0x0000000000000001 ++selne1 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000001 ++selne1 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++selne1 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000001 ++selne1 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000001 ++selne1 0x0000000000007FFF 0x000000000000000F = 0x0000000000000001 ++selne1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0x0000000000007FFF 0x000000000000007F = 0x0000000000000001 ++selne1 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000001 ++selne1 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000001 ++selne1 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000001 ++selne1 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000001 ++selne1 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000001 ++selne1 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0x0000000000008000 0x0000000000000000 = 0x0000000000000001 ++selne1 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++selne1 0x0000000000008000 0x0000000000000002 = 0x0000000000000001 ++selne1 0x0000000000008000 0x0000000000000003 = 0x0000000000000001 ++selne1 0x0000000000008000 0x000000000000000F = 0x0000000000000001 ++selne1 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0x0000000000008000 0x000000000000007F = 0x0000000000000001 ++selne1 0x0000000000008000 0x0000000000000080 = 0x0000000000000001 ++selne1 0x0000000000008000 0x0000000000007FFF = 0x0000000000000001 ++selne1 0x0000000000008000 0x0000000000008000 = 0x0000000000000001 ++selne1 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0x0000000000008000 0x0000000080000000 = 0x0000000000000001 ++selne1 0x0000000000008000 0x8000000000000000 = 0x0000000000000001 ++selne1 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0x0000000080000000 0x0000000000000000 = 0x0000000000000001 ++selne1 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++selne1 0x0000000080000000 0x0000000000000002 = 0x0000000000000001 ++selne1 0x0000000080000000 0x0000000000000003 = 0x0000000000000001 ++selne1 0x0000000080000000 0x000000000000000F = 0x0000000000000001 ++selne1 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0x0000000080000000 0x000000000000007F = 0x0000000000000001 ++selne1 0x0000000080000000 0x0000000000000080 = 0x0000000000000001 ++selne1 0x0000000080000000 0x0000000000007FFF = 0x0000000000000001 ++selne1 0x0000000080000000 0x0000000000008000 = 0x0000000000000001 ++selne1 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0x0000000080000000 0x0000000080000000 = 0x0000000000000001 ++selne1 0x0000000080000000 0x8000000000000000 = 0x0000000000000001 ++selne1 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0x8000000000000000 0x0000000000000000 = 0x0000000000000001 ++selne1 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selne1 0x8000000000000000 0x0000000000000002 = 0x0000000000000001 ++selne1 0x8000000000000000 0x0000000000000003 = 0x0000000000000001 ++selne1 0x8000000000000000 0x000000000000000F = 0x0000000000000001 ++selne1 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0x8000000000000000 0x000000000000007F = 0x0000000000000001 ++selne1 0x8000000000000000 0x0000000000000080 = 0x0000000000000001 ++selne1 0x8000000000000000 0x0000000000007FFF = 0x0000000000000001 ++selne1 0x8000000000000000 0x0000000000008000 = 0x0000000000000001 ++selne1 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0x8000000000000000 0x0000000080000000 = 0x0000000000000001 ++selne1 0x8000000000000000 0x8000000000000000 = 0x0000000000000001 ++selne1 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000001 ++selne1 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on selne2 === ++selne2 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selne2 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selne2 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selne2 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selne2 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selne2 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selne2 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selne2 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selne2 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selne2 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selne2 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selne2 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selne2 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selne2 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selne2 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selne2 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selne2 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selne2 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selne2 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selne2 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selne2 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selne2 0x0000000000000001 0x0000000000000000 = 0x0000000000000002 ++selne2 0x0000000000000001 0x0000000000000001 = 0x0000000000000002 ++selne2 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++selne2 0x0000000000000001 0x0000000000000003 = 0x0000000000000002 ++selne2 0x0000000000000001 0x000000000000000F = 0x0000000000000002 ++selne2 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0x0000000000000001 0x000000000000007F = 0x0000000000000002 ++selne2 0x0000000000000001 0x0000000000000080 = 0x0000000000000002 ++selne2 0x0000000000000001 0x0000000000007FFF = 0x0000000000000002 ++selne2 0x0000000000000001 0x0000000000008000 = 0x0000000000000002 ++selne2 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0x0000000000000001 0x0000000080000000 = 0x0000000000000002 ++selne2 0x0000000000000001 0x8000000000000000 = 0x0000000000000002 ++selne2 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++selne2 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++selne2 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selne2 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++selne2 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++selne2 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++selne2 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++selne2 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++selne2 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++selne2 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++selne2 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++selne2 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0x0000000000000003 0x0000000000000000 = 0x0000000000000002 ++selne2 0x0000000000000003 0x0000000000000001 = 0x0000000000000002 ++selne2 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++selne2 0x0000000000000003 0x0000000000000003 = 0x0000000000000002 ++selne2 0x0000000000000003 0x000000000000000F = 0x0000000000000002 ++selne2 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0x0000000000000003 0x000000000000007F = 0x0000000000000002 ++selne2 0x0000000000000003 0x0000000000000080 = 0x0000000000000002 ++selne2 0x0000000000000003 0x0000000000007FFF = 0x0000000000000002 ++selne2 0x0000000000000003 0x0000000000008000 = 0x0000000000000002 ++selne2 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0x0000000000000003 0x0000000080000000 = 0x0000000000000002 ++selne2 0x0000000000000003 0x8000000000000000 = 0x0000000000000002 ++selne2 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0x000000000000000F 0x0000000000000000 = 0x0000000000000002 ++selne2 0x000000000000000F 0x0000000000000001 = 0x0000000000000002 ++selne2 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++selne2 0x000000000000000F 0x0000000000000003 = 0x0000000000000002 ++selne2 0x000000000000000F 0x000000000000000F = 0x0000000000000002 ++selne2 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0x000000000000000F 0x000000000000007F = 0x0000000000000002 ++selne2 0x000000000000000F 0x0000000000000080 = 0x0000000000000002 ++selne2 0x000000000000000F 0x0000000000007FFF = 0x0000000000000002 ++selne2 0x000000000000000F 0x0000000000008000 = 0x0000000000000002 ++selne2 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0x000000000000000F 0x0000000080000000 = 0x0000000000000002 ++selne2 0x000000000000000F 0x8000000000000000 = 0x0000000000000002 ++selne2 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0x000000000000007F 0x0000000000000000 = 0x0000000000000002 ++selne2 0x000000000000007F 0x0000000000000001 = 0x0000000000000002 ++selne2 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++selne2 0x000000000000007F 0x0000000000000003 = 0x0000000000000002 ++selne2 0x000000000000007F 0x000000000000000F = 0x0000000000000002 ++selne2 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0x000000000000007F 0x000000000000007F = 0x0000000000000002 ++selne2 0x000000000000007F 0x0000000000000080 = 0x0000000000000002 ++selne2 0x000000000000007F 0x0000000000007FFF = 0x0000000000000002 ++selne2 0x000000000000007F 0x0000000000008000 = 0x0000000000000002 ++selne2 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0x000000000000007F 0x0000000080000000 = 0x0000000000000002 ++selne2 0x000000000000007F 0x8000000000000000 = 0x0000000000000002 ++selne2 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0x0000000000000080 0x0000000000000000 = 0x0000000000000002 ++selne2 0x0000000000000080 0x0000000000000001 = 0x0000000000000002 ++selne2 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++selne2 0x0000000000000080 0x0000000000000003 = 0x0000000000000002 ++selne2 0x0000000000000080 0x000000000000000F = 0x0000000000000002 ++selne2 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0x0000000000000080 0x000000000000007F = 0x0000000000000002 ++selne2 0x0000000000000080 0x0000000000000080 = 0x0000000000000002 ++selne2 0x0000000000000080 0x0000000000007FFF = 0x0000000000000002 ++selne2 0x0000000000000080 0x0000000000008000 = 0x0000000000000002 ++selne2 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0x0000000000000080 0x0000000080000000 = 0x0000000000000002 ++selne2 0x0000000000000080 0x8000000000000000 = 0x0000000000000002 ++selne2 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000002 ++selne2 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000002 ++selne2 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++selne2 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000002 ++selne2 0x0000000000007FFF 0x000000000000000F = 0x0000000000000002 ++selne2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0x0000000000007FFF 0x000000000000007F = 0x0000000000000002 ++selne2 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000002 ++selne2 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000002 ++selne2 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000002 ++selne2 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000002 ++selne2 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000002 ++selne2 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0x0000000000008000 0x0000000000000000 = 0x0000000000000002 ++selne2 0x0000000000008000 0x0000000000000001 = 0x0000000000000002 ++selne2 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++selne2 0x0000000000008000 0x0000000000000003 = 0x0000000000000002 ++selne2 0x0000000000008000 0x000000000000000F = 0x0000000000000002 ++selne2 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0x0000000000008000 0x000000000000007F = 0x0000000000000002 ++selne2 0x0000000000008000 0x0000000000000080 = 0x0000000000000002 ++selne2 0x0000000000008000 0x0000000000007FFF = 0x0000000000000002 ++selne2 0x0000000000008000 0x0000000000008000 = 0x0000000000000002 ++selne2 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0x0000000000008000 0x0000000080000000 = 0x0000000000000002 ++selne2 0x0000000000008000 0x8000000000000000 = 0x0000000000000002 ++selne2 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0x0000000080000000 0x0000000000000000 = 0x0000000000000002 ++selne2 0x0000000080000000 0x0000000000000001 = 0x0000000000000002 ++selne2 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++selne2 0x0000000080000000 0x0000000000000003 = 0x0000000000000002 ++selne2 0x0000000080000000 0x000000000000000F = 0x0000000000000002 ++selne2 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0x0000000080000000 0x000000000000007F = 0x0000000000000002 ++selne2 0x0000000080000000 0x0000000000000080 = 0x0000000000000002 ++selne2 0x0000000080000000 0x0000000000007FFF = 0x0000000000000002 ++selne2 0x0000000080000000 0x0000000000008000 = 0x0000000000000002 ++selne2 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0x0000000080000000 0x0000000080000000 = 0x0000000000000002 ++selne2 0x0000000080000000 0x8000000000000000 = 0x0000000000000002 ++selne2 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0x8000000000000000 0x0000000000000000 = 0x0000000000000002 ++selne2 0x8000000000000000 0x0000000000000001 = 0x0000000000000002 ++selne2 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selne2 0x8000000000000000 0x0000000000000003 = 0x0000000000000002 ++selne2 0x8000000000000000 0x000000000000000F = 0x0000000000000002 ++selne2 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0x8000000000000000 0x000000000000007F = 0x0000000000000002 ++selne2 0x8000000000000000 0x0000000000000080 = 0x0000000000000002 ++selne2 0x8000000000000000 0x0000000000007FFF = 0x0000000000000002 ++selne2 0x8000000000000000 0x0000000000008000 = 0x0000000000000002 ++selne2 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0x8000000000000000 0x0000000080000000 = 0x0000000000000002 ++selne2 0x8000000000000000 0x8000000000000000 = 0x0000000000000002 ++selne2 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000002 ++selne2 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000002 ++=== Running test on selne3 === ++selne3 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selne3 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selne3 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selne3 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selne3 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selne3 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selne3 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selne3 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selne3 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selne3 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selne3 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selne3 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selne3 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selne3 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selne3 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selne3 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selne3 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selne3 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selne3 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selne3 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selne3 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selne3 0x0000000000000001 0x0000000000000000 = 0x0000000000000003 ++selne3 0x0000000000000001 0x0000000000000001 = 0x0000000000000003 ++selne3 0x0000000000000001 0x0000000000000002 = 0x0000000000000003 ++selne3 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++selne3 0x0000000000000001 0x000000000000000F = 0x0000000000000003 ++selne3 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0x0000000000000001 0x000000000000007F = 0x0000000000000003 ++selne3 0x0000000000000001 0x0000000000000080 = 0x0000000000000003 ++selne3 0x0000000000000001 0x0000000000007FFF = 0x0000000000000003 ++selne3 0x0000000000000001 0x0000000000008000 = 0x0000000000000003 ++selne3 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0x0000000000000001 0x0000000080000000 = 0x0000000000000003 ++selne3 0x0000000000000001 0x8000000000000000 = 0x0000000000000003 ++selne3 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0x0000000000000002 0x0000000000000000 = 0x0000000000000003 ++selne3 0x0000000000000002 0x0000000000000001 = 0x0000000000000003 ++selne3 0x0000000000000002 0x0000000000000002 = 0x0000000000000003 ++selne3 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++selne3 0x0000000000000002 0x000000000000000F = 0x0000000000000003 ++selne3 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0x0000000000000002 0x000000000000007F = 0x0000000000000003 ++selne3 0x0000000000000002 0x0000000000000080 = 0x0000000000000003 ++selne3 0x0000000000000002 0x0000000000007FFF = 0x0000000000000003 ++selne3 0x0000000000000002 0x0000000000008000 = 0x0000000000000003 ++selne3 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0x0000000000000002 0x0000000080000000 = 0x0000000000000003 ++selne3 0x0000000000000002 0x8000000000000000 = 0x0000000000000003 ++selne3 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++selne3 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++selne3 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++selne3 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selne3 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++selne3 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++selne3 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++selne3 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++selne3 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++selne3 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++selne3 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++selne3 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0x000000000000000F 0x0000000000000000 = 0x0000000000000003 ++selne3 0x000000000000000F 0x0000000000000001 = 0x0000000000000003 ++selne3 0x000000000000000F 0x0000000000000002 = 0x0000000000000003 ++selne3 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++selne3 0x000000000000000F 0x000000000000000F = 0x0000000000000003 ++selne3 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0x000000000000000F 0x000000000000007F = 0x0000000000000003 ++selne3 0x000000000000000F 0x0000000000000080 = 0x0000000000000003 ++selne3 0x000000000000000F 0x0000000000007FFF = 0x0000000000000003 ++selne3 0x000000000000000F 0x0000000000008000 = 0x0000000000000003 ++selne3 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0x000000000000000F 0x0000000080000000 = 0x0000000000000003 ++selne3 0x000000000000000F 0x8000000000000000 = 0x0000000000000003 ++selne3 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0x000000000000007F 0x0000000000000000 = 0x0000000000000003 ++selne3 0x000000000000007F 0x0000000000000001 = 0x0000000000000003 ++selne3 0x000000000000007F 0x0000000000000002 = 0x0000000000000003 ++selne3 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++selne3 0x000000000000007F 0x000000000000000F = 0x0000000000000003 ++selne3 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0x000000000000007F 0x000000000000007F = 0x0000000000000003 ++selne3 0x000000000000007F 0x0000000000000080 = 0x0000000000000003 ++selne3 0x000000000000007F 0x0000000000007FFF = 0x0000000000000003 ++selne3 0x000000000000007F 0x0000000000008000 = 0x0000000000000003 ++selne3 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0x000000000000007F 0x0000000080000000 = 0x0000000000000003 ++selne3 0x000000000000007F 0x8000000000000000 = 0x0000000000000003 ++selne3 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0x0000000000000080 0x0000000000000000 = 0x0000000000000003 ++selne3 0x0000000000000080 0x0000000000000001 = 0x0000000000000003 ++selne3 0x0000000000000080 0x0000000000000002 = 0x0000000000000003 ++selne3 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++selne3 0x0000000000000080 0x000000000000000F = 0x0000000000000003 ++selne3 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0x0000000000000080 0x000000000000007F = 0x0000000000000003 ++selne3 0x0000000000000080 0x0000000000000080 = 0x0000000000000003 ++selne3 0x0000000000000080 0x0000000000007FFF = 0x0000000000000003 ++selne3 0x0000000000000080 0x0000000000008000 = 0x0000000000000003 ++selne3 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0x0000000000000080 0x0000000080000000 = 0x0000000000000003 ++selne3 0x0000000000000080 0x8000000000000000 = 0x0000000000000003 ++selne3 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000003 ++selne3 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000003 ++selne3 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000003 ++selne3 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++selne3 0x0000000000007FFF 0x000000000000000F = 0x0000000000000003 ++selne3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0x0000000000007FFF 0x000000000000007F = 0x0000000000000003 ++selne3 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000003 ++selne3 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000003 ++selne3 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000003 ++selne3 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000003 ++selne3 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000003 ++selne3 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0x0000000000008000 0x0000000000000000 = 0x0000000000000003 ++selne3 0x0000000000008000 0x0000000000000001 = 0x0000000000000003 ++selne3 0x0000000000008000 0x0000000000000002 = 0x0000000000000003 ++selne3 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++selne3 0x0000000000008000 0x000000000000000F = 0x0000000000000003 ++selne3 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0x0000000000008000 0x000000000000007F = 0x0000000000000003 ++selne3 0x0000000000008000 0x0000000000000080 = 0x0000000000000003 ++selne3 0x0000000000008000 0x0000000000007FFF = 0x0000000000000003 ++selne3 0x0000000000008000 0x0000000000008000 = 0x0000000000000003 ++selne3 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0x0000000000008000 0x0000000080000000 = 0x0000000000000003 ++selne3 0x0000000000008000 0x8000000000000000 = 0x0000000000000003 ++selne3 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0x0000000080000000 0x0000000000000000 = 0x0000000000000003 ++selne3 0x0000000080000000 0x0000000000000001 = 0x0000000000000003 ++selne3 0x0000000080000000 0x0000000000000002 = 0x0000000000000003 ++selne3 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++selne3 0x0000000080000000 0x000000000000000F = 0x0000000000000003 ++selne3 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0x0000000080000000 0x000000000000007F = 0x0000000000000003 ++selne3 0x0000000080000000 0x0000000000000080 = 0x0000000000000003 ++selne3 0x0000000080000000 0x0000000000007FFF = 0x0000000000000003 ++selne3 0x0000000080000000 0x0000000000008000 = 0x0000000000000003 ++selne3 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0x0000000080000000 0x0000000080000000 = 0x0000000000000003 ++selne3 0x0000000080000000 0x8000000000000000 = 0x0000000000000003 ++selne3 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0x8000000000000000 0x0000000000000000 = 0x0000000000000003 ++selne3 0x8000000000000000 0x0000000000000001 = 0x0000000000000003 ++selne3 0x8000000000000000 0x0000000000000002 = 0x0000000000000003 ++selne3 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selne3 0x8000000000000000 0x000000000000000F = 0x0000000000000003 ++selne3 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0x8000000000000000 0x000000000000007F = 0x0000000000000003 ++selne3 0x8000000000000000 0x0000000000000080 = 0x0000000000000003 ++selne3 0x8000000000000000 0x0000000000007FFF = 0x0000000000000003 ++selne3 0x8000000000000000 0x0000000000008000 = 0x0000000000000003 ++selne3 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0x8000000000000000 0x0000000080000000 = 0x0000000000000003 ++selne3 0x8000000000000000 0x8000000000000000 = 0x0000000000000003 ++selne3 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000003 ++selne3 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000003 ++=== Running test on selne15 === ++selne15 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selne15 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selne15 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selne15 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selne15 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selne15 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selne15 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selne15 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selne15 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selne15 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selne15 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selne15 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selne15 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selne15 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selne15 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selne15 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selne15 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selne15 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selne15 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selne15 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selne15 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selne15 0x0000000000000001 0x0000000000000000 = 0x000000000000000F ++selne15 0x0000000000000001 0x0000000000000001 = 0x000000000000000F ++selne15 0x0000000000000001 0x0000000000000002 = 0x000000000000000F ++selne15 0x0000000000000001 0x0000000000000003 = 0x000000000000000F ++selne15 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++selne15 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0x0000000000000001 0x000000000000007F = 0x000000000000000F ++selne15 0x0000000000000001 0x0000000000000080 = 0x000000000000000F ++selne15 0x0000000000000001 0x0000000000007FFF = 0x000000000000000F ++selne15 0x0000000000000001 0x0000000000008000 = 0x000000000000000F ++selne15 0x0000000000000001 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0x0000000000000001 0x0000000080000000 = 0x000000000000000F ++selne15 0x0000000000000001 0x8000000000000000 = 0x000000000000000F ++selne15 0x0000000000000001 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x0000000000000001 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0x0000000000000001 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0x0000000000000002 0x0000000000000000 = 0x000000000000000F ++selne15 0x0000000000000002 0x0000000000000001 = 0x000000000000000F ++selne15 0x0000000000000002 0x0000000000000002 = 0x000000000000000F ++selne15 0x0000000000000002 0x0000000000000003 = 0x000000000000000F ++selne15 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++selne15 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0x0000000000000002 0x000000000000007F = 0x000000000000000F ++selne15 0x0000000000000002 0x0000000000000080 = 0x000000000000000F ++selne15 0x0000000000000002 0x0000000000007FFF = 0x000000000000000F ++selne15 0x0000000000000002 0x0000000000008000 = 0x000000000000000F ++selne15 0x0000000000000002 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0x0000000000000002 0x0000000080000000 = 0x000000000000000F ++selne15 0x0000000000000002 0x8000000000000000 = 0x000000000000000F ++selne15 0x0000000000000002 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x0000000000000002 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0x0000000000000002 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0x0000000000000003 0x0000000000000000 = 0x000000000000000F ++selne15 0x0000000000000003 0x0000000000000001 = 0x000000000000000F ++selne15 0x0000000000000003 0x0000000000000002 = 0x000000000000000F ++selne15 0x0000000000000003 0x0000000000000003 = 0x000000000000000F ++selne15 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++selne15 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0x0000000000000003 0x000000000000007F = 0x000000000000000F ++selne15 0x0000000000000003 0x0000000000000080 = 0x000000000000000F ++selne15 0x0000000000000003 0x0000000000007FFF = 0x000000000000000F ++selne15 0x0000000000000003 0x0000000000008000 = 0x000000000000000F ++selne15 0x0000000000000003 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0x0000000000000003 0x0000000080000000 = 0x000000000000000F ++selne15 0x0000000000000003 0x8000000000000000 = 0x000000000000000F ++selne15 0x0000000000000003 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x0000000000000003 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0x0000000000000003 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++selne15 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++selne15 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++selne15 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++selne15 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selne15 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++selne15 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++selne15 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++selne15 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++selne15 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++selne15 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++selne15 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0x000000000000007F 0x0000000000000000 = 0x000000000000000F ++selne15 0x000000000000007F 0x0000000000000001 = 0x000000000000000F ++selne15 0x000000000000007F 0x0000000000000002 = 0x000000000000000F ++selne15 0x000000000000007F 0x0000000000000003 = 0x000000000000000F ++selne15 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++selne15 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0x000000000000007F 0x000000000000007F = 0x000000000000000F ++selne15 0x000000000000007F 0x0000000000000080 = 0x000000000000000F ++selne15 0x000000000000007F 0x0000000000007FFF = 0x000000000000000F ++selne15 0x000000000000007F 0x0000000000008000 = 0x000000000000000F ++selne15 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0x000000000000007F 0x0000000080000000 = 0x000000000000000F ++selne15 0x000000000000007F 0x8000000000000000 = 0x000000000000000F ++selne15 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0x0000000000000080 0x0000000000000000 = 0x000000000000000F ++selne15 0x0000000000000080 0x0000000000000001 = 0x000000000000000F ++selne15 0x0000000000000080 0x0000000000000002 = 0x000000000000000F ++selne15 0x0000000000000080 0x0000000000000003 = 0x000000000000000F ++selne15 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++selne15 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0x0000000000000080 0x000000000000007F = 0x000000000000000F ++selne15 0x0000000000000080 0x0000000000000080 = 0x000000000000000F ++selne15 0x0000000000000080 0x0000000000007FFF = 0x000000000000000F ++selne15 0x0000000000000080 0x0000000000008000 = 0x000000000000000F ++selne15 0x0000000000000080 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0x0000000000000080 0x0000000080000000 = 0x000000000000000F ++selne15 0x0000000000000080 0x8000000000000000 = 0x000000000000000F ++selne15 0x0000000000000080 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x0000000000000080 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0x0000000000000080 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0x0000000000007FFF 0x0000000000000000 = 0x000000000000000F ++selne15 0x0000000000007FFF 0x0000000000000001 = 0x000000000000000F ++selne15 0x0000000000007FFF 0x0000000000000002 = 0x000000000000000F ++selne15 0x0000000000007FFF 0x0000000000000003 = 0x000000000000000F ++selne15 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++selne15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0x0000000000007FFF 0x000000000000007F = 0x000000000000000F ++selne15 0x0000000000007FFF 0x0000000000000080 = 0x000000000000000F ++selne15 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000000F ++selne15 0x0000000000007FFF 0x0000000000008000 = 0x000000000000000F ++selne15 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0x0000000000007FFF 0x0000000080000000 = 0x000000000000000F ++selne15 0x0000000000007FFF 0x8000000000000000 = 0x000000000000000F ++selne15 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0x0000000000008000 0x0000000000000000 = 0x000000000000000F ++selne15 0x0000000000008000 0x0000000000000001 = 0x000000000000000F ++selne15 0x0000000000008000 0x0000000000000002 = 0x000000000000000F ++selne15 0x0000000000008000 0x0000000000000003 = 0x000000000000000F ++selne15 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++selne15 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0x0000000000008000 0x000000000000007F = 0x000000000000000F ++selne15 0x0000000000008000 0x0000000000000080 = 0x000000000000000F ++selne15 0x0000000000008000 0x0000000000007FFF = 0x000000000000000F ++selne15 0x0000000000008000 0x0000000000008000 = 0x000000000000000F ++selne15 0x0000000000008000 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0x0000000000008000 0x0000000080000000 = 0x000000000000000F ++selne15 0x0000000000008000 0x8000000000000000 = 0x000000000000000F ++selne15 0x0000000000008000 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x0000000000008000 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0x0000000000008000 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0x0000000000000000 = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0x0000000000000001 = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0x0000000000000002 = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0x0000000080000000 = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0x8000000000000000 = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0x0000000080000000 0x0000000000000000 = 0x000000000000000F ++selne15 0x0000000080000000 0x0000000000000001 = 0x000000000000000F ++selne15 0x0000000080000000 0x0000000000000002 = 0x000000000000000F ++selne15 0x0000000080000000 0x0000000000000003 = 0x000000000000000F ++selne15 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++selne15 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0x0000000080000000 0x000000000000007F = 0x000000000000000F ++selne15 0x0000000080000000 0x0000000000000080 = 0x000000000000000F ++selne15 0x0000000080000000 0x0000000000007FFF = 0x000000000000000F ++selne15 0x0000000080000000 0x0000000000008000 = 0x000000000000000F ++selne15 0x0000000080000000 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0x0000000080000000 0x0000000080000000 = 0x000000000000000F ++selne15 0x0000000080000000 0x8000000000000000 = 0x000000000000000F ++selne15 0x0000000080000000 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x0000000080000000 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0x0000000080000000 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0x8000000000000000 0x0000000000000000 = 0x000000000000000F ++selne15 0x8000000000000000 0x0000000000000001 = 0x000000000000000F ++selne15 0x8000000000000000 0x0000000000000002 = 0x000000000000000F ++selne15 0x8000000000000000 0x0000000000000003 = 0x000000000000000F ++selne15 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selne15 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0x8000000000000000 0x000000000000007F = 0x000000000000000F ++selne15 0x8000000000000000 0x0000000000000080 = 0x000000000000000F ++selne15 0x8000000000000000 0x0000000000007FFF = 0x000000000000000F ++selne15 0x8000000000000000 0x0000000000008000 = 0x000000000000000F ++selne15 0x8000000000000000 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0x8000000000000000 0x0000000080000000 = 0x000000000000000F ++selne15 0x8000000000000000 0x8000000000000000 = 0x000000000000000F ++selne15 0x8000000000000000 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x8000000000000000 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0x8000000000000000 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0x0000000000000000 = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0x0000000000000001 = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0x0000000000000002 = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0x0000000000000080 = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0x0000000000008000 = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0x0000000080000000 = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0x8000000000000000 = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0x0000000000000000 = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0x0000000000000001 = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0x0000000000000002 = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0x0000000000000003 = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0x0000000000000080 = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0x0000000000008000 = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0x0000000080000000 = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0x8000000000000000 = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0x0000000000000000 = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0x0000000000000001 = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0x0000000000000003 = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0x0000000000000080 = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0x0000000080000000 = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0x8000000000000000 = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000000000000F ++selne15 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x000000000000000F ++=== Running test on selne127 === ++selne127 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selne127 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selne127 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selne127 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selne127 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selne127 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selne127 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selne127 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selne127 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selne127 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selne127 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selne127 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selne127 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selne127 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selne127 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selne127 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selne127 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selne127 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selne127 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selne127 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selne127 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selne127 0x0000000000000001 0x0000000000000000 = 0x000000000000007F ++selne127 0x0000000000000001 0x0000000000000001 = 0x000000000000007F ++selne127 0x0000000000000001 0x0000000000000002 = 0x000000000000007F ++selne127 0x0000000000000001 0x0000000000000003 = 0x000000000000007F ++selne127 0x0000000000000001 0x000000000000000F = 0x000000000000007F ++selne127 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++selne127 0x0000000000000001 0x0000000000000080 = 0x000000000000007F ++selne127 0x0000000000000001 0x0000000000007FFF = 0x000000000000007F ++selne127 0x0000000000000001 0x0000000000008000 = 0x000000000000007F ++selne127 0x0000000000000001 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0x0000000000000001 0x0000000080000000 = 0x000000000000007F ++selne127 0x0000000000000001 0x8000000000000000 = 0x000000000000007F ++selne127 0x0000000000000001 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x0000000000000001 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0x0000000000000001 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0x0000000000000002 0x0000000000000000 = 0x000000000000007F ++selne127 0x0000000000000002 0x0000000000000001 = 0x000000000000007F ++selne127 0x0000000000000002 0x0000000000000002 = 0x000000000000007F ++selne127 0x0000000000000002 0x0000000000000003 = 0x000000000000007F ++selne127 0x0000000000000002 0x000000000000000F = 0x000000000000007F ++selne127 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++selne127 0x0000000000000002 0x0000000000000080 = 0x000000000000007F ++selne127 0x0000000000000002 0x0000000000007FFF = 0x000000000000007F ++selne127 0x0000000000000002 0x0000000000008000 = 0x000000000000007F ++selne127 0x0000000000000002 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0x0000000000000002 0x0000000080000000 = 0x000000000000007F ++selne127 0x0000000000000002 0x8000000000000000 = 0x000000000000007F ++selne127 0x0000000000000002 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x0000000000000002 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0x0000000000000002 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0x0000000000000003 0x0000000000000000 = 0x000000000000007F ++selne127 0x0000000000000003 0x0000000000000001 = 0x000000000000007F ++selne127 0x0000000000000003 0x0000000000000002 = 0x000000000000007F ++selne127 0x0000000000000003 0x0000000000000003 = 0x000000000000007F ++selne127 0x0000000000000003 0x000000000000000F = 0x000000000000007F ++selne127 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++selne127 0x0000000000000003 0x0000000000000080 = 0x000000000000007F ++selne127 0x0000000000000003 0x0000000000007FFF = 0x000000000000007F ++selne127 0x0000000000000003 0x0000000000008000 = 0x000000000000007F ++selne127 0x0000000000000003 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0x0000000000000003 0x0000000080000000 = 0x000000000000007F ++selne127 0x0000000000000003 0x8000000000000000 = 0x000000000000007F ++selne127 0x0000000000000003 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x0000000000000003 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0x0000000000000003 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0x000000000000000F 0x0000000000000000 = 0x000000000000007F ++selne127 0x000000000000000F 0x0000000000000001 = 0x000000000000007F ++selne127 0x000000000000000F 0x0000000000000002 = 0x000000000000007F ++selne127 0x000000000000000F 0x0000000000000003 = 0x000000000000007F ++selne127 0x000000000000000F 0x000000000000000F = 0x000000000000007F ++selne127 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++selne127 0x000000000000000F 0x0000000000000080 = 0x000000000000007F ++selne127 0x000000000000000F 0x0000000000007FFF = 0x000000000000007F ++selne127 0x000000000000000F 0x0000000000008000 = 0x000000000000007F ++selne127 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0x000000000000000F 0x0000000080000000 = 0x000000000000007F ++selne127 0x000000000000000F 0x8000000000000000 = 0x000000000000007F ++selne127 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++selne127 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++selne127 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++selne127 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++selne127 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++selne127 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selne127 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++selne127 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++selne127 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++selne127 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++selne127 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++selne127 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0x0000000000000080 0x0000000000000000 = 0x000000000000007F ++selne127 0x0000000000000080 0x0000000000000001 = 0x000000000000007F ++selne127 0x0000000000000080 0x0000000000000002 = 0x000000000000007F ++selne127 0x0000000000000080 0x0000000000000003 = 0x000000000000007F ++selne127 0x0000000000000080 0x000000000000000F = 0x000000000000007F ++selne127 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++selne127 0x0000000000000080 0x0000000000000080 = 0x000000000000007F ++selne127 0x0000000000000080 0x0000000000007FFF = 0x000000000000007F ++selne127 0x0000000000000080 0x0000000000008000 = 0x000000000000007F ++selne127 0x0000000000000080 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0x0000000000000080 0x0000000080000000 = 0x000000000000007F ++selne127 0x0000000000000080 0x8000000000000000 = 0x000000000000007F ++selne127 0x0000000000000080 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x0000000000000080 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0x0000000000000080 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0x0000000000007FFF 0x0000000000000000 = 0x000000000000007F ++selne127 0x0000000000007FFF 0x0000000000000001 = 0x000000000000007F ++selne127 0x0000000000007FFF 0x0000000000000002 = 0x000000000000007F ++selne127 0x0000000000007FFF 0x0000000000000003 = 0x000000000000007F ++selne127 0x0000000000007FFF 0x000000000000000F = 0x000000000000007F ++selne127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++selne127 0x0000000000007FFF 0x0000000000000080 = 0x000000000000007F ++selne127 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000007F ++selne127 0x0000000000007FFF 0x0000000000008000 = 0x000000000000007F ++selne127 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0x0000000000007FFF 0x0000000080000000 = 0x000000000000007F ++selne127 0x0000000000007FFF 0x8000000000000000 = 0x000000000000007F ++selne127 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0x0000000000008000 0x0000000000000000 = 0x000000000000007F ++selne127 0x0000000000008000 0x0000000000000001 = 0x000000000000007F ++selne127 0x0000000000008000 0x0000000000000002 = 0x000000000000007F ++selne127 0x0000000000008000 0x0000000000000003 = 0x000000000000007F ++selne127 0x0000000000008000 0x000000000000000F = 0x000000000000007F ++selne127 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++selne127 0x0000000000008000 0x0000000000000080 = 0x000000000000007F ++selne127 0x0000000000008000 0x0000000000007FFF = 0x000000000000007F ++selne127 0x0000000000008000 0x0000000000008000 = 0x000000000000007F ++selne127 0x0000000000008000 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0x0000000000008000 0x0000000080000000 = 0x000000000000007F ++selne127 0x0000000000008000 0x8000000000000000 = 0x000000000000007F ++selne127 0x0000000000008000 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x0000000000008000 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0x0000000000008000 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0x0000000000000000 = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0x0000000000000001 = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0x0000000000000002 = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0x0000000080000000 = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0x8000000000000000 = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0x0000000080000000 0x0000000000000000 = 0x000000000000007F ++selne127 0x0000000080000000 0x0000000000000001 = 0x000000000000007F ++selne127 0x0000000080000000 0x0000000000000002 = 0x000000000000007F ++selne127 0x0000000080000000 0x0000000000000003 = 0x000000000000007F ++selne127 0x0000000080000000 0x000000000000000F = 0x000000000000007F ++selne127 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++selne127 0x0000000080000000 0x0000000000000080 = 0x000000000000007F ++selne127 0x0000000080000000 0x0000000000007FFF = 0x000000000000007F ++selne127 0x0000000080000000 0x0000000000008000 = 0x000000000000007F ++selne127 0x0000000080000000 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0x0000000080000000 0x0000000080000000 = 0x000000000000007F ++selne127 0x0000000080000000 0x8000000000000000 = 0x000000000000007F ++selne127 0x0000000080000000 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x0000000080000000 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0x0000000080000000 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0x8000000000000000 0x0000000000000000 = 0x000000000000007F ++selne127 0x8000000000000000 0x0000000000000001 = 0x000000000000007F ++selne127 0x8000000000000000 0x0000000000000002 = 0x000000000000007F ++selne127 0x8000000000000000 0x0000000000000003 = 0x000000000000007F ++selne127 0x8000000000000000 0x000000000000000F = 0x000000000000007F ++selne127 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selne127 0x8000000000000000 0x0000000000000080 = 0x000000000000007F ++selne127 0x8000000000000000 0x0000000000007FFF = 0x000000000000007F ++selne127 0x8000000000000000 0x0000000000008000 = 0x000000000000007F ++selne127 0x8000000000000000 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0x8000000000000000 0x0000000080000000 = 0x000000000000007F ++selne127 0x8000000000000000 0x8000000000000000 = 0x000000000000007F ++selne127 0x8000000000000000 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x8000000000000000 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0x8000000000000000 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0x0000000000000000 = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0x0000000000000001 = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0x0000000000000002 = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0x0000000000000080 = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0x0000000000008000 = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0x0000000080000000 = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0x8000000000000000 = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0x0000000000000000 = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0x0000000000000001 = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0x0000000000000002 = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0x0000000000000003 = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0x0000000000000080 = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0x0000000000008000 = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0x0000000080000000 = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0x8000000000000000 = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0x0000000000000000 = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0x0000000000000001 = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0x0000000000000003 = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0x0000000000000080 = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0x0000000080000000 = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0x8000000000000000 = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000000000007F ++selne127 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x000000000000007F ++=== Running test on selne128 === ++selne128 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selne128 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selne128 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selne128 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selne128 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selne128 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selne128 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selne128 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selne128 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selne128 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selne128 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selne128 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selne128 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selne128 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selne128 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selne128 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selne128 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selne128 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selne128 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selne128 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selne128 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selne128 0x0000000000000001 0x0000000000000000 = 0x0000000000000080 ++selne128 0x0000000000000001 0x0000000000000001 = 0x0000000000000080 ++selne128 0x0000000000000001 0x0000000000000002 = 0x0000000000000080 ++selne128 0x0000000000000001 0x0000000000000003 = 0x0000000000000080 ++selne128 0x0000000000000001 0x000000000000000F = 0x0000000000000080 ++selne128 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0x0000000000000001 0x000000000000007F = 0x0000000000000080 ++selne128 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++selne128 0x0000000000000001 0x0000000000007FFF = 0x0000000000000080 ++selne128 0x0000000000000001 0x0000000000008000 = 0x0000000000000080 ++selne128 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0x0000000000000001 0x0000000080000000 = 0x0000000000000080 ++selne128 0x0000000000000001 0x8000000000000000 = 0x0000000000000080 ++selne128 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0x0000000000000002 0x0000000000000000 = 0x0000000000000080 ++selne128 0x0000000000000002 0x0000000000000001 = 0x0000000000000080 ++selne128 0x0000000000000002 0x0000000000000002 = 0x0000000000000080 ++selne128 0x0000000000000002 0x0000000000000003 = 0x0000000000000080 ++selne128 0x0000000000000002 0x000000000000000F = 0x0000000000000080 ++selne128 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0x0000000000000002 0x000000000000007F = 0x0000000000000080 ++selne128 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++selne128 0x0000000000000002 0x0000000000007FFF = 0x0000000000000080 ++selne128 0x0000000000000002 0x0000000000008000 = 0x0000000000000080 ++selne128 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0x0000000000000002 0x0000000080000000 = 0x0000000000000080 ++selne128 0x0000000000000002 0x8000000000000000 = 0x0000000000000080 ++selne128 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0x0000000000000003 0x0000000000000000 = 0x0000000000000080 ++selne128 0x0000000000000003 0x0000000000000001 = 0x0000000000000080 ++selne128 0x0000000000000003 0x0000000000000002 = 0x0000000000000080 ++selne128 0x0000000000000003 0x0000000000000003 = 0x0000000000000080 ++selne128 0x0000000000000003 0x000000000000000F = 0x0000000000000080 ++selne128 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0x0000000000000003 0x000000000000007F = 0x0000000000000080 ++selne128 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++selne128 0x0000000000000003 0x0000000000007FFF = 0x0000000000000080 ++selne128 0x0000000000000003 0x0000000000008000 = 0x0000000000000080 ++selne128 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0x0000000000000003 0x0000000080000000 = 0x0000000000000080 ++selne128 0x0000000000000003 0x8000000000000000 = 0x0000000000000080 ++selne128 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0x000000000000000F 0x0000000000000000 = 0x0000000000000080 ++selne128 0x000000000000000F 0x0000000000000001 = 0x0000000000000080 ++selne128 0x000000000000000F 0x0000000000000002 = 0x0000000000000080 ++selne128 0x000000000000000F 0x0000000000000003 = 0x0000000000000080 ++selne128 0x000000000000000F 0x000000000000000F = 0x0000000000000080 ++selne128 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0x000000000000000F 0x000000000000007F = 0x0000000000000080 ++selne128 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++selne128 0x000000000000000F 0x0000000000007FFF = 0x0000000000000080 ++selne128 0x000000000000000F 0x0000000000008000 = 0x0000000000000080 ++selne128 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0x000000000000000F 0x0000000080000000 = 0x0000000000000080 ++selne128 0x000000000000000F 0x8000000000000000 = 0x0000000000000080 ++selne128 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0x000000000000007F 0x0000000000000000 = 0x0000000000000080 ++selne128 0x000000000000007F 0x0000000000000001 = 0x0000000000000080 ++selne128 0x000000000000007F 0x0000000000000002 = 0x0000000000000080 ++selne128 0x000000000000007F 0x0000000000000003 = 0x0000000000000080 ++selne128 0x000000000000007F 0x000000000000000F = 0x0000000000000080 ++selne128 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0x000000000000007F 0x000000000000007F = 0x0000000000000080 ++selne128 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++selne128 0x000000000000007F 0x0000000000007FFF = 0x0000000000000080 ++selne128 0x000000000000007F 0x0000000000008000 = 0x0000000000000080 ++selne128 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0x000000000000007F 0x0000000080000000 = 0x0000000000000080 ++selne128 0x000000000000007F 0x8000000000000000 = 0x0000000000000080 ++selne128 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++selne128 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++selne128 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++selne128 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++selne128 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++selne128 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++selne128 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selne128 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++selne128 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++selne128 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++selne128 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++selne128 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000080 ++selne128 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000080 ++selne128 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000080 ++selne128 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000080 ++selne128 0x0000000000007FFF 0x000000000000000F = 0x0000000000000080 ++selne128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0x0000000000007FFF 0x000000000000007F = 0x0000000000000080 ++selne128 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++selne128 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000080 ++selne128 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000080 ++selne128 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000080 ++selne128 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000080 ++selne128 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0x0000000000008000 0x0000000000000000 = 0x0000000000000080 ++selne128 0x0000000000008000 0x0000000000000001 = 0x0000000000000080 ++selne128 0x0000000000008000 0x0000000000000002 = 0x0000000000000080 ++selne128 0x0000000000008000 0x0000000000000003 = 0x0000000000000080 ++selne128 0x0000000000008000 0x000000000000000F = 0x0000000000000080 ++selne128 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0x0000000000008000 0x000000000000007F = 0x0000000000000080 ++selne128 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++selne128 0x0000000000008000 0x0000000000007FFF = 0x0000000000000080 ++selne128 0x0000000000008000 0x0000000000008000 = 0x0000000000000080 ++selne128 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0x0000000000008000 0x0000000080000000 = 0x0000000000000080 ++selne128 0x0000000000008000 0x8000000000000000 = 0x0000000000000080 ++selne128 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0x0000000080000000 0x0000000000000000 = 0x0000000000000080 ++selne128 0x0000000080000000 0x0000000000000001 = 0x0000000000000080 ++selne128 0x0000000080000000 0x0000000000000002 = 0x0000000000000080 ++selne128 0x0000000080000000 0x0000000000000003 = 0x0000000000000080 ++selne128 0x0000000080000000 0x000000000000000F = 0x0000000000000080 ++selne128 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0x0000000080000000 0x000000000000007F = 0x0000000000000080 ++selne128 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++selne128 0x0000000080000000 0x0000000000007FFF = 0x0000000000000080 ++selne128 0x0000000080000000 0x0000000000008000 = 0x0000000000000080 ++selne128 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0x0000000080000000 0x0000000080000000 = 0x0000000000000080 ++selne128 0x0000000080000000 0x8000000000000000 = 0x0000000000000080 ++selne128 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0x8000000000000000 0x0000000000000000 = 0x0000000000000080 ++selne128 0x8000000000000000 0x0000000000000001 = 0x0000000000000080 ++selne128 0x8000000000000000 0x0000000000000002 = 0x0000000000000080 ++selne128 0x8000000000000000 0x0000000000000003 = 0x0000000000000080 ++selne128 0x8000000000000000 0x000000000000000F = 0x0000000000000080 ++selne128 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0x8000000000000000 0x000000000000007F = 0x0000000000000080 ++selne128 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selne128 0x8000000000000000 0x0000000000007FFF = 0x0000000000000080 ++selne128 0x8000000000000000 0x0000000000008000 = 0x0000000000000080 ++selne128 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0x8000000000000000 0x0000000080000000 = 0x0000000000000080 ++selne128 0x8000000000000000 0x8000000000000000 = 0x0000000000000080 ++selne128 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000080 ++selne128 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000080 ++=== Running test on selne255 === ++selne255 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selne255 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selne255 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selne255 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selne255 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selne255 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selne255 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selne255 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selne255 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selne255 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selne255 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selne255 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selne255 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selne255 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selne255 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selne255 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selne255 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selne255 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selne255 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selne255 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selne255 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selne255 0x0000000000000001 0x0000000000000000 = 0x00000000000000FF ++selne255 0x0000000000000001 0x0000000000000001 = 0x00000000000000FF ++selne255 0x0000000000000001 0x0000000000000002 = 0x00000000000000FF ++selne255 0x0000000000000001 0x0000000000000003 = 0x00000000000000FF ++selne255 0x0000000000000001 0x000000000000000F = 0x00000000000000FF ++selne255 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0x0000000000000001 0x000000000000007F = 0x00000000000000FF ++selne255 0x0000000000000001 0x0000000000000080 = 0x00000000000000FF ++selne255 0x0000000000000001 0x0000000000007FFF = 0x00000000000000FF ++selne255 0x0000000000000001 0x0000000000008000 = 0x00000000000000FF ++selne255 0x0000000000000001 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0x0000000000000001 0x0000000080000000 = 0x00000000000000FF ++selne255 0x0000000000000001 0x8000000000000000 = 0x00000000000000FF ++selne255 0x0000000000000001 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x0000000000000001 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0x0000000000000001 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0x0000000000000002 0x0000000000000000 = 0x00000000000000FF ++selne255 0x0000000000000002 0x0000000000000001 = 0x00000000000000FF ++selne255 0x0000000000000002 0x0000000000000002 = 0x00000000000000FF ++selne255 0x0000000000000002 0x0000000000000003 = 0x00000000000000FF ++selne255 0x0000000000000002 0x000000000000000F = 0x00000000000000FF ++selne255 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0x0000000000000002 0x000000000000007F = 0x00000000000000FF ++selne255 0x0000000000000002 0x0000000000000080 = 0x00000000000000FF ++selne255 0x0000000000000002 0x0000000000007FFF = 0x00000000000000FF ++selne255 0x0000000000000002 0x0000000000008000 = 0x00000000000000FF ++selne255 0x0000000000000002 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0x0000000000000002 0x0000000080000000 = 0x00000000000000FF ++selne255 0x0000000000000002 0x8000000000000000 = 0x00000000000000FF ++selne255 0x0000000000000002 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x0000000000000002 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0x0000000000000002 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0x0000000000000003 0x0000000000000000 = 0x00000000000000FF ++selne255 0x0000000000000003 0x0000000000000001 = 0x00000000000000FF ++selne255 0x0000000000000003 0x0000000000000002 = 0x00000000000000FF ++selne255 0x0000000000000003 0x0000000000000003 = 0x00000000000000FF ++selne255 0x0000000000000003 0x000000000000000F = 0x00000000000000FF ++selne255 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0x0000000000000003 0x000000000000007F = 0x00000000000000FF ++selne255 0x0000000000000003 0x0000000000000080 = 0x00000000000000FF ++selne255 0x0000000000000003 0x0000000000007FFF = 0x00000000000000FF ++selne255 0x0000000000000003 0x0000000000008000 = 0x00000000000000FF ++selne255 0x0000000000000003 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0x0000000000000003 0x0000000080000000 = 0x00000000000000FF ++selne255 0x0000000000000003 0x8000000000000000 = 0x00000000000000FF ++selne255 0x0000000000000003 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x0000000000000003 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0x0000000000000003 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0x000000000000000F 0x0000000000000000 = 0x00000000000000FF ++selne255 0x000000000000000F 0x0000000000000001 = 0x00000000000000FF ++selne255 0x000000000000000F 0x0000000000000002 = 0x00000000000000FF ++selne255 0x000000000000000F 0x0000000000000003 = 0x00000000000000FF ++selne255 0x000000000000000F 0x000000000000000F = 0x00000000000000FF ++selne255 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0x000000000000000F 0x000000000000007F = 0x00000000000000FF ++selne255 0x000000000000000F 0x0000000000000080 = 0x00000000000000FF ++selne255 0x000000000000000F 0x0000000000007FFF = 0x00000000000000FF ++selne255 0x000000000000000F 0x0000000000008000 = 0x00000000000000FF ++selne255 0x000000000000000F 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0x000000000000000F 0x0000000080000000 = 0x00000000000000FF ++selne255 0x000000000000000F 0x8000000000000000 = 0x00000000000000FF ++selne255 0x000000000000000F 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x000000000000000F 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0x000000000000007F 0x0000000000000000 = 0x00000000000000FF ++selne255 0x000000000000007F 0x0000000000000001 = 0x00000000000000FF ++selne255 0x000000000000007F 0x0000000000000002 = 0x00000000000000FF ++selne255 0x000000000000007F 0x0000000000000003 = 0x00000000000000FF ++selne255 0x000000000000007F 0x000000000000000F = 0x00000000000000FF ++selne255 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0x000000000000007F 0x000000000000007F = 0x00000000000000FF ++selne255 0x000000000000007F 0x0000000000000080 = 0x00000000000000FF ++selne255 0x000000000000007F 0x0000000000007FFF = 0x00000000000000FF ++selne255 0x000000000000007F 0x0000000000008000 = 0x00000000000000FF ++selne255 0x000000000000007F 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0x000000000000007F 0x0000000080000000 = 0x00000000000000FF ++selne255 0x000000000000007F 0x8000000000000000 = 0x00000000000000FF ++selne255 0x000000000000007F 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x000000000000007F 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0x000000000000007F 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0x0000000000000080 0x0000000000000000 = 0x00000000000000FF ++selne255 0x0000000000000080 0x0000000000000001 = 0x00000000000000FF ++selne255 0x0000000000000080 0x0000000000000002 = 0x00000000000000FF ++selne255 0x0000000000000080 0x0000000000000003 = 0x00000000000000FF ++selne255 0x0000000000000080 0x000000000000000F = 0x00000000000000FF ++selne255 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0x0000000000000080 0x000000000000007F = 0x00000000000000FF ++selne255 0x0000000000000080 0x0000000000000080 = 0x00000000000000FF ++selne255 0x0000000000000080 0x0000000000007FFF = 0x00000000000000FF ++selne255 0x0000000000000080 0x0000000000008000 = 0x00000000000000FF ++selne255 0x0000000000000080 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0x0000000000000080 0x0000000080000000 = 0x00000000000000FF ++selne255 0x0000000000000080 0x8000000000000000 = 0x00000000000000FF ++selne255 0x0000000000000080 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x0000000000000080 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0x0000000000000080 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0x0000000000007FFF 0x0000000000000000 = 0x00000000000000FF ++selne255 0x0000000000007FFF 0x0000000000000001 = 0x00000000000000FF ++selne255 0x0000000000007FFF 0x0000000000000002 = 0x00000000000000FF ++selne255 0x0000000000007FFF 0x0000000000000003 = 0x00000000000000FF ++selne255 0x0000000000007FFF 0x000000000000000F = 0x00000000000000FF ++selne255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0x0000000000007FFF 0x000000000000007F = 0x00000000000000FF ++selne255 0x0000000000007FFF 0x0000000000000080 = 0x00000000000000FF ++selne255 0x0000000000007FFF 0x0000000000007FFF = 0x00000000000000FF ++selne255 0x0000000000007FFF 0x0000000000008000 = 0x00000000000000FF ++selne255 0x0000000000007FFF 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0x0000000000007FFF 0x0000000080000000 = 0x00000000000000FF ++selne255 0x0000000000007FFF 0x8000000000000000 = 0x00000000000000FF ++selne255 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x0000000000007FFF 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0x0000000000008000 0x0000000000000000 = 0x00000000000000FF ++selne255 0x0000000000008000 0x0000000000000001 = 0x00000000000000FF ++selne255 0x0000000000008000 0x0000000000000002 = 0x00000000000000FF ++selne255 0x0000000000008000 0x0000000000000003 = 0x00000000000000FF ++selne255 0x0000000000008000 0x000000000000000F = 0x00000000000000FF ++selne255 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0x0000000000008000 0x000000000000007F = 0x00000000000000FF ++selne255 0x0000000000008000 0x0000000000000080 = 0x00000000000000FF ++selne255 0x0000000000008000 0x0000000000007FFF = 0x00000000000000FF ++selne255 0x0000000000008000 0x0000000000008000 = 0x00000000000000FF ++selne255 0x0000000000008000 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0x0000000000008000 0x0000000080000000 = 0x00000000000000FF ++selne255 0x0000000000008000 0x8000000000000000 = 0x00000000000000FF ++selne255 0x0000000000008000 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x0000000000008000 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0x0000000000008000 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0x0000000000000000 = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0x0000000000000002 = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0x0000000000000003 = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0x000000000000000F = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0x000000000000007F = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0x0000000000000080 = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0x0000000000008000 = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0x8000000000000000 = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0x0000000080000000 0x0000000000000000 = 0x00000000000000FF ++selne255 0x0000000080000000 0x0000000000000001 = 0x00000000000000FF ++selne255 0x0000000080000000 0x0000000000000002 = 0x00000000000000FF ++selne255 0x0000000080000000 0x0000000000000003 = 0x00000000000000FF ++selne255 0x0000000080000000 0x000000000000000F = 0x00000000000000FF ++selne255 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0x0000000080000000 0x000000000000007F = 0x00000000000000FF ++selne255 0x0000000080000000 0x0000000000000080 = 0x00000000000000FF ++selne255 0x0000000080000000 0x0000000000007FFF = 0x00000000000000FF ++selne255 0x0000000080000000 0x0000000000008000 = 0x00000000000000FF ++selne255 0x0000000080000000 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0x0000000080000000 0x0000000080000000 = 0x00000000000000FF ++selne255 0x0000000080000000 0x8000000000000000 = 0x00000000000000FF ++selne255 0x0000000080000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x0000000080000000 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0x0000000080000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0x8000000000000000 0x0000000000000000 = 0x00000000000000FF ++selne255 0x8000000000000000 0x0000000000000001 = 0x00000000000000FF ++selne255 0x8000000000000000 0x0000000000000002 = 0x00000000000000FF ++selne255 0x8000000000000000 0x0000000000000003 = 0x00000000000000FF ++selne255 0x8000000000000000 0x000000000000000F = 0x00000000000000FF ++selne255 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0x8000000000000000 0x000000000000007F = 0x00000000000000FF ++selne255 0x8000000000000000 0x0000000000000080 = 0x00000000000000FF ++selne255 0x8000000000000000 0x0000000000007FFF = 0x00000000000000FF ++selne255 0x8000000000000000 0x0000000000008000 = 0x00000000000000FF ++selne255 0x8000000000000000 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0x8000000000000000 0x0000000080000000 = 0x00000000000000FF ++selne255 0x8000000000000000 0x8000000000000000 = 0x00000000000000FF ++selne255 0x8000000000000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x8000000000000000 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0x8000000000000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0x0000000000000000 = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0x0000000000000001 = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0x0000000000000002 = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0x0000000000000003 = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0x000000000000000F = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0x000000000000007F = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0x0000000000000080 = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0x0000000000008000 = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0x0000000080000000 = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0x8000000000000000 = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0x0000000000000000 = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0x0000000000000001 = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0x0000000000000002 = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0x0000000000000003 = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0x000000000000000F = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0x000000000000007F = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0x0000000000000080 = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0x0000000000007FFF = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0x0000000080000000 = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0x8000000000000000 = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0x0000000000000000 = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0x0000000000000001 = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0x0000000000000002 = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0x0000000000000003 = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0x000000000000007F = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0x0000000000000080 = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0x0000000000008000 = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0x0000000080000000 = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0x8000000000000000 = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x00000000000000FF ++selne255 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x00000000000000FF ++=== Running test on sellbc0 === ++sellbc0 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++sellbc0 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++sellbc0 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++sellbc0 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++sellbc0 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbc0 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbc0 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++sellbc0 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++sellbc0 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++sellbc0 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++sellbc0 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++sellbc0 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++sellbc0 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbc0 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbc0 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbc0 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbc0 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbc0 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellbc0 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellbc0 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellbc0 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellbc0 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc0 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc0 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc0 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellbc0 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellbc0 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellbc0 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellbc0 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc0 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellbc0 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellbc0 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc0 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc0 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc0 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc0 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc0 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc0 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++sellbc0 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++sellbc0 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++sellbc0 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++sellbc0 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbc0 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbc0 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++sellbc0 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++sellbc0 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++sellbc0 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++sellbc0 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++sellbc0 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++sellbc0 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbc0 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbc0 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbc0 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbc0 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbc0 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellbc0 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellbc0 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellbc0 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellbc0 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc0 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc0 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc0 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellbc0 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellbc0 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellbc0 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellbc0 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc0 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellbc0 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellbc0 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc0 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc0 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc0 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc0 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc0 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc0 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellbc0 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellbc0 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellbc0 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellbc0 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc0 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc0 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc0 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellbc0 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellbc0 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc0 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellbc0 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc0 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellbc0 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellbc0 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc0 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc0 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc0 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc0 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc0 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc0 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc0 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc0 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc0 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc0 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc0 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc0 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc0 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc0 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc0 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc0 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc0 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc0 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc0 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++sellbc0 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++sellbc0 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++sellbc0 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++sellbc0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc0 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++sellbc0 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++sellbc0 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++sellbc0 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++sellbc0 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc0 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++sellbc0 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++sellbc0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc0 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc0 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc0 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc0 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellbc0 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellbc0 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellbc0 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellbc0 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc0 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc0 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellbc0 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellbc0 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc0 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellbc0 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc0 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellbc0 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellbc0 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc0 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc0 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc0 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc0 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc0 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc0 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++sellbc0 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++sellbc0 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++sellbc0 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++sellbc0 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbc0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbc0 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++sellbc0 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++sellbc0 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++sellbc0 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++sellbc0 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++sellbc0 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++sellbc0 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbc0 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbc0 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbc0 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbc0 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbc0 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellbc0 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellbc0 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellbc0 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellbc0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc0 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellbc0 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellbc0 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc0 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellbc0 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc0 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellbc0 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellbc0 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc0 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc0 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc0 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc0 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc0 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc0 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++sellbc0 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++sellbc0 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++sellbc0 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++sellbc0 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbc0 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbc0 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++sellbc0 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++sellbc0 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++sellbc0 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++sellbc0 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++sellbc0 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++sellbc0 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbc0 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbc0 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbc0 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbc0 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbc0 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc0 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc0 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc0 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc0 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc0 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc0 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc0 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc0 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc0 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc0 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc0 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc0 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc0 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc0 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc0 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc0 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++sellbc0 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++sellbc0 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++sellbc0 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++sellbc0 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbc0 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbc0 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++sellbc0 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++sellbc0 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++sellbc0 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++sellbc0 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++sellbc0 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++sellbc0 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbc0 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbc0 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbc0 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbc0 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbc0 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++sellbc0 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++sellbc0 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++sellbc0 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++sellbc0 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbc0 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbc0 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++sellbc0 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++sellbc0 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++sellbc0 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++sellbc0 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++sellbc0 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++sellbc0 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++sellbc0 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbc0 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbc0 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbc0 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbc0 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbc0 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbc0 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbc0 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc0 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc0 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc0 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc0 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc0 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc0 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc0 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc0 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc0 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc0 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc0 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc0 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc0 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc0 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbc0 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbc0 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on sellbc1 === ++sellbc1 0x0000000000000000 0x0000000000000000 = 0x0000000000000001 ++sellbc1 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0x0000000000000000 0x0000000000000002 = 0x0000000000000001 ++sellbc1 0x0000000000000000 0x0000000000000003 = 0x0000000000000001 ++sellbc1 0x0000000000000000 0x000000000000000F = 0x0000000000000001 ++sellbc1 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbc1 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbc1 0x0000000000000000 0x000000000000007F = 0x0000000000000001 ++sellbc1 0x0000000000000000 0x0000000000000080 = 0x0000000000000001 ++sellbc1 0x0000000000000000 0x0000000000007FFF = 0x0000000000000001 ++sellbc1 0x0000000000000000 0x0000000000008000 = 0x0000000000000001 ++sellbc1 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000000000000 0x0000000080000000 = 0x0000000000000001 ++sellbc1 0x0000000000000000 0x8000000000000000 = 0x0000000000000001 ++sellbc1 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbc1 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbc1 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbc1 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbc1 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbc1 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellbc1 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellbc1 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellbc1 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellbc1 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc1 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc1 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc1 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellbc1 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellbc1 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellbc1 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellbc1 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc1 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellbc1 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellbc1 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc1 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc1 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc1 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc1 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc1 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc1 0x0000000000000002 0x0000000000000000 = 0x0000000000000001 ++sellbc1 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0x0000000000000002 0x0000000000000002 = 0x0000000000000001 ++sellbc1 0x0000000000000002 0x0000000000000003 = 0x0000000000000001 ++sellbc1 0x0000000000000002 0x000000000000000F = 0x0000000000000001 ++sellbc1 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbc1 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbc1 0x0000000000000002 0x000000000000007F = 0x0000000000000001 ++sellbc1 0x0000000000000002 0x0000000000000080 = 0x0000000000000001 ++sellbc1 0x0000000000000002 0x0000000000007FFF = 0x0000000000000001 ++sellbc1 0x0000000000000002 0x0000000000008000 = 0x0000000000000001 ++sellbc1 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000000000002 0x0000000080000000 = 0x0000000000000001 ++sellbc1 0x0000000000000002 0x8000000000000000 = 0x0000000000000001 ++sellbc1 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbc1 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbc1 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbc1 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbc1 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbc1 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellbc1 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellbc1 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellbc1 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellbc1 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc1 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc1 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc1 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellbc1 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellbc1 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellbc1 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellbc1 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc1 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellbc1 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellbc1 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc1 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc1 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc1 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc1 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc1 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc1 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellbc1 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellbc1 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellbc1 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellbc1 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc1 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc1 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc1 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellbc1 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellbc1 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc1 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellbc1 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc1 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellbc1 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellbc1 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc1 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc1 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc1 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc1 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc1 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc1 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc1 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc1 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc1 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc1 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc1 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc1 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc1 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc1 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc1 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc1 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc1 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc1 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc1 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc1 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++sellbc1 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++sellbc1 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++sellbc1 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++sellbc1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc1 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++sellbc1 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++sellbc1 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++sellbc1 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++sellbc1 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc1 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++sellbc1 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++sellbc1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc1 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc1 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc1 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc1 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellbc1 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellbc1 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellbc1 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellbc1 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc1 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc1 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc1 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellbc1 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellbc1 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc1 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellbc1 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc1 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellbc1 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellbc1 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc1 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc1 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc1 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc1 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc1 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc1 0x0000000000000080 0x0000000000000000 = 0x0000000000000001 ++sellbc1 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0x0000000000000080 0x0000000000000002 = 0x0000000000000001 ++sellbc1 0x0000000000000080 0x0000000000000003 = 0x0000000000000001 ++sellbc1 0x0000000000000080 0x000000000000000F = 0x0000000000000001 ++sellbc1 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbc1 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbc1 0x0000000000000080 0x000000000000007F = 0x0000000000000001 ++sellbc1 0x0000000000000080 0x0000000000000080 = 0x0000000000000001 ++sellbc1 0x0000000000000080 0x0000000000007FFF = 0x0000000000000001 ++sellbc1 0x0000000000000080 0x0000000000008000 = 0x0000000000000001 ++sellbc1 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000000000080 0x0000000080000000 = 0x0000000000000001 ++sellbc1 0x0000000000000080 0x8000000000000000 = 0x0000000000000001 ++sellbc1 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbc1 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbc1 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbc1 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbc1 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbc1 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellbc1 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellbc1 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellbc1 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellbc1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc1 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellbc1 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellbc1 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc1 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellbc1 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc1 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellbc1 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellbc1 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc1 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc1 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc1 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc1 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc1 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc1 0x0000000000008000 0x0000000000000000 = 0x0000000000000001 ++sellbc1 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0x0000000000008000 0x0000000000000002 = 0x0000000000000001 ++sellbc1 0x0000000000008000 0x0000000000000003 = 0x0000000000000001 ++sellbc1 0x0000000000008000 0x000000000000000F = 0x0000000000000001 ++sellbc1 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbc1 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbc1 0x0000000000008000 0x000000000000007F = 0x0000000000000001 ++sellbc1 0x0000000000008000 0x0000000000000080 = 0x0000000000000001 ++sellbc1 0x0000000000008000 0x0000000000007FFF = 0x0000000000000001 ++sellbc1 0x0000000000008000 0x0000000000008000 = 0x0000000000000001 ++sellbc1 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000000008000 0x0000000080000000 = 0x0000000000000001 ++sellbc1 0x0000000000008000 0x8000000000000000 = 0x0000000000000001 ++sellbc1 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbc1 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbc1 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbc1 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbc1 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbc1 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc1 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc1 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc1 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc1 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc1 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc1 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc1 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc1 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc1 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc1 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc1 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc1 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc1 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc1 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc1 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc1 0x0000000080000000 0x0000000000000000 = 0x0000000000000001 ++sellbc1 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0x0000000080000000 0x0000000000000002 = 0x0000000000000001 ++sellbc1 0x0000000080000000 0x0000000000000003 = 0x0000000000000001 ++sellbc1 0x0000000080000000 0x000000000000000F = 0x0000000000000001 ++sellbc1 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbc1 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbc1 0x0000000080000000 0x000000000000007F = 0x0000000000000001 ++sellbc1 0x0000000080000000 0x0000000000000080 = 0x0000000000000001 ++sellbc1 0x0000000080000000 0x0000000000007FFF = 0x0000000000000001 ++sellbc1 0x0000000080000000 0x0000000000008000 = 0x0000000000000001 ++sellbc1 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000080000000 0x0000000080000000 = 0x0000000000000001 ++sellbc1 0x0000000080000000 0x8000000000000000 = 0x0000000000000001 ++sellbc1 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbc1 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbc1 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbc1 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbc1 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbc1 0x8000000000000000 0x0000000000000000 = 0x0000000000000001 ++sellbc1 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0x8000000000000000 0x0000000000000002 = 0x0000000000000001 ++sellbc1 0x8000000000000000 0x0000000000000003 = 0x0000000000000001 ++sellbc1 0x8000000000000000 0x000000000000000F = 0x0000000000000001 ++sellbc1 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbc1 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbc1 0x8000000000000000 0x000000000000007F = 0x0000000000000001 ++sellbc1 0x8000000000000000 0x0000000000000080 = 0x0000000000000001 ++sellbc1 0x8000000000000000 0x0000000000007FFF = 0x0000000000000001 ++sellbc1 0x8000000000000000 0x0000000000008000 = 0x0000000000000001 ++sellbc1 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++sellbc1 0x8000000000000000 0x0000000080000000 = 0x0000000000000001 ++sellbc1 0x8000000000000000 0x8000000000000000 = 0x0000000000000001 ++sellbc1 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbc1 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbc1 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbc1 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbc1 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbc1 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbc1 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbc1 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc1 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc1 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc1 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc1 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc1 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc1 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc1 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc1 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc1 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc1 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc1 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc1 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc1 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc1 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbc1 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbc1 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on sellbc2 === ++sellbc2 0x0000000000000000 0x0000000000000000 = 0x0000000000000002 ++sellbc2 0x0000000000000000 0x0000000000000001 = 0x0000000000000002 ++sellbc2 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0x0000000000000000 0x0000000000000003 = 0x0000000000000002 ++sellbc2 0x0000000000000000 0x000000000000000F = 0x0000000000000002 ++sellbc2 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbc2 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbc2 0x0000000000000000 0x000000000000007F = 0x0000000000000002 ++sellbc2 0x0000000000000000 0x0000000000000080 = 0x0000000000000002 ++sellbc2 0x0000000000000000 0x0000000000007FFF = 0x0000000000000002 ++sellbc2 0x0000000000000000 0x0000000000008000 = 0x0000000000000002 ++sellbc2 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000000000000 0x0000000080000000 = 0x0000000000000002 ++sellbc2 0x0000000000000000 0x8000000000000000 = 0x0000000000000002 ++sellbc2 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbc2 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbc2 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbc2 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbc2 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbc2 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellbc2 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellbc2 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellbc2 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellbc2 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc2 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc2 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc2 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellbc2 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellbc2 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellbc2 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellbc2 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc2 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellbc2 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellbc2 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc2 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc2 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc2 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc2 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc2 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc2 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++sellbc2 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++sellbc2 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++sellbc2 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++sellbc2 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbc2 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbc2 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++sellbc2 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++sellbc2 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++sellbc2 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++sellbc2 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++sellbc2 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++sellbc2 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbc2 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbc2 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbc2 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbc2 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbc2 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellbc2 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellbc2 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellbc2 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellbc2 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc2 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc2 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc2 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellbc2 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellbc2 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellbc2 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellbc2 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc2 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellbc2 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellbc2 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc2 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc2 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc2 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc2 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc2 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc2 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellbc2 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellbc2 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellbc2 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellbc2 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc2 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc2 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc2 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellbc2 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellbc2 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc2 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellbc2 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc2 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellbc2 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellbc2 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc2 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc2 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc2 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc2 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc2 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc2 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc2 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc2 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc2 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc2 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc2 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc2 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc2 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc2 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc2 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc2 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc2 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc2 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc2 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc2 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++sellbc2 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++sellbc2 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++sellbc2 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++sellbc2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc2 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++sellbc2 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++sellbc2 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++sellbc2 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++sellbc2 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc2 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++sellbc2 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++sellbc2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc2 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc2 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc2 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc2 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellbc2 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellbc2 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellbc2 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellbc2 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc2 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc2 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc2 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellbc2 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellbc2 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc2 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellbc2 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc2 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellbc2 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellbc2 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc2 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc2 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc2 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc2 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc2 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc2 0x0000000000000080 0x0000000000000000 = 0x0000000000000002 ++sellbc2 0x0000000000000080 0x0000000000000001 = 0x0000000000000002 ++sellbc2 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0x0000000000000080 0x0000000000000003 = 0x0000000000000002 ++sellbc2 0x0000000000000080 0x000000000000000F = 0x0000000000000002 ++sellbc2 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbc2 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbc2 0x0000000000000080 0x000000000000007F = 0x0000000000000002 ++sellbc2 0x0000000000000080 0x0000000000000080 = 0x0000000000000002 ++sellbc2 0x0000000000000080 0x0000000000007FFF = 0x0000000000000002 ++sellbc2 0x0000000000000080 0x0000000000008000 = 0x0000000000000002 ++sellbc2 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000000000080 0x0000000080000000 = 0x0000000000000002 ++sellbc2 0x0000000000000080 0x8000000000000000 = 0x0000000000000002 ++sellbc2 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbc2 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbc2 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbc2 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbc2 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbc2 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellbc2 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellbc2 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellbc2 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellbc2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc2 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellbc2 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellbc2 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc2 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellbc2 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc2 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellbc2 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellbc2 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc2 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc2 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc2 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc2 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc2 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc2 0x0000000000008000 0x0000000000000000 = 0x0000000000000002 ++sellbc2 0x0000000000008000 0x0000000000000001 = 0x0000000000000002 ++sellbc2 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0x0000000000008000 0x0000000000000003 = 0x0000000000000002 ++sellbc2 0x0000000000008000 0x000000000000000F = 0x0000000000000002 ++sellbc2 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbc2 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbc2 0x0000000000008000 0x000000000000007F = 0x0000000000000002 ++sellbc2 0x0000000000008000 0x0000000000000080 = 0x0000000000000002 ++sellbc2 0x0000000000008000 0x0000000000007FFF = 0x0000000000000002 ++sellbc2 0x0000000000008000 0x0000000000008000 = 0x0000000000000002 ++sellbc2 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000000008000 0x0000000080000000 = 0x0000000000000002 ++sellbc2 0x0000000000008000 0x8000000000000000 = 0x0000000000000002 ++sellbc2 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbc2 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbc2 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbc2 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbc2 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbc2 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc2 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc2 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc2 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc2 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc2 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc2 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc2 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc2 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc2 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc2 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc2 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc2 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc2 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc2 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc2 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc2 0x0000000080000000 0x0000000000000000 = 0x0000000000000002 ++sellbc2 0x0000000080000000 0x0000000000000001 = 0x0000000000000002 ++sellbc2 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0x0000000080000000 0x0000000000000003 = 0x0000000000000002 ++sellbc2 0x0000000080000000 0x000000000000000F = 0x0000000000000002 ++sellbc2 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbc2 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbc2 0x0000000080000000 0x000000000000007F = 0x0000000000000002 ++sellbc2 0x0000000080000000 0x0000000000000080 = 0x0000000000000002 ++sellbc2 0x0000000080000000 0x0000000000007FFF = 0x0000000000000002 ++sellbc2 0x0000000080000000 0x0000000000008000 = 0x0000000000000002 ++sellbc2 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000080000000 0x0000000080000000 = 0x0000000000000002 ++sellbc2 0x0000000080000000 0x8000000000000000 = 0x0000000000000002 ++sellbc2 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbc2 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbc2 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbc2 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbc2 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbc2 0x8000000000000000 0x0000000000000000 = 0x0000000000000002 ++sellbc2 0x8000000000000000 0x0000000000000001 = 0x0000000000000002 ++sellbc2 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0x8000000000000000 0x0000000000000003 = 0x0000000000000002 ++sellbc2 0x8000000000000000 0x000000000000000F = 0x0000000000000002 ++sellbc2 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbc2 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbc2 0x8000000000000000 0x000000000000007F = 0x0000000000000002 ++sellbc2 0x8000000000000000 0x0000000000000080 = 0x0000000000000002 ++sellbc2 0x8000000000000000 0x0000000000007FFF = 0x0000000000000002 ++sellbc2 0x8000000000000000 0x0000000000008000 = 0x0000000000000002 ++sellbc2 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000002 ++sellbc2 0x8000000000000000 0x0000000080000000 = 0x0000000000000002 ++sellbc2 0x8000000000000000 0x8000000000000000 = 0x0000000000000002 ++sellbc2 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbc2 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbc2 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbc2 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbc2 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbc2 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbc2 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbc2 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc2 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc2 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc2 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc2 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc2 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc2 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc2 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc2 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc2 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc2 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc2 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc2 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc2 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc2 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbc2 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbc2 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000002 ++=== Running test on sellbc3 === ++sellbc3 0x0000000000000000 0x0000000000000000 = 0x0000000000000003 ++sellbc3 0x0000000000000000 0x0000000000000001 = 0x0000000000000003 ++sellbc3 0x0000000000000000 0x0000000000000002 = 0x0000000000000003 ++sellbc3 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0x0000000000000000 0x000000000000000F = 0x0000000000000003 ++sellbc3 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbc3 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbc3 0x0000000000000000 0x000000000000007F = 0x0000000000000003 ++sellbc3 0x0000000000000000 0x0000000000000080 = 0x0000000000000003 ++sellbc3 0x0000000000000000 0x0000000000007FFF = 0x0000000000000003 ++sellbc3 0x0000000000000000 0x0000000000008000 = 0x0000000000000003 ++sellbc3 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000000000000 0x0000000080000000 = 0x0000000000000003 ++sellbc3 0x0000000000000000 0x8000000000000000 = 0x0000000000000003 ++sellbc3 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbc3 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbc3 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbc3 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbc3 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbc3 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellbc3 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellbc3 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellbc3 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellbc3 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc3 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc3 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc3 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellbc3 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellbc3 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellbc3 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellbc3 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc3 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellbc3 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellbc3 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc3 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc3 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc3 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc3 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc3 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc3 0x0000000000000002 0x0000000000000000 = 0x0000000000000003 ++sellbc3 0x0000000000000002 0x0000000000000001 = 0x0000000000000003 ++sellbc3 0x0000000000000002 0x0000000000000002 = 0x0000000000000003 ++sellbc3 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0x0000000000000002 0x000000000000000F = 0x0000000000000003 ++sellbc3 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbc3 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbc3 0x0000000000000002 0x000000000000007F = 0x0000000000000003 ++sellbc3 0x0000000000000002 0x0000000000000080 = 0x0000000000000003 ++sellbc3 0x0000000000000002 0x0000000000007FFF = 0x0000000000000003 ++sellbc3 0x0000000000000002 0x0000000000008000 = 0x0000000000000003 ++sellbc3 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000000000002 0x0000000080000000 = 0x0000000000000003 ++sellbc3 0x0000000000000002 0x8000000000000000 = 0x0000000000000003 ++sellbc3 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbc3 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbc3 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbc3 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbc3 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbc3 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellbc3 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellbc3 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellbc3 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellbc3 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc3 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc3 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc3 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellbc3 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellbc3 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellbc3 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellbc3 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc3 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellbc3 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellbc3 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc3 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc3 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc3 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc3 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc3 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc3 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellbc3 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellbc3 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellbc3 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellbc3 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc3 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc3 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc3 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellbc3 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellbc3 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc3 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellbc3 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc3 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellbc3 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellbc3 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc3 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc3 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc3 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc3 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc3 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc3 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc3 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc3 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc3 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc3 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc3 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc3 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc3 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc3 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc3 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc3 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc3 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc3 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc3 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc3 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++sellbc3 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++sellbc3 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++sellbc3 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++sellbc3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc3 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++sellbc3 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++sellbc3 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++sellbc3 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++sellbc3 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc3 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++sellbc3 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++sellbc3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc3 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc3 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc3 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc3 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellbc3 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellbc3 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellbc3 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellbc3 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc3 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc3 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc3 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellbc3 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellbc3 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc3 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellbc3 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc3 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellbc3 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellbc3 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc3 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc3 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc3 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc3 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc3 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc3 0x0000000000000080 0x0000000000000000 = 0x0000000000000003 ++sellbc3 0x0000000000000080 0x0000000000000001 = 0x0000000000000003 ++sellbc3 0x0000000000000080 0x0000000000000002 = 0x0000000000000003 ++sellbc3 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0x0000000000000080 0x000000000000000F = 0x0000000000000003 ++sellbc3 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbc3 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbc3 0x0000000000000080 0x000000000000007F = 0x0000000000000003 ++sellbc3 0x0000000000000080 0x0000000000000080 = 0x0000000000000003 ++sellbc3 0x0000000000000080 0x0000000000007FFF = 0x0000000000000003 ++sellbc3 0x0000000000000080 0x0000000000008000 = 0x0000000000000003 ++sellbc3 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000000000080 0x0000000080000000 = 0x0000000000000003 ++sellbc3 0x0000000000000080 0x8000000000000000 = 0x0000000000000003 ++sellbc3 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbc3 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbc3 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbc3 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbc3 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbc3 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellbc3 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellbc3 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellbc3 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellbc3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc3 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellbc3 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellbc3 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc3 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellbc3 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc3 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellbc3 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellbc3 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc3 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc3 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc3 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc3 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc3 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc3 0x0000000000008000 0x0000000000000000 = 0x0000000000000003 ++sellbc3 0x0000000000008000 0x0000000000000001 = 0x0000000000000003 ++sellbc3 0x0000000000008000 0x0000000000000002 = 0x0000000000000003 ++sellbc3 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0x0000000000008000 0x000000000000000F = 0x0000000000000003 ++sellbc3 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbc3 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbc3 0x0000000000008000 0x000000000000007F = 0x0000000000000003 ++sellbc3 0x0000000000008000 0x0000000000000080 = 0x0000000000000003 ++sellbc3 0x0000000000008000 0x0000000000007FFF = 0x0000000000000003 ++sellbc3 0x0000000000008000 0x0000000000008000 = 0x0000000000000003 ++sellbc3 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000000008000 0x0000000080000000 = 0x0000000000000003 ++sellbc3 0x0000000000008000 0x8000000000000000 = 0x0000000000000003 ++sellbc3 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbc3 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbc3 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbc3 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbc3 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbc3 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc3 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc3 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc3 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc3 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc3 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc3 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc3 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc3 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc3 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc3 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc3 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc3 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc3 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc3 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc3 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc3 0x0000000080000000 0x0000000000000000 = 0x0000000000000003 ++sellbc3 0x0000000080000000 0x0000000000000001 = 0x0000000000000003 ++sellbc3 0x0000000080000000 0x0000000000000002 = 0x0000000000000003 ++sellbc3 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0x0000000080000000 0x000000000000000F = 0x0000000000000003 ++sellbc3 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbc3 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbc3 0x0000000080000000 0x000000000000007F = 0x0000000000000003 ++sellbc3 0x0000000080000000 0x0000000000000080 = 0x0000000000000003 ++sellbc3 0x0000000080000000 0x0000000000007FFF = 0x0000000000000003 ++sellbc3 0x0000000080000000 0x0000000000008000 = 0x0000000000000003 ++sellbc3 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000080000000 0x0000000080000000 = 0x0000000000000003 ++sellbc3 0x0000000080000000 0x8000000000000000 = 0x0000000000000003 ++sellbc3 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbc3 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbc3 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbc3 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbc3 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbc3 0x8000000000000000 0x0000000000000000 = 0x0000000000000003 ++sellbc3 0x8000000000000000 0x0000000000000001 = 0x0000000000000003 ++sellbc3 0x8000000000000000 0x0000000000000002 = 0x0000000000000003 ++sellbc3 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0x8000000000000000 0x000000000000000F = 0x0000000000000003 ++sellbc3 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbc3 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbc3 0x8000000000000000 0x000000000000007F = 0x0000000000000003 ++sellbc3 0x8000000000000000 0x0000000000000080 = 0x0000000000000003 ++sellbc3 0x8000000000000000 0x0000000000007FFF = 0x0000000000000003 ++sellbc3 0x8000000000000000 0x0000000000008000 = 0x0000000000000003 ++sellbc3 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000003 ++sellbc3 0x8000000000000000 0x0000000080000000 = 0x0000000000000003 ++sellbc3 0x8000000000000000 0x8000000000000000 = 0x0000000000000003 ++sellbc3 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbc3 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbc3 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbc3 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbc3 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbc3 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbc3 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbc3 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc3 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc3 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc3 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc3 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc3 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc3 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc3 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc3 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc3 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc3 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc3 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc3 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc3 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc3 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbc3 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbc3 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000003 ++=== Running test on sellbc15 === ++sellbc15 0x0000000000000000 0x0000000000000000 = 0x000000000000000F ++sellbc15 0x0000000000000000 0x0000000000000001 = 0x000000000000000F ++sellbc15 0x0000000000000000 0x0000000000000002 = 0x000000000000000F ++sellbc15 0x0000000000000000 0x0000000000000003 = 0x000000000000000F ++sellbc15 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellbc15 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbc15 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbc15 0x0000000000000000 0x000000000000007F = 0x000000000000000F ++sellbc15 0x0000000000000000 0x0000000000000080 = 0x000000000000000F ++sellbc15 0x0000000000000000 0x0000000000007FFF = 0x000000000000000F ++sellbc15 0x0000000000000000 0x0000000000008000 = 0x000000000000000F ++sellbc15 0x0000000000000000 0x000000007FFFFFFF = 0x000000000000000F ++sellbc15 0x0000000000000000 0x0000000080000000 = 0x000000000000000F ++sellbc15 0x0000000000000000 0x8000000000000000 = 0x000000000000000F ++sellbc15 0x0000000000000000 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbc15 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbc15 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbc15 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0x0000000000000000 0x123456789ABCDEF0 = 0x000000000000000F ++sellbc15 0x0000000000000000 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbc15 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellbc15 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellbc15 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellbc15 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellbc15 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellbc15 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc15 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc15 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc15 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellbc15 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellbc15 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellbc15 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellbc15 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc15 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellbc15 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellbc15 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc15 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc15 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc15 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc15 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc15 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc15 0x0000000000000002 0x0000000000000000 = 0x000000000000000F ++sellbc15 0x0000000000000002 0x0000000000000001 = 0x000000000000000F ++sellbc15 0x0000000000000002 0x0000000000000002 = 0x000000000000000F ++sellbc15 0x0000000000000002 0x0000000000000003 = 0x000000000000000F ++sellbc15 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellbc15 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbc15 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbc15 0x0000000000000002 0x000000000000007F = 0x000000000000000F ++sellbc15 0x0000000000000002 0x0000000000000080 = 0x000000000000000F ++sellbc15 0x0000000000000002 0x0000000000007FFF = 0x000000000000000F ++sellbc15 0x0000000000000002 0x0000000000008000 = 0x000000000000000F ++sellbc15 0x0000000000000002 0x000000007FFFFFFF = 0x000000000000000F ++sellbc15 0x0000000000000002 0x0000000080000000 = 0x000000000000000F ++sellbc15 0x0000000000000002 0x8000000000000000 = 0x000000000000000F ++sellbc15 0x0000000000000002 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbc15 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbc15 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbc15 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0x0000000000000002 0x123456789ABCDEF0 = 0x000000000000000F ++sellbc15 0x0000000000000002 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbc15 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellbc15 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellbc15 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellbc15 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellbc15 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellbc15 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc15 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc15 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc15 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellbc15 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellbc15 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellbc15 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellbc15 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc15 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellbc15 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellbc15 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc15 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc15 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc15 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc15 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc15 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc15 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellbc15 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellbc15 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellbc15 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellbc15 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellbc15 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc15 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc15 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc15 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellbc15 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellbc15 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc15 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellbc15 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc15 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellbc15 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellbc15 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc15 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc15 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc15 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc15 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc15 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc15 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc15 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc15 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc15 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc15 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc15 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc15 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc15 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc15 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc15 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc15 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc15 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc15 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc15 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc15 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc15 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++sellbc15 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++sellbc15 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++sellbc15 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++sellbc15 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc15 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++sellbc15 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++sellbc15 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++sellbc15 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++sellbc15 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc15 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++sellbc15 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++sellbc15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc15 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc15 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc15 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc15 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellbc15 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellbc15 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellbc15 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellbc15 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellbc15 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc15 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc15 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc15 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellbc15 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellbc15 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc15 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellbc15 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc15 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellbc15 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellbc15 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc15 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc15 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc15 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc15 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc15 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc15 0x0000000000000080 0x0000000000000000 = 0x000000000000000F ++sellbc15 0x0000000000000080 0x0000000000000001 = 0x000000000000000F ++sellbc15 0x0000000000000080 0x0000000000000002 = 0x000000000000000F ++sellbc15 0x0000000000000080 0x0000000000000003 = 0x000000000000000F ++sellbc15 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellbc15 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbc15 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbc15 0x0000000000000080 0x000000000000007F = 0x000000000000000F ++sellbc15 0x0000000000000080 0x0000000000000080 = 0x000000000000000F ++sellbc15 0x0000000000000080 0x0000000000007FFF = 0x000000000000000F ++sellbc15 0x0000000000000080 0x0000000000008000 = 0x000000000000000F ++sellbc15 0x0000000000000080 0x000000007FFFFFFF = 0x000000000000000F ++sellbc15 0x0000000000000080 0x0000000080000000 = 0x000000000000000F ++sellbc15 0x0000000000000080 0x8000000000000000 = 0x000000000000000F ++sellbc15 0x0000000000000080 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbc15 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbc15 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbc15 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0x0000000000000080 0x123456789ABCDEF0 = 0x000000000000000F ++sellbc15 0x0000000000000080 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbc15 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellbc15 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellbc15 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellbc15 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellbc15 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellbc15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc15 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellbc15 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellbc15 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc15 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellbc15 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc15 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellbc15 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellbc15 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc15 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc15 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc15 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc15 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc15 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc15 0x0000000000008000 0x0000000000000000 = 0x000000000000000F ++sellbc15 0x0000000000008000 0x0000000000000001 = 0x000000000000000F ++sellbc15 0x0000000000008000 0x0000000000000002 = 0x000000000000000F ++sellbc15 0x0000000000008000 0x0000000000000003 = 0x000000000000000F ++sellbc15 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellbc15 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbc15 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbc15 0x0000000000008000 0x000000000000007F = 0x000000000000000F ++sellbc15 0x0000000000008000 0x0000000000000080 = 0x000000000000000F ++sellbc15 0x0000000000008000 0x0000000000007FFF = 0x000000000000000F ++sellbc15 0x0000000000008000 0x0000000000008000 = 0x000000000000000F ++sellbc15 0x0000000000008000 0x000000007FFFFFFF = 0x000000000000000F ++sellbc15 0x0000000000008000 0x0000000080000000 = 0x000000000000000F ++sellbc15 0x0000000000008000 0x8000000000000000 = 0x000000000000000F ++sellbc15 0x0000000000008000 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbc15 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbc15 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbc15 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0x0000000000008000 0x123456789ABCDEF0 = 0x000000000000000F ++sellbc15 0x0000000000008000 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbc15 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc15 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc15 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc15 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc15 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc15 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc15 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc15 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc15 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc15 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc15 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc15 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc15 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc15 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc15 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc15 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc15 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc15 0x0000000080000000 0x0000000000000000 = 0x000000000000000F ++sellbc15 0x0000000080000000 0x0000000000000001 = 0x000000000000000F ++sellbc15 0x0000000080000000 0x0000000000000002 = 0x000000000000000F ++sellbc15 0x0000000080000000 0x0000000000000003 = 0x000000000000000F ++sellbc15 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellbc15 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbc15 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbc15 0x0000000080000000 0x000000000000007F = 0x000000000000000F ++sellbc15 0x0000000080000000 0x0000000000000080 = 0x000000000000000F ++sellbc15 0x0000000080000000 0x0000000000007FFF = 0x000000000000000F ++sellbc15 0x0000000080000000 0x0000000000008000 = 0x000000000000000F ++sellbc15 0x0000000080000000 0x000000007FFFFFFF = 0x000000000000000F ++sellbc15 0x0000000080000000 0x0000000080000000 = 0x000000000000000F ++sellbc15 0x0000000080000000 0x8000000000000000 = 0x000000000000000F ++sellbc15 0x0000000080000000 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbc15 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbc15 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbc15 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0x0000000080000000 0x123456789ABCDEF0 = 0x000000000000000F ++sellbc15 0x0000000080000000 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbc15 0x8000000000000000 0x0000000000000000 = 0x000000000000000F ++sellbc15 0x8000000000000000 0x0000000000000001 = 0x000000000000000F ++sellbc15 0x8000000000000000 0x0000000000000002 = 0x000000000000000F ++sellbc15 0x8000000000000000 0x0000000000000003 = 0x000000000000000F ++sellbc15 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++sellbc15 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbc15 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbc15 0x8000000000000000 0x000000000000007F = 0x000000000000000F ++sellbc15 0x8000000000000000 0x0000000000000080 = 0x000000000000000F ++sellbc15 0x8000000000000000 0x0000000000007FFF = 0x000000000000000F ++sellbc15 0x8000000000000000 0x0000000000008000 = 0x000000000000000F ++sellbc15 0x8000000000000000 0x000000007FFFFFFF = 0x000000000000000F ++sellbc15 0x8000000000000000 0x0000000080000000 = 0x000000000000000F ++sellbc15 0x8000000000000000 0x8000000000000000 = 0x000000000000000F ++sellbc15 0x8000000000000000 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbc15 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbc15 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbc15 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0x8000000000000000 0x123456789ABCDEF0 = 0x000000000000000F ++sellbc15 0x8000000000000000 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0x0000000000000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0x0000000000000001 = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0x0000000000000002 = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0x0000000000000080 = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0x0000000000008000 = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0x0000000080000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0x8000000000000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x000000000000000F ++sellbc15 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000000000000F ++sellbc15 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbc15 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc15 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc15 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc15 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc15 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc15 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc15 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc15 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc15 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc15 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc15 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc15 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc15 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc15 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc15 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc15 0x123456789ABCDEF0 0x0000000000000000 = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0x0000000000000001 = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0x0000000000000002 = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0x0000000000000003 = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0x0000000000000080 = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0x0000000000008000 = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0x0000000080000000 = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0x8000000000000000 = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000000000000F ++sellbc15 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0x0000000000000000 = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0x0000000000000001 = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0x0000000000000003 = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0x0000000000000080 = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0x0000000080000000 = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0x8000000000000000 = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000000000000F ++sellbc15 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x000000000000000F ++=== Running test on sellbc127 === ++sellbc127 0x0000000000000000 0x0000000000000000 = 0x000000000000007F ++sellbc127 0x0000000000000000 0x0000000000000001 = 0x000000000000007F ++sellbc127 0x0000000000000000 0x0000000000000002 = 0x000000000000007F ++sellbc127 0x0000000000000000 0x0000000000000003 = 0x000000000000007F ++sellbc127 0x0000000000000000 0x000000000000000F = 0x000000000000007F ++sellbc127 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbc127 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbc127 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellbc127 0x0000000000000000 0x0000000000000080 = 0x000000000000007F ++sellbc127 0x0000000000000000 0x0000000000007FFF = 0x000000000000007F ++sellbc127 0x0000000000000000 0x0000000000008000 = 0x000000000000007F ++sellbc127 0x0000000000000000 0x000000007FFFFFFF = 0x000000000000007F ++sellbc127 0x0000000000000000 0x0000000080000000 = 0x000000000000007F ++sellbc127 0x0000000000000000 0x8000000000000000 = 0x000000000000007F ++sellbc127 0x0000000000000000 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbc127 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbc127 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbc127 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0x0000000000000000 0x123456789ABCDEF0 = 0x000000000000007F ++sellbc127 0x0000000000000000 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbc127 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellbc127 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellbc127 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellbc127 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellbc127 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellbc127 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc127 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc127 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc127 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellbc127 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellbc127 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellbc127 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellbc127 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc127 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellbc127 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellbc127 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc127 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc127 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc127 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc127 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc127 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc127 0x0000000000000002 0x0000000000000000 = 0x000000000000007F ++sellbc127 0x0000000000000002 0x0000000000000001 = 0x000000000000007F ++sellbc127 0x0000000000000002 0x0000000000000002 = 0x000000000000007F ++sellbc127 0x0000000000000002 0x0000000000000003 = 0x000000000000007F ++sellbc127 0x0000000000000002 0x000000000000000F = 0x000000000000007F ++sellbc127 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbc127 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbc127 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellbc127 0x0000000000000002 0x0000000000000080 = 0x000000000000007F ++sellbc127 0x0000000000000002 0x0000000000007FFF = 0x000000000000007F ++sellbc127 0x0000000000000002 0x0000000000008000 = 0x000000000000007F ++sellbc127 0x0000000000000002 0x000000007FFFFFFF = 0x000000000000007F ++sellbc127 0x0000000000000002 0x0000000080000000 = 0x000000000000007F ++sellbc127 0x0000000000000002 0x8000000000000000 = 0x000000000000007F ++sellbc127 0x0000000000000002 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbc127 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbc127 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbc127 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0x0000000000000002 0x123456789ABCDEF0 = 0x000000000000007F ++sellbc127 0x0000000000000002 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbc127 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellbc127 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellbc127 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellbc127 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellbc127 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellbc127 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc127 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc127 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc127 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellbc127 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellbc127 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellbc127 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellbc127 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc127 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellbc127 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellbc127 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc127 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc127 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc127 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc127 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc127 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc127 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellbc127 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellbc127 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellbc127 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellbc127 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellbc127 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc127 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc127 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc127 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellbc127 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellbc127 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc127 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellbc127 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc127 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellbc127 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellbc127 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc127 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc127 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc127 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc127 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc127 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc127 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc127 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc127 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc127 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc127 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc127 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc127 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc127 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc127 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc127 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc127 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc127 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc127 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc127 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc127 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++sellbc127 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++sellbc127 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++sellbc127 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++sellbc127 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++sellbc127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc127 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++sellbc127 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++sellbc127 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++sellbc127 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc127 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++sellbc127 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++sellbc127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc127 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc127 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc127 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc127 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellbc127 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellbc127 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellbc127 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellbc127 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellbc127 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc127 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc127 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc127 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellbc127 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellbc127 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc127 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellbc127 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc127 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellbc127 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellbc127 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc127 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc127 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc127 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc127 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc127 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc127 0x0000000000000080 0x0000000000000000 = 0x000000000000007F ++sellbc127 0x0000000000000080 0x0000000000000001 = 0x000000000000007F ++sellbc127 0x0000000000000080 0x0000000000000002 = 0x000000000000007F ++sellbc127 0x0000000000000080 0x0000000000000003 = 0x000000000000007F ++sellbc127 0x0000000000000080 0x000000000000000F = 0x000000000000007F ++sellbc127 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbc127 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbc127 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellbc127 0x0000000000000080 0x0000000000000080 = 0x000000000000007F ++sellbc127 0x0000000000000080 0x0000000000007FFF = 0x000000000000007F ++sellbc127 0x0000000000000080 0x0000000000008000 = 0x000000000000007F ++sellbc127 0x0000000000000080 0x000000007FFFFFFF = 0x000000000000007F ++sellbc127 0x0000000000000080 0x0000000080000000 = 0x000000000000007F ++sellbc127 0x0000000000000080 0x8000000000000000 = 0x000000000000007F ++sellbc127 0x0000000000000080 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbc127 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbc127 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbc127 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0x0000000000000080 0x123456789ABCDEF0 = 0x000000000000007F ++sellbc127 0x0000000000000080 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbc127 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellbc127 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellbc127 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellbc127 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellbc127 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellbc127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc127 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellbc127 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellbc127 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc127 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellbc127 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc127 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellbc127 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellbc127 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc127 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc127 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc127 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc127 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc127 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc127 0x0000000000008000 0x0000000000000000 = 0x000000000000007F ++sellbc127 0x0000000000008000 0x0000000000000001 = 0x000000000000007F ++sellbc127 0x0000000000008000 0x0000000000000002 = 0x000000000000007F ++sellbc127 0x0000000000008000 0x0000000000000003 = 0x000000000000007F ++sellbc127 0x0000000000008000 0x000000000000000F = 0x000000000000007F ++sellbc127 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbc127 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbc127 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellbc127 0x0000000000008000 0x0000000000000080 = 0x000000000000007F ++sellbc127 0x0000000000008000 0x0000000000007FFF = 0x000000000000007F ++sellbc127 0x0000000000008000 0x0000000000008000 = 0x000000000000007F ++sellbc127 0x0000000000008000 0x000000007FFFFFFF = 0x000000000000007F ++sellbc127 0x0000000000008000 0x0000000080000000 = 0x000000000000007F ++sellbc127 0x0000000000008000 0x8000000000000000 = 0x000000000000007F ++sellbc127 0x0000000000008000 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbc127 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbc127 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbc127 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0x0000000000008000 0x123456789ABCDEF0 = 0x000000000000007F ++sellbc127 0x0000000000008000 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbc127 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc127 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc127 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc127 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc127 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc127 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc127 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc127 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc127 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc127 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc127 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc127 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc127 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc127 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc127 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc127 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc127 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc127 0x0000000080000000 0x0000000000000000 = 0x000000000000007F ++sellbc127 0x0000000080000000 0x0000000000000001 = 0x000000000000007F ++sellbc127 0x0000000080000000 0x0000000000000002 = 0x000000000000007F ++sellbc127 0x0000000080000000 0x0000000000000003 = 0x000000000000007F ++sellbc127 0x0000000080000000 0x000000000000000F = 0x000000000000007F ++sellbc127 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbc127 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbc127 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellbc127 0x0000000080000000 0x0000000000000080 = 0x000000000000007F ++sellbc127 0x0000000080000000 0x0000000000007FFF = 0x000000000000007F ++sellbc127 0x0000000080000000 0x0000000000008000 = 0x000000000000007F ++sellbc127 0x0000000080000000 0x000000007FFFFFFF = 0x000000000000007F ++sellbc127 0x0000000080000000 0x0000000080000000 = 0x000000000000007F ++sellbc127 0x0000000080000000 0x8000000000000000 = 0x000000000000007F ++sellbc127 0x0000000080000000 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbc127 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbc127 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbc127 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0x0000000080000000 0x123456789ABCDEF0 = 0x000000000000007F ++sellbc127 0x0000000080000000 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbc127 0x8000000000000000 0x0000000000000000 = 0x000000000000007F ++sellbc127 0x8000000000000000 0x0000000000000001 = 0x000000000000007F ++sellbc127 0x8000000000000000 0x0000000000000002 = 0x000000000000007F ++sellbc127 0x8000000000000000 0x0000000000000003 = 0x000000000000007F ++sellbc127 0x8000000000000000 0x000000000000000F = 0x000000000000007F ++sellbc127 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbc127 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbc127 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++sellbc127 0x8000000000000000 0x0000000000000080 = 0x000000000000007F ++sellbc127 0x8000000000000000 0x0000000000007FFF = 0x000000000000007F ++sellbc127 0x8000000000000000 0x0000000000008000 = 0x000000000000007F ++sellbc127 0x8000000000000000 0x000000007FFFFFFF = 0x000000000000007F ++sellbc127 0x8000000000000000 0x0000000080000000 = 0x000000000000007F ++sellbc127 0x8000000000000000 0x8000000000000000 = 0x000000000000007F ++sellbc127 0x8000000000000000 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbc127 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbc127 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbc127 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0x8000000000000000 0x123456789ABCDEF0 = 0x000000000000007F ++sellbc127 0x8000000000000000 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0x0000000000000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0x0000000000000001 = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0x0000000000000002 = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0x0000000000000080 = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0x0000000000008000 = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0x0000000080000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0x8000000000000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x000000000000007F ++sellbc127 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000000000007F ++sellbc127 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbc127 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc127 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc127 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc127 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc127 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc127 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc127 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc127 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc127 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc127 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc127 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc127 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc127 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc127 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc127 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc127 0x123456789ABCDEF0 0x0000000000000000 = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0x0000000000000001 = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0x0000000000000002 = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0x0000000000000003 = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0x0000000000000080 = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0x0000000000008000 = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0x0000000080000000 = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0x8000000000000000 = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000000000007F ++sellbc127 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0x0000000000000000 = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0x0000000000000001 = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0x0000000000000003 = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0x0000000000000080 = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0x0000000080000000 = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0x8000000000000000 = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000000000007F ++sellbc127 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x000000000000007F ++=== Running test on sellbc128 === ++sellbc128 0x0000000000000000 0x0000000000000000 = 0x0000000000000080 ++sellbc128 0x0000000000000000 0x0000000000000001 = 0x0000000000000080 ++sellbc128 0x0000000000000000 0x0000000000000002 = 0x0000000000000080 ++sellbc128 0x0000000000000000 0x0000000000000003 = 0x0000000000000080 ++sellbc128 0x0000000000000000 0x000000000000000F = 0x0000000000000080 ++sellbc128 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbc128 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbc128 0x0000000000000000 0x000000000000007F = 0x0000000000000080 ++sellbc128 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0x0000000000000000 0x0000000000007FFF = 0x0000000000000080 ++sellbc128 0x0000000000000000 0x0000000000008000 = 0x0000000000000080 ++sellbc128 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000000000000 0x0000000080000000 = 0x0000000000000080 ++sellbc128 0x0000000000000000 0x8000000000000000 = 0x0000000000000080 ++sellbc128 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbc128 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbc128 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbc128 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbc128 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbc128 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellbc128 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellbc128 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellbc128 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellbc128 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellbc128 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc128 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc128 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc128 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellbc128 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellbc128 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellbc128 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc128 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellbc128 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellbc128 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc128 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc128 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc128 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc128 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc128 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc128 0x0000000000000002 0x0000000000000000 = 0x0000000000000080 ++sellbc128 0x0000000000000002 0x0000000000000001 = 0x0000000000000080 ++sellbc128 0x0000000000000002 0x0000000000000002 = 0x0000000000000080 ++sellbc128 0x0000000000000002 0x0000000000000003 = 0x0000000000000080 ++sellbc128 0x0000000000000002 0x000000000000000F = 0x0000000000000080 ++sellbc128 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbc128 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbc128 0x0000000000000002 0x000000000000007F = 0x0000000000000080 ++sellbc128 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0x0000000000000002 0x0000000000007FFF = 0x0000000000000080 ++sellbc128 0x0000000000000002 0x0000000000008000 = 0x0000000000000080 ++sellbc128 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000000000002 0x0000000080000000 = 0x0000000000000080 ++sellbc128 0x0000000000000002 0x8000000000000000 = 0x0000000000000080 ++sellbc128 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbc128 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbc128 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbc128 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbc128 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbc128 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellbc128 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellbc128 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellbc128 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellbc128 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellbc128 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc128 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc128 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc128 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellbc128 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellbc128 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellbc128 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc128 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellbc128 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellbc128 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc128 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc128 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc128 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc128 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc128 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc128 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellbc128 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellbc128 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellbc128 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellbc128 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellbc128 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc128 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc128 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc128 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellbc128 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc128 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellbc128 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc128 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellbc128 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellbc128 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc128 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc128 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc128 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc128 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc128 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc128 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc128 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc128 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc128 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc128 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc128 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc128 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc128 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc128 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc128 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc128 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc128 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc128 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc128 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc128 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++sellbc128 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++sellbc128 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++sellbc128 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++sellbc128 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++sellbc128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc128 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++sellbc128 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++sellbc128 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++sellbc128 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc128 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++sellbc128 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++sellbc128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc128 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc128 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc128 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc128 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellbc128 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellbc128 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellbc128 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellbc128 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellbc128 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc128 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc128 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc128 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellbc128 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc128 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellbc128 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc128 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellbc128 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellbc128 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc128 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc128 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc128 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc128 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc128 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc128 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++sellbc128 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++sellbc128 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++sellbc128 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++sellbc128 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++sellbc128 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbc128 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbc128 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++sellbc128 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++sellbc128 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++sellbc128 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++sellbc128 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++sellbc128 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbc128 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbc128 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbc128 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbc128 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbc128 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellbc128 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellbc128 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellbc128 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellbc128 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellbc128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc128 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellbc128 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc128 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellbc128 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc128 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellbc128 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellbc128 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc128 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc128 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc128 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc128 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc128 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc128 0x0000000000008000 0x0000000000000000 = 0x0000000000000080 ++sellbc128 0x0000000000008000 0x0000000000000001 = 0x0000000000000080 ++sellbc128 0x0000000000008000 0x0000000000000002 = 0x0000000000000080 ++sellbc128 0x0000000000008000 0x0000000000000003 = 0x0000000000000080 ++sellbc128 0x0000000000008000 0x000000000000000F = 0x0000000000000080 ++sellbc128 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbc128 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbc128 0x0000000000008000 0x000000000000007F = 0x0000000000000080 ++sellbc128 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0x0000000000008000 0x0000000000007FFF = 0x0000000000000080 ++sellbc128 0x0000000000008000 0x0000000000008000 = 0x0000000000000080 ++sellbc128 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000000008000 0x0000000080000000 = 0x0000000000000080 ++sellbc128 0x0000000000008000 0x8000000000000000 = 0x0000000000000080 ++sellbc128 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbc128 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbc128 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbc128 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbc128 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbc128 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc128 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc128 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc128 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc128 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc128 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc128 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc128 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc128 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc128 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc128 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc128 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc128 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc128 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc128 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc128 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc128 0x0000000080000000 0x0000000000000000 = 0x0000000000000080 ++sellbc128 0x0000000080000000 0x0000000000000001 = 0x0000000000000080 ++sellbc128 0x0000000080000000 0x0000000000000002 = 0x0000000000000080 ++sellbc128 0x0000000080000000 0x0000000000000003 = 0x0000000000000080 ++sellbc128 0x0000000080000000 0x000000000000000F = 0x0000000000000080 ++sellbc128 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbc128 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbc128 0x0000000080000000 0x000000000000007F = 0x0000000000000080 ++sellbc128 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0x0000000080000000 0x0000000000007FFF = 0x0000000000000080 ++sellbc128 0x0000000080000000 0x0000000000008000 = 0x0000000000000080 ++sellbc128 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000080000000 0x0000000080000000 = 0x0000000000000080 ++sellbc128 0x0000000080000000 0x8000000000000000 = 0x0000000000000080 ++sellbc128 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbc128 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbc128 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbc128 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbc128 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbc128 0x8000000000000000 0x0000000000000000 = 0x0000000000000080 ++sellbc128 0x8000000000000000 0x0000000000000001 = 0x0000000000000080 ++sellbc128 0x8000000000000000 0x0000000000000002 = 0x0000000000000080 ++sellbc128 0x8000000000000000 0x0000000000000003 = 0x0000000000000080 ++sellbc128 0x8000000000000000 0x000000000000000F = 0x0000000000000080 ++sellbc128 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbc128 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbc128 0x8000000000000000 0x000000000000007F = 0x0000000000000080 ++sellbc128 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0x8000000000000000 0x0000000000007FFF = 0x0000000000000080 ++sellbc128 0x8000000000000000 0x0000000000008000 = 0x0000000000000080 ++sellbc128 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000080 ++sellbc128 0x8000000000000000 0x0000000080000000 = 0x0000000000000080 ++sellbc128 0x8000000000000000 0x8000000000000000 = 0x0000000000000080 ++sellbc128 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbc128 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbc128 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbc128 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbc128 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbc128 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbc128 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbc128 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc128 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc128 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc128 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc128 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc128 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc128 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc128 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc128 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc128 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc128 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc128 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc128 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc128 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc128 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbc128 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbc128 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000080 ++=== Running test on sellbc255 === ++sellbc255 0x0000000000000000 0x0000000000000000 = 0x00000000000000FF ++sellbc255 0x0000000000000000 0x0000000000000001 = 0x00000000000000FF ++sellbc255 0x0000000000000000 0x0000000000000002 = 0x00000000000000FF ++sellbc255 0x0000000000000000 0x0000000000000003 = 0x00000000000000FF ++sellbc255 0x0000000000000000 0x000000000000000F = 0x00000000000000FF ++sellbc255 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbc255 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbc255 0x0000000000000000 0x000000000000007F = 0x00000000000000FF ++sellbc255 0x0000000000000000 0x0000000000000080 = 0x00000000000000FF ++sellbc255 0x0000000000000000 0x0000000000007FFF = 0x00000000000000FF ++sellbc255 0x0000000000000000 0x0000000000008000 = 0x00000000000000FF ++sellbc255 0x0000000000000000 0x000000007FFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000000000000 0x0000000080000000 = 0x00000000000000FF ++sellbc255 0x0000000000000000 0x8000000000000000 = 0x00000000000000FF ++sellbc255 0x0000000000000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbc255 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbc255 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbc255 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000000000000 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbc255 0x0000000000000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbc255 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellbc255 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellbc255 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellbc255 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellbc255 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellbc255 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc255 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc255 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc255 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellbc255 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellbc255 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellbc255 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellbc255 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc255 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellbc255 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellbc255 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc255 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc255 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc255 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc255 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc255 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc255 0x0000000000000002 0x0000000000000000 = 0x00000000000000FF ++sellbc255 0x0000000000000002 0x0000000000000001 = 0x00000000000000FF ++sellbc255 0x0000000000000002 0x0000000000000002 = 0x00000000000000FF ++sellbc255 0x0000000000000002 0x0000000000000003 = 0x00000000000000FF ++sellbc255 0x0000000000000002 0x000000000000000F = 0x00000000000000FF ++sellbc255 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbc255 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbc255 0x0000000000000002 0x000000000000007F = 0x00000000000000FF ++sellbc255 0x0000000000000002 0x0000000000000080 = 0x00000000000000FF ++sellbc255 0x0000000000000002 0x0000000000007FFF = 0x00000000000000FF ++sellbc255 0x0000000000000002 0x0000000000008000 = 0x00000000000000FF ++sellbc255 0x0000000000000002 0x000000007FFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000000000002 0x0000000080000000 = 0x00000000000000FF ++sellbc255 0x0000000000000002 0x8000000000000000 = 0x00000000000000FF ++sellbc255 0x0000000000000002 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbc255 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbc255 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbc255 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000000000002 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbc255 0x0000000000000002 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbc255 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellbc255 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellbc255 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellbc255 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellbc255 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellbc255 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc255 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc255 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc255 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellbc255 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellbc255 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellbc255 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellbc255 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc255 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellbc255 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellbc255 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc255 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc255 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc255 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc255 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc255 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc255 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellbc255 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellbc255 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellbc255 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellbc255 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellbc255 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc255 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc255 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc255 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellbc255 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellbc255 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc255 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellbc255 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc255 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellbc255 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellbc255 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc255 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc255 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc255 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc255 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc255 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc255 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc255 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc255 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc255 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc255 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc255 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc255 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc255 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc255 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc255 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc255 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc255 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc255 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc255 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc255 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc255 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++sellbc255 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++sellbc255 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++sellbc255 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++sellbc255 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++sellbc255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc255 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++sellbc255 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++sellbc255 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++sellbc255 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++sellbc255 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc255 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++sellbc255 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++sellbc255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc255 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc255 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc255 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc255 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellbc255 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellbc255 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellbc255 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellbc255 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellbc255 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc255 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc255 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc255 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellbc255 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellbc255 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellbc255 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellbc255 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc255 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellbc255 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellbc255 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc255 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc255 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc255 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc255 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc255 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc255 0x0000000000000080 0x0000000000000000 = 0x00000000000000FF ++sellbc255 0x0000000000000080 0x0000000000000001 = 0x00000000000000FF ++sellbc255 0x0000000000000080 0x0000000000000002 = 0x00000000000000FF ++sellbc255 0x0000000000000080 0x0000000000000003 = 0x00000000000000FF ++sellbc255 0x0000000000000080 0x000000000000000F = 0x00000000000000FF ++sellbc255 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbc255 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbc255 0x0000000000000080 0x000000000000007F = 0x00000000000000FF ++sellbc255 0x0000000000000080 0x0000000000000080 = 0x00000000000000FF ++sellbc255 0x0000000000000080 0x0000000000007FFF = 0x00000000000000FF ++sellbc255 0x0000000000000080 0x0000000000008000 = 0x00000000000000FF ++sellbc255 0x0000000000000080 0x000000007FFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000000000080 0x0000000080000000 = 0x00000000000000FF ++sellbc255 0x0000000000000080 0x8000000000000000 = 0x00000000000000FF ++sellbc255 0x0000000000000080 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbc255 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbc255 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbc255 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000000000080 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbc255 0x0000000000000080 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbc255 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellbc255 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellbc255 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellbc255 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellbc255 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellbc255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc255 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellbc255 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellbc255 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc255 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellbc255 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc255 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellbc255 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellbc255 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc255 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc255 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc255 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc255 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc255 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc255 0x0000000000008000 0x0000000000000000 = 0x00000000000000FF ++sellbc255 0x0000000000008000 0x0000000000000001 = 0x00000000000000FF ++sellbc255 0x0000000000008000 0x0000000000000002 = 0x00000000000000FF ++sellbc255 0x0000000000008000 0x0000000000000003 = 0x00000000000000FF ++sellbc255 0x0000000000008000 0x000000000000000F = 0x00000000000000FF ++sellbc255 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbc255 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbc255 0x0000000000008000 0x000000000000007F = 0x00000000000000FF ++sellbc255 0x0000000000008000 0x0000000000000080 = 0x00000000000000FF ++sellbc255 0x0000000000008000 0x0000000000007FFF = 0x00000000000000FF ++sellbc255 0x0000000000008000 0x0000000000008000 = 0x00000000000000FF ++sellbc255 0x0000000000008000 0x000000007FFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000000008000 0x0000000080000000 = 0x00000000000000FF ++sellbc255 0x0000000000008000 0x8000000000000000 = 0x00000000000000FF ++sellbc255 0x0000000000008000 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbc255 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbc255 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbc255 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000000008000 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbc255 0x0000000000008000 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbc255 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc255 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc255 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc255 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc255 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc255 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc255 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc255 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc255 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc255 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc255 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc255 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc255 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc255 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc255 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc255 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc255 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc255 0x0000000080000000 0x0000000000000000 = 0x00000000000000FF ++sellbc255 0x0000000080000000 0x0000000000000001 = 0x00000000000000FF ++sellbc255 0x0000000080000000 0x0000000000000002 = 0x00000000000000FF ++sellbc255 0x0000000080000000 0x0000000000000003 = 0x00000000000000FF ++sellbc255 0x0000000080000000 0x000000000000000F = 0x00000000000000FF ++sellbc255 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbc255 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbc255 0x0000000080000000 0x000000000000007F = 0x00000000000000FF ++sellbc255 0x0000000080000000 0x0000000000000080 = 0x00000000000000FF ++sellbc255 0x0000000080000000 0x0000000000007FFF = 0x00000000000000FF ++sellbc255 0x0000000080000000 0x0000000000008000 = 0x00000000000000FF ++sellbc255 0x0000000080000000 0x000000007FFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000080000000 0x0000000080000000 = 0x00000000000000FF ++sellbc255 0x0000000080000000 0x8000000000000000 = 0x00000000000000FF ++sellbc255 0x0000000080000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbc255 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbc255 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbc255 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0x0000000080000000 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbc255 0x0000000080000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbc255 0x8000000000000000 0x0000000000000000 = 0x00000000000000FF ++sellbc255 0x8000000000000000 0x0000000000000001 = 0x00000000000000FF ++sellbc255 0x8000000000000000 0x0000000000000002 = 0x00000000000000FF ++sellbc255 0x8000000000000000 0x0000000000000003 = 0x00000000000000FF ++sellbc255 0x8000000000000000 0x000000000000000F = 0x00000000000000FF ++sellbc255 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbc255 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbc255 0x8000000000000000 0x000000000000007F = 0x00000000000000FF ++sellbc255 0x8000000000000000 0x0000000000000080 = 0x00000000000000FF ++sellbc255 0x8000000000000000 0x0000000000007FFF = 0x00000000000000FF ++sellbc255 0x8000000000000000 0x0000000000008000 = 0x00000000000000FF ++sellbc255 0x8000000000000000 0x000000007FFFFFFF = 0x00000000000000FF ++sellbc255 0x8000000000000000 0x0000000080000000 = 0x00000000000000FF ++sellbc255 0x8000000000000000 0x8000000000000000 = 0x00000000000000FF ++sellbc255 0x8000000000000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbc255 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbc255 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbc255 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0x8000000000000000 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbc255 0x8000000000000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0x0000000000000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0x0000000000000001 = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0x0000000000000002 = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0x0000000000000003 = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0x000000000000000F = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0x000000000000007F = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0x0000000000000080 = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0x0000000000008000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0x0000000080000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0x8000000000000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbc255 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbc255 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbc255 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc255 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc255 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc255 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc255 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc255 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc255 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc255 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc255 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbc255 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc255 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc255 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbc255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc255 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc255 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc255 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc255 0x123456789ABCDEF0 0x0000000000000000 = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0x0000000000000001 = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0x0000000000000002 = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0x0000000000000003 = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0x000000000000000F = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0x000000000000007F = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0x0000000000000080 = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0x0000000000007FFF = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0x0000000080000000 = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0x8000000000000000 = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbc255 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0x0000000000000000 = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0x0000000000000001 = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0x0000000000000002 = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0x0000000000000003 = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0x000000000000007F = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0x0000000000000080 = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0x0000000000008000 = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0x0000000080000000 = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0x8000000000000000 = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbc255 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x00000000000000FF ++=== Running test on sellbs0 === ++sellbs0 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs0 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs0 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs0 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs0 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs0 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs0 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs0 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs0 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs0 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs0 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs0 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs0 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs0 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs0 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs0 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs0 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs0 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs0 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs0 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs0 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++sellbs0 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++sellbs0 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++sellbs0 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++sellbs0 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbs0 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbs0 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++sellbs0 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++sellbs0 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++sellbs0 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++sellbs0 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++sellbs0 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++sellbs0 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++sellbs0 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbs0 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbs0 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbs0 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbs0 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbs0 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellbs0 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellbs0 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellbs0 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellbs0 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs0 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs0 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs0 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellbs0 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellbs0 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellbs0 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellbs0 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs0 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellbs0 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellbs0 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs0 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs0 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs0 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs0 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs0 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs0 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++sellbs0 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++sellbs0 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++sellbs0 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++sellbs0 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbs0 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbs0 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++sellbs0 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++sellbs0 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++sellbs0 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++sellbs0 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++sellbs0 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++sellbs0 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++sellbs0 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbs0 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbs0 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbs0 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbs0 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbs0 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++sellbs0 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++sellbs0 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++sellbs0 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++sellbs0 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbs0 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbs0 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++sellbs0 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++sellbs0 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++sellbs0 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++sellbs0 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++sellbs0 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++sellbs0 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++sellbs0 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbs0 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbs0 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbs0 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbs0 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++sellbs0 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++sellbs0 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++sellbs0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++sellbs0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs0 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++sellbs0 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++sellbs0 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++sellbs0 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++sellbs0 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs0 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++sellbs0 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs0 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs0 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs0 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs0 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs0 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbs0 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++sellbs0 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++sellbs0 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++sellbs0 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++sellbs0 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbs0 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbs0 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++sellbs0 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++sellbs0 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++sellbs0 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++sellbs0 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++sellbs0 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++sellbs0 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++sellbs0 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbs0 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbs0 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbs0 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbs0 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbs0 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellbs0 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellbs0 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellbs0 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellbs0 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs0 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs0 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellbs0 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellbs0 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellbs0 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellbs0 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs0 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellbs0 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellbs0 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs0 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs0 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs0 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs0 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs0 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs0 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbs0 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbs0 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellbs0 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellbs0 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellbs0 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellbs0 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs0 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs0 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs0 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellbs0 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellbs0 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs0 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellbs0 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs0 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellbs0 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellbs0 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs0 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs0 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs0 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs0 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs0 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs0 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbs0 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbs0 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellbs0 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellbs0 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellbs0 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellbs0 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs0 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs0 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs0 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellbs0 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellbs0 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs0 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellbs0 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs0 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellbs0 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellbs0 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs0 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs0 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs0 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs0 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs0 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs0 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs0 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs0 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs0 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs0 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs0 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs0 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs0 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs0 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs0 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs0 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs0 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs0 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs0 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs0 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs0 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs0 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs0 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs0 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs0 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs0 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++sellbs0 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++sellbs0 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++sellbs0 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++sellbs0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs0 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++sellbs0 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++sellbs0 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs0 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++sellbs0 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs0 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++sellbs0 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++sellbs0 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs0 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs0 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs0 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs0 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs0 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs0 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++sellbs0 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++sellbs0 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++sellbs0 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++sellbs0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs0 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++sellbs0 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++sellbs0 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs0 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++sellbs0 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs0 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++sellbs0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++sellbs0 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs0 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs0 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs0 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs0 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs0 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++sellbs0 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++sellbs0 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++sellbs0 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++sellbs0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs0 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++sellbs0 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++sellbs0 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++sellbs0 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++sellbs0 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs0 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++sellbs0 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++sellbs0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs0 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs0 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs0 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs0 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs0 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbs0 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbs0 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellbs0 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellbs0 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellbs0 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellbs0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs0 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellbs0 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellbs0 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellbs0 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellbs0 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs0 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellbs0 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellbs0 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs0 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs0 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs0 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs0 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs0 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++sellbs0 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++sellbs0 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++sellbs0 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++sellbs0 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++sellbs0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs0 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++sellbs0 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++sellbs0 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++sellbs0 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++sellbs0 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs0 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++sellbs0 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++sellbs0 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs0 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs0 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs0 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs0 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on sellbs1 === ++sellbs1 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs1 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs1 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs1 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs1 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs1 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs1 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs1 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs1 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs1 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs1 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs1 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs1 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs1 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs1 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs1 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs1 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs1 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs1 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs1 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs1 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++sellbs1 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++sellbs1 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++sellbs1 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++sellbs1 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbs1 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbs1 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++sellbs1 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++sellbs1 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++sellbs1 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++sellbs1 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++sellbs1 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++sellbs1 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++sellbs1 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbs1 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbs1 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbs1 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbs1 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbs1 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellbs1 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellbs1 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellbs1 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellbs1 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs1 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs1 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs1 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellbs1 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellbs1 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellbs1 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellbs1 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs1 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellbs1 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellbs1 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs1 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs1 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs1 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs1 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs1 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs1 0x0000000000000003 0x0000000000000000 = 0x0000000000000001 ++sellbs1 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++sellbs1 0x0000000000000003 0x0000000000000003 = 0x0000000000000001 ++sellbs1 0x0000000000000003 0x000000000000000F = 0x0000000000000001 ++sellbs1 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbs1 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbs1 0x0000000000000003 0x000000000000007F = 0x0000000000000001 ++sellbs1 0x0000000000000003 0x0000000000000080 = 0x0000000000000001 ++sellbs1 0x0000000000000003 0x0000000000007FFF = 0x0000000000000001 ++sellbs1 0x0000000000000003 0x0000000000008000 = 0x0000000000000001 ++sellbs1 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000001 ++sellbs1 0x0000000000000003 0x0000000080000000 = 0x0000000000000001 ++sellbs1 0x0000000000000003 0x8000000000000000 = 0x0000000000000001 ++sellbs1 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbs1 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbs1 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbs1 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbs1 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbs1 0x000000000000000F 0x0000000000000000 = 0x0000000000000001 ++sellbs1 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0x000000000000000F 0x0000000000000002 = 0x0000000000000001 ++sellbs1 0x000000000000000F 0x0000000000000003 = 0x0000000000000001 ++sellbs1 0x000000000000000F 0x000000000000000F = 0x0000000000000001 ++sellbs1 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbs1 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbs1 0x000000000000000F 0x000000000000007F = 0x0000000000000001 ++sellbs1 0x000000000000000F 0x0000000000000080 = 0x0000000000000001 ++sellbs1 0x000000000000000F 0x0000000000007FFF = 0x0000000000000001 ++sellbs1 0x000000000000000F 0x0000000000008000 = 0x0000000000000001 ++sellbs1 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000001 ++sellbs1 0x000000000000000F 0x0000000080000000 = 0x0000000000000001 ++sellbs1 0x000000000000000F 0x8000000000000000 = 0x0000000000000001 ++sellbs1 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbs1 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbs1 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbs1 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbs1 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++sellbs1 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++sellbs1 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++sellbs1 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++sellbs1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs1 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++sellbs1 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++sellbs1 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++sellbs1 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++sellbs1 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs1 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++sellbs1 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++sellbs1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs1 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs1 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs1 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs1 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs1 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbs1 0x000000000000007F 0x0000000000000000 = 0x0000000000000001 ++sellbs1 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0x000000000000007F 0x0000000000000002 = 0x0000000000000001 ++sellbs1 0x000000000000007F 0x0000000000000003 = 0x0000000000000001 ++sellbs1 0x000000000000007F 0x000000000000000F = 0x0000000000000001 ++sellbs1 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbs1 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbs1 0x000000000000007F 0x000000000000007F = 0x0000000000000001 ++sellbs1 0x000000000000007F 0x0000000000000080 = 0x0000000000000001 ++sellbs1 0x000000000000007F 0x0000000000007FFF = 0x0000000000000001 ++sellbs1 0x000000000000007F 0x0000000000008000 = 0x0000000000000001 ++sellbs1 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000001 ++sellbs1 0x000000000000007F 0x0000000080000000 = 0x0000000000000001 ++sellbs1 0x000000000000007F 0x8000000000000000 = 0x0000000000000001 ++sellbs1 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbs1 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbs1 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbs1 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbs1 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbs1 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellbs1 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellbs1 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellbs1 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellbs1 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs1 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs1 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs1 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellbs1 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellbs1 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellbs1 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellbs1 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs1 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellbs1 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellbs1 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs1 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs1 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs1 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs1 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs1 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs1 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0x000000000000000F = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0x000000000000007F = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbs1 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbs1 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellbs1 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellbs1 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellbs1 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellbs1 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs1 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs1 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs1 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellbs1 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellbs1 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs1 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellbs1 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs1 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellbs1 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellbs1 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs1 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs1 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs1 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs1 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs1 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs1 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbs1 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbs1 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellbs1 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellbs1 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellbs1 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellbs1 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs1 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs1 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs1 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellbs1 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellbs1 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs1 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellbs1 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs1 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellbs1 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellbs1 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs1 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs1 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs1 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs1 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs1 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs1 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs1 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs1 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs1 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs1 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs1 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs1 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs1 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs1 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs1 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs1 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs1 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs1 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs1 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs1 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs1 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs1 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs1 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs1 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs1 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs1 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++sellbs1 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++sellbs1 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++sellbs1 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++sellbs1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs1 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++sellbs1 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++sellbs1 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs1 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++sellbs1 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs1 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++sellbs1 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++sellbs1 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs1 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs1 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs1 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs1 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs1 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs1 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++sellbs1 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++sellbs1 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++sellbs1 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++sellbs1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs1 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++sellbs1 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++sellbs1 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs1 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++sellbs1 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs1 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++sellbs1 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++sellbs1 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs1 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs1 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs1 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs1 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs1 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++sellbs1 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++sellbs1 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++sellbs1 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++sellbs1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs1 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++sellbs1 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++sellbs1 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++sellbs1 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++sellbs1 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs1 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++sellbs1 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++sellbs1 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs1 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs1 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs1 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs1 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs1 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbs1 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbs1 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellbs1 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellbs1 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellbs1 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellbs1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs1 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellbs1 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellbs1 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellbs1 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellbs1 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs1 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellbs1 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellbs1 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs1 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs1 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs1 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs1 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs1 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs1 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++sellbs1 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++sellbs1 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++sellbs1 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++sellbs1 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++sellbs1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs1 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++sellbs1 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++sellbs1 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++sellbs1 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++sellbs1 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs1 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++sellbs1 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++sellbs1 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs1 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs1 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs1 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs1 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs1 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on sellbs2 === ++sellbs2 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs2 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs2 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs2 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs2 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs2 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs2 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs2 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs2 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs2 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs2 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs2 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs2 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs2 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs2 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs2 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs2 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs2 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs2 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs2 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs2 0x0000000000000001 0x0000000000000000 = 0x0000000000000002 ++sellbs2 0x0000000000000001 0x0000000000000001 = 0x0000000000000002 ++sellbs2 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0x0000000000000001 0x0000000000000003 = 0x0000000000000002 ++sellbs2 0x0000000000000001 0x000000000000000F = 0x0000000000000002 ++sellbs2 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbs2 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbs2 0x0000000000000001 0x000000000000007F = 0x0000000000000002 ++sellbs2 0x0000000000000001 0x0000000000000080 = 0x0000000000000002 ++sellbs2 0x0000000000000001 0x0000000000007FFF = 0x0000000000000002 ++sellbs2 0x0000000000000001 0x0000000000008000 = 0x0000000000000002 ++sellbs2 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000002 ++sellbs2 0x0000000000000001 0x0000000080000000 = 0x0000000000000002 ++sellbs2 0x0000000000000001 0x8000000000000000 = 0x0000000000000002 ++sellbs2 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbs2 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbs2 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbs2 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbs2 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbs2 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellbs2 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellbs2 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellbs2 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellbs2 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs2 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs2 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs2 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellbs2 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellbs2 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellbs2 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellbs2 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs2 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellbs2 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellbs2 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs2 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs2 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs2 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs2 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs2 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs2 0x0000000000000003 0x0000000000000000 = 0x0000000000000002 ++sellbs2 0x0000000000000003 0x0000000000000001 = 0x0000000000000002 ++sellbs2 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0x0000000000000003 0x0000000000000003 = 0x0000000000000002 ++sellbs2 0x0000000000000003 0x000000000000000F = 0x0000000000000002 ++sellbs2 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbs2 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbs2 0x0000000000000003 0x000000000000007F = 0x0000000000000002 ++sellbs2 0x0000000000000003 0x0000000000000080 = 0x0000000000000002 ++sellbs2 0x0000000000000003 0x0000000000007FFF = 0x0000000000000002 ++sellbs2 0x0000000000000003 0x0000000000008000 = 0x0000000000000002 ++sellbs2 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000002 ++sellbs2 0x0000000000000003 0x0000000080000000 = 0x0000000000000002 ++sellbs2 0x0000000000000003 0x8000000000000000 = 0x0000000000000002 ++sellbs2 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbs2 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbs2 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbs2 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbs2 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbs2 0x000000000000000F 0x0000000000000000 = 0x0000000000000002 ++sellbs2 0x000000000000000F 0x0000000000000001 = 0x0000000000000002 ++sellbs2 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0x000000000000000F 0x0000000000000003 = 0x0000000000000002 ++sellbs2 0x000000000000000F 0x000000000000000F = 0x0000000000000002 ++sellbs2 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbs2 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbs2 0x000000000000000F 0x000000000000007F = 0x0000000000000002 ++sellbs2 0x000000000000000F 0x0000000000000080 = 0x0000000000000002 ++sellbs2 0x000000000000000F 0x0000000000007FFF = 0x0000000000000002 ++sellbs2 0x000000000000000F 0x0000000000008000 = 0x0000000000000002 ++sellbs2 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000002 ++sellbs2 0x000000000000000F 0x0000000080000000 = 0x0000000000000002 ++sellbs2 0x000000000000000F 0x8000000000000000 = 0x0000000000000002 ++sellbs2 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbs2 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbs2 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbs2 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbs2 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++sellbs2 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++sellbs2 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++sellbs2 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++sellbs2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs2 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++sellbs2 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++sellbs2 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++sellbs2 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++sellbs2 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs2 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++sellbs2 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++sellbs2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs2 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs2 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs2 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs2 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs2 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbs2 0x000000000000007F 0x0000000000000000 = 0x0000000000000002 ++sellbs2 0x000000000000007F 0x0000000000000001 = 0x0000000000000002 ++sellbs2 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0x000000000000007F 0x0000000000000003 = 0x0000000000000002 ++sellbs2 0x000000000000007F 0x000000000000000F = 0x0000000000000002 ++sellbs2 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbs2 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbs2 0x000000000000007F 0x000000000000007F = 0x0000000000000002 ++sellbs2 0x000000000000007F 0x0000000000000080 = 0x0000000000000002 ++sellbs2 0x000000000000007F 0x0000000000007FFF = 0x0000000000000002 ++sellbs2 0x000000000000007F 0x0000000000008000 = 0x0000000000000002 ++sellbs2 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000002 ++sellbs2 0x000000000000007F 0x0000000080000000 = 0x0000000000000002 ++sellbs2 0x000000000000007F 0x8000000000000000 = 0x0000000000000002 ++sellbs2 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbs2 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbs2 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbs2 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbs2 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbs2 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellbs2 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellbs2 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellbs2 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellbs2 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs2 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs2 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs2 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellbs2 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellbs2 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellbs2 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellbs2 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs2 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellbs2 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellbs2 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs2 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs2 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs2 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs2 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs2 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs2 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0x000000000000000F = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0x000000000000007F = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbs2 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbs2 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellbs2 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellbs2 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellbs2 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellbs2 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs2 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs2 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs2 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellbs2 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellbs2 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs2 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellbs2 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs2 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellbs2 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellbs2 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs2 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs2 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs2 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs2 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs2 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs2 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbs2 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbs2 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellbs2 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellbs2 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellbs2 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellbs2 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs2 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs2 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs2 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellbs2 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellbs2 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs2 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellbs2 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs2 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellbs2 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellbs2 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs2 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs2 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs2 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs2 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs2 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs2 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs2 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs2 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs2 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs2 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs2 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs2 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs2 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs2 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs2 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs2 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs2 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs2 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs2 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs2 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs2 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs2 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs2 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs2 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs2 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs2 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++sellbs2 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++sellbs2 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++sellbs2 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++sellbs2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs2 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++sellbs2 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++sellbs2 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs2 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++sellbs2 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs2 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++sellbs2 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++sellbs2 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs2 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs2 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs2 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs2 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs2 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs2 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++sellbs2 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++sellbs2 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++sellbs2 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++sellbs2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs2 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++sellbs2 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++sellbs2 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs2 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++sellbs2 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs2 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++sellbs2 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++sellbs2 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs2 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs2 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs2 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs2 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs2 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++sellbs2 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++sellbs2 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++sellbs2 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++sellbs2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs2 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++sellbs2 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++sellbs2 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++sellbs2 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++sellbs2 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs2 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++sellbs2 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++sellbs2 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs2 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs2 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs2 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs2 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs2 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbs2 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbs2 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellbs2 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellbs2 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellbs2 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellbs2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs2 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellbs2 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellbs2 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellbs2 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellbs2 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs2 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellbs2 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellbs2 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs2 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs2 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs2 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs2 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs2 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs2 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++sellbs2 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++sellbs2 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++sellbs2 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++sellbs2 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++sellbs2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs2 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++sellbs2 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++sellbs2 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++sellbs2 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++sellbs2 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs2 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++sellbs2 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++sellbs2 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs2 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs2 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs2 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs2 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs2 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on sellbs3 === ++sellbs3 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs3 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs3 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs3 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs3 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs3 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs3 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs3 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs3 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs3 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs3 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs3 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs3 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs3 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs3 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs3 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs3 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs3 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs3 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs3 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs3 0x0000000000000001 0x0000000000000000 = 0x0000000000000003 ++sellbs3 0x0000000000000001 0x0000000000000001 = 0x0000000000000003 ++sellbs3 0x0000000000000001 0x0000000000000002 = 0x0000000000000003 ++sellbs3 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0x0000000000000001 0x000000000000000F = 0x0000000000000003 ++sellbs3 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbs3 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbs3 0x0000000000000001 0x000000000000007F = 0x0000000000000003 ++sellbs3 0x0000000000000001 0x0000000000000080 = 0x0000000000000003 ++sellbs3 0x0000000000000001 0x0000000000007FFF = 0x0000000000000003 ++sellbs3 0x0000000000000001 0x0000000000008000 = 0x0000000000000003 ++sellbs3 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000003 ++sellbs3 0x0000000000000001 0x0000000080000000 = 0x0000000000000003 ++sellbs3 0x0000000000000001 0x8000000000000000 = 0x0000000000000003 ++sellbs3 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbs3 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbs3 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbs3 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbs3 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbs3 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellbs3 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellbs3 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellbs3 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellbs3 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs3 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs3 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs3 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellbs3 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellbs3 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellbs3 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellbs3 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs3 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellbs3 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellbs3 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs3 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs3 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs3 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs3 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs3 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs3 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++sellbs3 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++sellbs3 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++sellbs3 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++sellbs3 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbs3 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbs3 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++sellbs3 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++sellbs3 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++sellbs3 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++sellbs3 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++sellbs3 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++sellbs3 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++sellbs3 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbs3 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbs3 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbs3 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbs3 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbs3 0x000000000000000F 0x0000000000000000 = 0x0000000000000003 ++sellbs3 0x000000000000000F 0x0000000000000001 = 0x0000000000000003 ++sellbs3 0x000000000000000F 0x0000000000000002 = 0x0000000000000003 ++sellbs3 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0x000000000000000F 0x000000000000000F = 0x0000000000000003 ++sellbs3 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbs3 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbs3 0x000000000000000F 0x000000000000007F = 0x0000000000000003 ++sellbs3 0x000000000000000F 0x0000000000000080 = 0x0000000000000003 ++sellbs3 0x000000000000000F 0x0000000000007FFF = 0x0000000000000003 ++sellbs3 0x000000000000000F 0x0000000000008000 = 0x0000000000000003 ++sellbs3 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000003 ++sellbs3 0x000000000000000F 0x0000000080000000 = 0x0000000000000003 ++sellbs3 0x000000000000000F 0x8000000000000000 = 0x0000000000000003 ++sellbs3 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbs3 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbs3 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbs3 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbs3 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++sellbs3 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++sellbs3 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++sellbs3 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++sellbs3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs3 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++sellbs3 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++sellbs3 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++sellbs3 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++sellbs3 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs3 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++sellbs3 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++sellbs3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs3 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs3 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs3 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs3 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs3 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbs3 0x000000000000007F 0x0000000000000000 = 0x0000000000000003 ++sellbs3 0x000000000000007F 0x0000000000000001 = 0x0000000000000003 ++sellbs3 0x000000000000007F 0x0000000000000002 = 0x0000000000000003 ++sellbs3 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0x000000000000007F 0x000000000000000F = 0x0000000000000003 ++sellbs3 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbs3 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbs3 0x000000000000007F 0x000000000000007F = 0x0000000000000003 ++sellbs3 0x000000000000007F 0x0000000000000080 = 0x0000000000000003 ++sellbs3 0x000000000000007F 0x0000000000007FFF = 0x0000000000000003 ++sellbs3 0x000000000000007F 0x0000000000008000 = 0x0000000000000003 ++sellbs3 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000003 ++sellbs3 0x000000000000007F 0x0000000080000000 = 0x0000000000000003 ++sellbs3 0x000000000000007F 0x8000000000000000 = 0x0000000000000003 ++sellbs3 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbs3 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbs3 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbs3 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbs3 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbs3 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellbs3 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellbs3 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellbs3 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellbs3 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs3 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs3 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs3 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellbs3 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellbs3 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellbs3 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellbs3 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs3 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellbs3 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellbs3 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs3 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs3 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs3 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs3 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs3 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs3 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0x000000000000000F = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0x000000000000007F = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbs3 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbs3 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellbs3 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellbs3 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellbs3 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellbs3 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs3 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs3 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs3 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellbs3 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellbs3 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs3 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellbs3 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs3 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellbs3 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellbs3 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs3 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs3 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs3 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs3 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs3 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs3 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbs3 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbs3 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellbs3 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellbs3 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellbs3 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellbs3 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs3 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs3 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs3 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellbs3 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellbs3 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs3 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellbs3 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs3 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellbs3 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellbs3 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs3 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs3 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs3 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs3 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs3 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs3 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs3 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs3 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs3 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs3 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs3 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs3 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs3 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs3 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs3 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs3 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs3 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs3 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs3 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs3 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs3 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs3 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs3 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs3 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs3 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs3 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++sellbs3 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++sellbs3 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++sellbs3 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++sellbs3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs3 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++sellbs3 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++sellbs3 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs3 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++sellbs3 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs3 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++sellbs3 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++sellbs3 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs3 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs3 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs3 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs3 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs3 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs3 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++sellbs3 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++sellbs3 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++sellbs3 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++sellbs3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs3 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++sellbs3 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++sellbs3 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs3 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++sellbs3 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs3 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++sellbs3 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++sellbs3 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs3 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs3 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs3 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs3 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs3 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++sellbs3 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++sellbs3 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++sellbs3 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++sellbs3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs3 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++sellbs3 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++sellbs3 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++sellbs3 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++sellbs3 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs3 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++sellbs3 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++sellbs3 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs3 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs3 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs3 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs3 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs3 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbs3 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbs3 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellbs3 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellbs3 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellbs3 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellbs3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs3 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellbs3 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellbs3 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellbs3 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellbs3 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs3 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellbs3 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellbs3 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs3 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs3 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs3 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs3 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs3 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs3 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++sellbs3 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++sellbs3 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++sellbs3 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++sellbs3 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++sellbs3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs3 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++sellbs3 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++sellbs3 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++sellbs3 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++sellbs3 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs3 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++sellbs3 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++sellbs3 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs3 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs3 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs3 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs3 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs3 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on sellbs15 === ++sellbs15 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs15 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs15 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs15 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs15 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs15 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs15 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs15 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs15 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs15 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs15 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs15 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs15 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs15 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs15 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs15 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs15 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs15 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs15 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs15 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs15 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs15 0x0000000000000001 0x0000000000000000 = 0x000000000000000F ++sellbs15 0x0000000000000001 0x0000000000000001 = 0x000000000000000F ++sellbs15 0x0000000000000001 0x0000000000000002 = 0x000000000000000F ++sellbs15 0x0000000000000001 0x0000000000000003 = 0x000000000000000F ++sellbs15 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellbs15 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbs15 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbs15 0x0000000000000001 0x000000000000007F = 0x000000000000000F ++sellbs15 0x0000000000000001 0x0000000000000080 = 0x000000000000000F ++sellbs15 0x0000000000000001 0x0000000000007FFF = 0x000000000000000F ++sellbs15 0x0000000000000001 0x0000000000008000 = 0x000000000000000F ++sellbs15 0x0000000000000001 0x000000007FFFFFFF = 0x000000000000000F ++sellbs15 0x0000000000000001 0x0000000080000000 = 0x000000000000000F ++sellbs15 0x0000000000000001 0x8000000000000000 = 0x000000000000000F ++sellbs15 0x0000000000000001 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbs15 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbs15 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbs15 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0x0000000000000001 0x123456789ABCDEF0 = 0x000000000000000F ++sellbs15 0x0000000000000001 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbs15 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellbs15 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellbs15 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellbs15 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellbs15 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellbs15 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs15 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs15 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs15 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellbs15 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellbs15 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellbs15 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellbs15 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs15 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellbs15 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellbs15 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs15 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs15 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs15 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs15 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs15 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs15 0x0000000000000003 0x0000000000000000 = 0x000000000000000F ++sellbs15 0x0000000000000003 0x0000000000000001 = 0x000000000000000F ++sellbs15 0x0000000000000003 0x0000000000000002 = 0x000000000000000F ++sellbs15 0x0000000000000003 0x0000000000000003 = 0x000000000000000F ++sellbs15 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellbs15 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbs15 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbs15 0x0000000000000003 0x000000000000007F = 0x000000000000000F ++sellbs15 0x0000000000000003 0x0000000000000080 = 0x000000000000000F ++sellbs15 0x0000000000000003 0x0000000000007FFF = 0x000000000000000F ++sellbs15 0x0000000000000003 0x0000000000008000 = 0x000000000000000F ++sellbs15 0x0000000000000003 0x000000007FFFFFFF = 0x000000000000000F ++sellbs15 0x0000000000000003 0x0000000080000000 = 0x000000000000000F ++sellbs15 0x0000000000000003 0x8000000000000000 = 0x000000000000000F ++sellbs15 0x0000000000000003 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbs15 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbs15 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbs15 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0x0000000000000003 0x123456789ABCDEF0 = 0x000000000000000F ++sellbs15 0x0000000000000003 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbs15 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++sellbs15 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++sellbs15 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++sellbs15 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++sellbs15 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellbs15 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbs15 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbs15 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++sellbs15 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++sellbs15 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++sellbs15 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++sellbs15 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++sellbs15 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++sellbs15 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++sellbs15 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbs15 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbs15 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbs15 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++sellbs15 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++sellbs15 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++sellbs15 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++sellbs15 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++sellbs15 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs15 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++sellbs15 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++sellbs15 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++sellbs15 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++sellbs15 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs15 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++sellbs15 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++sellbs15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs15 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs15 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs15 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs15 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs15 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbs15 0x000000000000007F 0x0000000000000000 = 0x000000000000000F ++sellbs15 0x000000000000007F 0x0000000000000001 = 0x000000000000000F ++sellbs15 0x000000000000007F 0x0000000000000002 = 0x000000000000000F ++sellbs15 0x000000000000007F 0x0000000000000003 = 0x000000000000000F ++sellbs15 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellbs15 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbs15 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbs15 0x000000000000007F 0x000000000000007F = 0x000000000000000F ++sellbs15 0x000000000000007F 0x0000000000000080 = 0x000000000000000F ++sellbs15 0x000000000000007F 0x0000000000007FFF = 0x000000000000000F ++sellbs15 0x000000000000007F 0x0000000000008000 = 0x000000000000000F ++sellbs15 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000000F ++sellbs15 0x000000000000007F 0x0000000080000000 = 0x000000000000000F ++sellbs15 0x000000000000007F 0x8000000000000000 = 0x000000000000000F ++sellbs15 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbs15 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbs15 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbs15 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000000F ++sellbs15 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbs15 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellbs15 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellbs15 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellbs15 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellbs15 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellbs15 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs15 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs15 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs15 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellbs15 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellbs15 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellbs15 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellbs15 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs15 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellbs15 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellbs15 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs15 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs15 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs15 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs15 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs15 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs15 0x0000000000007FFF 0x0000000000000000 = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0x0000000000000001 = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0x0000000000000002 = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0x0000000000000003 = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0x000000000000007F = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0x0000000000000080 = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0x0000000000008000 = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0x0000000080000000 = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0x8000000000000000 = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000000000000F ++sellbs15 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbs15 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellbs15 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellbs15 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellbs15 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellbs15 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellbs15 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs15 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs15 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs15 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellbs15 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellbs15 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs15 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellbs15 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs15 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellbs15 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellbs15 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs15 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs15 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs15 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs15 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs15 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs15 0x000000007FFFFFFF 0x0000000000000000 = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0x0000000000000001 = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0x0000000000000002 = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0x0000000080000000 = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0x8000000000000000 = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000000000000F ++sellbs15 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbs15 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellbs15 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellbs15 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellbs15 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellbs15 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellbs15 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs15 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs15 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs15 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellbs15 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellbs15 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs15 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellbs15 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs15 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellbs15 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellbs15 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs15 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs15 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs15 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs15 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs15 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs15 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs15 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs15 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs15 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs15 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs15 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs15 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs15 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs15 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs15 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs15 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs15 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs15 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs15 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs15 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs15 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs15 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs15 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs15 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs15 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs15 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs15 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++sellbs15 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++sellbs15 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++sellbs15 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++sellbs15 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++sellbs15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs15 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++sellbs15 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++sellbs15 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs15 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++sellbs15 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs15 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++sellbs15 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++sellbs15 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs15 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs15 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs15 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs15 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs15 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs15 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++sellbs15 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++sellbs15 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++sellbs15 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++sellbs15 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs15 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++sellbs15 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++sellbs15 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs15 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++sellbs15 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs15 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++sellbs15 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++sellbs15 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs15 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs15 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs15 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs15 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs15 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++sellbs15 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++sellbs15 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++sellbs15 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++sellbs15 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++sellbs15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs15 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++sellbs15 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++sellbs15 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++sellbs15 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++sellbs15 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs15 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++sellbs15 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++sellbs15 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs15 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs15 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs15 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs15 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs15 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000000F ++sellbs15 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbs15 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellbs15 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellbs15 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellbs15 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellbs15 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellbs15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs15 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellbs15 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellbs15 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellbs15 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellbs15 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs15 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellbs15 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellbs15 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs15 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs15 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs15 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs15 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs15 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs15 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++sellbs15 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++sellbs15 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++sellbs15 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++sellbs15 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++sellbs15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs15 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++sellbs15 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++sellbs15 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++sellbs15 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++sellbs15 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs15 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++sellbs15 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++sellbs15 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs15 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs15 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs15 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs15 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs15 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on sellbs127 === ++sellbs127 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs127 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs127 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs127 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs127 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs127 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs127 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs127 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs127 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs127 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs127 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs127 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs127 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs127 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs127 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs127 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs127 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs127 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs127 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs127 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs127 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs127 0x0000000000000001 0x0000000000000000 = 0x000000000000007F ++sellbs127 0x0000000000000001 0x0000000000000001 = 0x000000000000007F ++sellbs127 0x0000000000000001 0x0000000000000002 = 0x000000000000007F ++sellbs127 0x0000000000000001 0x0000000000000003 = 0x000000000000007F ++sellbs127 0x0000000000000001 0x000000000000000F = 0x000000000000007F ++sellbs127 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbs127 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbs127 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellbs127 0x0000000000000001 0x0000000000000080 = 0x000000000000007F ++sellbs127 0x0000000000000001 0x0000000000007FFF = 0x000000000000007F ++sellbs127 0x0000000000000001 0x0000000000008000 = 0x000000000000007F ++sellbs127 0x0000000000000001 0x000000007FFFFFFF = 0x000000000000007F ++sellbs127 0x0000000000000001 0x0000000080000000 = 0x000000000000007F ++sellbs127 0x0000000000000001 0x8000000000000000 = 0x000000000000007F ++sellbs127 0x0000000000000001 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbs127 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbs127 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbs127 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0x0000000000000001 0x123456789ABCDEF0 = 0x000000000000007F ++sellbs127 0x0000000000000001 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbs127 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellbs127 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellbs127 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellbs127 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellbs127 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellbs127 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs127 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs127 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs127 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellbs127 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellbs127 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellbs127 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellbs127 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs127 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellbs127 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellbs127 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs127 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs127 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs127 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs127 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs127 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs127 0x0000000000000003 0x0000000000000000 = 0x000000000000007F ++sellbs127 0x0000000000000003 0x0000000000000001 = 0x000000000000007F ++sellbs127 0x0000000000000003 0x0000000000000002 = 0x000000000000007F ++sellbs127 0x0000000000000003 0x0000000000000003 = 0x000000000000007F ++sellbs127 0x0000000000000003 0x000000000000000F = 0x000000000000007F ++sellbs127 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbs127 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbs127 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellbs127 0x0000000000000003 0x0000000000000080 = 0x000000000000007F ++sellbs127 0x0000000000000003 0x0000000000007FFF = 0x000000000000007F ++sellbs127 0x0000000000000003 0x0000000000008000 = 0x000000000000007F ++sellbs127 0x0000000000000003 0x000000007FFFFFFF = 0x000000000000007F ++sellbs127 0x0000000000000003 0x0000000080000000 = 0x000000000000007F ++sellbs127 0x0000000000000003 0x8000000000000000 = 0x000000000000007F ++sellbs127 0x0000000000000003 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbs127 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbs127 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbs127 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0x0000000000000003 0x123456789ABCDEF0 = 0x000000000000007F ++sellbs127 0x0000000000000003 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbs127 0x000000000000000F 0x0000000000000000 = 0x000000000000007F ++sellbs127 0x000000000000000F 0x0000000000000001 = 0x000000000000007F ++sellbs127 0x000000000000000F 0x0000000000000002 = 0x000000000000007F ++sellbs127 0x000000000000000F 0x0000000000000003 = 0x000000000000007F ++sellbs127 0x000000000000000F 0x000000000000000F = 0x000000000000007F ++sellbs127 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbs127 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbs127 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellbs127 0x000000000000000F 0x0000000000000080 = 0x000000000000007F ++sellbs127 0x000000000000000F 0x0000000000007FFF = 0x000000000000007F ++sellbs127 0x000000000000000F 0x0000000000008000 = 0x000000000000007F ++sellbs127 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000007F ++sellbs127 0x000000000000000F 0x0000000080000000 = 0x000000000000007F ++sellbs127 0x000000000000000F 0x8000000000000000 = 0x000000000000007F ++sellbs127 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbs127 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbs127 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbs127 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000007F ++sellbs127 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++sellbs127 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++sellbs127 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++sellbs127 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++sellbs127 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++sellbs127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs127 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++sellbs127 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++sellbs127 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++sellbs127 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs127 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++sellbs127 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++sellbs127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs127 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs127 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs127 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs127 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs127 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbs127 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++sellbs127 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++sellbs127 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++sellbs127 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++sellbs127 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++sellbs127 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbs127 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbs127 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellbs127 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++sellbs127 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++sellbs127 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++sellbs127 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++sellbs127 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++sellbs127 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++sellbs127 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbs127 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbs127 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbs127 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++sellbs127 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbs127 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellbs127 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellbs127 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellbs127 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellbs127 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellbs127 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs127 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs127 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs127 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellbs127 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellbs127 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellbs127 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellbs127 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs127 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellbs127 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellbs127 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs127 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs127 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs127 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs127 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs127 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs127 0x0000000000007FFF 0x0000000000000000 = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0x0000000000000001 = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0x0000000000000002 = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0x0000000000000003 = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0x000000000000000F = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0x0000000000000080 = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0x0000000000008000 = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0x0000000080000000 = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0x8000000000000000 = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000000000007F ++sellbs127 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbs127 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellbs127 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellbs127 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellbs127 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellbs127 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellbs127 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs127 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs127 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs127 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellbs127 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellbs127 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs127 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellbs127 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs127 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellbs127 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellbs127 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs127 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs127 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs127 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs127 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs127 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs127 0x000000007FFFFFFF 0x0000000000000000 = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0x0000000000000001 = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0x0000000000000002 = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0x0000000080000000 = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0x8000000000000000 = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000000000007F ++sellbs127 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbs127 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellbs127 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellbs127 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellbs127 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellbs127 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellbs127 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs127 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs127 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs127 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellbs127 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellbs127 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs127 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellbs127 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs127 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellbs127 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellbs127 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs127 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs127 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs127 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs127 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs127 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs127 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs127 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs127 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs127 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs127 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs127 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs127 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs127 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs127 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs127 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs127 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs127 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs127 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs127 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs127 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs127 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs127 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs127 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs127 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs127 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs127 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs127 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++sellbs127 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++sellbs127 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++sellbs127 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++sellbs127 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++sellbs127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs127 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++sellbs127 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++sellbs127 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs127 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++sellbs127 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs127 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++sellbs127 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++sellbs127 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs127 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs127 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs127 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs127 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs127 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs127 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++sellbs127 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++sellbs127 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++sellbs127 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++sellbs127 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++sellbs127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs127 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++sellbs127 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs127 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++sellbs127 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs127 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++sellbs127 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++sellbs127 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs127 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs127 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs127 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs127 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs127 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++sellbs127 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++sellbs127 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++sellbs127 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++sellbs127 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++sellbs127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs127 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++sellbs127 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++sellbs127 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++sellbs127 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++sellbs127 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs127 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++sellbs127 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++sellbs127 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs127 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs127 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs127 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs127 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs127 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000007F ++sellbs127 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbs127 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellbs127 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellbs127 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellbs127 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellbs127 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellbs127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs127 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellbs127 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellbs127 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellbs127 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellbs127 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs127 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellbs127 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellbs127 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs127 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs127 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs127 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs127 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs127 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs127 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++sellbs127 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++sellbs127 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++sellbs127 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++sellbs127 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++sellbs127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs127 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++sellbs127 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++sellbs127 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++sellbs127 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++sellbs127 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs127 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++sellbs127 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++sellbs127 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs127 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs127 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs127 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs127 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs127 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on sellbs128 === ++sellbs128 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs128 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs128 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs128 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs128 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs128 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs128 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs128 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs128 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs128 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs128 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs128 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs128 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs128 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs128 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs128 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs128 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs128 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs128 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs128 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs128 0x0000000000000001 0x0000000000000000 = 0x0000000000000080 ++sellbs128 0x0000000000000001 0x0000000000000001 = 0x0000000000000080 ++sellbs128 0x0000000000000001 0x0000000000000002 = 0x0000000000000080 ++sellbs128 0x0000000000000001 0x0000000000000003 = 0x0000000000000080 ++sellbs128 0x0000000000000001 0x000000000000000F = 0x0000000000000080 ++sellbs128 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbs128 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbs128 0x0000000000000001 0x000000000000007F = 0x0000000000000080 ++sellbs128 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0x0000000000000001 0x0000000000007FFF = 0x0000000000000080 ++sellbs128 0x0000000000000001 0x0000000000008000 = 0x0000000000000080 ++sellbs128 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000080 ++sellbs128 0x0000000000000001 0x0000000080000000 = 0x0000000000000080 ++sellbs128 0x0000000000000001 0x8000000000000000 = 0x0000000000000080 ++sellbs128 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbs128 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbs128 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbs128 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbs128 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbs128 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellbs128 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellbs128 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellbs128 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellbs128 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellbs128 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs128 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs128 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs128 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellbs128 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellbs128 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellbs128 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs128 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellbs128 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellbs128 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs128 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs128 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs128 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs128 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs128 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs128 0x0000000000000003 0x0000000000000000 = 0x0000000000000080 ++sellbs128 0x0000000000000003 0x0000000000000001 = 0x0000000000000080 ++sellbs128 0x0000000000000003 0x0000000000000002 = 0x0000000000000080 ++sellbs128 0x0000000000000003 0x0000000000000003 = 0x0000000000000080 ++sellbs128 0x0000000000000003 0x000000000000000F = 0x0000000000000080 ++sellbs128 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbs128 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbs128 0x0000000000000003 0x000000000000007F = 0x0000000000000080 ++sellbs128 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0x0000000000000003 0x0000000000007FFF = 0x0000000000000080 ++sellbs128 0x0000000000000003 0x0000000000008000 = 0x0000000000000080 ++sellbs128 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000080 ++sellbs128 0x0000000000000003 0x0000000080000000 = 0x0000000000000080 ++sellbs128 0x0000000000000003 0x8000000000000000 = 0x0000000000000080 ++sellbs128 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbs128 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbs128 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbs128 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbs128 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbs128 0x000000000000000F 0x0000000000000000 = 0x0000000000000080 ++sellbs128 0x000000000000000F 0x0000000000000001 = 0x0000000000000080 ++sellbs128 0x000000000000000F 0x0000000000000002 = 0x0000000000000080 ++sellbs128 0x000000000000000F 0x0000000000000003 = 0x0000000000000080 ++sellbs128 0x000000000000000F 0x000000000000000F = 0x0000000000000080 ++sellbs128 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbs128 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbs128 0x000000000000000F 0x000000000000007F = 0x0000000000000080 ++sellbs128 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0x000000000000000F 0x0000000000007FFF = 0x0000000000000080 ++sellbs128 0x000000000000000F 0x0000000000008000 = 0x0000000000000080 ++sellbs128 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000080 ++sellbs128 0x000000000000000F 0x0000000080000000 = 0x0000000000000080 ++sellbs128 0x000000000000000F 0x8000000000000000 = 0x0000000000000080 ++sellbs128 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbs128 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbs128 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbs128 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbs128 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++sellbs128 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++sellbs128 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++sellbs128 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++sellbs128 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++sellbs128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs128 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++sellbs128 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++sellbs128 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++sellbs128 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs128 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++sellbs128 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++sellbs128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs128 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs128 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs128 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs128 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs128 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbs128 0x000000000000007F 0x0000000000000000 = 0x0000000000000080 ++sellbs128 0x000000000000007F 0x0000000000000001 = 0x0000000000000080 ++sellbs128 0x000000000000007F 0x0000000000000002 = 0x0000000000000080 ++sellbs128 0x000000000000007F 0x0000000000000003 = 0x0000000000000080 ++sellbs128 0x000000000000007F 0x000000000000000F = 0x0000000000000080 ++sellbs128 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbs128 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbs128 0x000000000000007F 0x000000000000007F = 0x0000000000000080 ++sellbs128 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0x000000000000007F 0x0000000000007FFF = 0x0000000000000080 ++sellbs128 0x000000000000007F 0x0000000000008000 = 0x0000000000000080 ++sellbs128 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000080 ++sellbs128 0x000000000000007F 0x0000000080000000 = 0x0000000000000080 ++sellbs128 0x000000000000007F 0x8000000000000000 = 0x0000000000000080 ++sellbs128 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbs128 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbs128 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbs128 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbs128 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbs128 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellbs128 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellbs128 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellbs128 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellbs128 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellbs128 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs128 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs128 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs128 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellbs128 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellbs128 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellbs128 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs128 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellbs128 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellbs128 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs128 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs128 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs128 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs128 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs128 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs128 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0x000000000000000F = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0x000000000000007F = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbs128 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbs128 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellbs128 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellbs128 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellbs128 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellbs128 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellbs128 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs128 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs128 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs128 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellbs128 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs128 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellbs128 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs128 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellbs128 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellbs128 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs128 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs128 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs128 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs128 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs128 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs128 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbs128 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbs128 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellbs128 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellbs128 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellbs128 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellbs128 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellbs128 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs128 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs128 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs128 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellbs128 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs128 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellbs128 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs128 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellbs128 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellbs128 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs128 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs128 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs128 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs128 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs128 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs128 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs128 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs128 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs128 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs128 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs128 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs128 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs128 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs128 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs128 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs128 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs128 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs128 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs128 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs128 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs128 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs128 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs128 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs128 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs128 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs128 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++sellbs128 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++sellbs128 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++sellbs128 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++sellbs128 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++sellbs128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs128 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++sellbs128 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs128 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++sellbs128 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs128 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++sellbs128 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++sellbs128 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs128 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs128 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs128 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs128 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs128 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs128 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++sellbs128 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++sellbs128 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++sellbs128 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++sellbs128 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++sellbs128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs128 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++sellbs128 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs128 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++sellbs128 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs128 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++sellbs128 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++sellbs128 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs128 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs128 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs128 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs128 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs128 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++sellbs128 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++sellbs128 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++sellbs128 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++sellbs128 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++sellbs128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs128 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++sellbs128 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++sellbs128 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++sellbs128 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs128 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++sellbs128 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++sellbs128 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs128 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs128 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs128 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs128 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs128 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbs128 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbs128 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellbs128 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellbs128 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellbs128 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellbs128 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellbs128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs128 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellbs128 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellbs128 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellbs128 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs128 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellbs128 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellbs128 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs128 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs128 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs128 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs128 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs128 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs128 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++sellbs128 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++sellbs128 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++sellbs128 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++sellbs128 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++sellbs128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs128 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++sellbs128 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++sellbs128 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++sellbs128 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++sellbs128 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs128 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++sellbs128 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++sellbs128 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs128 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs128 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs128 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs128 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs128 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on sellbs255 === ++sellbs255 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs255 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs255 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs255 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs255 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs255 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs255 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs255 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs255 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs255 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs255 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs255 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs255 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs255 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs255 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs255 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs255 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs255 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs255 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs255 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs255 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs255 0x0000000000000001 0x0000000000000000 = 0x00000000000000FF ++sellbs255 0x0000000000000001 0x0000000000000001 = 0x00000000000000FF ++sellbs255 0x0000000000000001 0x0000000000000002 = 0x00000000000000FF ++sellbs255 0x0000000000000001 0x0000000000000003 = 0x00000000000000FF ++sellbs255 0x0000000000000001 0x000000000000000F = 0x00000000000000FF ++sellbs255 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbs255 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbs255 0x0000000000000001 0x000000000000007F = 0x00000000000000FF ++sellbs255 0x0000000000000001 0x0000000000000080 = 0x00000000000000FF ++sellbs255 0x0000000000000001 0x0000000000007FFF = 0x00000000000000FF ++sellbs255 0x0000000000000001 0x0000000000008000 = 0x00000000000000FF ++sellbs255 0x0000000000000001 0x000000007FFFFFFF = 0x00000000000000FF ++sellbs255 0x0000000000000001 0x0000000080000000 = 0x00000000000000FF ++sellbs255 0x0000000000000001 0x8000000000000000 = 0x00000000000000FF ++sellbs255 0x0000000000000001 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbs255 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbs255 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbs255 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0x0000000000000001 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbs255 0x0000000000000001 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbs255 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellbs255 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellbs255 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellbs255 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellbs255 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellbs255 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs255 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs255 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs255 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellbs255 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellbs255 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellbs255 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellbs255 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs255 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellbs255 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellbs255 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs255 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs255 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs255 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs255 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs255 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs255 0x0000000000000003 0x0000000000000000 = 0x00000000000000FF ++sellbs255 0x0000000000000003 0x0000000000000001 = 0x00000000000000FF ++sellbs255 0x0000000000000003 0x0000000000000002 = 0x00000000000000FF ++sellbs255 0x0000000000000003 0x0000000000000003 = 0x00000000000000FF ++sellbs255 0x0000000000000003 0x000000000000000F = 0x00000000000000FF ++sellbs255 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbs255 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbs255 0x0000000000000003 0x000000000000007F = 0x00000000000000FF ++sellbs255 0x0000000000000003 0x0000000000000080 = 0x00000000000000FF ++sellbs255 0x0000000000000003 0x0000000000007FFF = 0x00000000000000FF ++sellbs255 0x0000000000000003 0x0000000000008000 = 0x00000000000000FF ++sellbs255 0x0000000000000003 0x000000007FFFFFFF = 0x00000000000000FF ++sellbs255 0x0000000000000003 0x0000000080000000 = 0x00000000000000FF ++sellbs255 0x0000000000000003 0x8000000000000000 = 0x00000000000000FF ++sellbs255 0x0000000000000003 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbs255 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbs255 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbs255 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0x0000000000000003 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbs255 0x0000000000000003 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbs255 0x000000000000000F 0x0000000000000000 = 0x00000000000000FF ++sellbs255 0x000000000000000F 0x0000000000000001 = 0x00000000000000FF ++sellbs255 0x000000000000000F 0x0000000000000002 = 0x00000000000000FF ++sellbs255 0x000000000000000F 0x0000000000000003 = 0x00000000000000FF ++sellbs255 0x000000000000000F 0x000000000000000F = 0x00000000000000FF ++sellbs255 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbs255 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbs255 0x000000000000000F 0x000000000000007F = 0x00000000000000FF ++sellbs255 0x000000000000000F 0x0000000000000080 = 0x00000000000000FF ++sellbs255 0x000000000000000F 0x0000000000007FFF = 0x00000000000000FF ++sellbs255 0x000000000000000F 0x0000000000008000 = 0x00000000000000FF ++sellbs255 0x000000000000000F 0x000000007FFFFFFF = 0x00000000000000FF ++sellbs255 0x000000000000000F 0x0000000080000000 = 0x00000000000000FF ++sellbs255 0x000000000000000F 0x8000000000000000 = 0x00000000000000FF ++sellbs255 0x000000000000000F 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbs255 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbs255 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbs255 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0x000000000000000F 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbs255 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++sellbs255 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++sellbs255 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++sellbs255 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++sellbs255 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++sellbs255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs255 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++sellbs255 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++sellbs255 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++sellbs255 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++sellbs255 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs255 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++sellbs255 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++sellbs255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs255 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs255 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs255 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs255 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs255 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbs255 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbs255 0x000000000000007F 0x0000000000000000 = 0x00000000000000FF ++sellbs255 0x000000000000007F 0x0000000000000001 = 0x00000000000000FF ++sellbs255 0x000000000000007F 0x0000000000000002 = 0x00000000000000FF ++sellbs255 0x000000000000007F 0x0000000000000003 = 0x00000000000000FF ++sellbs255 0x000000000000007F 0x000000000000000F = 0x00000000000000FF ++sellbs255 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbs255 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbs255 0x000000000000007F 0x000000000000007F = 0x00000000000000FF ++sellbs255 0x000000000000007F 0x0000000000000080 = 0x00000000000000FF ++sellbs255 0x000000000000007F 0x0000000000007FFF = 0x00000000000000FF ++sellbs255 0x000000000000007F 0x0000000000008000 = 0x00000000000000FF ++sellbs255 0x000000000000007F 0x000000007FFFFFFF = 0x00000000000000FF ++sellbs255 0x000000000000007F 0x0000000080000000 = 0x00000000000000FF ++sellbs255 0x000000000000007F 0x8000000000000000 = 0x00000000000000FF ++sellbs255 0x000000000000007F 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbs255 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbs255 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbs255 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0x000000000000007F 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbs255 0x000000000000007F 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbs255 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellbs255 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellbs255 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellbs255 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellbs255 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellbs255 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs255 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs255 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs255 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellbs255 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellbs255 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellbs255 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellbs255 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs255 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellbs255 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellbs255 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs255 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs255 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs255 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs255 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs255 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs255 0x0000000000007FFF 0x0000000000000000 = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0x0000000000000001 = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0x0000000000000002 = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0x0000000000000003 = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0x000000000000000F = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0x000000000000007F = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0x0000000000000080 = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0x0000000000007FFF = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0x0000000000008000 = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0x000000007FFFFFFF = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0x0000000080000000 = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0x8000000000000000 = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbs255 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbs255 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellbs255 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellbs255 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellbs255 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellbs255 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellbs255 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs255 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs255 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs255 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellbs255 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellbs255 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs255 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellbs255 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs255 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellbs255 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellbs255 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs255 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs255 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs255 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs255 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs255 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs255 0x000000007FFFFFFF 0x0000000000000000 = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0x0000000000000002 = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0x0000000000000003 = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0x000000000000000F = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0x000000000000007F = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0x0000000000000080 = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0x0000000000008000 = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0x8000000000000000 = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbs255 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbs255 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellbs255 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellbs255 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellbs255 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellbs255 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellbs255 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs255 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs255 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs255 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellbs255 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellbs255 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs255 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellbs255 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs255 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellbs255 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellbs255 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs255 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs255 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs255 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs255 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs255 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs255 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs255 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbs255 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs255 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbs255 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs255 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs255 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs255 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs255 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs255 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs255 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs255 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs255 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs255 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs255 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs255 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs255 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs255 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs255 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs255 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs255 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs255 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++sellbs255 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++sellbs255 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++sellbs255 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++sellbs255 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++sellbs255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs255 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++sellbs255 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++sellbs255 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs255 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++sellbs255 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs255 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++sellbs255 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++sellbs255 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs255 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs255 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs255 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs255 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs255 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs255 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++sellbs255 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++sellbs255 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++sellbs255 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++sellbs255 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++sellbs255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs255 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++sellbs255 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++sellbs255 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs255 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++sellbs255 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs255 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++sellbs255 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++sellbs255 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs255 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs255 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs255 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs255 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs255 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++sellbs255 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++sellbs255 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++sellbs255 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++sellbs255 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++sellbs255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs255 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++sellbs255 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++sellbs255 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++sellbs255 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++sellbs255 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs255 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++sellbs255 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++sellbs255 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs255 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs255 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs255 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs255 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs255 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++sellbs255 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++sellbs255 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellbs255 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellbs255 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellbs255 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellbs255 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellbs255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs255 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellbs255 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellbs255 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellbs255 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellbs255 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs255 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellbs255 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellbs255 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs255 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs255 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs255 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs255 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs255 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs255 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++sellbs255 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++sellbs255 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++sellbs255 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++sellbs255 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++sellbs255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs255 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++sellbs255 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++sellbs255 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++sellbs255 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++sellbs255 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs255 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++sellbs255 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++sellbs255 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs255 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs255 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs255 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs255 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs255 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 +diff --git a/none/tests/sw64/arith-int-imm.vgtest b/none/tests/sw64/arith-int-imm.vgtest +new file mode 100644 +index 000000000..43d0f13f0 +--- /dev/null ++++ b/none/tests/sw64/arith-int-imm.vgtest +@@ -0,0 +1,2 @@ ++prog: arith-int-imm ++vgopts: -q +diff --git a/none/tests/sw64/arith-int-reg.c b/none/tests/sw64/arith-int-reg.c +new file mode 100644 +index 000000000..322ef5254 +--- /dev/null ++++ b/none/tests/sw64/arith-int-reg.c +@@ -0,0 +1,214 @@ ++#include "common-sw64-standalone.h" ++ ++/* 1-op instructions */ ++#define MK_FUNC(insn) \ ++ __attribute__((noinline)) static long test_##insn(long a) { \ ++ long r; \ ++ __asm__ volatile ( \ ++ " " STRINGIFY(insn) " %1, %0\n" \ ++ : "=&r"(r) \ ++ : "r"(a) \ ++ ); \ ++ return r; \ ++ } \ ++ static void run_##insn(void) { \ ++ my_printf("=== Running test on " STRINGIFY(insn) " ===\n", 0); \ ++ for (int i = 0; i < num_i64; i++) { \ ++ long a = case_i64[i].l; \ ++ long r = test_##insn(a); \ ++ my_printf(STRINGIFY(insn) " 0x%x = 0x%x\n", (void const *[]){ &a, &r }); \ ++ } \ ++ } ++MK_FUNC(ctpop) ++MK_FUNC(ctlz) ++MK_FUNC(cttz) ++MK_FUNC(sextb) ++MK_FUNC(sexth) ++#undef MK_FUNC ++ ++/* 2-op instructions */ ++#define MK_FUNC(insn) \ ++ __attribute__((noinline)) static long test_##insn(long a, long b) { \ ++ long r; \ ++ __asm__ volatile ( \ ++ " " STRINGIFY(insn) " %1, %2, %0\n" \ ++ : "=&r"(r) \ ++ : "r"(a), "r"(b) \ ++ ); \ ++ return r; \ ++ } \ ++ static void run_##insn(void) { \ ++ my_printf("=== Running test on " STRINGIFY(insn) " ===\n", 0); \ ++ for (int i = 0; i < num_i64; i++) { \ ++ for (int j = 0; j < num_i64; j++) { \ ++ long a = case_i64[i].l; \ ++ long b = case_i64[j].l; \ ++ long r = test_##insn(a, b); \ ++ my_printf(STRINGIFY(insn) " 0x%x 0x%x = 0x%x\n", (void const *[]){ &a, &b, &r }); \ ++ } \ ++ } \ ++ } ++MK_FUNC(addw) ++MK_FUNC(subw) ++MK_FUNC(s4addw) ++MK_FUNC(s4subw) ++MK_FUNC(s8addw) ++MK_FUNC(s8subw) ++MK_FUNC(addl) ++MK_FUNC(subl) ++MK_FUNC(s4addl) ++MK_FUNC(s4subl) ++MK_FUNC(s8addl) ++MK_FUNC(s8subl) ++MK_FUNC(mulw) ++MK_FUNC(mull) ++MK_FUNC(umulh) ++MK_FUNC(cmpeq) ++MK_FUNC(cmplt) ++MK_FUNC(cmple) ++MK_FUNC(cmpult) ++MK_FUNC(cmpule) ++MK_FUNC(and) ++MK_FUNC(bic) ++MK_FUNC(bis) ++MK_FUNC(ornot) ++MK_FUNC(xor) ++MK_FUNC(eqv) ++MK_FUNC(inslb) ++MK_FUNC(inslh) ++MK_FUNC(inslw) ++MK_FUNC(insll) ++MK_FUNC(inshb) ++MK_FUNC(inshh) ++MK_FUNC(inshw) ++MK_FUNC(inshl) ++MK_FUNC(sll) ++MK_FUNC(srl) ++MK_FUNC(sra) ++MK_FUNC(extlb) ++MK_FUNC(extlh) ++MK_FUNC(extlw) ++MK_FUNC(extll) ++MK_FUNC(exthb) ++MK_FUNC(exthh) ++MK_FUNC(exthw) ++MK_FUNC(exthl) ++MK_FUNC(masklb) ++MK_FUNC(masklh) ++MK_FUNC(masklw) ++MK_FUNC(maskll) ++MK_FUNC(maskhb) ++MK_FUNC(maskhh) ++MK_FUNC(maskhw) ++MK_FUNC(maskhl) ++MK_FUNC(zap) ++MK_FUNC(zapnot) ++MK_FUNC(cmpgeb) ++#undef MK_FUNC ++ ++/* 3-op instructions */ ++#define MK_FUNC(insn) \ ++ __attribute__((noinline)) static long test_##insn(long a, long b, long c) { \ ++ long r; \ ++ __asm__ volatile ( \ ++ " " STRINGIFY(insn) " %1, %2, %3, %0\n" \ ++ : "=&r"(r) \ ++ : "r"(a), "r"(b), "r"(c) \ ++ ); \ ++ return r; \ ++ } \ ++ static void run_##insn(void) { \ ++ my_printf("=== Running test on " STRINGIFY(insn) " ===\n", 0); \ ++ for (int i = 0; i < num_i64; i++) { \ ++ for (int j = 0; j < num_i64; j++) { \ ++ long a = case_i64[i].l; \ ++ long b = case_i64[j].l; \ ++ long c = case_i64[(i + j) >= num_i64 ? (i + j - num_i64) : (i + j)].l; \ ++ long r = test_##insn(a, b, c); \ ++ my_printf(STRINGIFY(insn) " 0x%x 0x%x 0x%x = 0x%x\n", (void const *[]){ &a, &b, &c, &r }); \ ++ } \ ++ } \ ++ } ++MK_FUNC(seleq) ++MK_FUNC(selge) ++MK_FUNC(selgt) ++MK_FUNC(selle) ++MK_FUNC(sellt) ++MK_FUNC(selne) ++MK_FUNC(sellbc) ++MK_FUNC(sellbs) ++#undef MK_FUNC ++ ++int main(void) ++{ ++ run_addw(); ++ run_subw(); ++ run_s4addw(); ++ run_s4subw(); ++ run_s8addw(); ++ run_s8subw(); ++ run_addl(); ++ run_subl(); ++ run_s4addl(); ++ run_s4subl(); ++ run_s8addl(); ++ run_s8subl(); ++ run_mulw(); ++ run_mull(); ++ run_umulh(); ++ run_cmpeq(); ++ run_cmplt(); ++ run_cmple(); ++ run_cmpult(); ++ run_cmpule(); ++ run_and(); ++ run_bic(); ++ run_bis(); ++ run_ornot(); ++ run_xor(); ++ run_eqv(); ++ run_inslb(); ++ run_inslh(); ++ run_inslw(); ++ run_insll(); ++ run_inshb(); ++ run_inshh(); ++ run_inshw(); ++ run_inshl(); ++ run_sll(); ++ run_srl(); ++ run_sra(); ++ run_extlb(); ++ run_extlh(); ++ run_extlw(); ++ run_extll(); ++ run_exthb(); ++ run_exthh(); ++ run_exthw(); ++ run_exthl(); ++ run_ctpop(); ++ run_ctlz(); ++ run_cttz(); ++ run_masklb(); ++ run_masklh(); ++ run_masklw(); ++ run_maskll(); ++ run_maskhb(); ++ run_maskhh(); ++ run_maskhw(); ++ run_maskhl(); ++ run_zap(); ++ run_zapnot(); ++ run_sextb(); ++ run_sexth(); ++ run_cmpgeb(); ++ run_seleq(); ++ run_selge(); ++ run_selgt(); ++ run_selle(); ++ run_sellt(); ++ run_selne(); ++ run_sellbc(); ++ run_sellbs(); ++ return 0; ++} +diff --git a/none/tests/sw64/arith-int-reg.stderr.exp b/none/tests/sw64/arith-int-reg.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/arith-int-reg.stdout.exp b/none/tests/sw64/arith-int-reg.stdout.exp +new file mode 100644 +index 000000000..ba6915ee8 +--- /dev/null ++++ b/none/tests/sw64/arith-int-reg.stdout.exp +@@ -0,0 +1,28398 @@ ++=== Running test on addw === ++addw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++addw 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++addw 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++addw 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++addw 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++addw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++addw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++addw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++addw 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++addw 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++addw 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++addw 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++addw 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++addw 0x0000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++addw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++addw 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++addw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++addw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++addw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++addw 0x0000000000000000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++addw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000078563412 ++addw 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++addw 0x0000000000000001 0x0000000000000001 = 0x0000000000000002 ++addw 0x0000000000000001 0x0000000000000002 = 0x0000000000000003 ++addw 0x0000000000000001 0x0000000000000003 = 0x0000000000000004 ++addw 0x0000000000000001 0x000000000000000F = 0x0000000000000010 ++addw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++addw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++addw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++addw 0x0000000000000001 0x000000000000007F = 0x0000000000000080 ++addw 0x0000000000000001 0x0000000000000080 = 0x0000000000000081 ++addw 0x0000000000000001 0x0000000000007FFF = 0x0000000000008000 ++addw 0x0000000000000001 0x0000000000008000 = 0x0000000000008001 ++addw 0x0000000000000001 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++addw 0x0000000000000001 0x0000000080000000 = 0xFFFFFFFF80000001 ++addw 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++addw 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000001 ++addw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8001 ++addw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF81 ++addw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++addw 0x0000000000000001 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF1 ++addw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000078563413 ++addw 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++addw 0x0000000000000002 0x0000000000000001 = 0x0000000000000003 ++addw 0x0000000000000002 0x0000000000000002 = 0x0000000000000004 ++addw 0x0000000000000002 0x0000000000000003 = 0x0000000000000005 ++addw 0x0000000000000002 0x000000000000000F = 0x0000000000000011 ++addw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++addw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++addw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++addw 0x0000000000000002 0x000000000000007F = 0x0000000000000081 ++addw 0x0000000000000002 0x0000000000000080 = 0x0000000000000082 ++addw 0x0000000000000002 0x0000000000007FFF = 0x0000000000008001 ++addw 0x0000000000000002 0x0000000000008000 = 0x0000000000008002 ++addw 0x0000000000000002 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++addw 0x0000000000000002 0x0000000080000000 = 0xFFFFFFFF80000002 ++addw 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++addw 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000002 ++addw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8002 ++addw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF82 ++addw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++addw 0x0000000000000002 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF2 ++addw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000078563414 ++addw 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++addw 0x0000000000000003 0x0000000000000001 = 0x0000000000000004 ++addw 0x0000000000000003 0x0000000000000002 = 0x0000000000000005 ++addw 0x0000000000000003 0x0000000000000003 = 0x0000000000000006 ++addw 0x0000000000000003 0x000000000000000F = 0x0000000000000012 ++addw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++addw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++addw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++addw 0x0000000000000003 0x000000000000007F = 0x0000000000000082 ++addw 0x0000000000000003 0x0000000000000080 = 0x0000000000000083 ++addw 0x0000000000000003 0x0000000000007FFF = 0x0000000000008002 ++addw 0x0000000000000003 0x0000000000008000 = 0x0000000000008003 ++addw 0x0000000000000003 0x000000007FFFFFFF = 0xFFFFFFFF80000002 ++addw 0x0000000000000003 0x0000000080000000 = 0xFFFFFFFF80000003 ++addw 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++addw 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000003 ++addw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8003 ++addw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF83 ++addw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++addw 0x0000000000000003 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF3 ++addw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000078563415 ++addw 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++addw 0x000000000000000F 0x0000000000000001 = 0x0000000000000010 ++addw 0x000000000000000F 0x0000000000000002 = 0x0000000000000011 ++addw 0x000000000000000F 0x0000000000000003 = 0x0000000000000012 ++addw 0x000000000000000F 0x000000000000000F = 0x000000000000001E ++addw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000E ++addw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000D ++addw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000C ++addw 0x000000000000000F 0x000000000000007F = 0x000000000000008E ++addw 0x000000000000000F 0x0000000000000080 = 0x000000000000008F ++addw 0x000000000000000F 0x0000000000007FFF = 0x000000000000800E ++addw 0x000000000000000F 0x0000000000008000 = 0x000000000000800F ++addw 0x000000000000000F 0x000000007FFFFFFF = 0xFFFFFFFF8000000E ++addw 0x000000000000000F 0x0000000080000000 = 0xFFFFFFFF8000000F ++addw 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++addw 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF8000000F ++addw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF800F ++addw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF8F ++addw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000E ++addw 0x000000000000000F 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEFF ++addw 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000078563421 ++addw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++addw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++addw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++addw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000002 ++addw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000E ++addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++addw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007E ++addw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++addw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFE ++addw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FFF ++addw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFE ++addw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++addw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFF ++addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7F ++addw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++addw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEEF ++addw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000078563411 ++addw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++addw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++addw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++addw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000001 ++addw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000D ++addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++addw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007D ++addw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000007E ++addw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFD ++addw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000007FFE ++addw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFD ++addw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000007FFFFFFE ++addw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000007FFFFFFE ++addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFE ++addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7E ++addw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++addw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEEE ++addw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000078563410 ++addw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++addw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++addw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++addw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++addw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000C ++addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFB ++addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFA ++addw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007C ++addw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000007D ++addw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFC ++addw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000007FFD ++addw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFC ++addw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000007FFFFFFD ++addw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000007FFFFFFD ++addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFD ++addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7D ++addw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++addw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEED ++addw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000007856340F ++addw 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++addw 0x000000000000007F 0x0000000000000001 = 0x0000000000000080 ++addw 0x000000000000007F 0x0000000000000002 = 0x0000000000000081 ++addw 0x000000000000007F 0x0000000000000003 = 0x0000000000000082 ++addw 0x000000000000007F 0x000000000000000F = 0x000000000000008E ++addw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007E ++addw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007D ++addw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007C ++addw 0x000000000000007F 0x000000000000007F = 0x00000000000000FE ++addw 0x000000000000007F 0x0000000000000080 = 0x00000000000000FF ++addw 0x000000000000007F 0x0000000000007FFF = 0x000000000000807E ++addw 0x000000000000007F 0x0000000000008000 = 0x000000000000807F ++addw 0x000000000000007F 0x000000007FFFFFFF = 0xFFFFFFFF8000007E ++addw 0x000000000000007F 0x0000000080000000 = 0xFFFFFFFF8000007F ++addw 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++addw 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF8000007F ++addw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF807F ++addw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++addw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007E ++addw 0x000000000000007F 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDF6F ++addw 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000078563491 ++addw 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++addw 0x0000000000000080 0x0000000000000001 = 0x0000000000000081 ++addw 0x0000000000000080 0x0000000000000002 = 0x0000000000000082 ++addw 0x0000000000000080 0x0000000000000003 = 0x0000000000000083 ++addw 0x0000000000000080 0x000000000000000F = 0x000000000000008F ++addw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++addw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x000000000000007E ++addw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x000000000000007D ++addw 0x0000000000000080 0x000000000000007F = 0x00000000000000FF ++addw 0x0000000000000080 0x0000000000000080 = 0x0000000000000100 ++addw 0x0000000000000080 0x0000000000007FFF = 0x000000000000807F ++addw 0x0000000000000080 0x0000000000008000 = 0x0000000000008080 ++addw 0x0000000000000080 0x000000007FFFFFFF = 0xFFFFFFFF8000007F ++addw 0x0000000000000080 0x0000000080000000 = 0xFFFFFFFF80000080 ++addw 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++addw 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000080 ++addw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8080 ++addw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++addw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++addw 0x0000000000000080 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDF70 ++addw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000078563492 ++addw 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++addw 0x0000000000007FFF 0x0000000000000001 = 0x0000000000008000 ++addw 0x0000000000007FFF 0x0000000000000002 = 0x0000000000008001 ++addw 0x0000000000007FFF 0x0000000000000003 = 0x0000000000008002 ++addw 0x0000000000007FFF 0x000000000000000F = 0x000000000000800E ++addw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFE ++addw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFD ++addw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFC ++addw 0x0000000000007FFF 0x000000000000007F = 0x000000000000807E ++addw 0x0000000000007FFF 0x0000000000000080 = 0x000000000000807F ++addw 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000FFFE ++addw 0x0000000000007FFF 0x0000000000008000 = 0x000000000000FFFF ++addw 0x0000000000007FFF 0x000000007FFFFFFF = 0xFFFFFFFF80007FFE ++addw 0x0000000000007FFF 0x0000000080000000 = 0xFFFFFFFF80007FFF ++addw 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++addw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80007FFF ++addw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++addw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007F7F ++addw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFE ++addw 0x0000000000007FFF 0x123456789ABCDEF0 = 0xFFFFFFFF9ABD5EEF ++addw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000007856B411 ++addw 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++addw 0x0000000000008000 0x0000000000000001 = 0x0000000000008001 ++addw 0x0000000000008000 0x0000000000000002 = 0x0000000000008002 ++addw 0x0000000000008000 0x0000000000000003 = 0x0000000000008003 ++addw 0x0000000000008000 0x000000000000000F = 0x000000000000800F ++addw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++addw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFE ++addw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFD ++addw 0x0000000000008000 0x000000000000007F = 0x000000000000807F ++addw 0x0000000000008000 0x0000000000000080 = 0x0000000000008080 ++addw 0x0000000000008000 0x0000000000007FFF = 0x000000000000FFFF ++addw 0x0000000000008000 0x0000000000008000 = 0x0000000000010000 ++addw 0x0000000000008000 0x000000007FFFFFFF = 0xFFFFFFFF80007FFF ++addw 0x0000000000008000 0x0000000080000000 = 0xFFFFFFFF80008000 ++addw 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++addw 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80008000 ++addw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++addw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000007F80 ++addw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++addw 0x0000000000008000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABD5EF0 ++addw 0x0000000000008000 0xF0DEBC9A78563412 = 0x000000007856B412 ++addw 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++addw 0x000000007FFFFFFF 0x0000000000000001 = 0xFFFFFFFF80000000 ++addw 0x000000007FFFFFFF 0x0000000000000002 = 0xFFFFFFFF80000001 ++addw 0x000000007FFFFFFF 0x0000000000000003 = 0xFFFFFFFF80000002 ++addw 0x000000007FFFFFFF 0x000000000000000F = 0xFFFFFFFF8000000E ++addw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFE ++addw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFD ++addw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFC ++addw 0x000000007FFFFFFF 0x000000000000007F = 0xFFFFFFFF8000007E ++addw 0x000000007FFFFFFF 0x0000000000000080 = 0xFFFFFFFF8000007F ++addw 0x000000007FFFFFFF 0x0000000000007FFF = 0xFFFFFFFF80007FFE ++addw 0x000000007FFFFFFF 0x0000000000008000 = 0xFFFFFFFF80007FFF ++addw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++addw 0x000000007FFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++addw 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++addw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++addw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFF7FFF ++addw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFF7F ++addw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFE ++addw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000001ABCDEEF ++addw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFF8563411 ++addw 0x0000000080000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++addw 0x0000000080000000 0x0000000000000001 = 0xFFFFFFFF80000001 ++addw 0x0000000080000000 0x0000000000000002 = 0xFFFFFFFF80000002 ++addw 0x0000000080000000 0x0000000000000003 = 0xFFFFFFFF80000003 ++addw 0x0000000080000000 0x000000000000000F = 0xFFFFFFFF8000000F ++addw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++addw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFE ++addw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFD ++addw 0x0000000080000000 0x000000000000007F = 0xFFFFFFFF8000007F ++addw 0x0000000080000000 0x0000000000000080 = 0xFFFFFFFF80000080 ++addw 0x0000000080000000 0x0000000000007FFF = 0xFFFFFFFF80007FFF ++addw 0x0000000080000000 0x0000000000008000 = 0xFFFFFFFF80008000 ++addw 0x0000000080000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++addw 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++addw 0x0000000080000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++addw 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++addw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x000000007FFF8000 ++addw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFF80 ++addw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++addw 0x0000000080000000 0x123456789ABCDEF0 = 0x000000001ABCDEF0 ++addw 0x0000000080000000 0xF0DEBC9A78563412 = 0xFFFFFFFFF8563412 ++addw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++addw 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++addw 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++addw 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++addw 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++addw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++addw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++addw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++addw 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++addw 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++addw 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++addw 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++addw 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++addw 0x8000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++addw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++addw 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++addw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++addw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++addw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++addw 0x8000000000000000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++addw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000078563412 ++addw 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++addw 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000001 ++addw 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000002 ++addw 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000003 ++addw 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF8000000F ++addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFE ++addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFD ++addw 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF8000007F ++addw 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000080 ++addw 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80007FFF ++addw 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80008000 ++addw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++addw 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++addw 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++addw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x000000007FFF8000 ++addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFF80 ++addw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++addw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x000000001ABCDEF0 ++addw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFFF8563412 ++addw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++addw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8001 ++addw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF8002 ++addw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF8003 ++addw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF800F ++addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF7FFF ++addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF7FFE ++addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF7FFD ++addw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFF807F ++addw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8080 ++addw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++addw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++addw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFF7FFF ++addw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000007FFF8000 ++addw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++addw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000007FFF8000 ++addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF7F80 ++addw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF7FFF ++addw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABC5EF0 ++addw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000007855B412 ++addw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++addw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF81 ++addw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF82 ++addw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF83 ++addw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFF8F ++addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7F ++addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF7E ++addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF7D ++addw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++addw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++addw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007F7F ++addw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000007F80 ++addw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFF7F ++addw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000007FFFFF80 ++addw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000007FFFFF80 ++addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7F80 ++addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++addw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7F ++addw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDE70 ++addw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000078563392 ++addw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++addw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++addw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++addw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000002 ++addw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000E ++addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++addw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007E ++addw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++addw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFE ++addw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FFF ++addw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFE ++addw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++addw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFF ++addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7F ++addw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++addw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEEF ++addw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000078563411 ++addw 0x123456789ABCDEF0 0x0000000000000000 = 0xFFFFFFFF9ABCDEF0 ++addw 0x123456789ABCDEF0 0x0000000000000001 = 0xFFFFFFFF9ABCDEF1 ++addw 0x123456789ABCDEF0 0x0000000000000002 = 0xFFFFFFFF9ABCDEF2 ++addw 0x123456789ABCDEF0 0x0000000000000003 = 0xFFFFFFFF9ABCDEF3 ++addw 0x123456789ABCDEF0 0x000000000000000F = 0xFFFFFFFF9ABCDEFF ++addw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF9ABCDEEF ++addw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF9ABCDEEE ++addw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF9ABCDEED ++addw 0x123456789ABCDEF0 0x000000000000007F = 0xFFFFFFFF9ABCDF6F ++addw 0x123456789ABCDEF0 0x0000000000000080 = 0xFFFFFFFF9ABCDF70 ++addw 0x123456789ABCDEF0 0x0000000000007FFF = 0xFFFFFFFF9ABD5EEF ++addw 0x123456789ABCDEF0 0x0000000000008000 = 0xFFFFFFFF9ABD5EF0 ++addw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000001ABCDEEF ++addw 0x123456789ABCDEF0 0x0000000080000000 = 0x000000001ABCDEF0 ++addw 0x123456789ABCDEF0 0x8000000000000000 = 0xFFFFFFFF9ABCDEF0 ++addw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000001ABCDEF0 ++addw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF9ABC5EF0 ++addw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF9ABCDE70 ++addw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF9ABCDEEF ++addw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000003579BDE0 ++addw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000013131302 ++addw 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000078563412 ++addw 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000078563413 ++addw 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000078563414 ++addw 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000078563415 ++addw 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000078563421 ++addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000078563411 ++addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000078563410 ++addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x000000007856340F ++addw 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000078563491 ++addw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000078563492 ++addw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000007856B411 ++addw 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000007856B412 ++addw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xFFFFFFFFF8563411 ++addw 0xF0DEBC9A78563412 0x0000000080000000 = 0xFFFFFFFFF8563412 ++addw 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000078563412 ++addw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFFF8563412 ++addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x000000007855B412 ++addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000078563392 ++addw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000078563411 ++addw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000013131302 ++addw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xFFFFFFFFF0AC6824 ++=== Running test on subw === ++subw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++subw 0x0000000000000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++subw 0x0000000000000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++subw 0x0000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++subw 0x0000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++subw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++subw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++subw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++subw 0x0000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++subw 0x0000000000000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++subw 0x0000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++subw 0x0000000000000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++subw 0x0000000000000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++subw 0x0000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++subw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++subw 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++subw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++subw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++subw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++subw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000065432110 ++subw 0x0000000000000000 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEE ++subw 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++subw 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++subw 0x0000000000000001 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++subw 0x0000000000000001 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++subw 0x0000000000000001 0x000000000000000F = 0xFFFFFFFFFFFFFFF2 ++subw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++subw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++subw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000004 ++subw 0x0000000000000001 0x000000000000007F = 0xFFFFFFFFFFFFFF82 ++subw 0x0000000000000001 0x0000000000000080 = 0xFFFFFFFFFFFFFF81 ++subw 0x0000000000000001 0x0000000000007FFF = 0xFFFFFFFFFFFF8002 ++subw 0x0000000000000001 0x0000000000008000 = 0xFFFFFFFFFFFF8001 ++subw 0x0000000000000001 0x000000007FFFFFFF = 0xFFFFFFFF80000002 ++subw 0x0000000000000001 0x0000000080000000 = 0xFFFFFFFF80000001 ++subw 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++subw 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000001 ++subw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000008001 ++subw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000081 ++subw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++subw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000065432111 ++subw 0x0000000000000001 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEF ++subw 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++subw 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++subw 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++subw 0x0000000000000002 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++subw 0x0000000000000002 0x000000000000000F = 0xFFFFFFFFFFFFFFF3 ++subw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++subw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000004 ++subw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000005 ++subw 0x0000000000000002 0x000000000000007F = 0xFFFFFFFFFFFFFF83 ++subw 0x0000000000000002 0x0000000000000080 = 0xFFFFFFFFFFFFFF82 ++subw 0x0000000000000002 0x0000000000007FFF = 0xFFFFFFFFFFFF8003 ++subw 0x0000000000000002 0x0000000000008000 = 0xFFFFFFFFFFFF8002 ++subw 0x0000000000000002 0x000000007FFFFFFF = 0xFFFFFFFF80000003 ++subw 0x0000000000000002 0x0000000080000000 = 0xFFFFFFFF80000002 ++subw 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++subw 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000002 ++subw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000008002 ++subw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000082 ++subw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++subw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000065432112 ++subw 0x0000000000000002 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBF0 ++subw 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++subw 0x0000000000000003 0x0000000000000001 = 0x0000000000000002 ++subw 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++subw 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++subw 0x0000000000000003 0x000000000000000F = 0xFFFFFFFFFFFFFFF4 ++subw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000004 ++subw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000005 ++subw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000006 ++subw 0x0000000000000003 0x000000000000007F = 0xFFFFFFFFFFFFFF84 ++subw 0x0000000000000003 0x0000000000000080 = 0xFFFFFFFFFFFFFF83 ++subw 0x0000000000000003 0x0000000000007FFF = 0xFFFFFFFFFFFF8004 ++subw 0x0000000000000003 0x0000000000008000 = 0xFFFFFFFFFFFF8003 ++subw 0x0000000000000003 0x000000007FFFFFFF = 0xFFFFFFFF80000004 ++subw 0x0000000000000003 0x0000000080000000 = 0xFFFFFFFF80000003 ++subw 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++subw 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000003 ++subw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000008003 ++subw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000083 ++subw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000004 ++subw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000065432113 ++subw 0x0000000000000003 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBF1 ++subw 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++subw 0x000000000000000F 0x0000000000000001 = 0x000000000000000E ++subw 0x000000000000000F 0x0000000000000002 = 0x000000000000000D ++subw 0x000000000000000F 0x0000000000000003 = 0x000000000000000C ++subw 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++subw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000010 ++subw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000011 ++subw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000012 ++subw 0x000000000000000F 0x000000000000007F = 0xFFFFFFFFFFFFFF90 ++subw 0x000000000000000F 0x0000000000000080 = 0xFFFFFFFFFFFFFF8F ++subw 0x000000000000000F 0x0000000000007FFF = 0xFFFFFFFFFFFF8010 ++subw 0x000000000000000F 0x0000000000008000 = 0xFFFFFFFFFFFF800F ++subw 0x000000000000000F 0x000000007FFFFFFF = 0xFFFFFFFF80000010 ++subw 0x000000000000000F 0x0000000080000000 = 0xFFFFFFFF8000000F ++subw 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++subw 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF8000000F ++subw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000800F ++subw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000008F ++subw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000010 ++subw 0x000000000000000F 0x123456789ABCDEF0 = 0x000000006543211F ++subw 0x000000000000000F 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBFD ++subw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++subw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++subw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++subw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++subw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++subw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++subw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++subw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++subw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++subw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++subw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++subw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++subw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++subw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000006543210F ++subw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBED ++subw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++subw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++subw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFC ++subw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFB ++subw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFEF ++subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++subw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFF7F ++subw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFF7E ++subw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFF7FFF ++subw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFF7FFE ++subw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++subw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000007FFFFFFE ++subw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000007FFFFFFE ++subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000007FFE ++subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000007E ++subw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++subw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000006543210E ++subw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEC ++subw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++subw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFC ++subw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFB ++subw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFA ++subw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFEE ++subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++subw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFF7E ++subw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFF7D ++subw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFF7FFE ++subw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFF7FFD ++subw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFE ++subw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000007FFFFFFD ++subw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000007FFFFFFD ++subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000007FFD ++subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000007D ++subw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++subw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000006543210D ++subw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEB ++subw 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++subw 0x000000000000007F 0x0000000000000001 = 0x000000000000007E ++subw 0x000000000000007F 0x0000000000000002 = 0x000000000000007D ++subw 0x000000000000007F 0x0000000000000003 = 0x000000000000007C ++subw 0x000000000000007F 0x000000000000000F = 0x0000000000000070 ++subw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++subw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000081 ++subw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000082 ++subw 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++subw 0x000000000000007F 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++subw 0x000000000000007F 0x0000000000007FFF = 0xFFFFFFFFFFFF8080 ++subw 0x000000000000007F 0x0000000000008000 = 0xFFFFFFFFFFFF807F ++subw 0x000000000000007F 0x000000007FFFFFFF = 0xFFFFFFFF80000080 ++subw 0x000000000000007F 0x0000000080000000 = 0xFFFFFFFF8000007F ++subw 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++subw 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF8000007F ++subw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000807F ++subw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++subw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++subw 0x000000000000007F 0x123456789ABCDEF0 = 0x000000006543218F ++subw 0x000000000000007F 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CC6D ++subw 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++subw 0x0000000000000080 0x0000000000000001 = 0x000000000000007F ++subw 0x0000000000000080 0x0000000000000002 = 0x000000000000007E ++subw 0x0000000000000080 0x0000000000000003 = 0x000000000000007D ++subw 0x0000000000000080 0x000000000000000F = 0x0000000000000071 ++subw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000081 ++subw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000082 ++subw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000083 ++subw 0x0000000000000080 0x000000000000007F = 0x0000000000000001 ++subw 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++subw 0x0000000000000080 0x0000000000007FFF = 0xFFFFFFFFFFFF8081 ++subw 0x0000000000000080 0x0000000000008000 = 0xFFFFFFFFFFFF8080 ++subw 0x0000000000000080 0x000000007FFFFFFF = 0xFFFFFFFF80000081 ++subw 0x0000000000000080 0x0000000080000000 = 0xFFFFFFFF80000080 ++subw 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++subw 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000080 ++subw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000008080 ++subw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000100 ++subw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000081 ++subw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000065432190 ++subw 0x0000000000000080 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CC6E ++subw 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++subw 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFE ++subw 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFD ++subw 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFC ++subw 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FF0 ++subw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++subw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000008001 ++subw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000008002 ++subw 0x0000000000007FFF 0x000000000000007F = 0x0000000000007F80 ++subw 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007F7F ++subw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++subw 0x0000000000007FFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++subw 0x0000000000007FFF 0x000000007FFFFFFF = 0xFFFFFFFF80008000 ++subw 0x0000000000007FFF 0x0000000080000000 = 0xFFFFFFFF80007FFF ++subw 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++subw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80007FFF ++subw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++subw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000000807F ++subw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++subw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000006543A10F ++subw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xFFFFFFFF87AA4BED ++subw 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++subw 0x0000000000008000 0x0000000000000001 = 0x0000000000007FFF ++subw 0x0000000000008000 0x0000000000000002 = 0x0000000000007FFE ++subw 0x0000000000008000 0x0000000000000003 = 0x0000000000007FFD ++subw 0x0000000000008000 0x000000000000000F = 0x0000000000007FF1 ++subw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008001 ++subw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008002 ++subw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008003 ++subw 0x0000000000008000 0x000000000000007F = 0x0000000000007F81 ++subw 0x0000000000008000 0x0000000000000080 = 0x0000000000007F80 ++subw 0x0000000000008000 0x0000000000007FFF = 0x0000000000000001 ++subw 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++subw 0x0000000000008000 0x000000007FFFFFFF = 0xFFFFFFFF80008001 ++subw 0x0000000000008000 0x0000000080000000 = 0xFFFFFFFF80008000 ++subw 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++subw 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80008000 ++subw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000010000 ++subw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008080 ++subw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008001 ++subw 0x0000000000008000 0x123456789ABCDEF0 = 0x000000006543A110 ++subw 0x0000000000008000 0xF0DEBC9A78563412 = 0xFFFFFFFF87AA4BEE ++subw 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++subw 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFE ++subw 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFFFFFD ++subw 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFFC ++subw 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFF0 ++subw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++subw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000001 ++subw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000002 ++subw 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFF80 ++subw 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFF7F ++subw 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFF8000 ++subw 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFF7FFF ++subw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++subw 0x000000007FFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++subw 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++subw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++subw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80007FFF ++subw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF8000007F ++subw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++subw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFE543210F ++subw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000007A9CBED ++subw 0x0000000080000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++subw 0x0000000080000000 0x0000000000000001 = 0x000000007FFFFFFF ++subw 0x0000000080000000 0x0000000000000002 = 0x000000007FFFFFFE ++subw 0x0000000080000000 0x0000000000000003 = 0x000000007FFFFFFD ++subw 0x0000000080000000 0x000000000000000F = 0x000000007FFFFFF1 ++subw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000001 ++subw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000002 ++subw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000003 ++subw 0x0000000080000000 0x000000000000007F = 0x000000007FFFFF81 ++subw 0x0000000080000000 0x0000000000000080 = 0x000000007FFFFF80 ++subw 0x0000000080000000 0x0000000000007FFF = 0x000000007FFF8001 ++subw 0x0000000080000000 0x0000000000008000 = 0x000000007FFF8000 ++subw 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000001 ++subw 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++subw 0x0000000080000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++subw 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++subw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80008000 ++subw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000080 ++subw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000001 ++subw 0x0000000080000000 0x123456789ABCDEF0 = 0xFFFFFFFFE5432110 ++subw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000007A9CBEE ++subw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++subw 0x8000000000000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++subw 0x8000000000000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++subw 0x8000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++subw 0x8000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++subw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++subw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++subw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++subw 0x8000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++subw 0x8000000000000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++subw 0x8000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++subw 0x8000000000000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++subw 0x8000000000000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++subw 0x8000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++subw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++subw 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++subw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++subw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++subw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++subw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000065432110 ++subw 0x8000000000000000 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEE ++subw 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++subw 0xFFFFFFFF80000000 0x0000000000000001 = 0x000000007FFFFFFF ++subw 0xFFFFFFFF80000000 0x0000000000000002 = 0x000000007FFFFFFE ++subw 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000007FFFFFFD ++subw 0xFFFFFFFF80000000 0x000000000000000F = 0x000000007FFFFFF1 ++subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000001 ++subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000002 ++subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000003 ++subw 0xFFFFFFFF80000000 0x000000000000007F = 0x000000007FFFFF81 ++subw 0xFFFFFFFF80000000 0x0000000000000080 = 0x000000007FFFFF80 ++subw 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000007FFF8001 ++subw 0xFFFFFFFF80000000 0x0000000000008000 = 0x000000007FFF8000 ++subw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000001 ++subw 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++subw 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++subw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80008000 ++subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000080 ++subw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000001 ++subw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFFE5432110 ++subw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000007A9CBEE ++subw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++subw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF7FFF ++subw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF7FFE ++subw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF7FFD ++subw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF7FF1 ++subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8001 ++subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8002 ++subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8003 ++subw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFF7F81 ++subw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF7F80 ++subw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFF0001 ++subw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++subw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFF8001 ++subw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000007FFF8000 ++subw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++subw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000007FFF8000 ++subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8080 ++subw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8001 ++subw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x000000006542A110 ++subw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFF87A94BEE ++subw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++subw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF7F ++subw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF7E ++subw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF7D ++subw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFF71 ++subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF81 ++subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF82 ++subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF83 ++subw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFF01 ++subw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF00 ++subw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFF7F81 ++subw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFF7F80 ++subw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFF81 ++subw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000007FFFFF80 ++subw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000007FFFFF80 ++subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000007F80 ++subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++subw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF81 ++subw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000065432090 ++subw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CB6E ++subw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++subw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++subw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++subw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++subw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++subw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++subw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++subw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++subw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++subw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++subw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++subw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++subw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++subw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000006543210F ++subw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBED ++subw 0x123456789ABCDEF0 0x0000000000000000 = 0xFFFFFFFF9ABCDEF0 ++subw 0x123456789ABCDEF0 0x0000000000000001 = 0xFFFFFFFF9ABCDEEF ++subw 0x123456789ABCDEF0 0x0000000000000002 = 0xFFFFFFFF9ABCDEEE ++subw 0x123456789ABCDEF0 0x0000000000000003 = 0xFFFFFFFF9ABCDEED ++subw 0x123456789ABCDEF0 0x000000000000000F = 0xFFFFFFFF9ABCDEE1 ++subw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF9ABCDEF1 ++subw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF9ABCDEF2 ++subw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF9ABCDEF3 ++subw 0x123456789ABCDEF0 0x000000000000007F = 0xFFFFFFFF9ABCDE71 ++subw 0x123456789ABCDEF0 0x0000000000000080 = 0xFFFFFFFF9ABCDE70 ++subw 0x123456789ABCDEF0 0x0000000000007FFF = 0xFFFFFFFF9ABC5EF1 ++subw 0x123456789ABCDEF0 0x0000000000008000 = 0xFFFFFFFF9ABC5EF0 ++subw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000001ABCDEF1 ++subw 0x123456789ABCDEF0 0x0000000080000000 = 0x000000001ABCDEF0 ++subw 0x123456789ABCDEF0 0x8000000000000000 = 0xFFFFFFFF9ABCDEF0 ++subw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000001ABCDEF0 ++subw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF9ABD5EF0 ++subw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF9ABCDF70 ++subw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF9ABCDEF1 ++subw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++subw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000002266AADE ++subw 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000078563412 ++subw 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000078563411 ++subw 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000078563410 ++subw 0xF0DEBC9A78563412 0x0000000000000003 = 0x000000007856340F ++subw 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000078563403 ++subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000078563413 ++subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000078563414 ++subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000078563415 ++subw 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000078563393 ++subw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000078563392 ++subw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000007855B413 ++subw 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000007855B412 ++subw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xFFFFFFFFF8563413 ++subw 0xF0DEBC9A78563412 0x0000000080000000 = 0xFFFFFFFFF8563412 ++subw 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000078563412 ++subw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFFF8563412 ++subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x000000007856B412 ++subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000078563492 ++subw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000078563413 ++subw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xFFFFFFFFDD995522 ++subw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on s4addw === ++s4addw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++s4addw 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++s4addw 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++s4addw 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++s4addw 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++s4addw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s4addw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++s4addw 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++s4addw 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++s4addw 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++s4addw 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++s4addw 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++s4addw 0x0000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s4addw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++s4addw 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s4addw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++s4addw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++s4addw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addw 0x0000000000000000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++s4addw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000078563412 ++s4addw 0x0000000000000001 0x0000000000000000 = 0x0000000000000004 ++s4addw 0x0000000000000001 0x0000000000000001 = 0x0000000000000005 ++s4addw 0x0000000000000001 0x0000000000000002 = 0x0000000000000006 ++s4addw 0x0000000000000001 0x0000000000000003 = 0x0000000000000007 ++s4addw 0x0000000000000001 0x000000000000000F = 0x0000000000000013 ++s4addw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++s4addw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++s4addw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++s4addw 0x0000000000000001 0x000000000000007F = 0x0000000000000083 ++s4addw 0x0000000000000001 0x0000000000000080 = 0x0000000000000084 ++s4addw 0x0000000000000001 0x0000000000007FFF = 0x0000000000008003 ++s4addw 0x0000000000000001 0x0000000000008000 = 0x0000000000008004 ++s4addw 0x0000000000000001 0x000000007FFFFFFF = 0xFFFFFFFF80000003 ++s4addw 0x0000000000000001 0x0000000080000000 = 0xFFFFFFFF80000004 ++s4addw 0x0000000000000001 0x8000000000000000 = 0x0000000000000004 ++s4addw 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000004 ++s4addw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8004 ++s4addw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF84 ++s4addw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++s4addw 0x0000000000000001 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF4 ++s4addw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000078563416 ++s4addw 0x0000000000000002 0x0000000000000000 = 0x0000000000000008 ++s4addw 0x0000000000000002 0x0000000000000001 = 0x0000000000000009 ++s4addw 0x0000000000000002 0x0000000000000002 = 0x000000000000000A ++s4addw 0x0000000000000002 0x0000000000000003 = 0x000000000000000B ++s4addw 0x0000000000000002 0x000000000000000F = 0x0000000000000017 ++s4addw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000007 ++s4addw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000006 ++s4addw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000005 ++s4addw 0x0000000000000002 0x000000000000007F = 0x0000000000000087 ++s4addw 0x0000000000000002 0x0000000000000080 = 0x0000000000000088 ++s4addw 0x0000000000000002 0x0000000000007FFF = 0x0000000000008007 ++s4addw 0x0000000000000002 0x0000000000008000 = 0x0000000000008008 ++s4addw 0x0000000000000002 0x000000007FFFFFFF = 0xFFFFFFFF80000007 ++s4addw 0x0000000000000002 0x0000000080000000 = 0xFFFFFFFF80000008 ++s4addw 0x0000000000000002 0x8000000000000000 = 0x0000000000000008 ++s4addw 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000008 ++s4addw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8008 ++s4addw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF88 ++s4addw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000007 ++s4addw 0x0000000000000002 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF8 ++s4addw 0x0000000000000002 0xF0DEBC9A78563412 = 0x000000007856341A ++s4addw 0x0000000000000003 0x0000000000000000 = 0x000000000000000C ++s4addw 0x0000000000000003 0x0000000000000001 = 0x000000000000000D ++s4addw 0x0000000000000003 0x0000000000000002 = 0x000000000000000E ++s4addw 0x0000000000000003 0x0000000000000003 = 0x000000000000000F ++s4addw 0x0000000000000003 0x000000000000000F = 0x000000000000001B ++s4addw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x000000000000000B ++s4addw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000000000000A ++s4addw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000009 ++s4addw 0x0000000000000003 0x000000000000007F = 0x000000000000008B ++s4addw 0x0000000000000003 0x0000000000000080 = 0x000000000000008C ++s4addw 0x0000000000000003 0x0000000000007FFF = 0x000000000000800B ++s4addw 0x0000000000000003 0x0000000000008000 = 0x000000000000800C ++s4addw 0x0000000000000003 0x000000007FFFFFFF = 0xFFFFFFFF8000000B ++s4addw 0x0000000000000003 0x0000000080000000 = 0xFFFFFFFF8000000C ++s4addw 0x0000000000000003 0x8000000000000000 = 0x000000000000000C ++s4addw 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF8000000C ++s4addw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF800C ++s4addw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF8C ++s4addw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x000000000000000B ++s4addw 0x0000000000000003 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEFC ++s4addw 0x0000000000000003 0xF0DEBC9A78563412 = 0x000000007856341E ++s4addw 0x000000000000000F 0x0000000000000000 = 0x000000000000003C ++s4addw 0x000000000000000F 0x0000000000000001 = 0x000000000000003D ++s4addw 0x000000000000000F 0x0000000000000002 = 0x000000000000003E ++s4addw 0x000000000000000F 0x0000000000000003 = 0x000000000000003F ++s4addw 0x000000000000000F 0x000000000000000F = 0x000000000000004B ++s4addw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000003B ++s4addw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000003A ++s4addw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000039 ++s4addw 0x000000000000000F 0x000000000000007F = 0x00000000000000BB ++s4addw 0x000000000000000F 0x0000000000000080 = 0x00000000000000BC ++s4addw 0x000000000000000F 0x0000000000007FFF = 0x000000000000803B ++s4addw 0x000000000000000F 0x0000000000008000 = 0x000000000000803C ++s4addw 0x000000000000000F 0x000000007FFFFFFF = 0xFFFFFFFF8000003B ++s4addw 0x000000000000000F 0x0000000080000000 = 0xFFFFFFFF8000003C ++s4addw 0x000000000000000F 0x8000000000000000 = 0x000000000000003C ++s4addw 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF8000003C ++s4addw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF803C ++s4addw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFBC ++s4addw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000003B ++s4addw 0x000000000000000F 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDF2C ++s4addw 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000007856344E ++s4addw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4addw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++s4addw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s4addw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++s4addw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000B ++s4addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s4addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++s4addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF9 ++s4addw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007B ++s4addw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007C ++s4addw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFB ++s4addw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FFC ++s4addw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFB ++s4addw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFC ++s4addw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFC ++s4addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFC ++s4addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7C ++s4addw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s4addw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEEC ++s4addw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000007856340E ++s4addw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s4addw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFF9 ++s4addw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++s4addw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFB ++s4addw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000007 ++s4addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s4addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF6 ++s4addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF5 ++s4addw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000077 ++s4addw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000078 ++s4addw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FF7 ++s4addw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000007FF8 ++s4addw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFF7 ++s4addw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000007FFFFFF8 ++s4addw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s4addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000007FFFFFF8 ++s4addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FF8 ++s4addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF78 ++s4addw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s4addw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEE8 ++s4addw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000007856340A ++s4addw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFF4 ++s4addw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFF5 ++s4addw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFF6 ++s4addw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFF7 ++s4addw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000003 ++s4addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF3 ++s4addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF2 ++s4addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF1 ++s4addw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000073 ++s4addw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000074 ++s4addw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FF3 ++s4addw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000007FF4 ++s4addw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFF3 ++s4addw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000007FFFFFF4 ++s4addw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFF4 ++s4addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000007FFFFFF4 ++s4addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FF4 ++s4addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF74 ++s4addw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF3 ++s4addw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEE4 ++s4addw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000078563406 ++s4addw 0x000000000000007F 0x0000000000000000 = 0x00000000000001FC ++s4addw 0x000000000000007F 0x0000000000000001 = 0x00000000000001FD ++s4addw 0x000000000000007F 0x0000000000000002 = 0x00000000000001FE ++s4addw 0x000000000000007F 0x0000000000000003 = 0x00000000000001FF ++s4addw 0x000000000000007F 0x000000000000000F = 0x000000000000020B ++s4addw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000000001FB ++s4addw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000000001FA ++s4addw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00000000000001F9 ++s4addw 0x000000000000007F 0x000000000000007F = 0x000000000000027B ++s4addw 0x000000000000007F 0x0000000000000080 = 0x000000000000027C ++s4addw 0x000000000000007F 0x0000000000007FFF = 0x00000000000081FB ++s4addw 0x000000000000007F 0x0000000000008000 = 0x00000000000081FC ++s4addw 0x000000000000007F 0x000000007FFFFFFF = 0xFFFFFFFF800001FB ++s4addw 0x000000000000007F 0x0000000080000000 = 0xFFFFFFFF800001FC ++s4addw 0x000000000000007F 0x8000000000000000 = 0x00000000000001FC ++s4addw 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF800001FC ++s4addw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF81FC ++s4addw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000017C ++s4addw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x00000000000001FB ++s4addw 0x000000000000007F 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCE0EC ++s4addw 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000007856360E ++s4addw 0x0000000000000080 0x0000000000000000 = 0x0000000000000200 ++s4addw 0x0000000000000080 0x0000000000000001 = 0x0000000000000201 ++s4addw 0x0000000000000080 0x0000000000000002 = 0x0000000000000202 ++s4addw 0x0000000000000080 0x0000000000000003 = 0x0000000000000203 ++s4addw 0x0000000000000080 0x000000000000000F = 0x000000000000020F ++s4addw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x00000000000001FF ++s4addw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x00000000000001FE ++s4addw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x00000000000001FD ++s4addw 0x0000000000000080 0x000000000000007F = 0x000000000000027F ++s4addw 0x0000000000000080 0x0000000000000080 = 0x0000000000000280 ++s4addw 0x0000000000000080 0x0000000000007FFF = 0x00000000000081FF ++s4addw 0x0000000000000080 0x0000000000008000 = 0x0000000000008200 ++s4addw 0x0000000000000080 0x000000007FFFFFFF = 0xFFFFFFFF800001FF ++s4addw 0x0000000000000080 0x0000000080000000 = 0xFFFFFFFF80000200 ++s4addw 0x0000000000000080 0x8000000000000000 = 0x0000000000000200 ++s4addw 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000200 ++s4addw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8200 ++s4addw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000180 ++s4addw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x00000000000001FF ++s4addw 0x0000000000000080 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCE0F0 ++s4addw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000078563612 ++s4addw 0x0000000000007FFF 0x0000000000000000 = 0x000000000001FFFC ++s4addw 0x0000000000007FFF 0x0000000000000001 = 0x000000000001FFFD ++s4addw 0x0000000000007FFF 0x0000000000000002 = 0x000000000001FFFE ++s4addw 0x0000000000007FFF 0x0000000000000003 = 0x000000000001FFFF ++s4addw 0x0000000000007FFF 0x000000000000000F = 0x000000000002000B ++s4addw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000001FFFB ++s4addw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000001FFFA ++s4addw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000001FFF9 ++s4addw 0x0000000000007FFF 0x000000000000007F = 0x000000000002007B ++s4addw 0x0000000000007FFF 0x0000000000000080 = 0x000000000002007C ++s4addw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000027FFB ++s4addw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000027FFC ++s4addw 0x0000000000007FFF 0x000000007FFFFFFF = 0xFFFFFFFF8001FFFB ++s4addw 0x0000000000007FFF 0x0000000080000000 = 0xFFFFFFFF8001FFFC ++s4addw 0x0000000000007FFF 0x8000000000000000 = 0x000000000001FFFC ++s4addw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF8001FFFC ++s4addw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000017FFC ++s4addw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000001FF7C ++s4addw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000001FFFB ++s4addw 0x0000000000007FFF 0x123456789ABCDEF0 = 0xFFFFFFFF9ABEDEEC ++s4addw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000007858340E ++s4addw 0x0000000000008000 0x0000000000000000 = 0x0000000000020000 ++s4addw 0x0000000000008000 0x0000000000000001 = 0x0000000000020001 ++s4addw 0x0000000000008000 0x0000000000000002 = 0x0000000000020002 ++s4addw 0x0000000000008000 0x0000000000000003 = 0x0000000000020003 ++s4addw 0x0000000000008000 0x000000000000000F = 0x000000000002000F ++s4addw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000000001FFFF ++s4addw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000000001FFFE ++s4addw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000000001FFFD ++s4addw 0x0000000000008000 0x000000000000007F = 0x000000000002007F ++s4addw 0x0000000000008000 0x0000000000000080 = 0x0000000000020080 ++s4addw 0x0000000000008000 0x0000000000007FFF = 0x0000000000027FFF ++s4addw 0x0000000000008000 0x0000000000008000 = 0x0000000000028000 ++s4addw 0x0000000000008000 0x000000007FFFFFFF = 0xFFFFFFFF8001FFFF ++s4addw 0x0000000000008000 0x0000000080000000 = 0xFFFFFFFF80020000 ++s4addw 0x0000000000008000 0x8000000000000000 = 0x0000000000020000 ++s4addw 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80020000 ++s4addw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000018000 ++s4addw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000001FF80 ++s4addw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x000000000001FFFF ++s4addw 0x0000000000008000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABEDEF0 ++s4addw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000078583412 ++s4addw 0x000000007FFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4addw 0x000000007FFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++s4addw 0x000000007FFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s4addw 0x000000007FFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++s4addw 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000B ++s4addw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s4addw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++s4addw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF9 ++s4addw 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007B ++s4addw 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000007C ++s4addw 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFB ++s4addw 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000007FFC ++s4addw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFB ++s4addw 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFC ++s4addw 0x000000007FFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4addw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFC ++s4addw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFC ++s4addw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7C ++s4addw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s4addw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEEC ++s4addw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007856340E ++s4addw 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++s4addw 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++s4addw 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++s4addw 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++s4addw 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++s4addw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s4addw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++s4addw 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++s4addw 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++s4addw 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++s4addw 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++s4addw 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++s4addw 0x0000000080000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s4addw 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++s4addw 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s4addw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++s4addw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++s4addw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addw 0x0000000080000000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++s4addw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000078563412 ++s4addw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++s4addw 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++s4addw 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++s4addw 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++s4addw 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++s4addw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s4addw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++s4addw 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++s4addw 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++s4addw 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++s4addw 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++s4addw 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++s4addw 0x8000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s4addw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++s4addw 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s4addw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++s4addw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++s4addw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addw 0x8000000000000000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++s4addw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000078563412 ++s4addw 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++s4addw 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++s4addw 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++s4addw 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++s4addw 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++s4addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s4addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++s4addw 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++s4addw 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++s4addw 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++s4addw 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++s4addw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++s4addw 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s4addw 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++s4addw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s4addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++s4addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++s4addw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++s4addw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000078563412 ++s4addw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFE0000 ++s4addw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFE0001 ++s4addw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFE0002 ++s4addw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFE0003 ++s4addw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFE000F ++s4addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFDFFFF ++s4addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFDFFFE ++s4addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFDFFFD ++s4addw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFE007F ++s4addw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFE0080 ++s4addw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFE7FFF ++s4addw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFE8000 ++s4addw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFDFFFF ++s4addw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000007FFE0000 ++s4addw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFE0000 ++s4addw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000007FFE0000 ++s4addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFD8000 ++s4addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFDFF80 ++s4addw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFDFFFF ++s4addw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABADEF0 ++s4addw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000078543412 ++s4addw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFE00 ++s4addw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFE01 ++s4addw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFE02 ++s4addw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFE03 ++s4addw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFE0F ++s4addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFDFF ++s4addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFDFE ++s4addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFDFD ++s4addw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFE7F ++s4addw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFE80 ++s4addw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007DFF ++s4addw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000007E00 ++s4addw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFDFF ++s4addw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000007FFFFE00 ++s4addw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFE00 ++s4addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000007FFFFE00 ++s4addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7E00 ++s4addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFD80 ++s4addw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFDFF ++s4addw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDCF0 ++s4addw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000078563212 ++s4addw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4addw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++s4addw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s4addw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++s4addw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000B ++s4addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s4addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++s4addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF9 ++s4addw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007B ++s4addw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007C ++s4addw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFB ++s4addw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FFC ++s4addw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFB ++s4addw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFC ++s4addw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFC ++s4addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFC ++s4addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7C ++s4addw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s4addw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEEC ++s4addw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000007856340E ++s4addw 0x123456789ABCDEF0 0x0000000000000000 = 0x000000006AF37BC0 ++s4addw 0x123456789ABCDEF0 0x0000000000000001 = 0x000000006AF37BC1 ++s4addw 0x123456789ABCDEF0 0x0000000000000002 = 0x000000006AF37BC2 ++s4addw 0x123456789ABCDEF0 0x0000000000000003 = 0x000000006AF37BC3 ++s4addw 0x123456789ABCDEF0 0x000000000000000F = 0x000000006AF37BCF ++s4addw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000006AF37BBF ++s4addw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000000006AF37BBE ++s4addw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000006AF37BBD ++s4addw 0x123456789ABCDEF0 0x000000000000007F = 0x000000006AF37C3F ++s4addw 0x123456789ABCDEF0 0x0000000000000080 = 0x000000006AF37C40 ++s4addw 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000006AF3FBBF ++s4addw 0x123456789ABCDEF0 0x0000000000008000 = 0x000000006AF3FBC0 ++s4addw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0xFFFFFFFFEAF37BBF ++s4addw 0x123456789ABCDEF0 0x0000000080000000 = 0xFFFFFFFFEAF37BC0 ++s4addw 0x123456789ABCDEF0 0x8000000000000000 = 0x000000006AF37BC0 ++s4addw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFFEAF37BC0 ++s4addw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000006AF2FBC0 ++s4addw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000006AF37B40 ++s4addw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000006AF37BBF ++s4addw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000005B05AB0 ++s4addw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xFFFFFFFFE349AFD2 ++s4addw 0xF0DEBC9A78563412 0x0000000000000000 = 0xFFFFFFFFE158D048 ++s4addw 0xF0DEBC9A78563412 0x0000000000000001 = 0xFFFFFFFFE158D049 ++s4addw 0xF0DEBC9A78563412 0x0000000000000002 = 0xFFFFFFFFE158D04A ++s4addw 0xF0DEBC9A78563412 0x0000000000000003 = 0xFFFFFFFFE158D04B ++s4addw 0xF0DEBC9A78563412 0x000000000000000F = 0xFFFFFFFFE158D057 ++s4addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFE158D047 ++s4addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFE158D046 ++s4addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFE158D045 ++s4addw 0xF0DEBC9A78563412 0x000000000000007F = 0xFFFFFFFFE158D0C7 ++s4addw 0xF0DEBC9A78563412 0x0000000000000080 = 0xFFFFFFFFE158D0C8 ++s4addw 0xF0DEBC9A78563412 0x0000000000007FFF = 0xFFFFFFFFE1595047 ++s4addw 0xF0DEBC9A78563412 0x0000000000008000 = 0xFFFFFFFFE1595048 ++s4addw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000006158D047 ++s4addw 0xF0DEBC9A78563412 0x0000000080000000 = 0x000000006158D048 ++s4addw 0xF0DEBC9A78563412 0x8000000000000000 = 0xFFFFFFFFE158D048 ++s4addw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000006158D048 ++s4addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFE1585048 ++s4addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFE158CFC8 ++s4addw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFE158D047 ++s4addw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000007C15AF38 ++s4addw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000059AF045A ++=== Running test on s4subw === ++s4subw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++s4subw 0x0000000000000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++s4subw 0x0000000000000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s4subw 0x0000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++s4subw 0x0000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++s4subw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++s4subw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++s4subw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++s4subw 0x0000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++s4subw 0x0000000000000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++s4subw 0x0000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++s4subw 0x0000000000000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++s4subw 0x0000000000000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++s4subw 0x0000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s4subw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++s4subw 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s4subw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++s4subw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++s4subw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++s4subw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000065432110 ++s4subw 0x0000000000000000 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEE ++s4subw 0x0000000000000001 0x0000000000000000 = 0x0000000000000004 ++s4subw 0x0000000000000001 0x0000000000000001 = 0x0000000000000003 ++s4subw 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++s4subw 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++s4subw 0x0000000000000001 0x000000000000000F = 0xFFFFFFFFFFFFFFF5 ++s4subw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000005 ++s4subw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000006 ++s4subw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++s4subw 0x0000000000000001 0x000000000000007F = 0xFFFFFFFFFFFFFF85 ++s4subw 0x0000000000000001 0x0000000000000080 = 0xFFFFFFFFFFFFFF84 ++s4subw 0x0000000000000001 0x0000000000007FFF = 0xFFFFFFFFFFFF8005 ++s4subw 0x0000000000000001 0x0000000000008000 = 0xFFFFFFFFFFFF8004 ++s4subw 0x0000000000000001 0x000000007FFFFFFF = 0xFFFFFFFF80000005 ++s4subw 0x0000000000000001 0x0000000080000000 = 0xFFFFFFFF80000004 ++s4subw 0x0000000000000001 0x8000000000000000 = 0x0000000000000004 ++s4subw 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000004 ++s4subw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000008004 ++s4subw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000084 ++s4subw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000005 ++s4subw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000065432114 ++s4subw 0x0000000000000001 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBF2 ++s4subw 0x0000000000000002 0x0000000000000000 = 0x0000000000000008 ++s4subw 0x0000000000000002 0x0000000000000001 = 0x0000000000000007 ++s4subw 0x0000000000000002 0x0000000000000002 = 0x0000000000000006 ++s4subw 0x0000000000000002 0x0000000000000003 = 0x0000000000000005 ++s4subw 0x0000000000000002 0x000000000000000F = 0xFFFFFFFFFFFFFFF9 ++s4subw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000009 ++s4subw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x000000000000000A ++s4subw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x000000000000000B ++s4subw 0x0000000000000002 0x000000000000007F = 0xFFFFFFFFFFFFFF89 ++s4subw 0x0000000000000002 0x0000000000000080 = 0xFFFFFFFFFFFFFF88 ++s4subw 0x0000000000000002 0x0000000000007FFF = 0xFFFFFFFFFFFF8009 ++s4subw 0x0000000000000002 0x0000000000008000 = 0xFFFFFFFFFFFF8008 ++s4subw 0x0000000000000002 0x000000007FFFFFFF = 0xFFFFFFFF80000009 ++s4subw 0x0000000000000002 0x0000000080000000 = 0xFFFFFFFF80000008 ++s4subw 0x0000000000000002 0x8000000000000000 = 0x0000000000000008 ++s4subw 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000008 ++s4subw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000008008 ++s4subw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000088 ++s4subw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000009 ++s4subw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000065432118 ++s4subw 0x0000000000000002 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBF6 ++s4subw 0x0000000000000003 0x0000000000000000 = 0x000000000000000C ++s4subw 0x0000000000000003 0x0000000000000001 = 0x000000000000000B ++s4subw 0x0000000000000003 0x0000000000000002 = 0x000000000000000A ++s4subw 0x0000000000000003 0x0000000000000003 = 0x0000000000000009 ++s4subw 0x0000000000000003 0x000000000000000F = 0xFFFFFFFFFFFFFFFD ++s4subw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x000000000000000D ++s4subw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000000000000E ++s4subw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++s4subw 0x0000000000000003 0x000000000000007F = 0xFFFFFFFFFFFFFF8D ++s4subw 0x0000000000000003 0x0000000000000080 = 0xFFFFFFFFFFFFFF8C ++s4subw 0x0000000000000003 0x0000000000007FFF = 0xFFFFFFFFFFFF800D ++s4subw 0x0000000000000003 0x0000000000008000 = 0xFFFFFFFFFFFF800C ++s4subw 0x0000000000000003 0x000000007FFFFFFF = 0xFFFFFFFF8000000D ++s4subw 0x0000000000000003 0x0000000080000000 = 0xFFFFFFFF8000000C ++s4subw 0x0000000000000003 0x8000000000000000 = 0x000000000000000C ++s4subw 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF8000000C ++s4subw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x000000000000800C ++s4subw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x000000000000008C ++s4subw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x000000000000000D ++s4subw 0x0000000000000003 0x123456789ABCDEF0 = 0x000000006543211C ++s4subw 0x0000000000000003 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBFA ++s4subw 0x000000000000000F 0x0000000000000000 = 0x000000000000003C ++s4subw 0x000000000000000F 0x0000000000000001 = 0x000000000000003B ++s4subw 0x000000000000000F 0x0000000000000002 = 0x000000000000003A ++s4subw 0x000000000000000F 0x0000000000000003 = 0x0000000000000039 ++s4subw 0x000000000000000F 0x000000000000000F = 0x000000000000002D ++s4subw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000003D ++s4subw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000003E ++s4subw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000003F ++s4subw 0x000000000000000F 0x000000000000007F = 0xFFFFFFFFFFFFFFBD ++s4subw 0x000000000000000F 0x0000000000000080 = 0xFFFFFFFFFFFFFFBC ++s4subw 0x000000000000000F 0x0000000000007FFF = 0xFFFFFFFFFFFF803D ++s4subw 0x000000000000000F 0x0000000000008000 = 0xFFFFFFFFFFFF803C ++s4subw 0x000000000000000F 0x000000007FFFFFFF = 0xFFFFFFFF8000003D ++s4subw 0x000000000000000F 0x0000000080000000 = 0xFFFFFFFF8000003C ++s4subw 0x000000000000000F 0x8000000000000000 = 0x000000000000003C ++s4subw 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF8000003C ++s4subw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000803C ++s4subw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x00000000000000BC ++s4subw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000003D ++s4subw 0x000000000000000F 0x123456789ABCDEF0 = 0x000000006543214C ++s4subw 0x000000000000000F 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CC2A ++s4subw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4subw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFB ++s4subw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++s4subw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF9 ++s4subw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFED ++s4subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++s4subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s4subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++s4subw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF7D ++s4subw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF7C ++s4subw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF7FFD ++s4subw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FFC ++s4subw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFD ++s4subw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFC ++s4subw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFC ++s4subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFC ++s4subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007C ++s4subw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++s4subw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000006543210C ++s4subw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEA ++s4subw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s4subw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFF7 ++s4subw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFF6 ++s4subw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFF5 ++s4subw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFE9 ++s4subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s4subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++s4subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++s4subw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFF79 ++s4subw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFF78 ++s4subw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFF7FF9 ++s4subw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFF7FF8 ++s4subw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFF9 ++s4subw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000007FFFFFF8 ++s4subw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s4subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000007FFFFFF8 ++s4subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000007FF8 ++s4subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000078 ++s4subw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s4subw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000065432108 ++s4subw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBE6 ++s4subw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFF4 ++s4subw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFF3 ++s4subw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFF2 ++s4subw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFF1 ++s4subw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFE5 ++s4subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF5 ++s4subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF6 ++s4subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF7 ++s4subw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFF75 ++s4subw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFF74 ++s4subw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFF7FF5 ++s4subw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFF7FF4 ++s4subw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFF5 ++s4subw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000007FFFFFF4 ++s4subw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFF4 ++s4subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000007FFFFFF4 ++s4subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000007FF4 ++s4subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000074 ++s4subw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF5 ++s4subw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000065432104 ++s4subw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBE2 ++s4subw 0x000000000000007F 0x0000000000000000 = 0x00000000000001FC ++s4subw 0x000000000000007F 0x0000000000000001 = 0x00000000000001FB ++s4subw 0x000000000000007F 0x0000000000000002 = 0x00000000000001FA ++s4subw 0x000000000000007F 0x0000000000000003 = 0x00000000000001F9 ++s4subw 0x000000000000007F 0x000000000000000F = 0x00000000000001ED ++s4subw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000000001FD ++s4subw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000000001FE ++s4subw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00000000000001FF ++s4subw 0x000000000000007F 0x000000000000007F = 0x000000000000017D ++s4subw 0x000000000000007F 0x0000000000000080 = 0x000000000000017C ++s4subw 0x000000000000007F 0x0000000000007FFF = 0xFFFFFFFFFFFF81FD ++s4subw 0x000000000000007F 0x0000000000008000 = 0xFFFFFFFFFFFF81FC ++s4subw 0x000000000000007F 0x000000007FFFFFFF = 0xFFFFFFFF800001FD ++s4subw 0x000000000000007F 0x0000000080000000 = 0xFFFFFFFF800001FC ++s4subw 0x000000000000007F 0x8000000000000000 = 0x00000000000001FC ++s4subw 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF800001FC ++s4subw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x00000000000081FC ++s4subw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000027C ++s4subw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x00000000000001FD ++s4subw 0x000000000000007F 0x123456789ABCDEF0 = 0x000000006543230C ++s4subw 0x000000000000007F 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CDEA ++s4subw 0x0000000000000080 0x0000000000000000 = 0x0000000000000200 ++s4subw 0x0000000000000080 0x0000000000000001 = 0x00000000000001FF ++s4subw 0x0000000000000080 0x0000000000000002 = 0x00000000000001FE ++s4subw 0x0000000000000080 0x0000000000000003 = 0x00000000000001FD ++s4subw 0x0000000000000080 0x000000000000000F = 0x00000000000001F1 ++s4subw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000201 ++s4subw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000202 ++s4subw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000203 ++s4subw 0x0000000000000080 0x000000000000007F = 0x0000000000000181 ++s4subw 0x0000000000000080 0x0000000000000080 = 0x0000000000000180 ++s4subw 0x0000000000000080 0x0000000000007FFF = 0xFFFFFFFFFFFF8201 ++s4subw 0x0000000000000080 0x0000000000008000 = 0xFFFFFFFFFFFF8200 ++s4subw 0x0000000000000080 0x000000007FFFFFFF = 0xFFFFFFFF80000201 ++s4subw 0x0000000000000080 0x0000000080000000 = 0xFFFFFFFF80000200 ++s4subw 0x0000000000000080 0x8000000000000000 = 0x0000000000000200 ++s4subw 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000200 ++s4subw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000008200 ++s4subw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000280 ++s4subw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000201 ++s4subw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000065432310 ++s4subw 0x0000000000000080 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CDEE ++s4subw 0x0000000000007FFF 0x0000000000000000 = 0x000000000001FFFC ++s4subw 0x0000000000007FFF 0x0000000000000001 = 0x000000000001FFFB ++s4subw 0x0000000000007FFF 0x0000000000000002 = 0x000000000001FFFA ++s4subw 0x0000000000007FFF 0x0000000000000003 = 0x000000000001FFF9 ++s4subw 0x0000000000007FFF 0x000000000000000F = 0x000000000001FFED ++s4subw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000001FFFD ++s4subw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000001FFFE ++s4subw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000001FFFF ++s4subw 0x0000000000007FFF 0x000000000000007F = 0x000000000001FF7D ++s4subw 0x0000000000007FFF 0x0000000000000080 = 0x000000000001FF7C ++s4subw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000017FFD ++s4subw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000017FFC ++s4subw 0x0000000000007FFF 0x000000007FFFFFFF = 0xFFFFFFFF8001FFFD ++s4subw 0x0000000000007FFF 0x0000000080000000 = 0xFFFFFFFF8001FFFC ++s4subw 0x0000000000007FFF 0x8000000000000000 = 0x000000000001FFFC ++s4subw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF8001FFFC ++s4subw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000027FFC ++s4subw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000002007C ++s4subw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000001FFFD ++s4subw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000006545210C ++s4subw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xFFFFFFFF87ABCBEA ++s4subw 0x0000000000008000 0x0000000000000000 = 0x0000000000020000 ++s4subw 0x0000000000008000 0x0000000000000001 = 0x000000000001FFFF ++s4subw 0x0000000000008000 0x0000000000000002 = 0x000000000001FFFE ++s4subw 0x0000000000008000 0x0000000000000003 = 0x000000000001FFFD ++s4subw 0x0000000000008000 0x000000000000000F = 0x000000000001FFF1 ++s4subw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000020001 ++s4subw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000020002 ++s4subw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000020003 ++s4subw 0x0000000000008000 0x000000000000007F = 0x000000000001FF81 ++s4subw 0x0000000000008000 0x0000000000000080 = 0x000000000001FF80 ++s4subw 0x0000000000008000 0x0000000000007FFF = 0x0000000000018001 ++s4subw 0x0000000000008000 0x0000000000008000 = 0x0000000000018000 ++s4subw 0x0000000000008000 0x000000007FFFFFFF = 0xFFFFFFFF80020001 ++s4subw 0x0000000000008000 0x0000000080000000 = 0xFFFFFFFF80020000 ++s4subw 0x0000000000008000 0x8000000000000000 = 0x0000000000020000 ++s4subw 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80020000 ++s4subw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000028000 ++s4subw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000020080 ++s4subw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000020001 ++s4subw 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000065452110 ++s4subw 0x0000000000008000 0xF0DEBC9A78563412 = 0xFFFFFFFF87ABCBEE ++s4subw 0x000000007FFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4subw 0x000000007FFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFB ++s4subw 0x000000007FFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++s4subw 0x000000007FFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF9 ++s4subw 0x000000007FFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFED ++s4subw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++s4subw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s4subw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++s4subw 0x000000007FFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF7D ++s4subw 0x000000007FFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF7C ++s4subw 0x000000007FFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF7FFD ++s4subw 0x000000007FFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FFC ++s4subw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFD ++s4subw 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFC ++s4subw 0x000000007FFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4subw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFC ++s4subw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFC ++s4subw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007C ++s4subw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++s4subw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000006543210C ++s4subw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEA ++s4subw 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++s4subw 0x0000000080000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++s4subw 0x0000000080000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s4subw 0x0000000080000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++s4subw 0x0000000080000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++s4subw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++s4subw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++s4subw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++s4subw 0x0000000080000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++s4subw 0x0000000080000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++s4subw 0x0000000080000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++s4subw 0x0000000080000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++s4subw 0x0000000080000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++s4subw 0x0000000080000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s4subw 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++s4subw 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s4subw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++s4subw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++s4subw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++s4subw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000065432110 ++s4subw 0x0000000080000000 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEE ++s4subw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++s4subw 0x8000000000000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++s4subw 0x8000000000000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s4subw 0x8000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++s4subw 0x8000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++s4subw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++s4subw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++s4subw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++s4subw 0x8000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++s4subw 0x8000000000000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++s4subw 0x8000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++s4subw 0x8000000000000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++s4subw 0x8000000000000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++s4subw 0x8000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s4subw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++s4subw 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s4subw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++s4subw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++s4subw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++s4subw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000065432110 ++s4subw 0x8000000000000000 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEE ++s4subw 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++s4subw 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++s4subw 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s4subw 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++s4subw 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++s4subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++s4subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++s4subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++s4subw 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++s4subw 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++s4subw 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++s4subw 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++s4subw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++s4subw 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s4subw 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++s4subw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s4subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++s4subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++s4subw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++s4subw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000065432110 ++s4subw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEE ++s4subw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFE0000 ++s4subw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFDFFFF ++s4subw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFDFFFE ++s4subw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFDFFFD ++s4subw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFDFFF1 ++s4subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFE0001 ++s4subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFE0002 ++s4subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFE0003 ++s4subw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFDFF81 ++s4subw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFDFF80 ++s4subw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFD8001 ++s4subw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFD8000 ++s4subw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFE0001 ++s4subw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000007FFE0000 ++s4subw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFE0000 ++s4subw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000007FFE0000 ++s4subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE8000 ++s4subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFE0080 ++s4subw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFE0001 ++s4subw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000065412110 ++s4subw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFF87A7CBEE ++s4subw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFE00 ++s4subw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFDFF ++s4subw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFDFE ++s4subw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFDFD ++s4subw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFDF1 ++s4subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFE01 ++s4subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFE02 ++s4subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFE03 ++s4subw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFD81 ++s4subw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFD80 ++s4subw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFF7E01 ++s4subw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFF7E00 ++s4subw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFE01 ++s4subw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000007FFFFE00 ++s4subw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFE00 ++s4subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000007FFFFE00 ++s4subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000007E00 ++s4subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE80 ++s4subw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFE01 ++s4subw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000065431F10 ++s4subw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9C9EE ++s4subw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4subw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFB ++s4subw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++s4subw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF9 ++s4subw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFED ++s4subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++s4subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s4subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++s4subw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF7D ++s4subw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF7C ++s4subw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF7FFD ++s4subw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FFC ++s4subw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFD ++s4subw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFC ++s4subw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFC ++s4subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFC ++s4subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007C ++s4subw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++s4subw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000006543210C ++s4subw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEA ++s4subw 0x123456789ABCDEF0 0x0000000000000000 = 0x000000006AF37BC0 ++s4subw 0x123456789ABCDEF0 0x0000000000000001 = 0x000000006AF37BBF ++s4subw 0x123456789ABCDEF0 0x0000000000000002 = 0x000000006AF37BBE ++s4subw 0x123456789ABCDEF0 0x0000000000000003 = 0x000000006AF37BBD ++s4subw 0x123456789ABCDEF0 0x000000000000000F = 0x000000006AF37BB1 ++s4subw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000006AF37BC1 ++s4subw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000000006AF37BC2 ++s4subw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000006AF37BC3 ++s4subw 0x123456789ABCDEF0 0x000000000000007F = 0x000000006AF37B41 ++s4subw 0x123456789ABCDEF0 0x0000000000000080 = 0x000000006AF37B40 ++s4subw 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000006AF2FBC1 ++s4subw 0x123456789ABCDEF0 0x0000000000008000 = 0x000000006AF2FBC0 ++s4subw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0xFFFFFFFFEAF37BC1 ++s4subw 0x123456789ABCDEF0 0x0000000080000000 = 0xFFFFFFFFEAF37BC0 ++s4subw 0x123456789ABCDEF0 0x8000000000000000 = 0x000000006AF37BC0 ++s4subw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFFEAF37BC0 ++s4subw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000006AF3FBC0 ++s4subw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000006AF37C40 ++s4subw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000006AF37BC1 ++s4subw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0xFFFFFFFFD0369CD0 ++s4subw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xFFFFFFFFF29D47AE ++s4subw 0xF0DEBC9A78563412 0x0000000000000000 = 0xFFFFFFFFE158D048 ++s4subw 0xF0DEBC9A78563412 0x0000000000000001 = 0xFFFFFFFFE158D047 ++s4subw 0xF0DEBC9A78563412 0x0000000000000002 = 0xFFFFFFFFE158D046 ++s4subw 0xF0DEBC9A78563412 0x0000000000000003 = 0xFFFFFFFFE158D045 ++s4subw 0xF0DEBC9A78563412 0x000000000000000F = 0xFFFFFFFFE158D039 ++s4subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFE158D049 ++s4subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFE158D04A ++s4subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFE158D04B ++s4subw 0xF0DEBC9A78563412 0x000000000000007F = 0xFFFFFFFFE158CFC9 ++s4subw 0xF0DEBC9A78563412 0x0000000000000080 = 0xFFFFFFFFE158CFC8 ++s4subw 0xF0DEBC9A78563412 0x0000000000007FFF = 0xFFFFFFFFE1585049 ++s4subw 0xF0DEBC9A78563412 0x0000000000008000 = 0xFFFFFFFFE1585048 ++s4subw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000006158D049 ++s4subw 0xF0DEBC9A78563412 0x0000000080000000 = 0x000000006158D048 ++s4subw 0xF0DEBC9A78563412 0x8000000000000000 = 0xFFFFFFFFE158D048 ++s4subw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x000000006158D048 ++s4subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFE1595048 ++s4subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFE158D0C8 ++s4subw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFE158D049 ++s4subw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x00000000469BF158 ++s4subw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000069029C36 ++=== Running test on s8addw === ++s8addw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++s8addw 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++s8addw 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++s8addw 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++s8addw 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++s8addw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s8addw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s8addw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++s8addw 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++s8addw 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++s8addw 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++s8addw 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++s8addw 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++s8addw 0x0000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s8addw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++s8addw 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s8addw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++s8addw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++s8addw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s8addw 0x0000000000000000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++s8addw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000078563412 ++s8addw 0x0000000000000001 0x0000000000000000 = 0x0000000000000008 ++s8addw 0x0000000000000001 0x0000000000000001 = 0x0000000000000009 ++s8addw 0x0000000000000001 0x0000000000000002 = 0x000000000000000A ++s8addw 0x0000000000000001 0x0000000000000003 = 0x000000000000000B ++s8addw 0x0000000000000001 0x000000000000000F = 0x0000000000000017 ++s8addw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000007 ++s8addw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000006 ++s8addw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000005 ++s8addw 0x0000000000000001 0x000000000000007F = 0x0000000000000087 ++s8addw 0x0000000000000001 0x0000000000000080 = 0x0000000000000088 ++s8addw 0x0000000000000001 0x0000000000007FFF = 0x0000000000008007 ++s8addw 0x0000000000000001 0x0000000000008000 = 0x0000000000008008 ++s8addw 0x0000000000000001 0x000000007FFFFFFF = 0xFFFFFFFF80000007 ++s8addw 0x0000000000000001 0x0000000080000000 = 0xFFFFFFFF80000008 ++s8addw 0x0000000000000001 0x8000000000000000 = 0x0000000000000008 ++s8addw 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000008 ++s8addw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8008 ++s8addw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF88 ++s8addw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000007 ++s8addw 0x0000000000000001 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF8 ++s8addw 0x0000000000000001 0xF0DEBC9A78563412 = 0x000000007856341A ++s8addw 0x0000000000000002 0x0000000000000000 = 0x0000000000000010 ++s8addw 0x0000000000000002 0x0000000000000001 = 0x0000000000000011 ++s8addw 0x0000000000000002 0x0000000000000002 = 0x0000000000000012 ++s8addw 0x0000000000000002 0x0000000000000003 = 0x0000000000000013 ++s8addw 0x0000000000000002 0x000000000000000F = 0x000000000000001F ++s8addw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++s8addw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x000000000000000E ++s8addw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x000000000000000D ++s8addw 0x0000000000000002 0x000000000000007F = 0x000000000000008F ++s8addw 0x0000000000000002 0x0000000000000080 = 0x0000000000000090 ++s8addw 0x0000000000000002 0x0000000000007FFF = 0x000000000000800F ++s8addw 0x0000000000000002 0x0000000000008000 = 0x0000000000008010 ++s8addw 0x0000000000000002 0x000000007FFFFFFF = 0xFFFFFFFF8000000F ++s8addw 0x0000000000000002 0x0000000080000000 = 0xFFFFFFFF80000010 ++s8addw 0x0000000000000002 0x8000000000000000 = 0x0000000000000010 ++s8addw 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000010 ++s8addw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8010 ++s8addw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF90 ++s8addw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++s8addw 0x0000000000000002 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDF00 ++s8addw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000078563422 ++s8addw 0x0000000000000003 0x0000000000000000 = 0x0000000000000018 ++s8addw 0x0000000000000003 0x0000000000000001 = 0x0000000000000019 ++s8addw 0x0000000000000003 0x0000000000000002 = 0x000000000000001A ++s8addw 0x0000000000000003 0x0000000000000003 = 0x000000000000001B ++s8addw 0x0000000000000003 0x000000000000000F = 0x0000000000000027 ++s8addw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000017 ++s8addw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000016 ++s8addw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000015 ++s8addw 0x0000000000000003 0x000000000000007F = 0x0000000000000097 ++s8addw 0x0000000000000003 0x0000000000000080 = 0x0000000000000098 ++s8addw 0x0000000000000003 0x0000000000007FFF = 0x0000000000008017 ++s8addw 0x0000000000000003 0x0000000000008000 = 0x0000000000008018 ++s8addw 0x0000000000000003 0x000000007FFFFFFF = 0xFFFFFFFF80000017 ++s8addw 0x0000000000000003 0x0000000080000000 = 0xFFFFFFFF80000018 ++s8addw 0x0000000000000003 0x8000000000000000 = 0x0000000000000018 ++s8addw 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000018 ++s8addw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8018 ++s8addw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF98 ++s8addw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000017 ++s8addw 0x0000000000000003 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDF08 ++s8addw 0x0000000000000003 0xF0DEBC9A78563412 = 0x000000007856342A ++s8addw 0x000000000000000F 0x0000000000000000 = 0x0000000000000078 ++s8addw 0x000000000000000F 0x0000000000000001 = 0x0000000000000079 ++s8addw 0x000000000000000F 0x0000000000000002 = 0x000000000000007A ++s8addw 0x000000000000000F 0x0000000000000003 = 0x000000000000007B ++s8addw 0x000000000000000F 0x000000000000000F = 0x0000000000000087 ++s8addw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000077 ++s8addw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000076 ++s8addw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000075 ++s8addw 0x000000000000000F 0x000000000000007F = 0x00000000000000F7 ++s8addw 0x000000000000000F 0x0000000000000080 = 0x00000000000000F8 ++s8addw 0x000000000000000F 0x0000000000007FFF = 0x0000000000008077 ++s8addw 0x000000000000000F 0x0000000000008000 = 0x0000000000008078 ++s8addw 0x000000000000000F 0x000000007FFFFFFF = 0xFFFFFFFF80000077 ++s8addw 0x000000000000000F 0x0000000080000000 = 0xFFFFFFFF80000078 ++s8addw 0x000000000000000F 0x8000000000000000 = 0x0000000000000078 ++s8addw 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000078 ++s8addw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8078 ++s8addw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFF8 ++s8addw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000077 ++s8addw 0x000000000000000F 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDF68 ++s8addw 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000007856348A ++s8addw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8addw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFF9 ++s8addw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++s8addw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFB ++s8addw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000007 ++s8addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s8addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF6 ++s8addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF5 ++s8addw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000077 ++s8addw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000078 ++s8addw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FF7 ++s8addw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FF8 ++s8addw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFF7 ++s8addw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFF8 ++s8addw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFF8 ++s8addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FF8 ++s8addw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF78 ++s8addw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s8addw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEE8 ++s8addw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000007856340A ++s8addw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFF0 ++s8addw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFF1 ++s8addw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFF2 ++s8addw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFF3 ++s8addw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++s8addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFEF ++s8addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFEE ++s8addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFED ++s8addw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000006F ++s8addw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000070 ++s8addw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FEF ++s8addw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000007FF0 ++s8addw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFEF ++s8addw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000007FFFFFF0 ++s8addw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFF0 ++s8addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000007FFFFFF0 ++s8addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FF0 ++s8addw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF70 ++s8addw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFEF ++s8addw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEE0 ++s8addw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000078563402 ++s8addw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFE8 ++s8addw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFE9 ++s8addw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFEA ++s8addw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFEB ++s8addw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFF7 ++s8addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFE7 ++s8addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFE6 ++s8addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE5 ++s8addw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000067 ++s8addw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000068 ++s8addw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FE7 ++s8addw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000007FE8 ++s8addw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFE7 ++s8addw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000007FFFFFE8 ++s8addw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFE8 ++s8addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000007FFFFFE8 ++s8addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FE8 ++s8addw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF68 ++s8addw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFE7 ++s8addw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDED8 ++s8addw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x00000000785633FA ++s8addw 0x000000000000007F 0x0000000000000000 = 0x00000000000003F8 ++s8addw 0x000000000000007F 0x0000000000000001 = 0x00000000000003F9 ++s8addw 0x000000000000007F 0x0000000000000002 = 0x00000000000003FA ++s8addw 0x000000000000007F 0x0000000000000003 = 0x00000000000003FB ++s8addw 0x000000000000007F 0x000000000000000F = 0x0000000000000407 ++s8addw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000000003F7 ++s8addw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000000003F6 ++s8addw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00000000000003F5 ++s8addw 0x000000000000007F 0x000000000000007F = 0x0000000000000477 ++s8addw 0x000000000000007F 0x0000000000000080 = 0x0000000000000478 ++s8addw 0x000000000000007F 0x0000000000007FFF = 0x00000000000083F7 ++s8addw 0x000000000000007F 0x0000000000008000 = 0x00000000000083F8 ++s8addw 0x000000000000007F 0x000000007FFFFFFF = 0xFFFFFFFF800003F7 ++s8addw 0x000000000000007F 0x0000000080000000 = 0xFFFFFFFF800003F8 ++s8addw 0x000000000000007F 0x8000000000000000 = 0x00000000000003F8 ++s8addw 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF800003F8 ++s8addw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF83F8 ++s8addw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000378 ++s8addw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x00000000000003F7 ++s8addw 0x000000000000007F 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCE2E8 ++s8addw 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000007856380A ++s8addw 0x0000000000000080 0x0000000000000000 = 0x0000000000000400 ++s8addw 0x0000000000000080 0x0000000000000001 = 0x0000000000000401 ++s8addw 0x0000000000000080 0x0000000000000002 = 0x0000000000000402 ++s8addw 0x0000000000000080 0x0000000000000003 = 0x0000000000000403 ++s8addw 0x0000000000000080 0x000000000000000F = 0x000000000000040F ++s8addw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x00000000000003FF ++s8addw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x00000000000003FE ++s8addw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x00000000000003FD ++s8addw 0x0000000000000080 0x000000000000007F = 0x000000000000047F ++s8addw 0x0000000000000080 0x0000000000000080 = 0x0000000000000480 ++s8addw 0x0000000000000080 0x0000000000007FFF = 0x00000000000083FF ++s8addw 0x0000000000000080 0x0000000000008000 = 0x0000000000008400 ++s8addw 0x0000000000000080 0x000000007FFFFFFF = 0xFFFFFFFF800003FF ++s8addw 0x0000000000000080 0x0000000080000000 = 0xFFFFFFFF80000400 ++s8addw 0x0000000000000080 0x8000000000000000 = 0x0000000000000400 ++s8addw 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000400 ++s8addw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8400 ++s8addw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000380 ++s8addw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x00000000000003FF ++s8addw 0x0000000000000080 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCE2F0 ++s8addw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000078563812 ++s8addw 0x0000000000007FFF 0x0000000000000000 = 0x000000000003FFF8 ++s8addw 0x0000000000007FFF 0x0000000000000001 = 0x000000000003FFF9 ++s8addw 0x0000000000007FFF 0x0000000000000002 = 0x000000000003FFFA ++s8addw 0x0000000000007FFF 0x0000000000000003 = 0x000000000003FFFB ++s8addw 0x0000000000007FFF 0x000000000000000F = 0x0000000000040007 ++s8addw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000003FFF7 ++s8addw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000003FFF6 ++s8addw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000003FFF5 ++s8addw 0x0000000000007FFF 0x000000000000007F = 0x0000000000040077 ++s8addw 0x0000000000007FFF 0x0000000000000080 = 0x0000000000040078 ++s8addw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000047FF7 ++s8addw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000047FF8 ++s8addw 0x0000000000007FFF 0x000000007FFFFFFF = 0xFFFFFFFF8003FFF7 ++s8addw 0x0000000000007FFF 0x0000000080000000 = 0xFFFFFFFF8003FFF8 ++s8addw 0x0000000000007FFF 0x8000000000000000 = 0x000000000003FFF8 ++s8addw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF8003FFF8 ++s8addw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000037FF8 ++s8addw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000003FF78 ++s8addw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000003FFF7 ++s8addw 0x0000000000007FFF 0x123456789ABCDEF0 = 0xFFFFFFFF9AC0DEE8 ++s8addw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x00000000785A340A ++s8addw 0x0000000000008000 0x0000000000000000 = 0x0000000000040000 ++s8addw 0x0000000000008000 0x0000000000000001 = 0x0000000000040001 ++s8addw 0x0000000000008000 0x0000000000000002 = 0x0000000000040002 ++s8addw 0x0000000000008000 0x0000000000000003 = 0x0000000000040003 ++s8addw 0x0000000000008000 0x000000000000000F = 0x000000000004000F ++s8addw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000000003FFFF ++s8addw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000000003FFFE ++s8addw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000000003FFFD ++s8addw 0x0000000000008000 0x000000000000007F = 0x000000000004007F ++s8addw 0x0000000000008000 0x0000000000000080 = 0x0000000000040080 ++s8addw 0x0000000000008000 0x0000000000007FFF = 0x0000000000047FFF ++s8addw 0x0000000000008000 0x0000000000008000 = 0x0000000000048000 ++s8addw 0x0000000000008000 0x000000007FFFFFFF = 0xFFFFFFFF8003FFFF ++s8addw 0x0000000000008000 0x0000000080000000 = 0xFFFFFFFF80040000 ++s8addw 0x0000000000008000 0x8000000000000000 = 0x0000000000040000 ++s8addw 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80040000 ++s8addw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000038000 ++s8addw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000003FF80 ++s8addw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x000000000003FFFF ++s8addw 0x0000000000008000 0x123456789ABCDEF0 = 0xFFFFFFFF9AC0DEF0 ++s8addw 0x0000000000008000 0xF0DEBC9A78563412 = 0x00000000785A3412 ++s8addw 0x000000007FFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8addw 0x000000007FFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFF9 ++s8addw 0x000000007FFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++s8addw 0x000000007FFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFB ++s8addw 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000007 ++s8addw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s8addw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF6 ++s8addw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF5 ++s8addw 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000077 ++s8addw 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000078 ++s8addw 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FF7 ++s8addw 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000007FF8 ++s8addw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFF7 ++s8addw 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFF8 ++s8addw 0x000000007FFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8addw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFF8 ++s8addw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FF8 ++s8addw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF78 ++s8addw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s8addw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEE8 ++s8addw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007856340A ++s8addw 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++s8addw 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++s8addw 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++s8addw 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++s8addw 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++s8addw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s8addw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s8addw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++s8addw 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++s8addw 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++s8addw 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++s8addw 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++s8addw 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++s8addw 0x0000000080000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s8addw 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++s8addw 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s8addw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++s8addw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++s8addw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s8addw 0x0000000080000000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++s8addw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000078563412 ++s8addw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++s8addw 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++s8addw 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++s8addw 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++s8addw 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++s8addw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s8addw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s8addw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++s8addw 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++s8addw 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++s8addw 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++s8addw 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++s8addw 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++s8addw 0x8000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s8addw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++s8addw 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s8addw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++s8addw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++s8addw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s8addw 0x8000000000000000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++s8addw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000078563412 ++s8addw 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++s8addw 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++s8addw 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++s8addw 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++s8addw 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++s8addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s8addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s8addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++s8addw 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++s8addw 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++s8addw 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++s8addw 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++s8addw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++s8addw 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s8addw 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++s8addw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s8addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++s8addw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++s8addw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s8addw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++s8addw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000078563412 ++s8addw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFC0000 ++s8addw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFC0001 ++s8addw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFC0002 ++s8addw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFC0003 ++s8addw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFC000F ++s8addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFBFFFF ++s8addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFBFFFE ++s8addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFBFFFD ++s8addw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFC007F ++s8addw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFC0080 ++s8addw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFC7FFF ++s8addw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFC8000 ++s8addw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFBFFFF ++s8addw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000007FFC0000 ++s8addw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFC0000 ++s8addw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000007FFC0000 ++s8addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFB8000 ++s8addw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFBFF80 ++s8addw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFBFFFF ++s8addw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFF9AB8DEF0 ++s8addw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000078523412 ++s8addw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFC00 ++s8addw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFC01 ++s8addw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFC02 ++s8addw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFC03 ++s8addw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFC0F ++s8addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFBFF ++s8addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFBFE ++s8addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFBFD ++s8addw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFC7F ++s8addw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFC80 ++s8addw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007BFF ++s8addw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000007C00 ++s8addw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFBFF ++s8addw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000007FFFFC00 ++s8addw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFC00 ++s8addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000007FFFFC00 ++s8addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7C00 ++s8addw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFB80 ++s8addw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFBFF ++s8addw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDAF0 ++s8addw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000078563012 ++s8addw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8addw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFF9 ++s8addw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++s8addw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFB ++s8addw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000007 ++s8addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s8addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF6 ++s8addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF5 ++s8addw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000077 ++s8addw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000078 ++s8addw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FF7 ++s8addw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FF8 ++s8addw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFF7 ++s8addw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFF8 ++s8addw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFF8 ++s8addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FF8 ++s8addw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF78 ++s8addw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s8addw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEE8 ++s8addw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000007856340A ++s8addw 0x123456789ABCDEF0 0x0000000000000000 = 0xFFFFFFFFD5E6F780 ++s8addw 0x123456789ABCDEF0 0x0000000000000001 = 0xFFFFFFFFD5E6F781 ++s8addw 0x123456789ABCDEF0 0x0000000000000002 = 0xFFFFFFFFD5E6F782 ++s8addw 0x123456789ABCDEF0 0x0000000000000003 = 0xFFFFFFFFD5E6F783 ++s8addw 0x123456789ABCDEF0 0x000000000000000F = 0xFFFFFFFFD5E6F78F ++s8addw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFD5E6F77F ++s8addw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFD5E6F77E ++s8addw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFD5E6F77D ++s8addw 0x123456789ABCDEF0 0x000000000000007F = 0xFFFFFFFFD5E6F7FF ++s8addw 0x123456789ABCDEF0 0x0000000000000080 = 0xFFFFFFFFD5E6F800 ++s8addw 0x123456789ABCDEF0 0x0000000000007FFF = 0xFFFFFFFFD5E7777F ++s8addw 0x123456789ABCDEF0 0x0000000000008000 = 0xFFFFFFFFD5E77780 ++s8addw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000055E6F77F ++s8addw 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000055E6F780 ++s8addw 0x123456789ABCDEF0 0x8000000000000000 = 0xFFFFFFFFD5E6F780 ++s8addw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000055E6F780 ++s8addw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFD5E67780 ++s8addw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFD5E6F700 ++s8addw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFD5E6F77F ++s8addw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000070A3D670 ++s8addw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000004E3D2B92 ++s8addw 0xF0DEBC9A78563412 0x0000000000000000 = 0xFFFFFFFFC2B1A090 ++s8addw 0xF0DEBC9A78563412 0x0000000000000001 = 0xFFFFFFFFC2B1A091 ++s8addw 0xF0DEBC9A78563412 0x0000000000000002 = 0xFFFFFFFFC2B1A092 ++s8addw 0xF0DEBC9A78563412 0x0000000000000003 = 0xFFFFFFFFC2B1A093 ++s8addw 0xF0DEBC9A78563412 0x000000000000000F = 0xFFFFFFFFC2B1A09F ++s8addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFC2B1A08F ++s8addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC2B1A08E ++s8addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFC2B1A08D ++s8addw 0xF0DEBC9A78563412 0x000000000000007F = 0xFFFFFFFFC2B1A10F ++s8addw 0xF0DEBC9A78563412 0x0000000000000080 = 0xFFFFFFFFC2B1A110 ++s8addw 0xF0DEBC9A78563412 0x0000000000007FFF = 0xFFFFFFFFC2B2208F ++s8addw 0xF0DEBC9A78563412 0x0000000000008000 = 0xFFFFFFFFC2B22090 ++s8addw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000042B1A08F ++s8addw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000042B1A090 ++s8addw 0xF0DEBC9A78563412 0x8000000000000000 = 0xFFFFFFFFC2B1A090 ++s8addw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000042B1A090 ++s8addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFC2B12090 ++s8addw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFC2B1A010 ++s8addw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFC2B1A08F ++s8addw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000005D6E7F80 ++s8addw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x000000003B07D4A2 ++=== Running test on s8subw === ++s8subw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++s8subw 0x0000000000000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++s8subw 0x0000000000000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s8subw 0x0000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++s8subw 0x0000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++s8subw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++s8subw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++s8subw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++s8subw 0x0000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++s8subw 0x0000000000000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++s8subw 0x0000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++s8subw 0x0000000000000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++s8subw 0x0000000000000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++s8subw 0x0000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s8subw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++s8subw 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s8subw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++s8subw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++s8subw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++s8subw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000065432110 ++s8subw 0x0000000000000000 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEE ++s8subw 0x0000000000000001 0x0000000000000000 = 0x0000000000000008 ++s8subw 0x0000000000000001 0x0000000000000001 = 0x0000000000000007 ++s8subw 0x0000000000000001 0x0000000000000002 = 0x0000000000000006 ++s8subw 0x0000000000000001 0x0000000000000003 = 0x0000000000000005 ++s8subw 0x0000000000000001 0x000000000000000F = 0xFFFFFFFFFFFFFFF9 ++s8subw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000009 ++s8subw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x000000000000000A ++s8subw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x000000000000000B ++s8subw 0x0000000000000001 0x000000000000007F = 0xFFFFFFFFFFFFFF89 ++s8subw 0x0000000000000001 0x0000000000000080 = 0xFFFFFFFFFFFFFF88 ++s8subw 0x0000000000000001 0x0000000000007FFF = 0xFFFFFFFFFFFF8009 ++s8subw 0x0000000000000001 0x0000000000008000 = 0xFFFFFFFFFFFF8008 ++s8subw 0x0000000000000001 0x000000007FFFFFFF = 0xFFFFFFFF80000009 ++s8subw 0x0000000000000001 0x0000000080000000 = 0xFFFFFFFF80000008 ++s8subw 0x0000000000000001 0x8000000000000000 = 0x0000000000000008 ++s8subw 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000008 ++s8subw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000008008 ++s8subw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000088 ++s8subw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000009 ++s8subw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000065432118 ++s8subw 0x0000000000000001 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBF6 ++s8subw 0x0000000000000002 0x0000000000000000 = 0x0000000000000010 ++s8subw 0x0000000000000002 0x0000000000000001 = 0x000000000000000F ++s8subw 0x0000000000000002 0x0000000000000002 = 0x000000000000000E ++s8subw 0x0000000000000002 0x0000000000000003 = 0x000000000000000D ++s8subw 0x0000000000000002 0x000000000000000F = 0x0000000000000001 ++s8subw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000011 ++s8subw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000012 ++s8subw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000013 ++s8subw 0x0000000000000002 0x000000000000007F = 0xFFFFFFFFFFFFFF91 ++s8subw 0x0000000000000002 0x0000000000000080 = 0xFFFFFFFFFFFFFF90 ++s8subw 0x0000000000000002 0x0000000000007FFF = 0xFFFFFFFFFFFF8011 ++s8subw 0x0000000000000002 0x0000000000008000 = 0xFFFFFFFFFFFF8010 ++s8subw 0x0000000000000002 0x000000007FFFFFFF = 0xFFFFFFFF80000011 ++s8subw 0x0000000000000002 0x0000000080000000 = 0xFFFFFFFF80000010 ++s8subw 0x0000000000000002 0x8000000000000000 = 0x0000000000000010 ++s8subw 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000010 ++s8subw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000008010 ++s8subw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000090 ++s8subw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000011 ++s8subw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000065432120 ++s8subw 0x0000000000000002 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBFE ++s8subw 0x0000000000000003 0x0000000000000000 = 0x0000000000000018 ++s8subw 0x0000000000000003 0x0000000000000001 = 0x0000000000000017 ++s8subw 0x0000000000000003 0x0000000000000002 = 0x0000000000000016 ++s8subw 0x0000000000000003 0x0000000000000003 = 0x0000000000000015 ++s8subw 0x0000000000000003 0x000000000000000F = 0x0000000000000009 ++s8subw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000019 ++s8subw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000000000001A ++s8subw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000000000001B ++s8subw 0x0000000000000003 0x000000000000007F = 0xFFFFFFFFFFFFFF99 ++s8subw 0x0000000000000003 0x0000000000000080 = 0xFFFFFFFFFFFFFF98 ++s8subw 0x0000000000000003 0x0000000000007FFF = 0xFFFFFFFFFFFF8019 ++s8subw 0x0000000000000003 0x0000000000008000 = 0xFFFFFFFFFFFF8018 ++s8subw 0x0000000000000003 0x000000007FFFFFFF = 0xFFFFFFFF80000019 ++s8subw 0x0000000000000003 0x0000000080000000 = 0xFFFFFFFF80000018 ++s8subw 0x0000000000000003 0x8000000000000000 = 0x0000000000000018 ++s8subw 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000018 ++s8subw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000008018 ++s8subw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000098 ++s8subw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000019 ++s8subw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000065432128 ++s8subw 0x0000000000000003 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CC06 ++s8subw 0x000000000000000F 0x0000000000000000 = 0x0000000000000078 ++s8subw 0x000000000000000F 0x0000000000000001 = 0x0000000000000077 ++s8subw 0x000000000000000F 0x0000000000000002 = 0x0000000000000076 ++s8subw 0x000000000000000F 0x0000000000000003 = 0x0000000000000075 ++s8subw 0x000000000000000F 0x000000000000000F = 0x0000000000000069 ++s8subw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000079 ++s8subw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000007A ++s8subw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000007B ++s8subw 0x000000000000000F 0x000000000000007F = 0xFFFFFFFFFFFFFFF9 ++s8subw 0x000000000000000F 0x0000000000000080 = 0xFFFFFFFFFFFFFFF8 ++s8subw 0x000000000000000F 0x0000000000007FFF = 0xFFFFFFFFFFFF8079 ++s8subw 0x000000000000000F 0x0000000000008000 = 0xFFFFFFFFFFFF8078 ++s8subw 0x000000000000000F 0x000000007FFFFFFF = 0xFFFFFFFF80000079 ++s8subw 0x000000000000000F 0x0000000080000000 = 0xFFFFFFFF80000078 ++s8subw 0x000000000000000F 0x8000000000000000 = 0x0000000000000078 ++s8subw 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000078 ++s8subw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000008078 ++s8subw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x00000000000000F8 ++s8subw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000079 ++s8subw 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000065432188 ++s8subw 0x000000000000000F 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CC66 ++s8subw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8subw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFF7 ++s8subw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFF6 ++s8subw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF5 ++s8subw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFE9 ++s8subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s8subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++s8subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++s8subw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF79 ++s8subw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF78 ++s8subw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF7FF9 ++s8subw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FF8 ++s8subw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFF9 ++s8subw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFF8 ++s8subw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFF8 ++s8subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FF8 ++s8subw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000078 ++s8subw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s8subw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000065432108 ++s8subw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBE6 ++s8subw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFF0 ++s8subw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFEF ++s8subw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFEE ++s8subw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFED ++s8subw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFE1 ++s8subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF1 ++s8subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF2 ++s8subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF3 ++s8subw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFF71 ++s8subw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFF70 ++s8subw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFF7FF1 ++s8subw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFF7FF0 ++s8subw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFF1 ++s8subw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000007FFFFFF0 ++s8subw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFF0 ++s8subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000007FFFFFF0 ++s8subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000007FF0 ++s8subw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000070 ++s8subw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF1 ++s8subw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000065432100 ++s8subw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBDE ++s8subw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFE8 ++s8subw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFE7 ++s8subw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFE6 ++s8subw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFE5 ++s8subw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFD9 ++s8subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFE9 ++s8subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFEA ++s8subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFEB ++s8subw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFF69 ++s8subw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFF68 ++s8subw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFF7FE9 ++s8subw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFF7FE8 ++s8subw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFE9 ++s8subw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000007FFFFFE8 ++s8subw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFE8 ++s8subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000007FFFFFE8 ++s8subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000007FE8 ++s8subw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000068 ++s8subw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFE9 ++s8subw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000654320F8 ++s8subw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBD6 ++s8subw 0x000000000000007F 0x0000000000000000 = 0x00000000000003F8 ++s8subw 0x000000000000007F 0x0000000000000001 = 0x00000000000003F7 ++s8subw 0x000000000000007F 0x0000000000000002 = 0x00000000000003F6 ++s8subw 0x000000000000007F 0x0000000000000003 = 0x00000000000003F5 ++s8subw 0x000000000000007F 0x000000000000000F = 0x00000000000003E9 ++s8subw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000000003F9 ++s8subw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000000003FA ++s8subw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00000000000003FB ++s8subw 0x000000000000007F 0x000000000000007F = 0x0000000000000379 ++s8subw 0x000000000000007F 0x0000000000000080 = 0x0000000000000378 ++s8subw 0x000000000000007F 0x0000000000007FFF = 0xFFFFFFFFFFFF83F9 ++s8subw 0x000000000000007F 0x0000000000008000 = 0xFFFFFFFFFFFF83F8 ++s8subw 0x000000000000007F 0x000000007FFFFFFF = 0xFFFFFFFF800003F9 ++s8subw 0x000000000000007F 0x0000000080000000 = 0xFFFFFFFF800003F8 ++s8subw 0x000000000000007F 0x8000000000000000 = 0x00000000000003F8 ++s8subw 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF800003F8 ++s8subw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x00000000000083F8 ++s8subw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000478 ++s8subw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x00000000000003F9 ++s8subw 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000065432508 ++s8subw 0x000000000000007F 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CFE6 ++s8subw 0x0000000000000080 0x0000000000000000 = 0x0000000000000400 ++s8subw 0x0000000000000080 0x0000000000000001 = 0x00000000000003FF ++s8subw 0x0000000000000080 0x0000000000000002 = 0x00000000000003FE ++s8subw 0x0000000000000080 0x0000000000000003 = 0x00000000000003FD ++s8subw 0x0000000000000080 0x000000000000000F = 0x00000000000003F1 ++s8subw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000401 ++s8subw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000402 ++s8subw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000403 ++s8subw 0x0000000000000080 0x000000000000007F = 0x0000000000000381 ++s8subw 0x0000000000000080 0x0000000000000080 = 0x0000000000000380 ++s8subw 0x0000000000000080 0x0000000000007FFF = 0xFFFFFFFFFFFF8401 ++s8subw 0x0000000000000080 0x0000000000008000 = 0xFFFFFFFFFFFF8400 ++s8subw 0x0000000000000080 0x000000007FFFFFFF = 0xFFFFFFFF80000401 ++s8subw 0x0000000000000080 0x0000000080000000 = 0xFFFFFFFF80000400 ++s8subw 0x0000000000000080 0x8000000000000000 = 0x0000000000000400 ++s8subw 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000400 ++s8subw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000008400 ++s8subw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000480 ++s8subw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000401 ++s8subw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000065432510 ++s8subw 0x0000000000000080 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CFEE ++s8subw 0x0000000000007FFF 0x0000000000000000 = 0x000000000003FFF8 ++s8subw 0x0000000000007FFF 0x0000000000000001 = 0x000000000003FFF7 ++s8subw 0x0000000000007FFF 0x0000000000000002 = 0x000000000003FFF6 ++s8subw 0x0000000000007FFF 0x0000000000000003 = 0x000000000003FFF5 ++s8subw 0x0000000000007FFF 0x000000000000000F = 0x000000000003FFE9 ++s8subw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000003FFF9 ++s8subw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000003FFFA ++s8subw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000003FFFB ++s8subw 0x0000000000007FFF 0x000000000000007F = 0x000000000003FF79 ++s8subw 0x0000000000007FFF 0x0000000000000080 = 0x000000000003FF78 ++s8subw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000037FF9 ++s8subw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000037FF8 ++s8subw 0x0000000000007FFF 0x000000007FFFFFFF = 0xFFFFFFFF8003FFF9 ++s8subw 0x0000000000007FFF 0x0000000080000000 = 0xFFFFFFFF8003FFF8 ++s8subw 0x0000000000007FFF 0x8000000000000000 = 0x000000000003FFF8 ++s8subw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF8003FFF8 ++s8subw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000047FF8 ++s8subw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000040078 ++s8subw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000003FFF9 ++s8subw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000065472108 ++s8subw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xFFFFFFFF87ADCBE6 ++s8subw 0x0000000000008000 0x0000000000000000 = 0x0000000000040000 ++s8subw 0x0000000000008000 0x0000000000000001 = 0x000000000003FFFF ++s8subw 0x0000000000008000 0x0000000000000002 = 0x000000000003FFFE ++s8subw 0x0000000000008000 0x0000000000000003 = 0x000000000003FFFD ++s8subw 0x0000000000008000 0x000000000000000F = 0x000000000003FFF1 ++s8subw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000040001 ++s8subw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000040002 ++s8subw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000040003 ++s8subw 0x0000000000008000 0x000000000000007F = 0x000000000003FF81 ++s8subw 0x0000000000008000 0x0000000000000080 = 0x000000000003FF80 ++s8subw 0x0000000000008000 0x0000000000007FFF = 0x0000000000038001 ++s8subw 0x0000000000008000 0x0000000000008000 = 0x0000000000038000 ++s8subw 0x0000000000008000 0x000000007FFFFFFF = 0xFFFFFFFF80040001 ++s8subw 0x0000000000008000 0x0000000080000000 = 0xFFFFFFFF80040000 ++s8subw 0x0000000000008000 0x8000000000000000 = 0x0000000000040000 ++s8subw 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80040000 ++s8subw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000048000 ++s8subw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000040080 ++s8subw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000040001 ++s8subw 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000065472110 ++s8subw 0x0000000000008000 0xF0DEBC9A78563412 = 0xFFFFFFFF87ADCBEE ++s8subw 0x000000007FFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8subw 0x000000007FFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFF7 ++s8subw 0x000000007FFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFF6 ++s8subw 0x000000007FFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF5 ++s8subw 0x000000007FFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFE9 ++s8subw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s8subw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++s8subw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++s8subw 0x000000007FFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF79 ++s8subw 0x000000007FFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF78 ++s8subw 0x000000007FFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF7FF9 ++s8subw 0x000000007FFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FF8 ++s8subw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFF9 ++s8subw 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFF8 ++s8subw 0x000000007FFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8subw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFF8 ++s8subw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FF8 ++s8subw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000078 ++s8subw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s8subw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000065432108 ++s8subw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBE6 ++s8subw 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++s8subw 0x0000000080000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++s8subw 0x0000000080000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s8subw 0x0000000080000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++s8subw 0x0000000080000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++s8subw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++s8subw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++s8subw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++s8subw 0x0000000080000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++s8subw 0x0000000080000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++s8subw 0x0000000080000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++s8subw 0x0000000080000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++s8subw 0x0000000080000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++s8subw 0x0000000080000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s8subw 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++s8subw 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s8subw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++s8subw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++s8subw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++s8subw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000065432110 ++s8subw 0x0000000080000000 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEE ++s8subw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++s8subw 0x8000000000000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++s8subw 0x8000000000000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s8subw 0x8000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++s8subw 0x8000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++s8subw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++s8subw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++s8subw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++s8subw 0x8000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++s8subw 0x8000000000000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++s8subw 0x8000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++s8subw 0x8000000000000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++s8subw 0x8000000000000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++s8subw 0x8000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s8subw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++s8subw 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s8subw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++s8subw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++s8subw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++s8subw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000065432110 ++s8subw 0x8000000000000000 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEE ++s8subw 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++s8subw 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++s8subw 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s8subw 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++s8subw 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++s8subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++s8subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++s8subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++s8subw 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++s8subw 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++s8subw 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++s8subw 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++s8subw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++s8subw 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s8subw 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++s8subw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s8subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++s8subw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++s8subw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++s8subw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000065432110 ++s8subw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEE ++s8subw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFC0000 ++s8subw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFBFFFF ++s8subw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFBFFFE ++s8subw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFBFFFD ++s8subw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFBFFF1 ++s8subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFC0001 ++s8subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFC0002 ++s8subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFC0003 ++s8subw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFBFF81 ++s8subw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFBFF80 ++s8subw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFB8001 ++s8subw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFB8000 ++s8subw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFC0001 ++s8subw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000007FFC0000 ++s8subw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFC0000 ++s8subw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000007FFC0000 ++s8subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC8000 ++s8subw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFC0080 ++s8subw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFC0001 ++s8subw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000653F2110 ++s8subw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFF87A5CBEE ++s8subw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFC00 ++s8subw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFBFF ++s8subw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFBFE ++s8subw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFBFD ++s8subw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFBF1 ++s8subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFC01 ++s8subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFC02 ++s8subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFC03 ++s8subw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFB81 ++s8subw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFB80 ++s8subw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFF7C01 ++s8subw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFF7C00 ++s8subw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFC01 ++s8subw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000007FFFFC00 ++s8subw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFC00 ++s8subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000007FFFFC00 ++s8subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000007C00 ++s8subw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC80 ++s8subw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFC01 ++s8subw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000065431D10 ++s8subw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9C7EE ++s8subw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8subw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFF7 ++s8subw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFF6 ++s8subw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF5 ++s8subw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFE9 ++s8subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s8subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++s8subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++s8subw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF79 ++s8subw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF78 ++s8subw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF7FF9 ++s8subw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FF8 ++s8subw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFF9 ++s8subw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFF8 ++s8subw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFF8 ++s8subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FF8 ++s8subw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000078 ++s8subw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s8subw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000065432108 ++s8subw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBE6 ++s8subw 0x123456789ABCDEF0 0x0000000000000000 = 0xFFFFFFFFD5E6F780 ++s8subw 0x123456789ABCDEF0 0x0000000000000001 = 0xFFFFFFFFD5E6F77F ++s8subw 0x123456789ABCDEF0 0x0000000000000002 = 0xFFFFFFFFD5E6F77E ++s8subw 0x123456789ABCDEF0 0x0000000000000003 = 0xFFFFFFFFD5E6F77D ++s8subw 0x123456789ABCDEF0 0x000000000000000F = 0xFFFFFFFFD5E6F771 ++s8subw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFD5E6F781 ++s8subw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFD5E6F782 ++s8subw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFD5E6F783 ++s8subw 0x123456789ABCDEF0 0x000000000000007F = 0xFFFFFFFFD5E6F701 ++s8subw 0x123456789ABCDEF0 0x0000000000000080 = 0xFFFFFFFFD5E6F700 ++s8subw 0x123456789ABCDEF0 0x0000000000007FFF = 0xFFFFFFFFD5E67781 ++s8subw 0x123456789ABCDEF0 0x0000000000008000 = 0xFFFFFFFFD5E67780 ++s8subw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000055E6F781 ++s8subw 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000055E6F780 ++s8subw 0x123456789ABCDEF0 0x8000000000000000 = 0xFFFFFFFFD5E6F780 ++s8subw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000055E6F780 ++s8subw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFD5E77780 ++s8subw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFD5E6F800 ++s8subw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFD5E6F781 ++s8subw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000003B2A1890 ++s8subw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000005D90C36E ++s8subw 0xF0DEBC9A78563412 0x0000000000000000 = 0xFFFFFFFFC2B1A090 ++s8subw 0xF0DEBC9A78563412 0x0000000000000001 = 0xFFFFFFFFC2B1A08F ++s8subw 0xF0DEBC9A78563412 0x0000000000000002 = 0xFFFFFFFFC2B1A08E ++s8subw 0xF0DEBC9A78563412 0x0000000000000003 = 0xFFFFFFFFC2B1A08D ++s8subw 0xF0DEBC9A78563412 0x000000000000000F = 0xFFFFFFFFC2B1A081 ++s8subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFC2B1A091 ++s8subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFC2B1A092 ++s8subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFC2B1A093 ++s8subw 0xF0DEBC9A78563412 0x000000000000007F = 0xFFFFFFFFC2B1A011 ++s8subw 0xF0DEBC9A78563412 0x0000000000000080 = 0xFFFFFFFFC2B1A010 ++s8subw 0xF0DEBC9A78563412 0x0000000000007FFF = 0xFFFFFFFFC2B12091 ++s8subw 0xF0DEBC9A78563412 0x0000000000008000 = 0xFFFFFFFFC2B12090 ++s8subw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000042B1A091 ++s8subw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000042B1A090 ++s8subw 0xF0DEBC9A78563412 0x8000000000000000 = 0xFFFFFFFFC2B1A090 ++s8subw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000042B1A090 ++s8subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFC2B22090 ++s8subw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFC2B1A110 ++s8subw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFC2B1A091 ++s8subw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000027F4C1A0 ++s8subw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x000000004A5B6C7E ++=== Running test on addl === ++addl 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++addl 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++addl 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++addl 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++addl 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++addl 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++addl 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++addl 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++addl 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++addl 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++addl 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++addl 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++addl 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++addl 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++addl 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++addl 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++addl 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++addl 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++addl 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++addl 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++addl 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++addl 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++addl 0x0000000000000001 0x0000000000000001 = 0x0000000000000002 ++addl 0x0000000000000001 0x0000000000000002 = 0x0000000000000003 ++addl 0x0000000000000001 0x0000000000000003 = 0x0000000000000004 ++addl 0x0000000000000001 0x000000000000000F = 0x0000000000000010 ++addl 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++addl 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++addl 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++addl 0x0000000000000001 0x000000000000007F = 0x0000000000000080 ++addl 0x0000000000000001 0x0000000000000080 = 0x0000000000000081 ++addl 0x0000000000000001 0x0000000000007FFF = 0x0000000000008000 ++addl 0x0000000000000001 0x0000000000008000 = 0x0000000000008001 ++addl 0x0000000000000001 0x000000007FFFFFFF = 0x0000000080000000 ++addl 0x0000000000000001 0x0000000080000000 = 0x0000000080000001 ++addl 0x0000000000000001 0x8000000000000000 = 0x8000000000000001 ++addl 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000001 ++addl 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8001 ++addl 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF81 ++addl 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++addl 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF1 ++addl 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563413 ++addl 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++addl 0x0000000000000002 0x0000000000000001 = 0x0000000000000003 ++addl 0x0000000000000002 0x0000000000000002 = 0x0000000000000004 ++addl 0x0000000000000002 0x0000000000000003 = 0x0000000000000005 ++addl 0x0000000000000002 0x000000000000000F = 0x0000000000000011 ++addl 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++addl 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++addl 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++addl 0x0000000000000002 0x000000000000007F = 0x0000000000000081 ++addl 0x0000000000000002 0x0000000000000080 = 0x0000000000000082 ++addl 0x0000000000000002 0x0000000000007FFF = 0x0000000000008001 ++addl 0x0000000000000002 0x0000000000008000 = 0x0000000000008002 ++addl 0x0000000000000002 0x000000007FFFFFFF = 0x0000000080000001 ++addl 0x0000000000000002 0x0000000080000000 = 0x0000000080000002 ++addl 0x0000000000000002 0x8000000000000000 = 0x8000000000000002 ++addl 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000002 ++addl 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8002 ++addl 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF82 ++addl 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x8000000000000001 ++addl 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF2 ++addl 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563414 ++addl 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++addl 0x0000000000000003 0x0000000000000001 = 0x0000000000000004 ++addl 0x0000000000000003 0x0000000000000002 = 0x0000000000000005 ++addl 0x0000000000000003 0x0000000000000003 = 0x0000000000000006 ++addl 0x0000000000000003 0x000000000000000F = 0x0000000000000012 ++addl 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++addl 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++addl 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++addl 0x0000000000000003 0x000000000000007F = 0x0000000000000082 ++addl 0x0000000000000003 0x0000000000000080 = 0x0000000000000083 ++addl 0x0000000000000003 0x0000000000007FFF = 0x0000000000008002 ++addl 0x0000000000000003 0x0000000000008000 = 0x0000000000008003 ++addl 0x0000000000000003 0x000000007FFFFFFF = 0x0000000080000002 ++addl 0x0000000000000003 0x0000000080000000 = 0x0000000080000003 ++addl 0x0000000000000003 0x8000000000000000 = 0x8000000000000003 ++addl 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000003 ++addl 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8003 ++addl 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF83 ++addl 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x8000000000000002 ++addl 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF3 ++addl 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563415 ++addl 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++addl 0x000000000000000F 0x0000000000000001 = 0x0000000000000010 ++addl 0x000000000000000F 0x0000000000000002 = 0x0000000000000011 ++addl 0x000000000000000F 0x0000000000000003 = 0x0000000000000012 ++addl 0x000000000000000F 0x000000000000000F = 0x000000000000001E ++addl 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000E ++addl 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000D ++addl 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000C ++addl 0x000000000000000F 0x000000000000007F = 0x000000000000008E ++addl 0x000000000000000F 0x0000000000000080 = 0x000000000000008F ++addl 0x000000000000000F 0x0000000000007FFF = 0x000000000000800E ++addl 0x000000000000000F 0x0000000000008000 = 0x000000000000800F ++addl 0x000000000000000F 0x000000007FFFFFFF = 0x000000008000000E ++addl 0x000000000000000F 0x0000000080000000 = 0x000000008000000F ++addl 0x000000000000000F 0x8000000000000000 = 0x800000000000000F ++addl 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF8000000F ++addl 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF800F ++addl 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF8F ++addl 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x800000000000000E ++addl 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEFF ++addl 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563421 ++addl 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++addl 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++addl 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++addl 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000002 ++addl 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000E ++addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++addl 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007E ++addl 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++addl 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFE ++addl 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FFF ++addl 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFE ++addl 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++addl 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFFF ++addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFF ++addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7F ++addl 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++addl 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEEF ++addl 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563411 ++addl 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++addl 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++addl 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++addl 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000001 ++addl 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000D ++addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++addl 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007D ++addl 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000007E ++addl 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFD ++addl 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000007FFE ++addl 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFD ++addl 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000007FFFFFFE ++addl 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x7FFFFFFFFFFFFFFE ++addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFFE ++addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFE ++addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7E ++addl 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++addl 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEEE ++addl 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563410 ++addl 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++addl 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++addl 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++addl 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++addl 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000C ++addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFB ++addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFA ++addl 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007C ++addl 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000007D ++addl 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFC ++addl 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000007FFD ++addl 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFC ++addl 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000007FFFFFFD ++addl 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x7FFFFFFFFFFFFFFD ++addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFFD ++addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFD ++addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7D ++addl 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFC ++addl 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEED ++addl 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A7856340F ++addl 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++addl 0x000000000000007F 0x0000000000000001 = 0x0000000000000080 ++addl 0x000000000000007F 0x0000000000000002 = 0x0000000000000081 ++addl 0x000000000000007F 0x0000000000000003 = 0x0000000000000082 ++addl 0x000000000000007F 0x000000000000000F = 0x000000000000008E ++addl 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007E ++addl 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007D ++addl 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007C ++addl 0x000000000000007F 0x000000000000007F = 0x00000000000000FE ++addl 0x000000000000007F 0x0000000000000080 = 0x00000000000000FF ++addl 0x000000000000007F 0x0000000000007FFF = 0x000000000000807E ++addl 0x000000000000007F 0x0000000000008000 = 0x000000000000807F ++addl 0x000000000000007F 0x000000007FFFFFFF = 0x000000008000007E ++addl 0x000000000000007F 0x0000000080000000 = 0x000000008000007F ++addl 0x000000000000007F 0x8000000000000000 = 0x800000000000007F ++addl 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF8000007F ++addl 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF807F ++addl 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++addl 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x800000000000007E ++addl 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDF6F ++addl 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563491 ++addl 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++addl 0x0000000000000080 0x0000000000000001 = 0x0000000000000081 ++addl 0x0000000000000080 0x0000000000000002 = 0x0000000000000082 ++addl 0x0000000000000080 0x0000000000000003 = 0x0000000000000083 ++addl 0x0000000000000080 0x000000000000000F = 0x000000000000008F ++addl 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++addl 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x000000000000007E ++addl 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x000000000000007D ++addl 0x0000000000000080 0x000000000000007F = 0x00000000000000FF ++addl 0x0000000000000080 0x0000000000000080 = 0x0000000000000100 ++addl 0x0000000000000080 0x0000000000007FFF = 0x000000000000807F ++addl 0x0000000000000080 0x0000000000008000 = 0x0000000000008080 ++addl 0x0000000000000080 0x000000007FFFFFFF = 0x000000008000007F ++addl 0x0000000000000080 0x0000000080000000 = 0x0000000080000080 ++addl 0x0000000000000080 0x8000000000000000 = 0x8000000000000080 ++addl 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000080 ++addl 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8080 ++addl 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++addl 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x800000000000007F ++addl 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDF70 ++addl 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563492 ++addl 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++addl 0x0000000000007FFF 0x0000000000000001 = 0x0000000000008000 ++addl 0x0000000000007FFF 0x0000000000000002 = 0x0000000000008001 ++addl 0x0000000000007FFF 0x0000000000000003 = 0x0000000000008002 ++addl 0x0000000000007FFF 0x000000000000000F = 0x000000000000800E ++addl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFE ++addl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFD ++addl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFC ++addl 0x0000000000007FFF 0x000000000000007F = 0x000000000000807E ++addl 0x0000000000007FFF 0x0000000000000080 = 0x000000000000807F ++addl 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000FFFE ++addl 0x0000000000007FFF 0x0000000000008000 = 0x000000000000FFFF ++addl 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000080007FFE ++addl 0x0000000000007FFF 0x0000000080000000 = 0x0000000080007FFF ++addl 0x0000000000007FFF 0x8000000000000000 = 0x8000000000007FFF ++addl 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80007FFF ++addl 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++addl 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007F7F ++addl 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x8000000000007FFE ++addl 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABD5EEF ++addl 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A7856B411 ++addl 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++addl 0x0000000000008000 0x0000000000000001 = 0x0000000000008001 ++addl 0x0000000000008000 0x0000000000000002 = 0x0000000000008002 ++addl 0x0000000000008000 0x0000000000000003 = 0x0000000000008003 ++addl 0x0000000000008000 0x000000000000000F = 0x000000000000800F ++addl 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++addl 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFE ++addl 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFD ++addl 0x0000000000008000 0x000000000000007F = 0x000000000000807F ++addl 0x0000000000008000 0x0000000000000080 = 0x0000000000008080 ++addl 0x0000000000008000 0x0000000000007FFF = 0x000000000000FFFF ++addl 0x0000000000008000 0x0000000000008000 = 0x0000000000010000 ++addl 0x0000000000008000 0x000000007FFFFFFF = 0x0000000080007FFF ++addl 0x0000000000008000 0x0000000080000000 = 0x0000000080008000 ++addl 0x0000000000008000 0x8000000000000000 = 0x8000000000008000 ++addl 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80008000 ++addl 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++addl 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000007F80 ++addl 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x8000000000007FFF ++addl 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABD5EF0 ++addl 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A7856B412 ++addl 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++addl 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000080000000 ++addl 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000080000001 ++addl 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000080000002 ++addl 0x000000007FFFFFFF 0x000000000000000F = 0x000000008000000E ++addl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFE ++addl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFD ++addl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFC ++addl 0x000000007FFFFFFF 0x000000000000007F = 0x000000008000007E ++addl 0x000000007FFFFFFF 0x0000000000000080 = 0x000000008000007F ++addl 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000080007FFE ++addl 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000080007FFF ++addl 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x00000000FFFFFFFE ++addl 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000FFFFFFFF ++addl 0x000000007FFFFFFF 0x8000000000000000 = 0x800000007FFFFFFF ++addl 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++addl 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFF7FFF ++addl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFF7F ++addl 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x800000007FFFFFFE ++addl 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456791ABCDEEF ++addl 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9AF8563411 ++addl 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++addl 0x0000000080000000 0x0000000000000001 = 0x0000000080000001 ++addl 0x0000000080000000 0x0000000000000002 = 0x0000000080000002 ++addl 0x0000000080000000 0x0000000000000003 = 0x0000000080000003 ++addl 0x0000000080000000 0x000000000000000F = 0x000000008000000F ++addl 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++addl 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFE ++addl 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFD ++addl 0x0000000080000000 0x000000000000007F = 0x000000008000007F ++addl 0x0000000080000000 0x0000000000000080 = 0x0000000080000080 ++addl 0x0000000080000000 0x0000000000007FFF = 0x0000000080007FFF ++addl 0x0000000080000000 0x0000000000008000 = 0x0000000080008000 ++addl 0x0000000080000000 0x000000007FFFFFFF = 0x00000000FFFFFFFF ++addl 0x0000000080000000 0x0000000080000000 = 0x0000000100000000 ++addl 0x0000000080000000 0x8000000000000000 = 0x8000000080000000 ++addl 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++addl 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x000000007FFF8000 ++addl 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFF80 ++addl 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x800000007FFFFFFF ++addl 0x0000000080000000 0x123456789ABCDEF0 = 0x123456791ABCDEF0 ++addl 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9AF8563412 ++addl 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++addl 0x8000000000000000 0x0000000000000001 = 0x8000000000000001 ++addl 0x8000000000000000 0x0000000000000002 = 0x8000000000000002 ++addl 0x8000000000000000 0x0000000000000003 = 0x8000000000000003 ++addl 0x8000000000000000 0x000000000000000F = 0x800000000000000F ++addl 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++addl 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFE ++addl 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFD ++addl 0x8000000000000000 0x000000000000007F = 0x800000000000007F ++addl 0x8000000000000000 0x0000000000000080 = 0x8000000000000080 ++addl 0x8000000000000000 0x0000000000007FFF = 0x8000000000007FFF ++addl 0x8000000000000000 0x0000000000008000 = 0x8000000000008000 ++addl 0x8000000000000000 0x000000007FFFFFFF = 0x800000007FFFFFFF ++addl 0x8000000000000000 0x0000000080000000 = 0x8000000080000000 ++addl 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++addl 0x8000000000000000 0xFFFFFFFF80000000 = 0x7FFFFFFF80000000 ++addl 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFF8000 ++addl 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFF80 ++addl 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++addl 0x8000000000000000 0x123456789ABCDEF0 = 0x923456789ABCDEF0 ++addl 0x8000000000000000 0xF0DEBC9A78563412 = 0x70DEBC9A78563412 ++addl 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++addl 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000001 ++addl 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000002 ++addl 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000003 ++addl 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF8000000F ++addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF7FFFFFFF ++addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF7FFFFFFE ++addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF7FFFFFFD ++addl 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF8000007F ++addl 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000080 ++addl 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80007FFF ++addl 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80008000 ++addl 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++addl 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++addl 0xFFFFFFFF80000000 0x8000000000000000 = 0x7FFFFFFF80000000 ++addl 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF7FFF8000 ++addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF7FFFFF80 ++addl 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFF7FFFFFFF ++addl 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456781ABCDEF0 ++addl 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC99F8563412 ++addl 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++addl 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8001 ++addl 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF8002 ++addl 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF8003 ++addl 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF800F ++addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF7FFF ++addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF7FFE ++addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF7FFD ++addl 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFF807F ++addl 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8080 ++addl 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++addl 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++addl 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFF7FFF ++addl 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000007FFF8000 ++addl 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x7FFFFFFFFFFF8000 ++addl 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFF8000 ++addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF7F80 ++addl 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF7FFF ++addl 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABC5EF0 ++addl 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A7855B412 ++addl 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++addl 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF81 ++addl 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF82 ++addl 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF83 ++addl 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFF8F ++addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7F ++addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF7E ++addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF7D ++addl 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++addl 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++addl 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007F7F ++addl 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000007F80 ++addl 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFF7F ++addl 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000007FFFFF80 ++addl 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x7FFFFFFFFFFFFF80 ++addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFF80 ++addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7F80 ++addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++addl 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF7F ++addl 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDE70 ++addl 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563392 ++addl 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++addl 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x8000000000000000 ++addl 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x8000000000000001 ++addl 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x8000000000000002 ++addl 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x800000000000000E ++addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFD ++addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFC ++addl 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x800000000000007E ++addl 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x800000000000007F ++addl 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x8000000000007FFE ++addl 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x8000000000007FFF ++addl 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x800000007FFFFFFE ++addl 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x800000007FFFFFFF ++addl 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFF7FFFFFFF ++addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFF7FFF ++addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFF7F ++addl 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++addl 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x923456789ABCDEEF ++addl 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x70DEBC9A78563411 ++addl 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++addl 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF1 ++addl 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABCDEF2 ++addl 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABCDEF3 ++addl 0x123456789ABCDEF0 0x000000000000000F = 0x123456789ABCDEFF ++addl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDEEF ++addl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDEEE ++addl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDEED ++addl 0x123456789ABCDEF0 0x000000000000007F = 0x123456789ABCDF6F ++addl 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDF70 ++addl 0x123456789ABCDEF0 0x0000000000007FFF = 0x123456789ABD5EEF ++addl 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABD5EF0 ++addl 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x123456791ABCDEEF ++addl 0x123456789ABCDEF0 0x0000000080000000 = 0x123456791ABCDEF0 ++addl 0x123456789ABCDEF0 0x8000000000000000 = 0x923456789ABCDEF0 ++addl 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456781ABCDEF0 ++addl 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABC5EF0 ++addl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDE70 ++addl 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x923456789ABCDEEF ++addl 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x2468ACF13579BDE0 ++addl 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0313131313131302 ++addl 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++addl 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563413 ++addl 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78563414 ++addl 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A78563415 ++addl 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A78563421 ++addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563411 ++addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563410 ++addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A7856340F ++addl 0xF0DEBC9A78563412 0x000000000000007F = 0xF0DEBC9A78563491 ++addl 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563492 ++addl 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF0DEBC9A7856B411 ++addl 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A7856B412 ++addl 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF0DEBC9AF8563411 ++addl 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9AF8563412 ++addl 0xF0DEBC9A78563412 0x8000000000000000 = 0x70DEBC9A78563412 ++addl 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC99F8563412 ++addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A7855B412 ++addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563392 ++addl 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x70DEBC9A78563411 ++addl 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0313131313131302 ++addl 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xE1BD7934F0AC6824 ++=== Running test on subl === ++subl 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++subl 0x0000000000000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++subl 0x0000000000000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++subl 0x0000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++subl 0x0000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++subl 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++subl 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++subl 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++subl 0x0000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++subl 0x0000000000000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++subl 0x0000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++subl 0x0000000000000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++subl 0x0000000000000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++subl 0x0000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++subl 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++subl 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++subl 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++subl 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++subl 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000001 ++subl 0x0000000000000000 0x123456789ABCDEF0 = 0xEDCBA98765432110 ++subl 0x0000000000000000 0xF0DEBC9A78563412 = 0x0F21436587A9CBEE ++subl 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++subl 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++subl 0x0000000000000001 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++subl 0x0000000000000001 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++subl 0x0000000000000001 0x000000000000000F = 0xFFFFFFFFFFFFFFF2 ++subl 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++subl 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++subl 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000004 ++subl 0x0000000000000001 0x000000000000007F = 0xFFFFFFFFFFFFFF82 ++subl 0x0000000000000001 0x0000000000000080 = 0xFFFFFFFFFFFFFF81 ++subl 0x0000000000000001 0x0000000000007FFF = 0xFFFFFFFFFFFF8002 ++subl 0x0000000000000001 0x0000000000008000 = 0xFFFFFFFFFFFF8001 ++subl 0x0000000000000001 0x000000007FFFFFFF = 0xFFFFFFFF80000002 ++subl 0x0000000000000001 0x0000000080000000 = 0xFFFFFFFF80000001 ++subl 0x0000000000000001 0x8000000000000000 = 0x8000000000000001 ++subl 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000080000001 ++subl 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000008001 ++subl 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000081 ++subl 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x8000000000000002 ++subl 0x0000000000000001 0x123456789ABCDEF0 = 0xEDCBA98765432111 ++subl 0x0000000000000001 0xF0DEBC9A78563412 = 0x0F21436587A9CBEF ++subl 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++subl 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++subl 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++subl 0x0000000000000002 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++subl 0x0000000000000002 0x000000000000000F = 0xFFFFFFFFFFFFFFF3 ++subl 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++subl 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000004 ++subl 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000005 ++subl 0x0000000000000002 0x000000000000007F = 0xFFFFFFFFFFFFFF83 ++subl 0x0000000000000002 0x0000000000000080 = 0xFFFFFFFFFFFFFF82 ++subl 0x0000000000000002 0x0000000000007FFF = 0xFFFFFFFFFFFF8003 ++subl 0x0000000000000002 0x0000000000008000 = 0xFFFFFFFFFFFF8002 ++subl 0x0000000000000002 0x000000007FFFFFFF = 0xFFFFFFFF80000003 ++subl 0x0000000000000002 0x0000000080000000 = 0xFFFFFFFF80000002 ++subl 0x0000000000000002 0x8000000000000000 = 0x8000000000000002 ++subl 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000080000002 ++subl 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000008002 ++subl 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000082 ++subl 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x8000000000000003 ++subl 0x0000000000000002 0x123456789ABCDEF0 = 0xEDCBA98765432112 ++subl 0x0000000000000002 0xF0DEBC9A78563412 = 0x0F21436587A9CBF0 ++subl 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++subl 0x0000000000000003 0x0000000000000001 = 0x0000000000000002 ++subl 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++subl 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++subl 0x0000000000000003 0x000000000000000F = 0xFFFFFFFFFFFFFFF4 ++subl 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000004 ++subl 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000005 ++subl 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000006 ++subl 0x0000000000000003 0x000000000000007F = 0xFFFFFFFFFFFFFF84 ++subl 0x0000000000000003 0x0000000000000080 = 0xFFFFFFFFFFFFFF83 ++subl 0x0000000000000003 0x0000000000007FFF = 0xFFFFFFFFFFFF8004 ++subl 0x0000000000000003 0x0000000000008000 = 0xFFFFFFFFFFFF8003 ++subl 0x0000000000000003 0x000000007FFFFFFF = 0xFFFFFFFF80000004 ++subl 0x0000000000000003 0x0000000080000000 = 0xFFFFFFFF80000003 ++subl 0x0000000000000003 0x8000000000000000 = 0x8000000000000003 ++subl 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000080000003 ++subl 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000008003 ++subl 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000083 ++subl 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x8000000000000004 ++subl 0x0000000000000003 0x123456789ABCDEF0 = 0xEDCBA98765432113 ++subl 0x0000000000000003 0xF0DEBC9A78563412 = 0x0F21436587A9CBF1 ++subl 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++subl 0x000000000000000F 0x0000000000000001 = 0x000000000000000E ++subl 0x000000000000000F 0x0000000000000002 = 0x000000000000000D ++subl 0x000000000000000F 0x0000000000000003 = 0x000000000000000C ++subl 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++subl 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000010 ++subl 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000011 ++subl 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000012 ++subl 0x000000000000000F 0x000000000000007F = 0xFFFFFFFFFFFFFF90 ++subl 0x000000000000000F 0x0000000000000080 = 0xFFFFFFFFFFFFFF8F ++subl 0x000000000000000F 0x0000000000007FFF = 0xFFFFFFFFFFFF8010 ++subl 0x000000000000000F 0x0000000000008000 = 0xFFFFFFFFFFFF800F ++subl 0x000000000000000F 0x000000007FFFFFFF = 0xFFFFFFFF80000010 ++subl 0x000000000000000F 0x0000000080000000 = 0xFFFFFFFF8000000F ++subl 0x000000000000000F 0x8000000000000000 = 0x800000000000000F ++subl 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000008000000F ++subl 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000800F ++subl 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000008F ++subl 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x8000000000000010 ++subl 0x000000000000000F 0x123456789ABCDEF0 = 0xEDCBA9876543211F ++subl 0x000000000000000F 0xF0DEBC9A78563412 = 0x0F21436587A9CBFD ++subl 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++subl 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++subl 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++subl 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++subl 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++subl 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++subl 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++subl 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++subl 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++subl 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++subl 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++subl 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++subl 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++subl 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xEDCBA9876543210F ++subl 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0F21436587A9CBED ++subl 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++subl 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++subl 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFC ++subl 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFB ++subl 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFEF ++subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++subl 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFF7F ++subl 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFF7E ++subl 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFF7FFF ++subl 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFF7FFE ++subl 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFF7FFFFFFF ++subl 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFF7FFFFFFE ++subl 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x7FFFFFFFFFFFFFFE ++subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000007FFFFFFE ++subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000007FFE ++subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000007E ++subl 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++subl 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xEDCBA9876543210E ++subl 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0F21436587A9CBEC ++subl 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++subl 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFC ++subl 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFB ++subl 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFA ++subl 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFEE ++subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++subl 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFF7E ++subl 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFF7D ++subl 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFF7FFE ++subl 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFF7FFD ++subl 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFF7FFFFFFE ++subl 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFF7FFFFFFD ++subl 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x7FFFFFFFFFFFFFFD ++subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000007FFFFFFD ++subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000007FFD ++subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000007D ++subl 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++subl 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xEDCBA9876543210D ++subl 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0F21436587A9CBEB ++subl 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++subl 0x000000000000007F 0x0000000000000001 = 0x000000000000007E ++subl 0x000000000000007F 0x0000000000000002 = 0x000000000000007D ++subl 0x000000000000007F 0x0000000000000003 = 0x000000000000007C ++subl 0x000000000000007F 0x000000000000000F = 0x0000000000000070 ++subl 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++subl 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000081 ++subl 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000082 ++subl 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++subl 0x000000000000007F 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++subl 0x000000000000007F 0x0000000000007FFF = 0xFFFFFFFFFFFF8080 ++subl 0x000000000000007F 0x0000000000008000 = 0xFFFFFFFFFFFF807F ++subl 0x000000000000007F 0x000000007FFFFFFF = 0xFFFFFFFF80000080 ++subl 0x000000000000007F 0x0000000080000000 = 0xFFFFFFFF8000007F ++subl 0x000000000000007F 0x8000000000000000 = 0x800000000000007F ++subl 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000008000007F ++subl 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000807F ++subl 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++subl 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x8000000000000080 ++subl 0x000000000000007F 0x123456789ABCDEF0 = 0xEDCBA9876543218F ++subl 0x000000000000007F 0xF0DEBC9A78563412 = 0x0F21436587A9CC6D ++subl 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++subl 0x0000000000000080 0x0000000000000001 = 0x000000000000007F ++subl 0x0000000000000080 0x0000000000000002 = 0x000000000000007E ++subl 0x0000000000000080 0x0000000000000003 = 0x000000000000007D ++subl 0x0000000000000080 0x000000000000000F = 0x0000000000000071 ++subl 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000081 ++subl 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000082 ++subl 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000083 ++subl 0x0000000000000080 0x000000000000007F = 0x0000000000000001 ++subl 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++subl 0x0000000000000080 0x0000000000007FFF = 0xFFFFFFFFFFFF8081 ++subl 0x0000000000000080 0x0000000000008000 = 0xFFFFFFFFFFFF8080 ++subl 0x0000000000000080 0x000000007FFFFFFF = 0xFFFFFFFF80000081 ++subl 0x0000000000000080 0x0000000080000000 = 0xFFFFFFFF80000080 ++subl 0x0000000000000080 0x8000000000000000 = 0x8000000000000080 ++subl 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000080000080 ++subl 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000008080 ++subl 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000100 ++subl 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x8000000000000081 ++subl 0x0000000000000080 0x123456789ABCDEF0 = 0xEDCBA98765432190 ++subl 0x0000000000000080 0xF0DEBC9A78563412 = 0x0F21436587A9CC6E ++subl 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++subl 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFE ++subl 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFD ++subl 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFC ++subl 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FF0 ++subl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++subl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000008001 ++subl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000008002 ++subl 0x0000000000007FFF 0x000000000000007F = 0x0000000000007F80 ++subl 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007F7F ++subl 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++subl 0x0000000000007FFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++subl 0x0000000000007FFF 0x000000007FFFFFFF = 0xFFFFFFFF80008000 ++subl 0x0000000000007FFF 0x0000000080000000 = 0xFFFFFFFF80007FFF ++subl 0x0000000000007FFF 0x8000000000000000 = 0x8000000000007FFF ++subl 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000080007FFF ++subl 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++subl 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000000807F ++subl 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x8000000000008000 ++subl 0x0000000000007FFF 0x123456789ABCDEF0 = 0xEDCBA9876543A10F ++subl 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0F21436587AA4BED ++subl 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++subl 0x0000000000008000 0x0000000000000001 = 0x0000000000007FFF ++subl 0x0000000000008000 0x0000000000000002 = 0x0000000000007FFE ++subl 0x0000000000008000 0x0000000000000003 = 0x0000000000007FFD ++subl 0x0000000000008000 0x000000000000000F = 0x0000000000007FF1 ++subl 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008001 ++subl 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008002 ++subl 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008003 ++subl 0x0000000000008000 0x000000000000007F = 0x0000000000007F81 ++subl 0x0000000000008000 0x0000000000000080 = 0x0000000000007F80 ++subl 0x0000000000008000 0x0000000000007FFF = 0x0000000000000001 ++subl 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++subl 0x0000000000008000 0x000000007FFFFFFF = 0xFFFFFFFF80008001 ++subl 0x0000000000008000 0x0000000080000000 = 0xFFFFFFFF80008000 ++subl 0x0000000000008000 0x8000000000000000 = 0x8000000000008000 ++subl 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000080008000 ++subl 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000010000 ++subl 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008080 ++subl 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x8000000000008001 ++subl 0x0000000000008000 0x123456789ABCDEF0 = 0xEDCBA9876543A110 ++subl 0x0000000000008000 0xF0DEBC9A78563412 = 0x0F21436587AA4BEE ++subl 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++subl 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFE ++subl 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFFFFFD ++subl 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFFC ++subl 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFF0 ++subl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++subl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000080000001 ++subl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000080000002 ++subl 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFF80 ++subl 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFF7F ++subl 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFF8000 ++subl 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFF7FFF ++subl 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++subl 0x000000007FFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++subl 0x000000007FFFFFFF 0x8000000000000000 = 0x800000007FFFFFFF ++subl 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x00000000FFFFFFFF ++subl 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000080007FFF ++subl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000008000007F ++subl 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x8000000080000000 ++subl 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0xEDCBA987E543210F ++subl 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0F21436607A9CBED ++subl 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++subl 0x0000000080000000 0x0000000000000001 = 0x000000007FFFFFFF ++subl 0x0000000080000000 0x0000000000000002 = 0x000000007FFFFFFE ++subl 0x0000000080000000 0x0000000000000003 = 0x000000007FFFFFFD ++subl 0x0000000080000000 0x000000000000000F = 0x000000007FFFFFF1 ++subl 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000001 ++subl 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000002 ++subl 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000003 ++subl 0x0000000080000000 0x000000000000007F = 0x000000007FFFFF81 ++subl 0x0000000080000000 0x0000000000000080 = 0x000000007FFFFF80 ++subl 0x0000000080000000 0x0000000000007FFF = 0x000000007FFF8001 ++subl 0x0000000080000000 0x0000000000008000 = 0x000000007FFF8000 ++subl 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000001 ++subl 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++subl 0x0000000080000000 0x8000000000000000 = 0x8000000080000000 ++subl 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000100000000 ++subl 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080008000 ++subl 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000080 ++subl 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x8000000080000001 ++subl 0x0000000080000000 0x123456789ABCDEF0 = 0xEDCBA987E5432110 ++subl 0x0000000080000000 0xF0DEBC9A78563412 = 0x0F21436607A9CBEE ++subl 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++subl 0x8000000000000000 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++subl 0x8000000000000000 0x0000000000000002 = 0x7FFFFFFFFFFFFFFE ++subl 0x8000000000000000 0x0000000000000003 = 0x7FFFFFFFFFFFFFFD ++subl 0x8000000000000000 0x000000000000000F = 0x7FFFFFFFFFFFFFF1 ++subl 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000001 ++subl 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000002 ++subl 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000003 ++subl 0x8000000000000000 0x000000000000007F = 0x7FFFFFFFFFFFFF81 ++subl 0x8000000000000000 0x0000000000000080 = 0x7FFFFFFFFFFFFF80 ++subl 0x8000000000000000 0x0000000000007FFF = 0x7FFFFFFFFFFF8001 ++subl 0x8000000000000000 0x0000000000008000 = 0x7FFFFFFFFFFF8000 ++subl 0x8000000000000000 0x000000007FFFFFFF = 0x7FFFFFFF80000001 ++subl 0x8000000000000000 0x0000000080000000 = 0x7FFFFFFF80000000 ++subl 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++subl 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000080000000 ++subl 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000008000 ++subl 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000080 ++subl 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++subl 0x8000000000000000 0x123456789ABCDEF0 = 0x6DCBA98765432110 ++subl 0x8000000000000000 0xF0DEBC9A78563412 = 0x8F21436587A9CBEE ++subl 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++subl 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF7FFFFFFF ++subl 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF7FFFFFFE ++subl 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF7FFFFFFD ++subl 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF7FFFFFF1 ++subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000001 ++subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000002 ++subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000003 ++subl 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF7FFFFF81 ++subl 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF7FFFFF80 ++subl 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF7FFF8001 ++subl 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF7FFF8000 ++subl 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF00000001 ++subl 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF00000000 ++subl 0xFFFFFFFF80000000 0x8000000000000000 = 0x7FFFFFFF80000000 ++subl 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80008000 ++subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000080 ++subl 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFF80000001 ++subl 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xEDCBA986E5432110 ++subl 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0F21436507A9CBEE ++subl 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++subl 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF7FFF ++subl 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF7FFE ++subl 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF7FFD ++subl 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF7FF1 ++subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8001 ++subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8002 ++subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8003 ++subl 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFF7F81 ++subl 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF7F80 ++subl 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFF0001 ++subl 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++subl 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFF7FFF8001 ++subl 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFF7FFF8000 ++subl 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x7FFFFFFFFFFF8000 ++subl 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000007FFF8000 ++subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8080 ++subl 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF8001 ++subl 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xEDCBA9876542A110 ++subl 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0F21436587A94BEE ++subl 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++subl 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF7F ++subl 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF7E ++subl 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF7D ++subl 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFF71 ++subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF81 ++subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF82 ++subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF83 ++subl 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFF01 ++subl 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF00 ++subl 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFF7F81 ++subl 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFF7F80 ++subl 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFF7FFFFF81 ++subl 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFF7FFFFF80 ++subl 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x7FFFFFFFFFFFFF80 ++subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000007FFFFF80 ++subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000007F80 ++subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++subl 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF81 ++subl 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xEDCBA98765432090 ++subl 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0F21436587A9CB6E ++subl 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++subl 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFE ++subl 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFFFFFD ++subl 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFFFFFC ++subl 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFFFFFFFFF0 ++subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x8000000000000001 ++subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x8000000000000002 ++subl 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7FFFFFFFFFFFFF80 ++subl 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFF7F ++subl 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFFFF8000 ++subl 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFF7FFF ++subl 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFF80000000 ++subl 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFF7FFFFFFF ++subl 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x800000007FFFFFFF ++subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x8000000000007FFF ++subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x800000000000007F ++subl 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++subl 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x6DCBA9876543210F ++subl 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x8F21436587A9CBED ++subl 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++subl 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEEF ++subl 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABCDEEE ++subl 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABCDEED ++subl 0x123456789ABCDEF0 0x000000000000000F = 0x123456789ABCDEE1 ++subl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDEF1 ++subl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDEF2 ++subl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDEF3 ++subl 0x123456789ABCDEF0 0x000000000000007F = 0x123456789ABCDE71 ++subl 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDE70 ++subl 0x123456789ABCDEF0 0x0000000000007FFF = 0x123456789ABC5EF1 ++subl 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABC5EF0 ++subl 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x123456781ABCDEF1 ++subl 0x123456789ABCDEF0 0x0000000080000000 = 0x123456781ABCDEF0 ++subl 0x123456789ABCDEF0 0x8000000000000000 = 0x923456789ABCDEF0 ++subl 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456791ABCDEF0 ++subl 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABD5EF0 ++subl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDF70 ++subl 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x923456789ABCDEF1 ++subl 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++subl 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x215599DE2266AADE ++subl 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++subl 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563411 ++subl 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78563410 ++subl 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A7856340F ++subl 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A78563403 ++subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563413 ++subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563414 ++subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A78563415 ++subl 0xF0DEBC9A78563412 0x000000000000007F = 0xF0DEBC9A78563393 ++subl 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563392 ++subl 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF0DEBC9A7855B413 ++subl 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A7855B412 ++subl 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF0DEBC99F8563413 ++subl 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC99F8563412 ++subl 0xF0DEBC9A78563412 0x8000000000000000 = 0x70DEBC9A78563412 ++subl 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9AF8563412 ++subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A7856B412 ++subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563492 ++subl 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x70DEBC9A78563413 ++subl 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xDEAA6621DD995522 ++subl 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on s4addl === ++s4addl 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++s4addl 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++s4addl 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++s4addl 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++s4addl 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++s4addl 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addl 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s4addl 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++s4addl 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++s4addl 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++s4addl 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++s4addl 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++s4addl 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++s4addl 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++s4addl 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++s4addl 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s4addl 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++s4addl 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++s4addl 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++s4addl 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++s4addl 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++s4addl 0x0000000000000001 0x0000000000000000 = 0x0000000000000004 ++s4addl 0x0000000000000001 0x0000000000000001 = 0x0000000000000005 ++s4addl 0x0000000000000001 0x0000000000000002 = 0x0000000000000006 ++s4addl 0x0000000000000001 0x0000000000000003 = 0x0000000000000007 ++s4addl 0x0000000000000001 0x000000000000000F = 0x0000000000000013 ++s4addl 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++s4addl 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++s4addl 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++s4addl 0x0000000000000001 0x000000000000007F = 0x0000000000000083 ++s4addl 0x0000000000000001 0x0000000000000080 = 0x0000000000000084 ++s4addl 0x0000000000000001 0x0000000000007FFF = 0x0000000000008003 ++s4addl 0x0000000000000001 0x0000000000008000 = 0x0000000000008004 ++s4addl 0x0000000000000001 0x000000007FFFFFFF = 0x0000000080000003 ++s4addl 0x0000000000000001 0x0000000080000000 = 0x0000000080000004 ++s4addl 0x0000000000000001 0x8000000000000000 = 0x8000000000000004 ++s4addl 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000004 ++s4addl 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8004 ++s4addl 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF84 ++s4addl 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x8000000000000003 ++s4addl 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF4 ++s4addl 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563416 ++s4addl 0x0000000000000002 0x0000000000000000 = 0x0000000000000008 ++s4addl 0x0000000000000002 0x0000000000000001 = 0x0000000000000009 ++s4addl 0x0000000000000002 0x0000000000000002 = 0x000000000000000A ++s4addl 0x0000000000000002 0x0000000000000003 = 0x000000000000000B ++s4addl 0x0000000000000002 0x000000000000000F = 0x0000000000000017 ++s4addl 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000007 ++s4addl 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000006 ++s4addl 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000005 ++s4addl 0x0000000000000002 0x000000000000007F = 0x0000000000000087 ++s4addl 0x0000000000000002 0x0000000000000080 = 0x0000000000000088 ++s4addl 0x0000000000000002 0x0000000000007FFF = 0x0000000000008007 ++s4addl 0x0000000000000002 0x0000000000008000 = 0x0000000000008008 ++s4addl 0x0000000000000002 0x000000007FFFFFFF = 0x0000000080000007 ++s4addl 0x0000000000000002 0x0000000080000000 = 0x0000000080000008 ++s4addl 0x0000000000000002 0x8000000000000000 = 0x8000000000000008 ++s4addl 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000008 ++s4addl 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8008 ++s4addl 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF88 ++s4addl 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x8000000000000007 ++s4addl 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF8 ++s4addl 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A7856341A ++s4addl 0x0000000000000003 0x0000000000000000 = 0x000000000000000C ++s4addl 0x0000000000000003 0x0000000000000001 = 0x000000000000000D ++s4addl 0x0000000000000003 0x0000000000000002 = 0x000000000000000E ++s4addl 0x0000000000000003 0x0000000000000003 = 0x000000000000000F ++s4addl 0x0000000000000003 0x000000000000000F = 0x000000000000001B ++s4addl 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x000000000000000B ++s4addl 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000000000000A ++s4addl 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000009 ++s4addl 0x0000000000000003 0x000000000000007F = 0x000000000000008B ++s4addl 0x0000000000000003 0x0000000000000080 = 0x000000000000008C ++s4addl 0x0000000000000003 0x0000000000007FFF = 0x000000000000800B ++s4addl 0x0000000000000003 0x0000000000008000 = 0x000000000000800C ++s4addl 0x0000000000000003 0x000000007FFFFFFF = 0x000000008000000B ++s4addl 0x0000000000000003 0x0000000080000000 = 0x000000008000000C ++s4addl 0x0000000000000003 0x8000000000000000 = 0x800000000000000C ++s4addl 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF8000000C ++s4addl 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF800C ++s4addl 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF8C ++s4addl 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x800000000000000B ++s4addl 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEFC ++s4addl 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A7856341E ++s4addl 0x000000000000000F 0x0000000000000000 = 0x000000000000003C ++s4addl 0x000000000000000F 0x0000000000000001 = 0x000000000000003D ++s4addl 0x000000000000000F 0x0000000000000002 = 0x000000000000003E ++s4addl 0x000000000000000F 0x0000000000000003 = 0x000000000000003F ++s4addl 0x000000000000000F 0x000000000000000F = 0x000000000000004B ++s4addl 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000003B ++s4addl 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000003A ++s4addl 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000039 ++s4addl 0x000000000000000F 0x000000000000007F = 0x00000000000000BB ++s4addl 0x000000000000000F 0x0000000000000080 = 0x00000000000000BC ++s4addl 0x000000000000000F 0x0000000000007FFF = 0x000000000000803B ++s4addl 0x000000000000000F 0x0000000000008000 = 0x000000000000803C ++s4addl 0x000000000000000F 0x000000007FFFFFFF = 0x000000008000003B ++s4addl 0x000000000000000F 0x0000000080000000 = 0x000000008000003C ++s4addl 0x000000000000000F 0x8000000000000000 = 0x800000000000003C ++s4addl 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF8000003C ++s4addl 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF803C ++s4addl 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFBC ++s4addl 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x800000000000003B ++s4addl 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDF2C ++s4addl 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A7856344E ++s4addl 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4addl 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++s4addl 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s4addl 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++s4addl 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000B ++s4addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s4addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++s4addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF9 ++s4addl 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007B ++s4addl 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007C ++s4addl 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFB ++s4addl 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FFC ++s4addl 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFB ++s4addl 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFC ++s4addl 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFC ++s4addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFFC ++s4addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFC ++s4addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7C ++s4addl 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFB ++s4addl 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEEC ++s4addl 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A7856340E ++s4addl 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s4addl 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFF9 ++s4addl 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++s4addl 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFB ++s4addl 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000007 ++s4addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s4addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF6 ++s4addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF5 ++s4addl 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000077 ++s4addl 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000078 ++s4addl 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FF7 ++s4addl 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000007FF8 ++s4addl 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFF7 ++s4addl 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000007FFFFFF8 ++s4addl 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x7FFFFFFFFFFFFFF8 ++s4addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFF8 ++s4addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FF8 ++s4addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF78 ++s4addl 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF7 ++s4addl 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEE8 ++s4addl 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A7856340A ++s4addl 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFF4 ++s4addl 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFF5 ++s4addl 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFF6 ++s4addl 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFF7 ++s4addl 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000003 ++s4addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF3 ++s4addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF2 ++s4addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF1 ++s4addl 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000073 ++s4addl 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000074 ++s4addl 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FF3 ++s4addl 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000007FF4 ++s4addl 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFF3 ++s4addl 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000007FFFFFF4 ++s4addl 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x7FFFFFFFFFFFFFF4 ++s4addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFF4 ++s4addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FF4 ++s4addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF74 ++s4addl 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF3 ++s4addl 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEE4 ++s4addl 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563406 ++s4addl 0x000000000000007F 0x0000000000000000 = 0x00000000000001FC ++s4addl 0x000000000000007F 0x0000000000000001 = 0x00000000000001FD ++s4addl 0x000000000000007F 0x0000000000000002 = 0x00000000000001FE ++s4addl 0x000000000000007F 0x0000000000000003 = 0x00000000000001FF ++s4addl 0x000000000000007F 0x000000000000000F = 0x000000000000020B ++s4addl 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000000001FB ++s4addl 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000000001FA ++s4addl 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00000000000001F9 ++s4addl 0x000000000000007F 0x000000000000007F = 0x000000000000027B ++s4addl 0x000000000000007F 0x0000000000000080 = 0x000000000000027C ++s4addl 0x000000000000007F 0x0000000000007FFF = 0x00000000000081FB ++s4addl 0x000000000000007F 0x0000000000008000 = 0x00000000000081FC ++s4addl 0x000000000000007F 0x000000007FFFFFFF = 0x00000000800001FB ++s4addl 0x000000000000007F 0x0000000080000000 = 0x00000000800001FC ++s4addl 0x000000000000007F 0x8000000000000000 = 0x80000000000001FC ++s4addl 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF800001FC ++s4addl 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF81FC ++s4addl 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000017C ++s4addl 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x80000000000001FB ++s4addl 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCE0EC ++s4addl 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A7856360E ++s4addl 0x0000000000000080 0x0000000000000000 = 0x0000000000000200 ++s4addl 0x0000000000000080 0x0000000000000001 = 0x0000000000000201 ++s4addl 0x0000000000000080 0x0000000000000002 = 0x0000000000000202 ++s4addl 0x0000000000000080 0x0000000000000003 = 0x0000000000000203 ++s4addl 0x0000000000000080 0x000000000000000F = 0x000000000000020F ++s4addl 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x00000000000001FF ++s4addl 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x00000000000001FE ++s4addl 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x00000000000001FD ++s4addl 0x0000000000000080 0x000000000000007F = 0x000000000000027F ++s4addl 0x0000000000000080 0x0000000000000080 = 0x0000000000000280 ++s4addl 0x0000000000000080 0x0000000000007FFF = 0x00000000000081FF ++s4addl 0x0000000000000080 0x0000000000008000 = 0x0000000000008200 ++s4addl 0x0000000000000080 0x000000007FFFFFFF = 0x00000000800001FF ++s4addl 0x0000000000000080 0x0000000080000000 = 0x0000000080000200 ++s4addl 0x0000000000000080 0x8000000000000000 = 0x8000000000000200 ++s4addl 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000200 ++s4addl 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8200 ++s4addl 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000180 ++s4addl 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x80000000000001FF ++s4addl 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCE0F0 ++s4addl 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563612 ++s4addl 0x0000000000007FFF 0x0000000000000000 = 0x000000000001FFFC ++s4addl 0x0000000000007FFF 0x0000000000000001 = 0x000000000001FFFD ++s4addl 0x0000000000007FFF 0x0000000000000002 = 0x000000000001FFFE ++s4addl 0x0000000000007FFF 0x0000000000000003 = 0x000000000001FFFF ++s4addl 0x0000000000007FFF 0x000000000000000F = 0x000000000002000B ++s4addl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000001FFFB ++s4addl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000001FFFA ++s4addl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000001FFF9 ++s4addl 0x0000000000007FFF 0x000000000000007F = 0x000000000002007B ++s4addl 0x0000000000007FFF 0x0000000000000080 = 0x000000000002007C ++s4addl 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000027FFB ++s4addl 0x0000000000007FFF 0x0000000000008000 = 0x0000000000027FFC ++s4addl 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000008001FFFB ++s4addl 0x0000000000007FFF 0x0000000080000000 = 0x000000008001FFFC ++s4addl 0x0000000000007FFF 0x8000000000000000 = 0x800000000001FFFC ++s4addl 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF8001FFFC ++s4addl 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000017FFC ++s4addl 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000001FF7C ++s4addl 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x800000000001FFFB ++s4addl 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABEDEEC ++s4addl 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A7858340E ++s4addl 0x0000000000008000 0x0000000000000000 = 0x0000000000020000 ++s4addl 0x0000000000008000 0x0000000000000001 = 0x0000000000020001 ++s4addl 0x0000000000008000 0x0000000000000002 = 0x0000000000020002 ++s4addl 0x0000000000008000 0x0000000000000003 = 0x0000000000020003 ++s4addl 0x0000000000008000 0x000000000000000F = 0x000000000002000F ++s4addl 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000000001FFFF ++s4addl 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000000001FFFE ++s4addl 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000000001FFFD ++s4addl 0x0000000000008000 0x000000000000007F = 0x000000000002007F ++s4addl 0x0000000000008000 0x0000000000000080 = 0x0000000000020080 ++s4addl 0x0000000000008000 0x0000000000007FFF = 0x0000000000027FFF ++s4addl 0x0000000000008000 0x0000000000008000 = 0x0000000000028000 ++s4addl 0x0000000000008000 0x000000007FFFFFFF = 0x000000008001FFFF ++s4addl 0x0000000000008000 0x0000000080000000 = 0x0000000080020000 ++s4addl 0x0000000000008000 0x8000000000000000 = 0x8000000000020000 ++s4addl 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80020000 ++s4addl 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000018000 ++s4addl 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000001FF80 ++s4addl 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x800000000001FFFF ++s4addl 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABEDEF0 ++s4addl 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78583412 ++s4addl 0x000000007FFFFFFF 0x0000000000000000 = 0x00000001FFFFFFFC ++s4addl 0x000000007FFFFFFF 0x0000000000000001 = 0x00000001FFFFFFFD ++s4addl 0x000000007FFFFFFF 0x0000000000000002 = 0x00000001FFFFFFFE ++s4addl 0x000000007FFFFFFF 0x0000000000000003 = 0x00000001FFFFFFFF ++s4addl 0x000000007FFFFFFF 0x000000000000000F = 0x000000020000000B ++s4addl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000001FFFFFFFB ++s4addl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000001FFFFFFFA ++s4addl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000001FFFFFFF9 ++s4addl 0x000000007FFFFFFF 0x000000000000007F = 0x000000020000007B ++s4addl 0x000000007FFFFFFF 0x0000000000000080 = 0x000000020000007C ++s4addl 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000200007FFB ++s4addl 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000200007FFC ++s4addl 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000027FFFFFFB ++s4addl 0x000000007FFFFFFF 0x0000000080000000 = 0x000000027FFFFFFC ++s4addl 0x000000007FFFFFFF 0x8000000000000000 = 0x80000001FFFFFFFC ++s4addl 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000017FFFFFFC ++s4addl 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000001FFFF7FFC ++s4addl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000001FFFFFF7C ++s4addl 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x80000001FFFFFFFB ++s4addl 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x1234567A9ABCDEEC ++s4addl 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9C7856340E ++s4addl 0x0000000080000000 0x0000000000000000 = 0x0000000200000000 ++s4addl 0x0000000080000000 0x0000000000000001 = 0x0000000200000001 ++s4addl 0x0000000080000000 0x0000000000000002 = 0x0000000200000002 ++s4addl 0x0000000080000000 0x0000000000000003 = 0x0000000200000003 ++s4addl 0x0000000080000000 0x000000000000000F = 0x000000020000000F ++s4addl 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x00000001FFFFFFFF ++s4addl 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x00000001FFFFFFFE ++s4addl 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x00000001FFFFFFFD ++s4addl 0x0000000080000000 0x000000000000007F = 0x000000020000007F ++s4addl 0x0000000080000000 0x0000000000000080 = 0x0000000200000080 ++s4addl 0x0000000080000000 0x0000000000007FFF = 0x0000000200007FFF ++s4addl 0x0000000080000000 0x0000000000008000 = 0x0000000200008000 ++s4addl 0x0000000080000000 0x000000007FFFFFFF = 0x000000027FFFFFFF ++s4addl 0x0000000080000000 0x0000000080000000 = 0x0000000280000000 ++s4addl 0x0000000080000000 0x8000000000000000 = 0x8000000200000000 ++s4addl 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000180000000 ++s4addl 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x00000001FFFF8000 ++s4addl 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x00000001FFFFFF80 ++s4addl 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x80000001FFFFFFFF ++s4addl 0x0000000080000000 0x123456789ABCDEF0 = 0x1234567A9ABCDEF0 ++s4addl 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9C78563412 ++s4addl 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++s4addl 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++s4addl 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++s4addl 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++s4addl 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++s4addl 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s4addl 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s4addl 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++s4addl 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++s4addl 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++s4addl 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++s4addl 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++s4addl 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++s4addl 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++s4addl 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++s4addl 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s4addl 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++s4addl 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++s4addl 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++s4addl 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++s4addl 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++s4addl 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFE00000000 ++s4addl 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFE00000001 ++s4addl 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFE00000002 ++s4addl 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFE00000003 ++s4addl 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFE0000000F ++s4addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFDFFFFFFFF ++s4addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFDFFFFFFFE ++s4addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFDFFFFFFFD ++s4addl 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFE0000007F ++s4addl 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFE00000080 ++s4addl 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFE00007FFF ++s4addl 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFE00008000 ++s4addl 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFE7FFFFFFF ++s4addl 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFE80000000 ++s4addl 0xFFFFFFFF80000000 0x8000000000000000 = 0x7FFFFFFE00000000 ++s4addl 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFD80000000 ++s4addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFDFFFF8000 ++s4addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFDFFFFFF80 ++s4addl 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFDFFFFFFFF ++s4addl 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456769ABCDEF0 ++s4addl 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9878563412 ++s4addl 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFE0000 ++s4addl 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFE0001 ++s4addl 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFE0002 ++s4addl 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFE0003 ++s4addl 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFE000F ++s4addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFDFFFF ++s4addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFDFFFE ++s4addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFDFFFD ++s4addl 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFE007F ++s4addl 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFE0080 ++s4addl 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFE7FFF ++s4addl 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFE8000 ++s4addl 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFDFFFF ++s4addl 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000007FFE0000 ++s4addl 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x7FFFFFFFFFFE0000 ++s4addl 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFE0000 ++s4addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFD8000 ++s4addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFDFF80 ++s4addl 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFDFFFF ++s4addl 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABADEF0 ++s4addl 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78543412 ++s4addl 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFE00 ++s4addl 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFE01 ++s4addl 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFE02 ++s4addl 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFE03 ++s4addl 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFE0F ++s4addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFDFF ++s4addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFDFE ++s4addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFDFD ++s4addl 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFE7F ++s4addl 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFE80 ++s4addl 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007DFF ++s4addl 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000007E00 ++s4addl 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFDFF ++s4addl 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000007FFFFE00 ++s4addl 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x7FFFFFFFFFFFFE00 ++s4addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFE00 ++s4addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7E00 ++s4addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFD80 ++s4addl 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFDFF ++s4addl 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDCF0 ++s4addl 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563212 ++s4addl 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4addl 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++s4addl 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s4addl 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++s4addl 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000B ++s4addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFB ++s4addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++s4addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF9 ++s4addl 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007B ++s4addl 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007C ++s4addl 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFB ++s4addl 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FFC ++s4addl 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFB ++s4addl 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFC ++s4addl 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFC ++s4addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFFC ++s4addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFC ++s4addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7C ++s4addl 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFB ++s4addl 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEEC ++s4addl 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A7856340E ++s4addl 0x123456789ABCDEF0 0x0000000000000000 = 0x48D159E26AF37BC0 ++s4addl 0x123456789ABCDEF0 0x0000000000000001 = 0x48D159E26AF37BC1 ++s4addl 0x123456789ABCDEF0 0x0000000000000002 = 0x48D159E26AF37BC2 ++s4addl 0x123456789ABCDEF0 0x0000000000000003 = 0x48D159E26AF37BC3 ++s4addl 0x123456789ABCDEF0 0x000000000000000F = 0x48D159E26AF37BCF ++s4addl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x48D159E26AF37BBF ++s4addl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x48D159E26AF37BBE ++s4addl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x48D159E26AF37BBD ++s4addl 0x123456789ABCDEF0 0x000000000000007F = 0x48D159E26AF37C3F ++s4addl 0x123456789ABCDEF0 0x0000000000000080 = 0x48D159E26AF37C40 ++s4addl 0x123456789ABCDEF0 0x0000000000007FFF = 0x48D159E26AF3FBBF ++s4addl 0x123456789ABCDEF0 0x0000000000008000 = 0x48D159E26AF3FBC0 ++s4addl 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x48D159E2EAF37BBF ++s4addl 0x123456789ABCDEF0 0x0000000080000000 = 0x48D159E2EAF37BC0 ++s4addl 0x123456789ABCDEF0 0x8000000000000000 = 0xC8D159E26AF37BC0 ++s4addl 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x48D159E1EAF37BC0 ++s4addl 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x48D159E26AF2FBC0 ++s4addl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x48D159E26AF37B40 ++s4addl 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0xC8D159E26AF37BBF ++s4addl 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x5B05B05B05B05AB0 ++s4addl 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x39B0167CE349AFD2 ++s4addl 0xF0DEBC9A78563412 0x0000000000000000 = 0xC37AF269E158D048 ++s4addl 0xF0DEBC9A78563412 0x0000000000000001 = 0xC37AF269E158D049 ++s4addl 0xF0DEBC9A78563412 0x0000000000000002 = 0xC37AF269E158D04A ++s4addl 0xF0DEBC9A78563412 0x0000000000000003 = 0xC37AF269E158D04B ++s4addl 0xF0DEBC9A78563412 0x000000000000000F = 0xC37AF269E158D057 ++s4addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xC37AF269E158D047 ++s4addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xC37AF269E158D046 ++s4addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xC37AF269E158D045 ++s4addl 0xF0DEBC9A78563412 0x000000000000007F = 0xC37AF269E158D0C7 ++s4addl 0xF0DEBC9A78563412 0x0000000000000080 = 0xC37AF269E158D0C8 ++s4addl 0xF0DEBC9A78563412 0x0000000000007FFF = 0xC37AF269E1595047 ++s4addl 0xF0DEBC9A78563412 0x0000000000008000 = 0xC37AF269E1595048 ++s4addl 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xC37AF26A6158D047 ++s4addl 0xF0DEBC9A78563412 0x0000000080000000 = 0xC37AF26A6158D048 ++s4addl 0xF0DEBC9A78563412 0x8000000000000000 = 0x437AF269E158D048 ++s4addl 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xC37AF2696158D048 ++s4addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xC37AF269E1585048 ++s4addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xC37AF269E158CFC8 ++s4addl 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x437AF269E158D047 ++s4addl 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xD5AF48E27C15AF38 ++s4addl 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xB459AF0459AF045A ++=== Running test on s4subl === ++s4subl 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++s4subl 0x0000000000000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++s4subl 0x0000000000000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s4subl 0x0000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++s4subl 0x0000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++s4subl 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++s4subl 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++s4subl 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++s4subl 0x0000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++s4subl 0x0000000000000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++s4subl 0x0000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++s4subl 0x0000000000000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++s4subl 0x0000000000000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++s4subl 0x0000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s4subl 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++s4subl 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++s4subl 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++s4subl 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++s4subl 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000001 ++s4subl 0x0000000000000000 0x123456789ABCDEF0 = 0xEDCBA98765432110 ++s4subl 0x0000000000000000 0xF0DEBC9A78563412 = 0x0F21436587A9CBEE ++s4subl 0x0000000000000001 0x0000000000000000 = 0x0000000000000004 ++s4subl 0x0000000000000001 0x0000000000000001 = 0x0000000000000003 ++s4subl 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++s4subl 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++s4subl 0x0000000000000001 0x000000000000000F = 0xFFFFFFFFFFFFFFF5 ++s4subl 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000005 ++s4subl 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000006 ++s4subl 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++s4subl 0x0000000000000001 0x000000000000007F = 0xFFFFFFFFFFFFFF85 ++s4subl 0x0000000000000001 0x0000000000000080 = 0xFFFFFFFFFFFFFF84 ++s4subl 0x0000000000000001 0x0000000000007FFF = 0xFFFFFFFFFFFF8005 ++s4subl 0x0000000000000001 0x0000000000008000 = 0xFFFFFFFFFFFF8004 ++s4subl 0x0000000000000001 0x000000007FFFFFFF = 0xFFFFFFFF80000005 ++s4subl 0x0000000000000001 0x0000000080000000 = 0xFFFFFFFF80000004 ++s4subl 0x0000000000000001 0x8000000000000000 = 0x8000000000000004 ++s4subl 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000080000004 ++s4subl 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000008004 ++s4subl 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000084 ++s4subl 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x8000000000000005 ++s4subl 0x0000000000000001 0x123456789ABCDEF0 = 0xEDCBA98765432114 ++s4subl 0x0000000000000001 0xF0DEBC9A78563412 = 0x0F21436587A9CBF2 ++s4subl 0x0000000000000002 0x0000000000000000 = 0x0000000000000008 ++s4subl 0x0000000000000002 0x0000000000000001 = 0x0000000000000007 ++s4subl 0x0000000000000002 0x0000000000000002 = 0x0000000000000006 ++s4subl 0x0000000000000002 0x0000000000000003 = 0x0000000000000005 ++s4subl 0x0000000000000002 0x000000000000000F = 0xFFFFFFFFFFFFFFF9 ++s4subl 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000009 ++s4subl 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x000000000000000A ++s4subl 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x000000000000000B ++s4subl 0x0000000000000002 0x000000000000007F = 0xFFFFFFFFFFFFFF89 ++s4subl 0x0000000000000002 0x0000000000000080 = 0xFFFFFFFFFFFFFF88 ++s4subl 0x0000000000000002 0x0000000000007FFF = 0xFFFFFFFFFFFF8009 ++s4subl 0x0000000000000002 0x0000000000008000 = 0xFFFFFFFFFFFF8008 ++s4subl 0x0000000000000002 0x000000007FFFFFFF = 0xFFFFFFFF80000009 ++s4subl 0x0000000000000002 0x0000000080000000 = 0xFFFFFFFF80000008 ++s4subl 0x0000000000000002 0x8000000000000000 = 0x8000000000000008 ++s4subl 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000080000008 ++s4subl 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000008008 ++s4subl 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000088 ++s4subl 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x8000000000000009 ++s4subl 0x0000000000000002 0x123456789ABCDEF0 = 0xEDCBA98765432118 ++s4subl 0x0000000000000002 0xF0DEBC9A78563412 = 0x0F21436587A9CBF6 ++s4subl 0x0000000000000003 0x0000000000000000 = 0x000000000000000C ++s4subl 0x0000000000000003 0x0000000000000001 = 0x000000000000000B ++s4subl 0x0000000000000003 0x0000000000000002 = 0x000000000000000A ++s4subl 0x0000000000000003 0x0000000000000003 = 0x0000000000000009 ++s4subl 0x0000000000000003 0x000000000000000F = 0xFFFFFFFFFFFFFFFD ++s4subl 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x000000000000000D ++s4subl 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000000000000E ++s4subl 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++s4subl 0x0000000000000003 0x000000000000007F = 0xFFFFFFFFFFFFFF8D ++s4subl 0x0000000000000003 0x0000000000000080 = 0xFFFFFFFFFFFFFF8C ++s4subl 0x0000000000000003 0x0000000000007FFF = 0xFFFFFFFFFFFF800D ++s4subl 0x0000000000000003 0x0000000000008000 = 0xFFFFFFFFFFFF800C ++s4subl 0x0000000000000003 0x000000007FFFFFFF = 0xFFFFFFFF8000000D ++s4subl 0x0000000000000003 0x0000000080000000 = 0xFFFFFFFF8000000C ++s4subl 0x0000000000000003 0x8000000000000000 = 0x800000000000000C ++s4subl 0x0000000000000003 0xFFFFFFFF80000000 = 0x000000008000000C ++s4subl 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x000000000000800C ++s4subl 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x000000000000008C ++s4subl 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x800000000000000D ++s4subl 0x0000000000000003 0x123456789ABCDEF0 = 0xEDCBA9876543211C ++s4subl 0x0000000000000003 0xF0DEBC9A78563412 = 0x0F21436587A9CBFA ++s4subl 0x000000000000000F 0x0000000000000000 = 0x000000000000003C ++s4subl 0x000000000000000F 0x0000000000000001 = 0x000000000000003B ++s4subl 0x000000000000000F 0x0000000000000002 = 0x000000000000003A ++s4subl 0x000000000000000F 0x0000000000000003 = 0x0000000000000039 ++s4subl 0x000000000000000F 0x000000000000000F = 0x000000000000002D ++s4subl 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000003D ++s4subl 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000003E ++s4subl 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000003F ++s4subl 0x000000000000000F 0x000000000000007F = 0xFFFFFFFFFFFFFFBD ++s4subl 0x000000000000000F 0x0000000000000080 = 0xFFFFFFFFFFFFFFBC ++s4subl 0x000000000000000F 0x0000000000007FFF = 0xFFFFFFFFFFFF803D ++s4subl 0x000000000000000F 0x0000000000008000 = 0xFFFFFFFFFFFF803C ++s4subl 0x000000000000000F 0x000000007FFFFFFF = 0xFFFFFFFF8000003D ++s4subl 0x000000000000000F 0x0000000080000000 = 0xFFFFFFFF8000003C ++s4subl 0x000000000000000F 0x8000000000000000 = 0x800000000000003C ++s4subl 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000008000003C ++s4subl 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000803C ++s4subl 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x00000000000000BC ++s4subl 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x800000000000003D ++s4subl 0x000000000000000F 0x123456789ABCDEF0 = 0xEDCBA9876543214C ++s4subl 0x000000000000000F 0xF0DEBC9A78563412 = 0x0F21436587A9CC2A ++s4subl 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4subl 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFB ++s4subl 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++s4subl 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF9 ++s4subl 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFED ++s4subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++s4subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s4subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++s4subl 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF7D ++s4subl 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF7C ++s4subl 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF7FFD ++s4subl 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FFC ++s4subl 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF7FFFFFFD ++s4subl 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFF7FFFFFFC ++s4subl 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFC ++s4subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFC ++s4subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFC ++s4subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007C ++s4subl 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++s4subl 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xEDCBA9876543210C ++s4subl 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0F21436587A9CBEA ++s4subl 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s4subl 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFF7 ++s4subl 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFF6 ++s4subl 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFF5 ++s4subl 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFE9 ++s4subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s4subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++s4subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++s4subl 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFF79 ++s4subl 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFF78 ++s4subl 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFF7FF9 ++s4subl 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFF7FF8 ++s4subl 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFF7FFFFFF9 ++s4subl 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFF7FFFFFF8 ++s4subl 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x7FFFFFFFFFFFFFF8 ++s4subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000007FFFFFF8 ++s4subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000007FF8 ++s4subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000078 ++s4subl 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF9 ++s4subl 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xEDCBA98765432108 ++s4subl 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0F21436587A9CBE6 ++s4subl 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFF4 ++s4subl 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFF3 ++s4subl 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFF2 ++s4subl 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFF1 ++s4subl 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFE5 ++s4subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF5 ++s4subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF6 ++s4subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF7 ++s4subl 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFF75 ++s4subl 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFF74 ++s4subl 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFF7FF5 ++s4subl 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFF7FF4 ++s4subl 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFF7FFFFFF5 ++s4subl 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFF7FFFFFF4 ++s4subl 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x7FFFFFFFFFFFFFF4 ++s4subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000007FFFFFF4 ++s4subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000007FF4 ++s4subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000074 ++s4subl 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF5 ++s4subl 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xEDCBA98765432104 ++s4subl 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0F21436587A9CBE2 ++s4subl 0x000000000000007F 0x0000000000000000 = 0x00000000000001FC ++s4subl 0x000000000000007F 0x0000000000000001 = 0x00000000000001FB ++s4subl 0x000000000000007F 0x0000000000000002 = 0x00000000000001FA ++s4subl 0x000000000000007F 0x0000000000000003 = 0x00000000000001F9 ++s4subl 0x000000000000007F 0x000000000000000F = 0x00000000000001ED ++s4subl 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000000001FD ++s4subl 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000000001FE ++s4subl 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00000000000001FF ++s4subl 0x000000000000007F 0x000000000000007F = 0x000000000000017D ++s4subl 0x000000000000007F 0x0000000000000080 = 0x000000000000017C ++s4subl 0x000000000000007F 0x0000000000007FFF = 0xFFFFFFFFFFFF81FD ++s4subl 0x000000000000007F 0x0000000000008000 = 0xFFFFFFFFFFFF81FC ++s4subl 0x000000000000007F 0x000000007FFFFFFF = 0xFFFFFFFF800001FD ++s4subl 0x000000000000007F 0x0000000080000000 = 0xFFFFFFFF800001FC ++s4subl 0x000000000000007F 0x8000000000000000 = 0x80000000000001FC ++s4subl 0x000000000000007F 0xFFFFFFFF80000000 = 0x00000000800001FC ++s4subl 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x00000000000081FC ++s4subl 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000027C ++s4subl 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x80000000000001FD ++s4subl 0x000000000000007F 0x123456789ABCDEF0 = 0xEDCBA9876543230C ++s4subl 0x000000000000007F 0xF0DEBC9A78563412 = 0x0F21436587A9CDEA ++s4subl 0x0000000000000080 0x0000000000000000 = 0x0000000000000200 ++s4subl 0x0000000000000080 0x0000000000000001 = 0x00000000000001FF ++s4subl 0x0000000000000080 0x0000000000000002 = 0x00000000000001FE ++s4subl 0x0000000000000080 0x0000000000000003 = 0x00000000000001FD ++s4subl 0x0000000000000080 0x000000000000000F = 0x00000000000001F1 ++s4subl 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000201 ++s4subl 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000202 ++s4subl 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000203 ++s4subl 0x0000000000000080 0x000000000000007F = 0x0000000000000181 ++s4subl 0x0000000000000080 0x0000000000000080 = 0x0000000000000180 ++s4subl 0x0000000000000080 0x0000000000007FFF = 0xFFFFFFFFFFFF8201 ++s4subl 0x0000000000000080 0x0000000000008000 = 0xFFFFFFFFFFFF8200 ++s4subl 0x0000000000000080 0x000000007FFFFFFF = 0xFFFFFFFF80000201 ++s4subl 0x0000000000000080 0x0000000080000000 = 0xFFFFFFFF80000200 ++s4subl 0x0000000000000080 0x8000000000000000 = 0x8000000000000200 ++s4subl 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000080000200 ++s4subl 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000008200 ++s4subl 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000280 ++s4subl 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x8000000000000201 ++s4subl 0x0000000000000080 0x123456789ABCDEF0 = 0xEDCBA98765432310 ++s4subl 0x0000000000000080 0xF0DEBC9A78563412 = 0x0F21436587A9CDEE ++s4subl 0x0000000000007FFF 0x0000000000000000 = 0x000000000001FFFC ++s4subl 0x0000000000007FFF 0x0000000000000001 = 0x000000000001FFFB ++s4subl 0x0000000000007FFF 0x0000000000000002 = 0x000000000001FFFA ++s4subl 0x0000000000007FFF 0x0000000000000003 = 0x000000000001FFF9 ++s4subl 0x0000000000007FFF 0x000000000000000F = 0x000000000001FFED ++s4subl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000001FFFD ++s4subl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000001FFFE ++s4subl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000001FFFF ++s4subl 0x0000000000007FFF 0x000000000000007F = 0x000000000001FF7D ++s4subl 0x0000000000007FFF 0x0000000000000080 = 0x000000000001FF7C ++s4subl 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000017FFD ++s4subl 0x0000000000007FFF 0x0000000000008000 = 0x0000000000017FFC ++s4subl 0x0000000000007FFF 0x000000007FFFFFFF = 0xFFFFFFFF8001FFFD ++s4subl 0x0000000000007FFF 0x0000000080000000 = 0xFFFFFFFF8001FFFC ++s4subl 0x0000000000007FFF 0x8000000000000000 = 0x800000000001FFFC ++s4subl 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000008001FFFC ++s4subl 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000027FFC ++s4subl 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000002007C ++s4subl 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x800000000001FFFD ++s4subl 0x0000000000007FFF 0x123456789ABCDEF0 = 0xEDCBA9876545210C ++s4subl 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0F21436587ABCBEA ++s4subl 0x0000000000008000 0x0000000000000000 = 0x0000000000020000 ++s4subl 0x0000000000008000 0x0000000000000001 = 0x000000000001FFFF ++s4subl 0x0000000000008000 0x0000000000000002 = 0x000000000001FFFE ++s4subl 0x0000000000008000 0x0000000000000003 = 0x000000000001FFFD ++s4subl 0x0000000000008000 0x000000000000000F = 0x000000000001FFF1 ++s4subl 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000020001 ++s4subl 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000020002 ++s4subl 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000020003 ++s4subl 0x0000000000008000 0x000000000000007F = 0x000000000001FF81 ++s4subl 0x0000000000008000 0x0000000000000080 = 0x000000000001FF80 ++s4subl 0x0000000000008000 0x0000000000007FFF = 0x0000000000018001 ++s4subl 0x0000000000008000 0x0000000000008000 = 0x0000000000018000 ++s4subl 0x0000000000008000 0x000000007FFFFFFF = 0xFFFFFFFF80020001 ++s4subl 0x0000000000008000 0x0000000080000000 = 0xFFFFFFFF80020000 ++s4subl 0x0000000000008000 0x8000000000000000 = 0x8000000000020000 ++s4subl 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000080020000 ++s4subl 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000028000 ++s4subl 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000020080 ++s4subl 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x8000000000020001 ++s4subl 0x0000000000008000 0x123456789ABCDEF0 = 0xEDCBA98765452110 ++s4subl 0x0000000000008000 0xF0DEBC9A78563412 = 0x0F21436587ABCBEE ++s4subl 0x000000007FFFFFFF 0x0000000000000000 = 0x00000001FFFFFFFC ++s4subl 0x000000007FFFFFFF 0x0000000000000001 = 0x00000001FFFFFFFB ++s4subl 0x000000007FFFFFFF 0x0000000000000002 = 0x00000001FFFFFFFA ++s4subl 0x000000007FFFFFFF 0x0000000000000003 = 0x00000001FFFFFFF9 ++s4subl 0x000000007FFFFFFF 0x000000000000000F = 0x00000001FFFFFFED ++s4subl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000001FFFFFFFD ++s4subl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000001FFFFFFFE ++s4subl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000001FFFFFFFF ++s4subl 0x000000007FFFFFFF 0x000000000000007F = 0x00000001FFFFFF7D ++s4subl 0x000000007FFFFFFF 0x0000000000000080 = 0x00000001FFFFFF7C ++s4subl 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000001FFFF7FFD ++s4subl 0x000000007FFFFFFF 0x0000000000008000 = 0x00000001FFFF7FFC ++s4subl 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000017FFFFFFD ++s4subl 0x000000007FFFFFFF 0x0000000080000000 = 0x000000017FFFFFFC ++s4subl 0x000000007FFFFFFF 0x8000000000000000 = 0x80000001FFFFFFFC ++s4subl 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000027FFFFFFC ++s4subl 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000200007FFC ++s4subl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000020000007C ++s4subl 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x80000001FFFFFFFD ++s4subl 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0xEDCBA9896543210C ++s4subl 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0F21436787A9CBEA ++s4subl 0x0000000080000000 0x0000000000000000 = 0x0000000200000000 ++s4subl 0x0000000080000000 0x0000000000000001 = 0x00000001FFFFFFFF ++s4subl 0x0000000080000000 0x0000000000000002 = 0x00000001FFFFFFFE ++s4subl 0x0000000080000000 0x0000000000000003 = 0x00000001FFFFFFFD ++s4subl 0x0000000080000000 0x000000000000000F = 0x00000001FFFFFFF1 ++s4subl 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000200000001 ++s4subl 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000200000002 ++s4subl 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000200000003 ++s4subl 0x0000000080000000 0x000000000000007F = 0x00000001FFFFFF81 ++s4subl 0x0000000080000000 0x0000000000000080 = 0x00000001FFFFFF80 ++s4subl 0x0000000080000000 0x0000000000007FFF = 0x00000001FFFF8001 ++s4subl 0x0000000080000000 0x0000000000008000 = 0x00000001FFFF8000 ++s4subl 0x0000000080000000 0x000000007FFFFFFF = 0x0000000180000001 ++s4subl 0x0000000080000000 0x0000000080000000 = 0x0000000180000000 ++s4subl 0x0000000080000000 0x8000000000000000 = 0x8000000200000000 ++s4subl 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000280000000 ++s4subl 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000200008000 ++s4subl 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000200000080 ++s4subl 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x8000000200000001 ++s4subl 0x0000000080000000 0x123456789ABCDEF0 = 0xEDCBA98965432110 ++s4subl 0x0000000080000000 0xF0DEBC9A78563412 = 0x0F21436787A9CBEE ++s4subl 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++s4subl 0x8000000000000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++s4subl 0x8000000000000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s4subl 0x8000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++s4subl 0x8000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++s4subl 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++s4subl 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++s4subl 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++s4subl 0x8000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++s4subl 0x8000000000000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++s4subl 0x8000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++s4subl 0x8000000000000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++s4subl 0x8000000000000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++s4subl 0x8000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s4subl 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++s4subl 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++s4subl 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++s4subl 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++s4subl 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000001 ++s4subl 0x8000000000000000 0x123456789ABCDEF0 = 0xEDCBA98765432110 ++s4subl 0x8000000000000000 0xF0DEBC9A78563412 = 0x0F21436587A9CBEE ++s4subl 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFE00000000 ++s4subl 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFDFFFFFFFF ++s4subl 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFDFFFFFFFE ++s4subl 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFDFFFFFFFD ++s4subl 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFDFFFFFFF1 ++s4subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFE00000001 ++s4subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFE00000002 ++s4subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFE00000003 ++s4subl 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFDFFFFFF81 ++s4subl 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFDFFFFFF80 ++s4subl 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFDFFFF8001 ++s4subl 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFDFFFF8000 ++s4subl 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFD80000001 ++s4subl 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFD80000000 ++s4subl 0xFFFFFFFF80000000 0x8000000000000000 = 0x7FFFFFFE00000000 ++s4subl 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFE80000000 ++s4subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFE00008000 ++s4subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFE00000080 ++s4subl 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFE00000001 ++s4subl 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xEDCBA98565432110 ++s4subl 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0F21436387A9CBEE ++s4subl 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFE0000 ++s4subl 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFDFFFF ++s4subl 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFDFFFE ++s4subl 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFDFFFD ++s4subl 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFDFFF1 ++s4subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFE0001 ++s4subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFE0002 ++s4subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFE0003 ++s4subl 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFDFF81 ++s4subl 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFDFF80 ++s4subl 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFD8001 ++s4subl 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFD8000 ++s4subl 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFF7FFE0001 ++s4subl 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFF7FFE0000 ++s4subl 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x7FFFFFFFFFFE0000 ++s4subl 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000007FFE0000 ++s4subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE8000 ++s4subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFE0080 ++s4subl 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFE0001 ++s4subl 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xEDCBA98765412110 ++s4subl 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0F21436587A7CBEE ++s4subl 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFE00 ++s4subl 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFDFF ++s4subl 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFDFE ++s4subl 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFDFD ++s4subl 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFDF1 ++s4subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFE01 ++s4subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFE02 ++s4subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFE03 ++s4subl 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFD81 ++s4subl 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFD80 ++s4subl 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFF7E01 ++s4subl 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFF7E00 ++s4subl 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFF7FFFFE01 ++s4subl 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFF7FFFFE00 ++s4subl 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x7FFFFFFFFFFFFE00 ++s4subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000007FFFFE00 ++s4subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000007E00 ++s4subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE80 ++s4subl 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFE01 ++s4subl 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xEDCBA98765431F10 ++s4subl 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0F21436587A9C9EE ++s4subl 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFC ++s4subl 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFB ++s4subl 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++s4subl 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF9 ++s4subl 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFED ++s4subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++s4subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s4subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++s4subl 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF7D ++s4subl 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF7C ++s4subl 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF7FFD ++s4subl 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FFC ++s4subl 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF7FFFFFFD ++s4subl 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFF7FFFFFFC ++s4subl 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFC ++s4subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFC ++s4subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFC ++s4subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007C ++s4subl 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++s4subl 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xEDCBA9876543210C ++s4subl 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0F21436587A9CBEA ++s4subl 0x123456789ABCDEF0 0x0000000000000000 = 0x48D159E26AF37BC0 ++s4subl 0x123456789ABCDEF0 0x0000000000000001 = 0x48D159E26AF37BBF ++s4subl 0x123456789ABCDEF0 0x0000000000000002 = 0x48D159E26AF37BBE ++s4subl 0x123456789ABCDEF0 0x0000000000000003 = 0x48D159E26AF37BBD ++s4subl 0x123456789ABCDEF0 0x000000000000000F = 0x48D159E26AF37BB1 ++s4subl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x48D159E26AF37BC1 ++s4subl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x48D159E26AF37BC2 ++s4subl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x48D159E26AF37BC3 ++s4subl 0x123456789ABCDEF0 0x000000000000007F = 0x48D159E26AF37B41 ++s4subl 0x123456789ABCDEF0 0x0000000000000080 = 0x48D159E26AF37B40 ++s4subl 0x123456789ABCDEF0 0x0000000000007FFF = 0x48D159E26AF2FBC1 ++s4subl 0x123456789ABCDEF0 0x0000000000008000 = 0x48D159E26AF2FBC0 ++s4subl 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x48D159E1EAF37BC1 ++s4subl 0x123456789ABCDEF0 0x0000000080000000 = 0x48D159E1EAF37BC0 ++s4subl 0x123456789ABCDEF0 0x8000000000000000 = 0xC8D159E26AF37BC0 ++s4subl 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x48D159E2EAF37BC0 ++s4subl 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x48D159E26AF3FBC0 ++s4subl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x48D159E26AF37C40 ++s4subl 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0xC8D159E26AF37BC1 ++s4subl 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x369D0369D0369CD0 ++s4subl 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x57F29D47F29D47AE ++s4subl 0xF0DEBC9A78563412 0x0000000000000000 = 0xC37AF269E158D048 ++s4subl 0xF0DEBC9A78563412 0x0000000000000001 = 0xC37AF269E158D047 ++s4subl 0xF0DEBC9A78563412 0x0000000000000002 = 0xC37AF269E158D046 ++s4subl 0xF0DEBC9A78563412 0x0000000000000003 = 0xC37AF269E158D045 ++s4subl 0xF0DEBC9A78563412 0x000000000000000F = 0xC37AF269E158D039 ++s4subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xC37AF269E158D049 ++s4subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xC37AF269E158D04A ++s4subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xC37AF269E158D04B ++s4subl 0xF0DEBC9A78563412 0x000000000000007F = 0xC37AF269E158CFC9 ++s4subl 0xF0DEBC9A78563412 0x0000000000000080 = 0xC37AF269E158CFC8 ++s4subl 0xF0DEBC9A78563412 0x0000000000007FFF = 0xC37AF269E1585049 ++s4subl 0xF0DEBC9A78563412 0x0000000000008000 = 0xC37AF269E1585048 ++s4subl 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xC37AF2696158D049 ++s4subl 0xF0DEBC9A78563412 0x0000000080000000 = 0xC37AF2696158D048 ++s4subl 0xF0DEBC9A78563412 0x8000000000000000 = 0x437AF269E158D048 ++s4subl 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xC37AF26A6158D048 ++s4subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xC37AF269E1595048 ++s4subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xC37AF269E158D0C8 ++s4subl 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x437AF269E158D049 ++s4subl 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xB1469BF1469BF158 ++s4subl 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xD29C35CF69029C36 ++=== Running test on s8addl === ++s8addl 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++s8addl 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++s8addl 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++s8addl 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++s8addl 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++s8addl 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s8addl 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s8addl 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++s8addl 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++s8addl 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++s8addl 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++s8addl 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++s8addl 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++s8addl 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++s8addl 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++s8addl 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s8addl 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++s8addl 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++s8addl 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++s8addl 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++s8addl 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++s8addl 0x0000000000000001 0x0000000000000000 = 0x0000000000000008 ++s8addl 0x0000000000000001 0x0000000000000001 = 0x0000000000000009 ++s8addl 0x0000000000000001 0x0000000000000002 = 0x000000000000000A ++s8addl 0x0000000000000001 0x0000000000000003 = 0x000000000000000B ++s8addl 0x0000000000000001 0x000000000000000F = 0x0000000000000017 ++s8addl 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000007 ++s8addl 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000006 ++s8addl 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000005 ++s8addl 0x0000000000000001 0x000000000000007F = 0x0000000000000087 ++s8addl 0x0000000000000001 0x0000000000000080 = 0x0000000000000088 ++s8addl 0x0000000000000001 0x0000000000007FFF = 0x0000000000008007 ++s8addl 0x0000000000000001 0x0000000000008000 = 0x0000000000008008 ++s8addl 0x0000000000000001 0x000000007FFFFFFF = 0x0000000080000007 ++s8addl 0x0000000000000001 0x0000000080000000 = 0x0000000080000008 ++s8addl 0x0000000000000001 0x8000000000000000 = 0x8000000000000008 ++s8addl 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000008 ++s8addl 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8008 ++s8addl 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF88 ++s8addl 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x8000000000000007 ++s8addl 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF8 ++s8addl 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A7856341A ++s8addl 0x0000000000000002 0x0000000000000000 = 0x0000000000000010 ++s8addl 0x0000000000000002 0x0000000000000001 = 0x0000000000000011 ++s8addl 0x0000000000000002 0x0000000000000002 = 0x0000000000000012 ++s8addl 0x0000000000000002 0x0000000000000003 = 0x0000000000000013 ++s8addl 0x0000000000000002 0x000000000000000F = 0x000000000000001F ++s8addl 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++s8addl 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x000000000000000E ++s8addl 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x000000000000000D ++s8addl 0x0000000000000002 0x000000000000007F = 0x000000000000008F ++s8addl 0x0000000000000002 0x0000000000000080 = 0x0000000000000090 ++s8addl 0x0000000000000002 0x0000000000007FFF = 0x000000000000800F ++s8addl 0x0000000000000002 0x0000000000008000 = 0x0000000000008010 ++s8addl 0x0000000000000002 0x000000007FFFFFFF = 0x000000008000000F ++s8addl 0x0000000000000002 0x0000000080000000 = 0x0000000080000010 ++s8addl 0x0000000000000002 0x8000000000000000 = 0x8000000000000010 ++s8addl 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000010 ++s8addl 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8010 ++s8addl 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF90 ++s8addl 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x800000000000000F ++s8addl 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDF00 ++s8addl 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563422 ++s8addl 0x0000000000000003 0x0000000000000000 = 0x0000000000000018 ++s8addl 0x0000000000000003 0x0000000000000001 = 0x0000000000000019 ++s8addl 0x0000000000000003 0x0000000000000002 = 0x000000000000001A ++s8addl 0x0000000000000003 0x0000000000000003 = 0x000000000000001B ++s8addl 0x0000000000000003 0x000000000000000F = 0x0000000000000027 ++s8addl 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000017 ++s8addl 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000016 ++s8addl 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000015 ++s8addl 0x0000000000000003 0x000000000000007F = 0x0000000000000097 ++s8addl 0x0000000000000003 0x0000000000000080 = 0x0000000000000098 ++s8addl 0x0000000000000003 0x0000000000007FFF = 0x0000000000008017 ++s8addl 0x0000000000000003 0x0000000000008000 = 0x0000000000008018 ++s8addl 0x0000000000000003 0x000000007FFFFFFF = 0x0000000080000017 ++s8addl 0x0000000000000003 0x0000000080000000 = 0x0000000080000018 ++s8addl 0x0000000000000003 0x8000000000000000 = 0x8000000000000018 ++s8addl 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000018 ++s8addl 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8018 ++s8addl 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF98 ++s8addl 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x8000000000000017 ++s8addl 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDF08 ++s8addl 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A7856342A ++s8addl 0x000000000000000F 0x0000000000000000 = 0x0000000000000078 ++s8addl 0x000000000000000F 0x0000000000000001 = 0x0000000000000079 ++s8addl 0x000000000000000F 0x0000000000000002 = 0x000000000000007A ++s8addl 0x000000000000000F 0x0000000000000003 = 0x000000000000007B ++s8addl 0x000000000000000F 0x000000000000000F = 0x0000000000000087 ++s8addl 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000077 ++s8addl 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000076 ++s8addl 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000075 ++s8addl 0x000000000000000F 0x000000000000007F = 0x00000000000000F7 ++s8addl 0x000000000000000F 0x0000000000000080 = 0x00000000000000F8 ++s8addl 0x000000000000000F 0x0000000000007FFF = 0x0000000000008077 ++s8addl 0x000000000000000F 0x0000000000008000 = 0x0000000000008078 ++s8addl 0x000000000000000F 0x000000007FFFFFFF = 0x0000000080000077 ++s8addl 0x000000000000000F 0x0000000080000000 = 0x0000000080000078 ++s8addl 0x000000000000000F 0x8000000000000000 = 0x8000000000000078 ++s8addl 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000078 ++s8addl 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8078 ++s8addl 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFF8 ++s8addl 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x8000000000000077 ++s8addl 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDF68 ++s8addl 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A7856348A ++s8addl 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8addl 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFF9 ++s8addl 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++s8addl 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFB ++s8addl 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000007 ++s8addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s8addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF6 ++s8addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF5 ++s8addl 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000077 ++s8addl 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000078 ++s8addl 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FF7 ++s8addl 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FF8 ++s8addl 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFF7 ++s8addl 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFF8 ++s8addl 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFF8 ++s8addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFF8 ++s8addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FF8 ++s8addl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF78 ++s8addl 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF7 ++s8addl 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEE8 ++s8addl 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A7856340A ++s8addl 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFF0 ++s8addl 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFF1 ++s8addl 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFF2 ++s8addl 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFF3 ++s8addl 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++s8addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFEF ++s8addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFEE ++s8addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFED ++s8addl 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000006F ++s8addl 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000070 ++s8addl 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FEF ++s8addl 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000007FF0 ++s8addl 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFEF ++s8addl 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000007FFFFFF0 ++s8addl 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x7FFFFFFFFFFFFFF0 ++s8addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFF0 ++s8addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FF0 ++s8addl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF70 ++s8addl 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFEF ++s8addl 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEE0 ++s8addl 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563402 ++s8addl 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFE8 ++s8addl 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFE9 ++s8addl 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFEA ++s8addl 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFEB ++s8addl 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFF7 ++s8addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFE7 ++s8addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFE6 ++s8addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFE5 ++s8addl 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000067 ++s8addl 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000068 ++s8addl 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FE7 ++s8addl 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000007FE8 ++s8addl 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFE7 ++s8addl 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000007FFFFFE8 ++s8addl 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x7FFFFFFFFFFFFFE8 ++s8addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFE8 ++s8addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FE8 ++s8addl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF68 ++s8addl 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFE7 ++s8addl 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDED8 ++s8addl 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A785633FA ++s8addl 0x000000000000007F 0x0000000000000000 = 0x00000000000003F8 ++s8addl 0x000000000000007F 0x0000000000000001 = 0x00000000000003F9 ++s8addl 0x000000000000007F 0x0000000000000002 = 0x00000000000003FA ++s8addl 0x000000000000007F 0x0000000000000003 = 0x00000000000003FB ++s8addl 0x000000000000007F 0x000000000000000F = 0x0000000000000407 ++s8addl 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000000003F7 ++s8addl 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000000003F6 ++s8addl 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00000000000003F5 ++s8addl 0x000000000000007F 0x000000000000007F = 0x0000000000000477 ++s8addl 0x000000000000007F 0x0000000000000080 = 0x0000000000000478 ++s8addl 0x000000000000007F 0x0000000000007FFF = 0x00000000000083F7 ++s8addl 0x000000000000007F 0x0000000000008000 = 0x00000000000083F8 ++s8addl 0x000000000000007F 0x000000007FFFFFFF = 0x00000000800003F7 ++s8addl 0x000000000000007F 0x0000000080000000 = 0x00000000800003F8 ++s8addl 0x000000000000007F 0x8000000000000000 = 0x80000000000003F8 ++s8addl 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF800003F8 ++s8addl 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF83F8 ++s8addl 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000378 ++s8addl 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x80000000000003F7 ++s8addl 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCE2E8 ++s8addl 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A7856380A ++s8addl 0x0000000000000080 0x0000000000000000 = 0x0000000000000400 ++s8addl 0x0000000000000080 0x0000000000000001 = 0x0000000000000401 ++s8addl 0x0000000000000080 0x0000000000000002 = 0x0000000000000402 ++s8addl 0x0000000000000080 0x0000000000000003 = 0x0000000000000403 ++s8addl 0x0000000000000080 0x000000000000000F = 0x000000000000040F ++s8addl 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x00000000000003FF ++s8addl 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x00000000000003FE ++s8addl 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x00000000000003FD ++s8addl 0x0000000000000080 0x000000000000007F = 0x000000000000047F ++s8addl 0x0000000000000080 0x0000000000000080 = 0x0000000000000480 ++s8addl 0x0000000000000080 0x0000000000007FFF = 0x00000000000083FF ++s8addl 0x0000000000000080 0x0000000000008000 = 0x0000000000008400 ++s8addl 0x0000000000000080 0x000000007FFFFFFF = 0x00000000800003FF ++s8addl 0x0000000000000080 0x0000000080000000 = 0x0000000080000400 ++s8addl 0x0000000000000080 0x8000000000000000 = 0x8000000000000400 ++s8addl 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000400 ++s8addl 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8400 ++s8addl 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000380 ++s8addl 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x80000000000003FF ++s8addl 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCE2F0 ++s8addl 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563812 ++s8addl 0x0000000000007FFF 0x0000000000000000 = 0x000000000003FFF8 ++s8addl 0x0000000000007FFF 0x0000000000000001 = 0x000000000003FFF9 ++s8addl 0x0000000000007FFF 0x0000000000000002 = 0x000000000003FFFA ++s8addl 0x0000000000007FFF 0x0000000000000003 = 0x000000000003FFFB ++s8addl 0x0000000000007FFF 0x000000000000000F = 0x0000000000040007 ++s8addl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000003FFF7 ++s8addl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000003FFF6 ++s8addl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000003FFF5 ++s8addl 0x0000000000007FFF 0x000000000000007F = 0x0000000000040077 ++s8addl 0x0000000000007FFF 0x0000000000000080 = 0x0000000000040078 ++s8addl 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000047FF7 ++s8addl 0x0000000000007FFF 0x0000000000008000 = 0x0000000000047FF8 ++s8addl 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000008003FFF7 ++s8addl 0x0000000000007FFF 0x0000000080000000 = 0x000000008003FFF8 ++s8addl 0x0000000000007FFF 0x8000000000000000 = 0x800000000003FFF8 ++s8addl 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF8003FFF8 ++s8addl 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000037FF8 ++s8addl 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000003FF78 ++s8addl 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x800000000003FFF7 ++s8addl 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789AC0DEE8 ++s8addl 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A785A340A ++s8addl 0x0000000000008000 0x0000000000000000 = 0x0000000000040000 ++s8addl 0x0000000000008000 0x0000000000000001 = 0x0000000000040001 ++s8addl 0x0000000000008000 0x0000000000000002 = 0x0000000000040002 ++s8addl 0x0000000000008000 0x0000000000000003 = 0x0000000000040003 ++s8addl 0x0000000000008000 0x000000000000000F = 0x000000000004000F ++s8addl 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x000000000003FFFF ++s8addl 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x000000000003FFFE ++s8addl 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x000000000003FFFD ++s8addl 0x0000000000008000 0x000000000000007F = 0x000000000004007F ++s8addl 0x0000000000008000 0x0000000000000080 = 0x0000000000040080 ++s8addl 0x0000000000008000 0x0000000000007FFF = 0x0000000000047FFF ++s8addl 0x0000000000008000 0x0000000000008000 = 0x0000000000048000 ++s8addl 0x0000000000008000 0x000000007FFFFFFF = 0x000000008003FFFF ++s8addl 0x0000000000008000 0x0000000080000000 = 0x0000000080040000 ++s8addl 0x0000000000008000 0x8000000000000000 = 0x8000000000040000 ++s8addl 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80040000 ++s8addl 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000038000 ++s8addl 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000003FF80 ++s8addl 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x800000000003FFFF ++s8addl 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789AC0DEF0 ++s8addl 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A785A3412 ++s8addl 0x000000007FFFFFFF 0x0000000000000000 = 0x00000003FFFFFFF8 ++s8addl 0x000000007FFFFFFF 0x0000000000000001 = 0x00000003FFFFFFF9 ++s8addl 0x000000007FFFFFFF 0x0000000000000002 = 0x00000003FFFFFFFA ++s8addl 0x000000007FFFFFFF 0x0000000000000003 = 0x00000003FFFFFFFB ++s8addl 0x000000007FFFFFFF 0x000000000000000F = 0x0000000400000007 ++s8addl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000003FFFFFFF7 ++s8addl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000003FFFFFFF6 ++s8addl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000003FFFFFFF5 ++s8addl 0x000000007FFFFFFF 0x000000000000007F = 0x0000000400000077 ++s8addl 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000400000078 ++s8addl 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000400007FF7 ++s8addl 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000400007FF8 ++s8addl 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000047FFFFFF7 ++s8addl 0x000000007FFFFFFF 0x0000000080000000 = 0x000000047FFFFFF8 ++s8addl 0x000000007FFFFFFF 0x8000000000000000 = 0x80000003FFFFFFF8 ++s8addl 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000037FFFFFF8 ++s8addl 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000003FFFF7FF8 ++s8addl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000003FFFFFF78 ++s8addl 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x80000003FFFFFFF7 ++s8addl 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x1234567C9ABCDEE8 ++s8addl 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9E7856340A ++s8addl 0x0000000080000000 0x0000000000000000 = 0x0000000400000000 ++s8addl 0x0000000080000000 0x0000000000000001 = 0x0000000400000001 ++s8addl 0x0000000080000000 0x0000000000000002 = 0x0000000400000002 ++s8addl 0x0000000080000000 0x0000000000000003 = 0x0000000400000003 ++s8addl 0x0000000080000000 0x000000000000000F = 0x000000040000000F ++s8addl 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x00000003FFFFFFFF ++s8addl 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x00000003FFFFFFFE ++s8addl 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x00000003FFFFFFFD ++s8addl 0x0000000080000000 0x000000000000007F = 0x000000040000007F ++s8addl 0x0000000080000000 0x0000000000000080 = 0x0000000400000080 ++s8addl 0x0000000080000000 0x0000000000007FFF = 0x0000000400007FFF ++s8addl 0x0000000080000000 0x0000000000008000 = 0x0000000400008000 ++s8addl 0x0000000080000000 0x000000007FFFFFFF = 0x000000047FFFFFFF ++s8addl 0x0000000080000000 0x0000000080000000 = 0x0000000480000000 ++s8addl 0x0000000080000000 0x8000000000000000 = 0x8000000400000000 ++s8addl 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000380000000 ++s8addl 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x00000003FFFF8000 ++s8addl 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x00000003FFFFFF80 ++s8addl 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x80000003FFFFFFFF ++s8addl 0x0000000080000000 0x123456789ABCDEF0 = 0x1234567C9ABCDEF0 ++s8addl 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9E78563412 ++s8addl 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++s8addl 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++s8addl 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++s8addl 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++s8addl 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++s8addl 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++s8addl 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++s8addl 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++s8addl 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++s8addl 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++s8addl 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++s8addl 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++s8addl 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++s8addl 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++s8addl 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++s8addl 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++s8addl 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++s8addl 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++s8addl 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++s8addl 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++s8addl 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++s8addl 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFC00000000 ++s8addl 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFC00000001 ++s8addl 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFC00000002 ++s8addl 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFC00000003 ++s8addl 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFC0000000F ++s8addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFBFFFFFFFF ++s8addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFBFFFFFFFE ++s8addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFBFFFFFFFD ++s8addl 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFC0000007F ++s8addl 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFC00000080 ++s8addl 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFC00007FFF ++s8addl 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFC00008000 ++s8addl 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFC7FFFFFFF ++s8addl 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFC80000000 ++s8addl 0xFFFFFFFF80000000 0x8000000000000000 = 0x7FFFFFFC00000000 ++s8addl 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFB80000000 ++s8addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFBFFFF8000 ++s8addl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFBFFFFFF80 ++s8addl 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFBFFFFFFFF ++s8addl 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456749ABCDEF0 ++s8addl 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9678563412 ++s8addl 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFC0000 ++s8addl 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFC0001 ++s8addl 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFC0002 ++s8addl 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFC0003 ++s8addl 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFC000F ++s8addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFBFFFF ++s8addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFBFFFE ++s8addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFBFFFD ++s8addl 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFC007F ++s8addl 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFC0080 ++s8addl 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFC7FFF ++s8addl 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFC8000 ++s8addl 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFBFFFF ++s8addl 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000007FFC0000 ++s8addl 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x7FFFFFFFFFFC0000 ++s8addl 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFC0000 ++s8addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFB8000 ++s8addl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFBFF80 ++s8addl 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFBFFFF ++s8addl 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789AB8DEF0 ++s8addl 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78523412 ++s8addl 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFC00 ++s8addl 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFC01 ++s8addl 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFC02 ++s8addl 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFC03 ++s8addl 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFC0F ++s8addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFBFF ++s8addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFBFE ++s8addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFBFD ++s8addl 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFC7F ++s8addl 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFC80 ++s8addl 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007BFF ++s8addl 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000007C00 ++s8addl 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFBFF ++s8addl 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000007FFFFC00 ++s8addl 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x7FFFFFFFFFFFFC00 ++s8addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFC00 ++s8addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7C00 ++s8addl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFB80 ++s8addl 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFBFF ++s8addl 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDAF0 ++s8addl 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563012 ++s8addl 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8addl 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFF9 ++s8addl 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++s8addl 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFB ++s8addl 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000007 ++s8addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF7 ++s8addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF6 ++s8addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF5 ++s8addl 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000077 ++s8addl 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000078 ++s8addl 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FF7 ++s8addl 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FF8 ++s8addl 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFF7 ++s8addl 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFF8 ++s8addl 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFF8 ++s8addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFF8 ++s8addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FF8 ++s8addl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF78 ++s8addl 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF7 ++s8addl 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEE8 ++s8addl 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A7856340A ++s8addl 0x123456789ABCDEF0 0x0000000000000000 = 0x91A2B3C4D5E6F780 ++s8addl 0x123456789ABCDEF0 0x0000000000000001 = 0x91A2B3C4D5E6F781 ++s8addl 0x123456789ABCDEF0 0x0000000000000002 = 0x91A2B3C4D5E6F782 ++s8addl 0x123456789ABCDEF0 0x0000000000000003 = 0x91A2B3C4D5E6F783 ++s8addl 0x123456789ABCDEF0 0x000000000000000F = 0x91A2B3C4D5E6F78F ++s8addl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x91A2B3C4D5E6F77F ++s8addl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x91A2B3C4D5E6F77E ++s8addl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x91A2B3C4D5E6F77D ++s8addl 0x123456789ABCDEF0 0x000000000000007F = 0x91A2B3C4D5E6F7FF ++s8addl 0x123456789ABCDEF0 0x0000000000000080 = 0x91A2B3C4D5E6F800 ++s8addl 0x123456789ABCDEF0 0x0000000000007FFF = 0x91A2B3C4D5E7777F ++s8addl 0x123456789ABCDEF0 0x0000000000008000 = 0x91A2B3C4D5E77780 ++s8addl 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x91A2B3C555E6F77F ++s8addl 0x123456789ABCDEF0 0x0000000080000000 = 0x91A2B3C555E6F780 ++s8addl 0x123456789ABCDEF0 0x8000000000000000 = 0x11A2B3C4D5E6F780 ++s8addl 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x91A2B3C455E6F780 ++s8addl 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x91A2B3C4D5E67780 ++s8addl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x91A2B3C4D5E6F700 ++s8addl 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x11A2B3C4D5E6F77F ++s8addl 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0xA3D70A3D70A3D670 ++s8addl 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x8281705F4E3D2B92 ++s8addl 0xF0DEBC9A78563412 0x0000000000000000 = 0x86F5E4D3C2B1A090 ++s8addl 0xF0DEBC9A78563412 0x0000000000000001 = 0x86F5E4D3C2B1A091 ++s8addl 0xF0DEBC9A78563412 0x0000000000000002 = 0x86F5E4D3C2B1A092 ++s8addl 0xF0DEBC9A78563412 0x0000000000000003 = 0x86F5E4D3C2B1A093 ++s8addl 0xF0DEBC9A78563412 0x000000000000000F = 0x86F5E4D3C2B1A09F ++s8addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x86F5E4D3C2B1A08F ++s8addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x86F5E4D3C2B1A08E ++s8addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x86F5E4D3C2B1A08D ++s8addl 0xF0DEBC9A78563412 0x000000000000007F = 0x86F5E4D3C2B1A10F ++s8addl 0xF0DEBC9A78563412 0x0000000000000080 = 0x86F5E4D3C2B1A110 ++s8addl 0xF0DEBC9A78563412 0x0000000000007FFF = 0x86F5E4D3C2B2208F ++s8addl 0xF0DEBC9A78563412 0x0000000000008000 = 0x86F5E4D3C2B22090 ++s8addl 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x86F5E4D442B1A08F ++s8addl 0xF0DEBC9A78563412 0x0000000080000000 = 0x86F5E4D442B1A090 ++s8addl 0xF0DEBC9A78563412 0x8000000000000000 = 0x06F5E4D3C2B1A090 ++s8addl 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x86F5E4D342B1A090 ++s8addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x86F5E4D3C2B12090 ++s8addl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x86F5E4D3C2B1A010 ++s8addl 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x06F5E4D3C2B1A08F ++s8addl 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x992A3B4C5D6E7F80 ++s8addl 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x77D4A16E3B07D4A2 ++=== Running test on s8subl === ++s8subl 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++s8subl 0x0000000000000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++s8subl 0x0000000000000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s8subl 0x0000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++s8subl 0x0000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++s8subl 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++s8subl 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++s8subl 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++s8subl 0x0000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++s8subl 0x0000000000000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++s8subl 0x0000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++s8subl 0x0000000000000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++s8subl 0x0000000000000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++s8subl 0x0000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s8subl 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++s8subl 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++s8subl 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++s8subl 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++s8subl 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000001 ++s8subl 0x0000000000000000 0x123456789ABCDEF0 = 0xEDCBA98765432110 ++s8subl 0x0000000000000000 0xF0DEBC9A78563412 = 0x0F21436587A9CBEE ++s8subl 0x0000000000000001 0x0000000000000000 = 0x0000000000000008 ++s8subl 0x0000000000000001 0x0000000000000001 = 0x0000000000000007 ++s8subl 0x0000000000000001 0x0000000000000002 = 0x0000000000000006 ++s8subl 0x0000000000000001 0x0000000000000003 = 0x0000000000000005 ++s8subl 0x0000000000000001 0x000000000000000F = 0xFFFFFFFFFFFFFFF9 ++s8subl 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000009 ++s8subl 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x000000000000000A ++s8subl 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x000000000000000B ++s8subl 0x0000000000000001 0x000000000000007F = 0xFFFFFFFFFFFFFF89 ++s8subl 0x0000000000000001 0x0000000000000080 = 0xFFFFFFFFFFFFFF88 ++s8subl 0x0000000000000001 0x0000000000007FFF = 0xFFFFFFFFFFFF8009 ++s8subl 0x0000000000000001 0x0000000000008000 = 0xFFFFFFFFFFFF8008 ++s8subl 0x0000000000000001 0x000000007FFFFFFF = 0xFFFFFFFF80000009 ++s8subl 0x0000000000000001 0x0000000080000000 = 0xFFFFFFFF80000008 ++s8subl 0x0000000000000001 0x8000000000000000 = 0x8000000000000008 ++s8subl 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000080000008 ++s8subl 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000008008 ++s8subl 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000088 ++s8subl 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x8000000000000009 ++s8subl 0x0000000000000001 0x123456789ABCDEF0 = 0xEDCBA98765432118 ++s8subl 0x0000000000000001 0xF0DEBC9A78563412 = 0x0F21436587A9CBF6 ++s8subl 0x0000000000000002 0x0000000000000000 = 0x0000000000000010 ++s8subl 0x0000000000000002 0x0000000000000001 = 0x000000000000000F ++s8subl 0x0000000000000002 0x0000000000000002 = 0x000000000000000E ++s8subl 0x0000000000000002 0x0000000000000003 = 0x000000000000000D ++s8subl 0x0000000000000002 0x000000000000000F = 0x0000000000000001 ++s8subl 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000011 ++s8subl 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000012 ++s8subl 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000013 ++s8subl 0x0000000000000002 0x000000000000007F = 0xFFFFFFFFFFFFFF91 ++s8subl 0x0000000000000002 0x0000000000000080 = 0xFFFFFFFFFFFFFF90 ++s8subl 0x0000000000000002 0x0000000000007FFF = 0xFFFFFFFFFFFF8011 ++s8subl 0x0000000000000002 0x0000000000008000 = 0xFFFFFFFFFFFF8010 ++s8subl 0x0000000000000002 0x000000007FFFFFFF = 0xFFFFFFFF80000011 ++s8subl 0x0000000000000002 0x0000000080000000 = 0xFFFFFFFF80000010 ++s8subl 0x0000000000000002 0x8000000000000000 = 0x8000000000000010 ++s8subl 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000080000010 ++s8subl 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000008010 ++s8subl 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000090 ++s8subl 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x8000000000000011 ++s8subl 0x0000000000000002 0x123456789ABCDEF0 = 0xEDCBA98765432120 ++s8subl 0x0000000000000002 0xF0DEBC9A78563412 = 0x0F21436587A9CBFE ++s8subl 0x0000000000000003 0x0000000000000000 = 0x0000000000000018 ++s8subl 0x0000000000000003 0x0000000000000001 = 0x0000000000000017 ++s8subl 0x0000000000000003 0x0000000000000002 = 0x0000000000000016 ++s8subl 0x0000000000000003 0x0000000000000003 = 0x0000000000000015 ++s8subl 0x0000000000000003 0x000000000000000F = 0x0000000000000009 ++s8subl 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000019 ++s8subl 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x000000000000001A ++s8subl 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x000000000000001B ++s8subl 0x0000000000000003 0x000000000000007F = 0xFFFFFFFFFFFFFF99 ++s8subl 0x0000000000000003 0x0000000000000080 = 0xFFFFFFFFFFFFFF98 ++s8subl 0x0000000000000003 0x0000000000007FFF = 0xFFFFFFFFFFFF8019 ++s8subl 0x0000000000000003 0x0000000000008000 = 0xFFFFFFFFFFFF8018 ++s8subl 0x0000000000000003 0x000000007FFFFFFF = 0xFFFFFFFF80000019 ++s8subl 0x0000000000000003 0x0000000080000000 = 0xFFFFFFFF80000018 ++s8subl 0x0000000000000003 0x8000000000000000 = 0x8000000000000018 ++s8subl 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000080000018 ++s8subl 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000008018 ++s8subl 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000098 ++s8subl 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x8000000000000019 ++s8subl 0x0000000000000003 0x123456789ABCDEF0 = 0xEDCBA98765432128 ++s8subl 0x0000000000000003 0xF0DEBC9A78563412 = 0x0F21436587A9CC06 ++s8subl 0x000000000000000F 0x0000000000000000 = 0x0000000000000078 ++s8subl 0x000000000000000F 0x0000000000000001 = 0x0000000000000077 ++s8subl 0x000000000000000F 0x0000000000000002 = 0x0000000000000076 ++s8subl 0x000000000000000F 0x0000000000000003 = 0x0000000000000075 ++s8subl 0x000000000000000F 0x000000000000000F = 0x0000000000000069 ++s8subl 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000079 ++s8subl 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000007A ++s8subl 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000007B ++s8subl 0x000000000000000F 0x000000000000007F = 0xFFFFFFFFFFFFFFF9 ++s8subl 0x000000000000000F 0x0000000000000080 = 0xFFFFFFFFFFFFFFF8 ++s8subl 0x000000000000000F 0x0000000000007FFF = 0xFFFFFFFFFFFF8079 ++s8subl 0x000000000000000F 0x0000000000008000 = 0xFFFFFFFFFFFF8078 ++s8subl 0x000000000000000F 0x000000007FFFFFFF = 0xFFFFFFFF80000079 ++s8subl 0x000000000000000F 0x0000000080000000 = 0xFFFFFFFF80000078 ++s8subl 0x000000000000000F 0x8000000000000000 = 0x8000000000000078 ++s8subl 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000080000078 ++s8subl 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000008078 ++s8subl 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x00000000000000F8 ++s8subl 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x8000000000000079 ++s8subl 0x000000000000000F 0x123456789ABCDEF0 = 0xEDCBA98765432188 ++s8subl 0x000000000000000F 0xF0DEBC9A78563412 = 0x0F21436587A9CC66 ++s8subl 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8subl 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFF7 ++s8subl 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFF6 ++s8subl 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF5 ++s8subl 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFE9 ++s8subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s8subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++s8subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++s8subl 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF79 ++s8subl 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF78 ++s8subl 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF7FF9 ++s8subl 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FF8 ++s8subl 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF7FFFFFF9 ++s8subl 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFF7FFFFFF8 ++s8subl 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFF8 ++s8subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFF8 ++s8subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FF8 ++s8subl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000078 ++s8subl 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF9 ++s8subl 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xEDCBA98765432108 ++s8subl 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0F21436587A9CBE6 ++s8subl 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFF0 ++s8subl 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFEF ++s8subl 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFEE ++s8subl 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFED ++s8subl 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFE1 ++s8subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF1 ++s8subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF2 ++s8subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF3 ++s8subl 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFF71 ++s8subl 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFF70 ++s8subl 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFF7FF1 ++s8subl 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFF7FF0 ++s8subl 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFF7FFFFFF1 ++s8subl 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFF7FFFFFF0 ++s8subl 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x7FFFFFFFFFFFFFF0 ++s8subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000007FFFFFF0 ++s8subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000007FF0 ++s8subl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000070 ++s8subl 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF1 ++s8subl 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xEDCBA98765432100 ++s8subl 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0F21436587A9CBDE ++s8subl 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFE8 ++s8subl 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFE7 ++s8subl 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFE6 ++s8subl 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFE5 ++s8subl 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFD9 ++s8subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFE9 ++s8subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFEA ++s8subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFEB ++s8subl 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFF69 ++s8subl 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFF68 ++s8subl 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFF7FE9 ++s8subl 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFF7FE8 ++s8subl 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFF7FFFFFE9 ++s8subl 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFF7FFFFFE8 ++s8subl 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x7FFFFFFFFFFFFFE8 ++s8subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000007FFFFFE8 ++s8subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000007FE8 ++s8subl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000068 ++s8subl 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFE9 ++s8subl 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xEDCBA987654320F8 ++s8subl 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0F21436587A9CBD6 ++s8subl 0x000000000000007F 0x0000000000000000 = 0x00000000000003F8 ++s8subl 0x000000000000007F 0x0000000000000001 = 0x00000000000003F7 ++s8subl 0x000000000000007F 0x0000000000000002 = 0x00000000000003F6 ++s8subl 0x000000000000007F 0x0000000000000003 = 0x00000000000003F5 ++s8subl 0x000000000000007F 0x000000000000000F = 0x00000000000003E9 ++s8subl 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x00000000000003F9 ++s8subl 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000000003FA ++s8subl 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00000000000003FB ++s8subl 0x000000000000007F 0x000000000000007F = 0x0000000000000379 ++s8subl 0x000000000000007F 0x0000000000000080 = 0x0000000000000378 ++s8subl 0x000000000000007F 0x0000000000007FFF = 0xFFFFFFFFFFFF83F9 ++s8subl 0x000000000000007F 0x0000000000008000 = 0xFFFFFFFFFFFF83F8 ++s8subl 0x000000000000007F 0x000000007FFFFFFF = 0xFFFFFFFF800003F9 ++s8subl 0x000000000000007F 0x0000000080000000 = 0xFFFFFFFF800003F8 ++s8subl 0x000000000000007F 0x8000000000000000 = 0x80000000000003F8 ++s8subl 0x000000000000007F 0xFFFFFFFF80000000 = 0x00000000800003F8 ++s8subl 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x00000000000083F8 ++s8subl 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000478 ++s8subl 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x80000000000003F9 ++s8subl 0x000000000000007F 0x123456789ABCDEF0 = 0xEDCBA98765432508 ++s8subl 0x000000000000007F 0xF0DEBC9A78563412 = 0x0F21436587A9CFE6 ++s8subl 0x0000000000000080 0x0000000000000000 = 0x0000000000000400 ++s8subl 0x0000000000000080 0x0000000000000001 = 0x00000000000003FF ++s8subl 0x0000000000000080 0x0000000000000002 = 0x00000000000003FE ++s8subl 0x0000000000000080 0x0000000000000003 = 0x00000000000003FD ++s8subl 0x0000000000000080 0x000000000000000F = 0x00000000000003F1 ++s8subl 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000401 ++s8subl 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000402 ++s8subl 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000403 ++s8subl 0x0000000000000080 0x000000000000007F = 0x0000000000000381 ++s8subl 0x0000000000000080 0x0000000000000080 = 0x0000000000000380 ++s8subl 0x0000000000000080 0x0000000000007FFF = 0xFFFFFFFFFFFF8401 ++s8subl 0x0000000000000080 0x0000000000008000 = 0xFFFFFFFFFFFF8400 ++s8subl 0x0000000000000080 0x000000007FFFFFFF = 0xFFFFFFFF80000401 ++s8subl 0x0000000000000080 0x0000000080000000 = 0xFFFFFFFF80000400 ++s8subl 0x0000000000000080 0x8000000000000000 = 0x8000000000000400 ++s8subl 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000080000400 ++s8subl 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000008400 ++s8subl 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000480 ++s8subl 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x8000000000000401 ++s8subl 0x0000000000000080 0x123456789ABCDEF0 = 0xEDCBA98765432510 ++s8subl 0x0000000000000080 0xF0DEBC9A78563412 = 0x0F21436587A9CFEE ++s8subl 0x0000000000007FFF 0x0000000000000000 = 0x000000000003FFF8 ++s8subl 0x0000000000007FFF 0x0000000000000001 = 0x000000000003FFF7 ++s8subl 0x0000000000007FFF 0x0000000000000002 = 0x000000000003FFF6 ++s8subl 0x0000000000007FFF 0x0000000000000003 = 0x000000000003FFF5 ++s8subl 0x0000000000007FFF 0x000000000000000F = 0x000000000003FFE9 ++s8subl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000003FFF9 ++s8subl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000000003FFFA ++s8subl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x000000000003FFFB ++s8subl 0x0000000000007FFF 0x000000000000007F = 0x000000000003FF79 ++s8subl 0x0000000000007FFF 0x0000000000000080 = 0x000000000003FF78 ++s8subl 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000037FF9 ++s8subl 0x0000000000007FFF 0x0000000000008000 = 0x0000000000037FF8 ++s8subl 0x0000000000007FFF 0x000000007FFFFFFF = 0xFFFFFFFF8003FFF9 ++s8subl 0x0000000000007FFF 0x0000000080000000 = 0xFFFFFFFF8003FFF8 ++s8subl 0x0000000000007FFF 0x8000000000000000 = 0x800000000003FFF8 ++s8subl 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000008003FFF8 ++s8subl 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000047FF8 ++s8subl 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000040078 ++s8subl 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x800000000003FFF9 ++s8subl 0x0000000000007FFF 0x123456789ABCDEF0 = 0xEDCBA98765472108 ++s8subl 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0F21436587ADCBE6 ++s8subl 0x0000000000008000 0x0000000000000000 = 0x0000000000040000 ++s8subl 0x0000000000008000 0x0000000000000001 = 0x000000000003FFFF ++s8subl 0x0000000000008000 0x0000000000000002 = 0x000000000003FFFE ++s8subl 0x0000000000008000 0x0000000000000003 = 0x000000000003FFFD ++s8subl 0x0000000000008000 0x000000000000000F = 0x000000000003FFF1 ++s8subl 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000040001 ++s8subl 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000040002 ++s8subl 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000040003 ++s8subl 0x0000000000008000 0x000000000000007F = 0x000000000003FF81 ++s8subl 0x0000000000008000 0x0000000000000080 = 0x000000000003FF80 ++s8subl 0x0000000000008000 0x0000000000007FFF = 0x0000000000038001 ++s8subl 0x0000000000008000 0x0000000000008000 = 0x0000000000038000 ++s8subl 0x0000000000008000 0x000000007FFFFFFF = 0xFFFFFFFF80040001 ++s8subl 0x0000000000008000 0x0000000080000000 = 0xFFFFFFFF80040000 ++s8subl 0x0000000000008000 0x8000000000000000 = 0x8000000000040000 ++s8subl 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000080040000 ++s8subl 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000048000 ++s8subl 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000040080 ++s8subl 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x8000000000040001 ++s8subl 0x0000000000008000 0x123456789ABCDEF0 = 0xEDCBA98765472110 ++s8subl 0x0000000000008000 0xF0DEBC9A78563412 = 0x0F21436587ADCBEE ++s8subl 0x000000007FFFFFFF 0x0000000000000000 = 0x00000003FFFFFFF8 ++s8subl 0x000000007FFFFFFF 0x0000000000000001 = 0x00000003FFFFFFF7 ++s8subl 0x000000007FFFFFFF 0x0000000000000002 = 0x00000003FFFFFFF6 ++s8subl 0x000000007FFFFFFF 0x0000000000000003 = 0x00000003FFFFFFF5 ++s8subl 0x000000007FFFFFFF 0x000000000000000F = 0x00000003FFFFFFE9 ++s8subl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000003FFFFFFF9 ++s8subl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000003FFFFFFFA ++s8subl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000003FFFFFFFB ++s8subl 0x000000007FFFFFFF 0x000000000000007F = 0x00000003FFFFFF79 ++s8subl 0x000000007FFFFFFF 0x0000000000000080 = 0x00000003FFFFFF78 ++s8subl 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000003FFFF7FF9 ++s8subl 0x000000007FFFFFFF 0x0000000000008000 = 0x00000003FFFF7FF8 ++s8subl 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000037FFFFFF9 ++s8subl 0x000000007FFFFFFF 0x0000000080000000 = 0x000000037FFFFFF8 ++s8subl 0x000000007FFFFFFF 0x8000000000000000 = 0x80000003FFFFFFF8 ++s8subl 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000047FFFFFF8 ++s8subl 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000400007FF8 ++s8subl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000400000078 ++s8subl 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x80000003FFFFFFF9 ++s8subl 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0xEDCBA98B65432108 ++s8subl 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0F21436987A9CBE6 ++s8subl 0x0000000080000000 0x0000000000000000 = 0x0000000400000000 ++s8subl 0x0000000080000000 0x0000000000000001 = 0x00000003FFFFFFFF ++s8subl 0x0000000080000000 0x0000000000000002 = 0x00000003FFFFFFFE ++s8subl 0x0000000080000000 0x0000000000000003 = 0x00000003FFFFFFFD ++s8subl 0x0000000080000000 0x000000000000000F = 0x00000003FFFFFFF1 ++s8subl 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000400000001 ++s8subl 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000400000002 ++s8subl 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000400000003 ++s8subl 0x0000000080000000 0x000000000000007F = 0x00000003FFFFFF81 ++s8subl 0x0000000080000000 0x0000000000000080 = 0x00000003FFFFFF80 ++s8subl 0x0000000080000000 0x0000000000007FFF = 0x00000003FFFF8001 ++s8subl 0x0000000080000000 0x0000000000008000 = 0x00000003FFFF8000 ++s8subl 0x0000000080000000 0x000000007FFFFFFF = 0x0000000380000001 ++s8subl 0x0000000080000000 0x0000000080000000 = 0x0000000380000000 ++s8subl 0x0000000080000000 0x8000000000000000 = 0x8000000400000000 ++s8subl 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000480000000 ++s8subl 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000400008000 ++s8subl 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000400000080 ++s8subl 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x8000000400000001 ++s8subl 0x0000000080000000 0x123456789ABCDEF0 = 0xEDCBA98B65432110 ++s8subl 0x0000000080000000 0xF0DEBC9A78563412 = 0x0F21436987A9CBEE ++s8subl 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++s8subl 0x8000000000000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++s8subl 0x8000000000000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++s8subl 0x8000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++s8subl 0x8000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++s8subl 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++s8subl 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++s8subl 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++s8subl 0x8000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++s8subl 0x8000000000000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++s8subl 0x8000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++s8subl 0x8000000000000000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++s8subl 0x8000000000000000 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++s8subl 0x8000000000000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++s8subl 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++s8subl 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++s8subl 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++s8subl 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++s8subl 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000001 ++s8subl 0x8000000000000000 0x123456789ABCDEF0 = 0xEDCBA98765432110 ++s8subl 0x8000000000000000 0xF0DEBC9A78563412 = 0x0F21436587A9CBEE ++s8subl 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFC00000000 ++s8subl 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFBFFFFFFFF ++s8subl 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFBFFFFFFFE ++s8subl 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFBFFFFFFFD ++s8subl 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFBFFFFFFF1 ++s8subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFC00000001 ++s8subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFC00000002 ++s8subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFC00000003 ++s8subl 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFBFFFFFF81 ++s8subl 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFBFFFFFF80 ++s8subl 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFBFFFF8001 ++s8subl 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFBFFFF8000 ++s8subl 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFB80000001 ++s8subl 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFB80000000 ++s8subl 0xFFFFFFFF80000000 0x8000000000000000 = 0x7FFFFFFC00000000 ++s8subl 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFC80000000 ++s8subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFC00008000 ++s8subl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFC00000080 ++s8subl 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFC00000001 ++s8subl 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xEDCBA98365432110 ++s8subl 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0F21436187A9CBEE ++s8subl 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFC0000 ++s8subl 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFBFFFF ++s8subl 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFBFFFE ++s8subl 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFBFFFD ++s8subl 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFBFFF1 ++s8subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFC0001 ++s8subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFC0002 ++s8subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFC0003 ++s8subl 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFBFF81 ++s8subl 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFBFF80 ++s8subl 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFB8001 ++s8subl 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFB8000 ++s8subl 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFF7FFC0001 ++s8subl 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFF7FFC0000 ++s8subl 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x7FFFFFFFFFFC0000 ++s8subl 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000007FFC0000 ++s8subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFC8000 ++s8subl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFC0080 ++s8subl 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFC0001 ++s8subl 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xEDCBA987653F2110 ++s8subl 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0F21436587A5CBEE ++s8subl 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFC00 ++s8subl 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFBFF ++s8subl 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFBFE ++s8subl 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFBFD ++s8subl 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFBF1 ++s8subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFC01 ++s8subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFC02 ++s8subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFC03 ++s8subl 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFB81 ++s8subl 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFB80 ++s8subl 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFF7C01 ++s8subl 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFF7C00 ++s8subl 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFF7FFFFC01 ++s8subl 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFF7FFFFC00 ++s8subl 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x7FFFFFFFFFFFFC00 ++s8subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000007FFFFC00 ++s8subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000007C00 ++s8subl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFC80 ++s8subl 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFC01 ++s8subl 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xEDCBA98765431D10 ++s8subl 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0F21436587A9C7EE ++s8subl 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFF8 ++s8subl 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFF7 ++s8subl 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFF6 ++s8subl 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF5 ++s8subl 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFE9 ++s8subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF9 ++s8subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++s8subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++s8subl 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF79 ++s8subl 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF78 ++s8subl 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF7FF9 ++s8subl 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FF8 ++s8subl 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF7FFFFFF9 ++s8subl 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFF7FFFFFF8 ++s8subl 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFF8 ++s8subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFF8 ++s8subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FF8 ++s8subl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000078 ++s8subl 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF9 ++s8subl 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xEDCBA98765432108 ++s8subl 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0F21436587A9CBE6 ++s8subl 0x123456789ABCDEF0 0x0000000000000000 = 0x91A2B3C4D5E6F780 ++s8subl 0x123456789ABCDEF0 0x0000000000000001 = 0x91A2B3C4D5E6F77F ++s8subl 0x123456789ABCDEF0 0x0000000000000002 = 0x91A2B3C4D5E6F77E ++s8subl 0x123456789ABCDEF0 0x0000000000000003 = 0x91A2B3C4D5E6F77D ++s8subl 0x123456789ABCDEF0 0x000000000000000F = 0x91A2B3C4D5E6F771 ++s8subl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x91A2B3C4D5E6F781 ++s8subl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x91A2B3C4D5E6F782 ++s8subl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x91A2B3C4D5E6F783 ++s8subl 0x123456789ABCDEF0 0x000000000000007F = 0x91A2B3C4D5E6F701 ++s8subl 0x123456789ABCDEF0 0x0000000000000080 = 0x91A2B3C4D5E6F700 ++s8subl 0x123456789ABCDEF0 0x0000000000007FFF = 0x91A2B3C4D5E67781 ++s8subl 0x123456789ABCDEF0 0x0000000000008000 = 0x91A2B3C4D5E67780 ++s8subl 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x91A2B3C455E6F781 ++s8subl 0x123456789ABCDEF0 0x0000000080000000 = 0x91A2B3C455E6F780 ++s8subl 0x123456789ABCDEF0 0x8000000000000000 = 0x11A2B3C4D5E6F780 ++s8subl 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x91A2B3C555E6F780 ++s8subl 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x91A2B3C4D5E77780 ++s8subl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x91A2B3C4D5E6F800 ++s8subl 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x11A2B3C4D5E6F781 ++s8subl 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x7F6E5D4C3B2A1890 ++s8subl 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xA0C3F72A5D90C36E ++s8subl 0xF0DEBC9A78563412 0x0000000000000000 = 0x86F5E4D3C2B1A090 ++s8subl 0xF0DEBC9A78563412 0x0000000000000001 = 0x86F5E4D3C2B1A08F ++s8subl 0xF0DEBC9A78563412 0x0000000000000002 = 0x86F5E4D3C2B1A08E ++s8subl 0xF0DEBC9A78563412 0x0000000000000003 = 0x86F5E4D3C2B1A08D ++s8subl 0xF0DEBC9A78563412 0x000000000000000F = 0x86F5E4D3C2B1A081 ++s8subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x86F5E4D3C2B1A091 ++s8subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x86F5E4D3C2B1A092 ++s8subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x86F5E4D3C2B1A093 ++s8subl 0xF0DEBC9A78563412 0x000000000000007F = 0x86F5E4D3C2B1A011 ++s8subl 0xF0DEBC9A78563412 0x0000000000000080 = 0x86F5E4D3C2B1A010 ++s8subl 0xF0DEBC9A78563412 0x0000000000007FFF = 0x86F5E4D3C2B12091 ++s8subl 0xF0DEBC9A78563412 0x0000000000008000 = 0x86F5E4D3C2B12090 ++s8subl 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x86F5E4D342B1A091 ++s8subl 0xF0DEBC9A78563412 0x0000000080000000 = 0x86F5E4D342B1A090 ++s8subl 0xF0DEBC9A78563412 0x8000000000000000 = 0x06F5E4D3C2B1A090 ++s8subl 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x86F5E4D442B1A090 ++s8subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x86F5E4D3C2B22090 ++s8subl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x86F5E4D3C2B1A110 ++s8subl 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x06F5E4D3C2B1A091 ++s8subl 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x74C18E5B27F4C1A0 ++s8subl 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x961728394A5B6C7E ++=== Running test on mulw === ++mulw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++mulw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++mulw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++mulw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++mulw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++mulw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++mulw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++mulw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++mulw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++mulw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++mulw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++mulw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++mulw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++mulw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++mulw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++mulw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++mulw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++mulw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++mulw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++mulw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++mulw 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++mulw 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++mulw 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++mulw 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++mulw 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++mulw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++mulw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++mulw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++mulw 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++mulw 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++mulw 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++mulw 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++mulw 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++mulw 0x0000000000000001 0x0000000080000000 = 0xFFFFFFFF80000000 ++mulw 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++mulw 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mulw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++mulw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++mulw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++mulw 0x0000000000000001 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++mulw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000078563412 ++mulw 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++mulw 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++mulw 0x0000000000000002 0x0000000000000002 = 0x0000000000000004 ++mulw 0x0000000000000002 0x0000000000000003 = 0x0000000000000006 ++mulw 0x0000000000000002 0x000000000000000F = 0x000000000000001E ++mulw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++mulw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++mulw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFA ++mulw 0x0000000000000002 0x000000000000007F = 0x00000000000000FE ++mulw 0x0000000000000002 0x0000000000000080 = 0x0000000000000100 ++mulw 0x0000000000000002 0x0000000000007FFF = 0x000000000000FFFE ++mulw 0x0000000000000002 0x0000000000008000 = 0x0000000000010000 ++mulw 0x0000000000000002 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++mulw 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++mulw 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++mulw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++mulw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++mulw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++mulw 0x0000000000000002 0x123456789ABCDEF0 = 0x000000003579BDE0 ++mulw 0x0000000000000002 0xF0DEBC9A78563412 = 0xFFFFFFFFF0AC6824 ++mulw 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++mulw 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++mulw 0x0000000000000003 0x0000000000000002 = 0x0000000000000006 ++mulw 0x0000000000000003 0x0000000000000003 = 0x0000000000000009 ++mulw 0x0000000000000003 0x000000000000000F = 0x000000000000002D ++mulw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++mulw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++mulw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF7 ++mulw 0x0000000000000003 0x000000000000007F = 0x000000000000017D ++mulw 0x0000000000000003 0x0000000000000080 = 0x0000000000000180 ++mulw 0x0000000000000003 0x0000000000007FFF = 0x0000000000017FFD ++mulw 0x0000000000000003 0x0000000000008000 = 0x0000000000018000 ++mulw 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFD ++mulw 0x0000000000000003 0x0000000080000000 = 0xFFFFFFFF80000000 ++mulw 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++mulw 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mulw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE8000 ++mulw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE80 ++mulw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++mulw 0x0000000000000003 0x123456789ABCDEF0 = 0xFFFFFFFFD0369CD0 ++mulw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000069029C36 ++mulw 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++mulw 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++mulw 0x000000000000000F 0x0000000000000002 = 0x000000000000001E ++mulw 0x000000000000000F 0x0000000000000003 = 0x000000000000002D ++mulw 0x000000000000000F 0x000000000000000F = 0x00000000000000E1 ++mulw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF1 ++mulw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFE2 ++mulw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFD3 ++mulw 0x000000000000000F 0x000000000000007F = 0x0000000000000771 ++mulw 0x000000000000000F 0x0000000000000080 = 0x0000000000000780 ++mulw 0x000000000000000F 0x0000000000007FFF = 0x0000000000077FF1 ++mulw 0x000000000000000F 0x0000000000008000 = 0x0000000000078000 ++mulw 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFF1 ++mulw 0x000000000000000F 0x0000000080000000 = 0xFFFFFFFF80000000 ++mulw 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++mulw 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mulw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFF88000 ++mulw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFF880 ++mulw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF1 ++mulw 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000011111010 ++mulw 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000D0D0D0E ++mulw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++mulw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++mulw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++mulw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++mulw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++mulw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++mulw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++mulw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++mulw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++mulw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++mulw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++mulw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++mulw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFF80000000 ++mulw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mulw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++mulw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++mulw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++mulw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000065432110 ++mulw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEE ++mulw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++mulw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFC ++mulw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFA ++mulw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFE2 ++mulw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++mulw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000004 ++mulw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000006 ++mulw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFF02 ++mulw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFF00 ++mulw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFF0002 ++mulw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++mulw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000002 ++mulw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000010000 ++mulw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000100 ++mulw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++mulw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFCA864220 ++mulw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000000F5397DC ++mulw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++mulw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++mulw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFF7 ++mulw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFD3 ++mulw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++mulw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000006 ++mulw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000009 ++mulw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFE83 ++mulw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFE80 ++mulw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFE8003 ++mulw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFE8000 ++mulw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFF80000003 ++mulw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFF80000000 ++mulw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mulw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000018000 ++mulw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000180 ++mulw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++mulw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000002FC96330 ++mulw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFF96FD63CA ++mulw 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++mulw 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++mulw 0x000000000000007F 0x0000000000000002 = 0x00000000000000FE ++mulw 0x000000000000007F 0x0000000000000003 = 0x000000000000017D ++mulw 0x000000000000007F 0x000000000000000F = 0x0000000000000771 ++mulw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF81 ++mulw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF02 ++mulw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFE83 ++mulw 0x000000000000007F 0x000000000000007F = 0x0000000000003F01 ++mulw 0x000000000000007F 0x0000000000000080 = 0x0000000000003F80 ++mulw 0x000000000000007F 0x0000000000007FFF = 0x00000000003F7F81 ++mulw 0x000000000000007F 0x0000000000008000 = 0x00000000003F8000 ++mulw 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFF81 ++mulw 0x000000000000007F 0x0000000080000000 = 0xFFFFFFFF80000000 ++mulw 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++mulw 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mulw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFC08000 ++mulw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFC080 ++mulw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF81 ++mulw 0x000000000000007F 0x123456789ABCDEF0 = 0xFFFFFFFFC3B29910 ++mulw 0x000000000000007F 0xF0DEBC9A78563412 = 0xFFFFFFFFB2C3D4EE ++mulw 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++mulw 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++mulw 0x0000000000000080 0x0000000000000002 = 0x0000000000000100 ++mulw 0x0000000000000080 0x0000000000000003 = 0x0000000000000180 ++mulw 0x0000000000000080 0x000000000000000F = 0x0000000000000780 ++mulw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++mulw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++mulw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFE80 ++mulw 0x0000000000000080 0x000000000000007F = 0x0000000000003F80 ++mulw 0x0000000000000080 0x0000000000000080 = 0x0000000000004000 ++mulw 0x0000000000000080 0x0000000000007FFF = 0x00000000003FFF80 ++mulw 0x0000000000000080 0x0000000000008000 = 0x0000000000400000 ++mulw 0x0000000000000080 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF80 ++mulw 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++mulw 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++mulw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFC00000 ++mulw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFC000 ++mulw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++mulw 0x0000000000000080 0x123456789ABCDEF0 = 0x000000005E6F7800 ++mulw 0x0000000000000080 0xF0DEBC9A78563412 = 0x000000002B1A0900 ++mulw 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++mulw 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++mulw 0x0000000000007FFF 0x0000000000000002 = 0x000000000000FFFE ++mulw 0x0000000000007FFF 0x0000000000000003 = 0x0000000000017FFD ++mulw 0x0000000000007FFF 0x000000000000000F = 0x0000000000077FF1 ++mulw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8001 ++mulw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0002 ++mulw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFE8003 ++mulw 0x0000000000007FFF 0x000000000000007F = 0x00000000003F7F81 ++mulw 0x0000000000007FFF 0x0000000000000080 = 0x00000000003FFF80 ++mulw 0x0000000000007FFF 0x0000000000007FFF = 0x000000003FFF0001 ++mulw 0x0000000000007FFF 0x0000000000008000 = 0x000000003FFF8000 ++mulw 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFF8001 ++mulw 0x0000000000007FFF 0x0000000080000000 = 0xFFFFFFFF80000000 ++mulw 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++mulw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mulw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFC0008000 ++mulw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFC00080 ++mulw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8001 ++mulw 0x0000000000007FFF 0x123456789ABCDEF0 = 0xFFFFFFFFD4BB2110 ++mulw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xFFFFFFFFA1B2CBEE ++mulw 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++mulw 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++mulw 0x0000000000008000 0x0000000000000002 = 0x0000000000010000 ++mulw 0x0000000000008000 0x0000000000000003 = 0x0000000000018000 ++mulw 0x0000000000008000 0x000000000000000F = 0x0000000000078000 ++mulw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++mulw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++mulw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFE8000 ++mulw 0x0000000000008000 0x000000000000007F = 0x00000000003F8000 ++mulw 0x0000000000008000 0x0000000000000080 = 0x0000000000400000 ++mulw 0x0000000000008000 0x0000000000007FFF = 0x000000003FFF8000 ++mulw 0x0000000000008000 0x0000000000008000 = 0x0000000040000000 ++mulw 0x0000000000008000 0x000000007FFFFFFF = 0xFFFFFFFFFFFF8000 ++mulw 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++mulw 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++mulw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFC0000000 ++mulw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFC00000 ++mulw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++mulw 0x0000000000008000 0x123456789ABCDEF0 = 0x000000006F780000 ++mulw 0x0000000000008000 0xF0DEBC9A78563412 = 0x000000001A090000 ++mulw 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++mulw 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++mulw 0x000000007FFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++mulw 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFFD ++mulw 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFF1 ++mulw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000001 ++mulw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++mulw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000003 ++mulw 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFF81 ++mulw 0x000000007FFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++mulw 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFF8001 ++mulw 0x000000007FFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++mulw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++mulw 0x000000007FFFFFFF 0x0000000080000000 = 0xFFFFFFFF80000000 ++mulw 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++mulw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mulw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++mulw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++mulw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000001 ++mulw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000065432110 ++mulw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEE ++mulw 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++mulw 0x0000000080000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++mulw 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++mulw 0x0000000080000000 0x0000000000000003 = 0xFFFFFFFF80000000 ++mulw 0x0000000080000000 0x000000000000000F = 0xFFFFFFFF80000000 ++mulw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++mulw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++mulw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++mulw 0x0000000080000000 0x000000000000007F = 0xFFFFFFFF80000000 ++mulw 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++mulw 0x0000000080000000 0x0000000000007FFF = 0xFFFFFFFF80000000 ++mulw 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++mulw 0x0000000080000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++mulw 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++mulw 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++mulw 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++mulw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++mulw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++mulw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++mulw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++mulw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++mulw 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++mulw 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++mulw 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++mulw 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++mulw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++mulw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++mulw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++mulw 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++mulw 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++mulw 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++mulw 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++mulw 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++mulw 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++mulw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++mulw 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++mulw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++mulw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++mulw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++mulw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++mulw 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++mulw 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++mulw 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++mulw 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000000 ++mulw 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF80000000 ++mulw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++mulw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++mulw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++mulw 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF80000000 ++mulw 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++mulw 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80000000 ++mulw 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++mulw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++mulw 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++mulw 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++mulw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++mulw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++mulw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++mulw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++mulw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++mulw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF0000 ++mulw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFE8000 ++mulw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFF88000 ++mulw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++mulw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000010000 ++mulw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000018000 ++mulw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFC08000 ++mulw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFC00000 ++mulw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFC0008000 ++mulw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFC0000000 ++mulw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000008000 ++mulw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000040000000 ++mulw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000400000 ++mulw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++mulw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFF90880000 ++mulw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFE5F70000 ++mulw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF80 ++mulw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF00 ++mulw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFE80 ++mulw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFF880 ++mulw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++mulw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000100 ++mulw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000180 ++mulw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFC080 ++mulw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFC000 ++mulw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFC00080 ++mulw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFC00000 ++mulw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000080 ++mulw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000400000 ++mulw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000004000 ++mulw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++mulw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFA1908800 ++mulw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFD4E5F700 ++mulw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++mulw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++mulw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++mulw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++mulw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++mulw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++mulw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++mulw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++mulw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++mulw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++mulw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++mulw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++mulw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++mulw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFF80000000 ++mulw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++mulw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mulw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++mulw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++mulw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++mulw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000065432110 ++mulw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBEE ++mulw 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++mulw 0x123456789ABCDEF0 0x0000000000000001 = 0xFFFFFFFF9ABCDEF0 ++mulw 0x123456789ABCDEF0 0x0000000000000002 = 0x000000003579BDE0 ++mulw 0x123456789ABCDEF0 0x0000000000000003 = 0xFFFFFFFFD0369CD0 ++mulw 0x123456789ABCDEF0 0x000000000000000F = 0x0000000011111010 ++mulw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000065432110 ++mulw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFCA864220 ++mulw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000002FC96330 ++mulw 0x123456789ABCDEF0 0x000000000000007F = 0xFFFFFFFFC3B29910 ++mulw 0x123456789ABCDEF0 0x0000000000000080 = 0x000000005E6F7800 ++mulw 0x123456789ABCDEF0 0x0000000000007FFF = 0xFFFFFFFFD4BB2110 ++mulw 0x123456789ABCDEF0 0x0000000000008000 = 0x000000006F780000 ++mulw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000065432110 ++mulw 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++mulw 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++mulw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF90880000 ++mulw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFA1908800 ++mulw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000065432110 ++mulw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0xFFFFFFFFF2A52100 ++mulw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xFFFFFFFFA3306CE0 ++mulw 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++mulw 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000078563412 ++mulw 0xF0DEBC9A78563412 0x0000000000000002 = 0xFFFFFFFFF0AC6824 ++mulw 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000069029C36 ++mulw 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000D0D0D0E ++mulw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF87A9CBEE ++mulw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x000000000F5397DC ++mulw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF96FD63CA ++mulw 0xF0DEBC9A78563412 0x000000000000007F = 0xFFFFFFFFB2C3D4EE ++mulw 0xF0DEBC9A78563412 0x0000000000000080 = 0x000000002B1A0900 ++mulw 0xF0DEBC9A78563412 0x0000000000007FFF = 0xFFFFFFFFA1B2CBEE ++mulw 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000001A090000 ++mulw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xFFFFFFFF87A9CBEE ++mulw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++mulw 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++mulw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++mulw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFE5F70000 ++mulw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFD4E5F700 ++mulw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF87A9CBEE ++mulw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xFFFFFFFFA3306CE0 ++mulw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xFFFFFFFFE6AF5144 ++=== Running test on mull === ++mull 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++mull 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++mull 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++mull 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++mull 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++mull 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++mull 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++mull 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++mull 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++mull 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++mull 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++mull 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++mull 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++mull 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++mull 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++mull 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++mull 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++mull 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++mull 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++mull 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++mull 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++mull 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++mull 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++mull 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++mull 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++mull 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++mull 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++mull 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++mull 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++mull 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++mull 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++mull 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++mull 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++mull 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++mull 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++mull 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++mull 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++mull 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++mull 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++mull 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++mull 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++mull 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++mull 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++mull 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++mull 0x0000000000000002 0x0000000000000002 = 0x0000000000000004 ++mull 0x0000000000000002 0x0000000000000003 = 0x0000000000000006 ++mull 0x0000000000000002 0x000000000000000F = 0x000000000000001E ++mull 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++mull 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++mull 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFA ++mull 0x0000000000000002 0x000000000000007F = 0x00000000000000FE ++mull 0x0000000000000002 0x0000000000000080 = 0x0000000000000100 ++mull 0x0000000000000002 0x0000000000007FFF = 0x000000000000FFFE ++mull 0x0000000000000002 0x0000000000008000 = 0x0000000000010000 ++mull 0x0000000000000002 0x000000007FFFFFFF = 0x00000000FFFFFFFE ++mull 0x0000000000000002 0x0000000080000000 = 0x0000000100000000 ++mull 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++mull 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++mull 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++mull 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++mull 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++mull 0x0000000000000002 0x123456789ABCDEF0 = 0x2468ACF13579BDE0 ++mull 0x0000000000000002 0xF0DEBC9A78563412 = 0xE1BD7934F0AC6824 ++mull 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++mull 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++mull 0x0000000000000003 0x0000000000000002 = 0x0000000000000006 ++mull 0x0000000000000003 0x0000000000000003 = 0x0000000000000009 ++mull 0x0000000000000003 0x000000000000000F = 0x000000000000002D ++mull 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++mull 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFA ++mull 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF7 ++mull 0x0000000000000003 0x000000000000007F = 0x000000000000017D ++mull 0x0000000000000003 0x0000000000000080 = 0x0000000000000180 ++mull 0x0000000000000003 0x0000000000007FFF = 0x0000000000017FFD ++mull 0x0000000000000003 0x0000000000008000 = 0x0000000000018000 ++mull 0x0000000000000003 0x000000007FFFFFFF = 0x000000017FFFFFFD ++mull 0x0000000000000003 0x0000000080000000 = 0x0000000180000000 ++mull 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++mull 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFE80000000 ++mull 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFE8000 ++mull 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFE80 ++mull 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++mull 0x0000000000000003 0x123456789ABCDEF0 = 0x369D0369D0369CD0 ++mull 0x0000000000000003 0xF0DEBC9A78563412 = 0xD29C35CF69029C36 ++mull 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++mull 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++mull 0x000000000000000F 0x0000000000000002 = 0x000000000000001E ++mull 0x000000000000000F 0x0000000000000003 = 0x000000000000002D ++mull 0x000000000000000F 0x000000000000000F = 0x00000000000000E1 ++mull 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF1 ++mull 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFE2 ++mull 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFD3 ++mull 0x000000000000000F 0x000000000000007F = 0x0000000000000771 ++mull 0x000000000000000F 0x0000000000000080 = 0x0000000000000780 ++mull 0x000000000000000F 0x0000000000007FFF = 0x0000000000077FF1 ++mull 0x000000000000000F 0x0000000000008000 = 0x0000000000078000 ++mull 0x000000000000000F 0x000000007FFFFFFF = 0x000000077FFFFFF1 ++mull 0x000000000000000F 0x0000000080000000 = 0x0000000780000000 ++mull 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++mull 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFF880000000 ++mull 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFF88000 ++mull 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFF880 ++mull 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF1 ++mull 0x000000000000000F 0x123456789ABCDEF0 = 0x1111111111111010 ++mull 0x000000000000000F 0xF0DEBC9A78563412 = 0x1D0D0D0D0D0D0D0E ++mull 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++mull 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++mull 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++mull 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++mull 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++mull 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++mull 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++mull 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++mull 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++mull 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++mull 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++mull 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++mull 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++mull 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFF80000000 ++mull 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++mull 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000080000000 ++mull 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++mull 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++mull 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x8000000000000001 ++mull 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xEDCBA98765432110 ++mull 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0F21436587A9CBEE ++mull 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++mull 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++mull 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFC ++mull 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFA ++mull 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFE2 ++mull 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++mull 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000004 ++mull 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000006 ++mull 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFF02 ++mull 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFF00 ++mull 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFF0002 ++mull 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++mull 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFF00000002 ++mull 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFF00000000 ++mull 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++mull 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000100000000 ++mull 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000010000 ++mull 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000100 ++mull 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++mull 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xDB97530ECA864220 ++mull 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x1E4286CB0F5397DC ++mull 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++mull 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++mull 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFA ++mull 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFF7 ++mull 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFD3 ++mull 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++mull 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000006 ++mull 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000009 ++mull 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFE83 ++mull 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFE80 ++mull 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFE8003 ++mull 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFE8000 ++mull 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFE80000003 ++mull 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFE80000000 ++mull 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++mull 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000180000000 ++mull 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000018000 ++mull 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000180 ++mull 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x8000000000000003 ++mull 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xC962FC962FC96330 ++mull 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x2D63CA3096FD63CA ++mull 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++mull 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++mull 0x000000000000007F 0x0000000000000002 = 0x00000000000000FE ++mull 0x000000000000007F 0x0000000000000003 = 0x000000000000017D ++mull 0x000000000000007F 0x000000000000000F = 0x0000000000000771 ++mull 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF81 ++mull 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF02 ++mull 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFE83 ++mull 0x000000000000007F 0x000000000000007F = 0x0000000000003F01 ++mull 0x000000000000007F 0x0000000000000080 = 0x0000000000003F80 ++mull 0x000000000000007F 0x0000000000007FFF = 0x00000000003F7F81 ++mull 0x000000000000007F 0x0000000000008000 = 0x00000000003F8000 ++mull 0x000000000000007F 0x000000007FFFFFFF = 0x0000003F7FFFFF81 ++mull 0x000000000000007F 0x0000000080000000 = 0x0000003F80000000 ++mull 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++mull 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFC080000000 ++mull 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFC08000 ++mull 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFC080 ++mull 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF81 ++mull 0x000000000000007F 0x123456789ABCDEF0 = 0x07F6E5D4C3B29910 ++mull 0x000000000000007F 0xF0DEBC9A78563412 = 0x7E7F90A1B2C3D4EE ++mull 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++mull 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++mull 0x0000000000000080 0x0000000000000002 = 0x0000000000000100 ++mull 0x0000000000000080 0x0000000000000003 = 0x0000000000000180 ++mull 0x0000000000000080 0x000000000000000F = 0x0000000000000780 ++mull 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++mull 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++mull 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFE80 ++mull 0x0000000000000080 0x000000000000007F = 0x0000000000003F80 ++mull 0x0000000000000080 0x0000000000000080 = 0x0000000000004000 ++mull 0x0000000000000080 0x0000000000007FFF = 0x00000000003FFF80 ++mull 0x0000000000000080 0x0000000000008000 = 0x0000000000400000 ++mull 0x0000000000000080 0x000000007FFFFFFF = 0x0000003FFFFFFF80 ++mull 0x0000000000000080 0x0000000080000000 = 0x0000004000000000 ++mull 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++mull 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFC000000000 ++mull 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFC00000 ++mull 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFC000 ++mull 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++mull 0x0000000000000080 0x123456789ABCDEF0 = 0x1A2B3C4D5E6F7800 ++mull 0x0000000000000080 0xF0DEBC9A78563412 = 0x6F5E4D3C2B1A0900 ++mull 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++mull 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++mull 0x0000000000007FFF 0x0000000000000002 = 0x000000000000FFFE ++mull 0x0000000000007FFF 0x0000000000000003 = 0x0000000000017FFD ++mull 0x0000000000007FFF 0x000000000000000F = 0x0000000000077FF1 ++mull 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8001 ++mull 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0002 ++mull 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFE8003 ++mull 0x0000000000007FFF 0x000000000000007F = 0x00000000003F7F81 ++mull 0x0000000000007FFF 0x0000000000000080 = 0x00000000003FFF80 ++mull 0x0000000000007FFF 0x0000000000007FFF = 0x000000003FFF0001 ++mull 0x0000000000007FFF 0x0000000000008000 = 0x000000003FFF8000 ++mull 0x0000000000007FFF 0x000000007FFFFFFF = 0x00003FFF7FFF8001 ++mull 0x0000000000007FFF 0x0000000080000000 = 0x00003FFF80000000 ++mull 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++mull 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFC00080000000 ++mull 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFC0008000 ++mull 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFC00080 ++mull 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF8001 ++mull 0x0000000000007FFF 0x123456789ABCDEF0 = 0x1907F6E5D4BB2110 ++mull 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x6D6E7F90A1B2CBEE ++mull 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++mull 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++mull 0x0000000000008000 0x0000000000000002 = 0x0000000000010000 ++mull 0x0000000000008000 0x0000000000000003 = 0x0000000000018000 ++mull 0x0000000000008000 0x000000000000000F = 0x0000000000078000 ++mull 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++mull 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++mull 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFE8000 ++mull 0x0000000000008000 0x000000000000007F = 0x00000000003F8000 ++mull 0x0000000000008000 0x0000000000000080 = 0x0000000000400000 ++mull 0x0000000000008000 0x0000000000007FFF = 0x000000003FFF8000 ++mull 0x0000000000008000 0x0000000000008000 = 0x0000000040000000 ++mull 0x0000000000008000 0x000000007FFFFFFF = 0x00003FFFFFFF8000 ++mull 0x0000000000008000 0x0000000080000000 = 0x0000400000000000 ++mull 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++mull 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFC00000000000 ++mull 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFC0000000 ++mull 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFC00000 ++mull 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++mull 0x0000000000008000 0x123456789ABCDEF0 = 0x2B3C4D5E6F780000 ++mull 0x0000000000008000 0xF0DEBC9A78563412 = 0x5E4D3C2B1A090000 ++mull 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++mull 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++mull 0x000000007FFFFFFF 0x0000000000000002 = 0x00000000FFFFFFFE ++mull 0x000000007FFFFFFF 0x0000000000000003 = 0x000000017FFFFFFD ++mull 0x000000007FFFFFFF 0x000000000000000F = 0x000000077FFFFFF1 ++mull 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000001 ++mull 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF00000002 ++mull 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFE80000003 ++mull 0x000000007FFFFFFF 0x000000000000007F = 0x0000003F7FFFFF81 ++mull 0x000000007FFFFFFF 0x0000000000000080 = 0x0000003FFFFFFF80 ++mull 0x000000007FFFFFFF 0x0000000000007FFF = 0x00003FFF7FFF8001 ++mull 0x000000007FFFFFFF 0x0000000000008000 = 0x00003FFFFFFF8000 ++mull 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x3FFFFFFF00000001 ++mull 0x000000007FFFFFFF 0x0000000080000000 = 0x3FFFFFFF80000000 ++mull 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++mull 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xC000000080000000 ++mull 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFC00000008000 ++mull 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFC000000080 ++mull 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFF80000001 ++mull 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x3B2A18FF65432110 ++mull 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x4B4C5D6E87A9CBEE ++mull 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++mull 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++mull 0x0000000080000000 0x0000000000000002 = 0x0000000100000000 ++mull 0x0000000080000000 0x0000000000000003 = 0x0000000180000000 ++mull 0x0000000080000000 0x000000000000000F = 0x0000000780000000 ++mull 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++mull 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF00000000 ++mull 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFE80000000 ++mull 0x0000000080000000 0x000000000000007F = 0x0000003F80000000 ++mull 0x0000000080000000 0x0000000000000080 = 0x0000004000000000 ++mull 0x0000000080000000 0x0000000000007FFF = 0x00003FFF80000000 ++mull 0x0000000080000000 0x0000000000008000 = 0x0000400000000000 ++mull 0x0000000080000000 0x000000007FFFFFFF = 0x3FFFFFFF80000000 ++mull 0x0000000080000000 0x0000000080000000 = 0x4000000000000000 ++mull 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++mull 0x0000000080000000 0xFFFFFFFF80000000 = 0xC000000000000000 ++mull 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFC00000000000 ++mull 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFC000000000 ++mull 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++mull 0x0000000080000000 0x123456789ABCDEF0 = 0x4D5E6F7800000000 ++mull 0x0000000080000000 0xF0DEBC9A78563412 = 0x3C2B1A0900000000 ++mull 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++mull 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++mull 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++mull 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++mull 0x8000000000000000 0x000000000000000F = 0x8000000000000000 ++mull 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++mull 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++mull 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++mull 0x8000000000000000 0x000000000000007F = 0x8000000000000000 ++mull 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++mull 0x8000000000000000 0x0000000000007FFF = 0x8000000000000000 ++mull 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++mull 0x8000000000000000 0x000000007FFFFFFF = 0x8000000000000000 ++mull 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++mull 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++mull 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++mull 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++mull 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++mull 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++mull 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++mull 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++mull 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++mull 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++mull 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF00000000 ++mull 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFE80000000 ++mull 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFF880000000 ++mull 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++mull 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000100000000 ++mull 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000180000000 ++mull 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFC080000000 ++mull 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFC000000000 ++mull 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFC00080000000 ++mull 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFC00000000000 ++mull 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xC000000080000000 ++mull 0xFFFFFFFF80000000 0x0000000080000000 = 0xC000000000000000 ++mull 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++mull 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x4000000000000000 ++mull 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000400000000000 ++mull 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000004000000000 ++mull 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++mull 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xB2A1908800000000 ++mull 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xC3D4E5F700000000 ++mull 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++mull 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++mull 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF0000 ++mull 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFE8000 ++mull 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFF88000 ++mull 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++mull 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000010000 ++mull 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000018000 ++mull 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFC08000 ++mull 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFC00000 ++mull 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFC0008000 ++mull 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFC0000000 ++mull 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFC00000008000 ++mull 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFC00000000000 ++mull 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++mull 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000400000000000 ++mull 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000040000000 ++mull 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000400000 ++mull 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++mull 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xD4C3B2A190880000 ++mull 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xA1B2C3D4E5F70000 ++mull 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++mull 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF80 ++mull 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF00 ++mull 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFE80 ++mull 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFF880 ++mull 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++mull 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000100 ++mull 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000180 ++mull 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFC080 ++mull 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFC000 ++mull 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFC00080 ++mull 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFC00000 ++mull 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFC000000080 ++mull 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFC000000000 ++mull 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++mull 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000004000000000 ++mull 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000400000 ++mull 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000004000 ++mull 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++mull 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xE5D4C3B2A1908800 ++mull 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x90A1B2C3D4E5F700 ++mull 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++mull 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++mull 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++mull 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFFFFFD ++mull 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFFFFFFFFF1 ++mull 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x8000000000000001 ++mull 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++mull 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x8000000000000003 ++mull 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7FFFFFFFFFFFFF81 ++mull 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++mull 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFFFF8001 ++mull 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++mull 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFF80000001 ++mull 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFF80000000 ++mull 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++mull 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000080000000 ++mull 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++mull 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++mull 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++mull 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xEDCBA98765432110 ++mull 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0F21436587A9CBEE ++mull 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++mull 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF0 ++mull 0x123456789ABCDEF0 0x0000000000000002 = 0x2468ACF13579BDE0 ++mull 0x123456789ABCDEF0 0x0000000000000003 = 0x369D0369D0369CD0 ++mull 0x123456789ABCDEF0 0x000000000000000F = 0x1111111111111010 ++mull 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xEDCBA98765432110 ++mull 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xDB97530ECA864220 ++mull 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xC962FC962FC96330 ++mull 0x123456789ABCDEF0 0x000000000000007F = 0x07F6E5D4C3B29910 ++mull 0x123456789ABCDEF0 0x0000000000000080 = 0x1A2B3C4D5E6F7800 ++mull 0x123456789ABCDEF0 0x0000000000007FFF = 0x1907F6E5D4BB2110 ++mull 0x123456789ABCDEF0 0x0000000000008000 = 0x2B3C4D5E6F780000 ++mull 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x3B2A18FF65432110 ++mull 0x123456789ABCDEF0 0x0000000080000000 = 0x4D5E6F7800000000 ++mull 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++mull 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xB2A1908800000000 ++mull 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xD4C3B2A190880000 ++mull 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xE5D4C3B2A1908800 ++mull 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0xEDCBA98765432110 ++mull 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0xA5E20890F2A52100 ++mull 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x9BC1743CA3306CE0 ++mull 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++mull 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563412 ++mull 0xF0DEBC9A78563412 0x0000000000000002 = 0xE1BD7934F0AC6824 ++mull 0xF0DEBC9A78563412 0x0000000000000003 = 0xD29C35CF69029C36 ++mull 0xF0DEBC9A78563412 0x000000000000000F = 0x1D0D0D0D0D0D0D0E ++mull 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0F21436587A9CBEE ++mull 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x1E4286CB0F5397DC ++mull 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x2D63CA3096FD63CA ++mull 0xF0DEBC9A78563412 0x000000000000007F = 0x7E7F90A1B2C3D4EE ++mull 0xF0DEBC9A78563412 0x0000000000000080 = 0x6F5E4D3C2B1A0900 ++mull 0xF0DEBC9A78563412 0x0000000000007FFF = 0x6D6E7F90A1B2CBEE ++mull 0xF0DEBC9A78563412 0x0000000000008000 = 0x5E4D3C2B1A090000 ++mull 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x4B4C5D6E87A9CBEE ++mull 0xF0DEBC9A78563412 0x0000000080000000 = 0x3C2B1A0900000000 ++mull 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++mull 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xC3D4E5F700000000 ++mull 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xA1B2C3D4E5F70000 ++mull 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x90A1B2C3D4E5F700 ++mull 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0F21436587A9CBEE ++mull 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x9BC1743CA3306CE0 ++mull 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xABFA037FE6AF5144 ++=== Running test on umulh === ++umulh 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++umulh 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++umulh 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++umulh 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++umulh 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++umulh 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++umulh 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++umulh 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++umulh 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++umulh 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++umulh 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++umulh 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++umulh 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++umulh 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++umulh 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++umulh 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++umulh 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++umulh 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++umulh 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++umulh 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++umulh 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++umulh 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++umulh 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++umulh 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++umulh 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++umulh 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++umulh 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++umulh 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++umulh 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++umulh 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++umulh 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++umulh 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++umulh 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++umulh 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++umulh 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++umulh 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++umulh 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++umulh 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++umulh 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++umulh 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++umulh 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++umulh 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++umulh 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++umulh 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++umulh 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++umulh 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++umulh 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++umulh 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++umulh 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++umulh 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++umulh 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++umulh 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++umulh 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++umulh 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++umulh 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++umulh 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++umulh 0x0000000000000002 0x8000000000000000 = 0x0000000000000001 ++umulh 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000001 ++umulh 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++umulh 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++umulh 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++umulh 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++umulh 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000001 ++umulh 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++umulh 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++umulh 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++umulh 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++umulh 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++umulh 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++umulh 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++umulh 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++umulh 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++umulh 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++umulh 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++umulh 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++umulh 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++umulh 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++umulh 0x0000000000000003 0x8000000000000000 = 0x0000000000000001 ++umulh 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000002 ++umulh 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++umulh 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++umulh 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++umulh 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++umulh 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000002 ++umulh 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++umulh 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++umulh 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++umulh 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++umulh 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++umulh 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000E ++umulh 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000E ++umulh 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000E ++umulh 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++umulh 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++umulh 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++umulh 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++umulh 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++umulh 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++umulh 0x000000000000000F 0x8000000000000000 = 0x0000000000000007 ++umulh 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000E ++umulh 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000E ++umulh 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000E ++umulh 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000007 ++umulh 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000001 ++umulh 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000E ++umulh 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++umulh 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++umulh 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++umulh 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000002 ++umulh 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000E ++umulh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++umulh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++umulh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++umulh 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007E ++umulh 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000007F ++umulh 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFE ++umulh 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000007FFF ++umulh 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFE ++umulh 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++umulh 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++umulh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFFF ++umulh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFF ++umulh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7F ++umulh 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++umulh 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEEF ++umulh 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563411 ++umulh 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++umulh 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++umulh 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000001 ++umulh 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000002 ++umulh 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000E ++umulh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++umulh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++umulh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFB ++umulh 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007E ++umulh 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000007F ++umulh 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFE ++umulh 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000007FFF ++umulh 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFE ++umulh 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000007FFFFFFF ++umulh 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++umulh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFFE ++umulh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFE ++umulh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7E ++umulh 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++umulh 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEEF ++umulh 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563410 ++umulh 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++umulh 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++umulh 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000001 ++umulh 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000002 ++umulh 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000E ++umulh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++umulh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFB ++umulh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFA ++umulh 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007E ++umulh 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000007F ++umulh 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFE ++umulh 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000007FFF ++umulh 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFE ++umulh 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000007FFFFFFF ++umulh 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x7FFFFFFFFFFFFFFE ++umulh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFFFD ++umulh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7FFD ++umulh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF7D ++umulh 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++umulh 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEEF ++umulh 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A7856340F ++umulh 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++umulh 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++umulh 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++umulh 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++umulh 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++umulh 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007E ++umulh 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007E ++umulh 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007E ++umulh 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++umulh 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++umulh 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++umulh 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++umulh 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++umulh 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++umulh 0x000000000000007F 0x8000000000000000 = 0x000000000000003F ++umulh 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007E ++umulh 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007E ++umulh 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007E ++umulh 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000003F ++umulh 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000009 ++umulh 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000077 ++umulh 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++umulh 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++umulh 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++umulh 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++umulh 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++umulh 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++umulh 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++umulh 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++umulh 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++umulh 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++umulh 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++umulh 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++umulh 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++umulh 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++umulh 0x0000000000000080 0x8000000000000000 = 0x0000000000000040 ++umulh 0x0000000000000080 0xFFFFFFFF80000000 = 0x000000000000007F ++umulh 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++umulh 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++umulh 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x000000000000003F ++umulh 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000009 ++umulh 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000078 ++umulh 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++umulh 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++umulh 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++umulh 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++umulh 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++umulh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFE ++umulh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFE ++umulh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFE ++umulh 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++umulh 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++umulh 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++umulh 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++umulh 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++umulh 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++umulh 0x0000000000007FFF 0x8000000000000000 = 0x0000000000003FFF ++umulh 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFE ++umulh 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFE ++umulh 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFE ++umulh 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000003FFF ++umulh 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000000000091A ++umulh 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000000000786E ++umulh 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++umulh 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++umulh 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++umulh 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++umulh 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++umulh 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++umulh 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++umulh 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++umulh 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++umulh 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++umulh 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++umulh 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++umulh 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++umulh 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++umulh 0x0000000000008000 0x8000000000000000 = 0x0000000000004000 ++umulh 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000007FFF ++umulh 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++umulh 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++umulh 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000003FFF ++umulh 0x0000000000008000 0x123456789ABCDEF0 = 0x000000000000091A ++umulh 0x0000000000008000 0xF0DEBC9A78563412 = 0x000000000000786F ++umulh 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++umulh 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++umulh 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++umulh 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++umulh 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++umulh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFE ++umulh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFE ++umulh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFE ++umulh 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++umulh 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++umulh 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++umulh 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++umulh 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++umulh 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++umulh 0x000000007FFFFFFF 0x8000000000000000 = 0x000000003FFFFFFF ++umulh 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFE ++umulh 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFE ++umulh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFE ++umulh 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000003FFFFFFF ++umulh 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x00000000091A2B3C ++umulh 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00000000786F5E4C ++umulh 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++umulh 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++umulh 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++umulh 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++umulh 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++umulh 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++umulh 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++umulh 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++umulh 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++umulh 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++umulh 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++umulh 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++umulh 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++umulh 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++umulh 0x0000000080000000 0x8000000000000000 = 0x0000000040000000 ++umulh 0x0000000080000000 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++umulh 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++umulh 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++umulh 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x000000003FFFFFFF ++umulh 0x0000000080000000 0x123456789ABCDEF0 = 0x00000000091A2B3C ++umulh 0x0000000080000000 0xF0DEBC9A78563412 = 0x00000000786F5E4D ++umulh 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++umulh 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++umulh 0x8000000000000000 0x0000000000000002 = 0x0000000000000001 ++umulh 0x8000000000000000 0x0000000000000003 = 0x0000000000000001 ++umulh 0x8000000000000000 0x000000000000000F = 0x0000000000000007 ++umulh 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++umulh 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFF ++umulh 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFE ++umulh 0x8000000000000000 0x000000000000007F = 0x000000000000003F ++umulh 0x8000000000000000 0x0000000000000080 = 0x0000000000000040 ++umulh 0x8000000000000000 0x0000000000007FFF = 0x0000000000003FFF ++umulh 0x8000000000000000 0x0000000000008000 = 0x0000000000004000 ++umulh 0x8000000000000000 0x000000007FFFFFFF = 0x000000003FFFFFFF ++umulh 0x8000000000000000 0x0000000080000000 = 0x0000000040000000 ++umulh 0x8000000000000000 0x8000000000000000 = 0x4000000000000000 ++umulh 0x8000000000000000 0xFFFFFFFF80000000 = 0x7FFFFFFFC0000000 ++umulh 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFC000 ++umulh 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFC0 ++umulh 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x3FFFFFFFFFFFFFFF ++umulh 0x8000000000000000 0x123456789ABCDEF0 = 0x091A2B3C4D5E6F78 ++umulh 0x8000000000000000 0xF0DEBC9A78563412 = 0x786F5E4D3C2B1A09 ++umulh 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++umulh 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++umulh 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000001 ++umulh 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000002 ++umulh 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000E ++umulh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF7FFFFFFF ++umulh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF7FFFFFFE ++umulh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF7FFFFFFD ++umulh 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007E ++umulh 0xFFFFFFFF80000000 0x0000000000000080 = 0x000000000000007F ++umulh 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFE ++umulh 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000007FFF ++umulh 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFE ++umulh 0xFFFFFFFF80000000 0x0000000080000000 = 0x000000007FFFFFFF ++umulh 0xFFFFFFFF80000000 0x8000000000000000 = 0x7FFFFFFFC0000000 ++umulh 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++umulh 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF7FFF8000 ++umulh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF7FFFFF80 ++umulh 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFBFFFFFFF ++umulh 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x1234567891A2B3B3 ++umulh 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC99FFE6D5C4 ++umulh 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++umulh 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++umulh 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000001 ++umulh 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000002 ++umulh 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000E ++umulh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF7FFF ++umulh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF7FFE ++umulh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF7FFD ++umulh 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007E ++umulh 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x000000000000007F ++umulh 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFE ++umulh 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000007FFF ++umulh 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFE ++umulh 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x000000007FFFFFFF ++umulh 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x7FFFFFFFFFFFC000 ++umulh 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFF8000 ++umulh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++umulh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF7F80 ++umulh 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFBFFF ++umulh 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCD5D5 ++umulh 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A7855BBA2 ++umulh 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++umulh 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++umulh 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000001 ++umulh 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000002 ++umulh 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000E ++umulh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7F ++umulh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF7E ++umulh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF7D ++umulh 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007E ++umulh 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000000000007F ++umulh 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFE ++umulh 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000007FFF ++umulh 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFE ++umulh 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000007FFFFFFF ++umulh 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x7FFFFFFFFFFFFFC0 ++umulh 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF7FFFFF80 ++umulh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF7F80 ++umulh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++umulh 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFBF ++umulh 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEE6 ++umulh 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563399 ++umulh 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++umulh 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++umulh 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++umulh 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000001 ++umulh 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000007 ++umulh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++umulh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFE ++umulh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFD ++umulh 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000003F ++umulh 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000003F ++umulh 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000003FFF ++umulh 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000003FFF ++umulh 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000003FFFFFFF ++umulh 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000003FFFFFFF ++umulh 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x3FFFFFFFFFFFFFFF ++umulh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFBFFFFFFF ++umulh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFBFFF ++umulh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFBF ++umulh 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x3FFFFFFFFFFFFFFF ++umulh 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x091A2B3C4D5E6F77 ++umulh 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x786F5E4D3C2B1A08 ++umulh 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++umulh 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++umulh 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++umulh 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++umulh 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000001 ++umulh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDEEF ++umulh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDEEF ++umulh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDEEF ++umulh 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000009 ++umulh 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000009 ++umulh 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000000000091A ++umulh 0x123456789ABCDEF0 0x0000000000008000 = 0x000000000000091A ++umulh 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x00000000091A2B3C ++umulh 0x123456789ABCDEF0 0x0000000080000000 = 0x00000000091A2B3C ++umulh 0x123456789ABCDEF0 0x8000000000000000 = 0x091A2B3C4D5E6F78 ++umulh 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x1234567891A2B3B3 ++umulh 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCD5D5 ++umulh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEE6 ++umulh 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x091A2B3C4D5E6F77 ++umulh 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x014B66DC33F6ACDC ++umulh 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x1120E7DD793280CB ++umulh 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++umulh 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++umulh 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000001 ++umulh 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000002 ++umulh 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000E ++umulh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563411 ++umulh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563410 ++umulh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A7856340F ++umulh 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000077 ++umulh 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000078 ++umulh 0xF0DEBC9A78563412 0x0000000000007FFF = 0x000000000000786E ++umulh 0xF0DEBC9A78563412 0x0000000000008000 = 0x000000000000786F ++umulh 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000786F5E4C ++umulh 0xF0DEBC9A78563412 0x0000000080000000 = 0x00000000786F5E4D ++umulh 0xF0DEBC9A78563412 0x8000000000000000 = 0x786F5E4D3C2B1A09 ++umulh 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC99FFE6D5C4 ++umulh 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A7855BBA2 ++umulh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563399 ++umulh 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x786F5E4D3C2B1A08 ++umulh 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x1120E7DD793280CB ++umulh 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xE2A2636D487D9517 ++=== Running test on cmpeq === ++cmpeq 0x0000000000000000 0x0000000000000000 = 0x0000000000000001 ++cmpeq 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++cmpeq 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++cmpeq 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++cmpeq 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++cmpeq 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++cmpeq 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0x0000000000000002 0x0000000000000002 = 0x0000000000000001 ++cmpeq 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++cmpeq 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++cmpeq 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0x0000000000000003 0x0000000000000003 = 0x0000000000000001 ++cmpeq 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++cmpeq 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++cmpeq 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0x000000000000000F 0x000000000000000F = 0x0000000000000001 ++cmpeq 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++cmpeq 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpeq 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpeq 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpeq 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++cmpeq 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0x000000000000007F 0x000000000000007F = 0x0000000000000001 ++cmpeq 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++cmpeq 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++cmpeq 0x0000000000000080 0x0000000000000080 = 0x0000000000000001 ++cmpeq 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000001 ++cmpeq 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++cmpeq 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++cmpeq 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0x0000000000008000 0x0000000000008000 = 0x0000000000000001 ++cmpeq 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++cmpeq 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++cmpeq 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++cmpeq 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000080000000 0x0000000080000000 = 0x0000000000000001 ++cmpeq 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++cmpeq 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++cmpeq 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0x8000000000000000 0x8000000000000000 = 0x0000000000000001 ++cmpeq 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpeq 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpeq 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpeq 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpeq 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpeq 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpeq 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmplt === ++cmplt 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++cmplt 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++cmplt 0x0000000000000000 0x0000000000000002 = 0x0000000000000001 ++cmplt 0x0000000000000000 0x0000000000000003 = 0x0000000000000001 ++cmplt 0x0000000000000000 0x000000000000000F = 0x0000000000000001 ++cmplt 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0x0000000000000000 0x000000000000007F = 0x0000000000000001 ++cmplt 0x0000000000000000 0x0000000000000080 = 0x0000000000000001 ++cmplt 0x0000000000000000 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0x0000000000000000 0x0000000000008000 = 0x0000000000000001 ++cmplt 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0x0000000000000000 0x0000000080000000 = 0x0000000000000001 ++cmplt 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++cmplt 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++cmplt 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++cmplt 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++cmplt 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++cmplt 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++cmplt 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++cmplt 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++cmplt 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++cmplt 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++cmplt 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++cmplt 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++cmplt 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++cmplt 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++cmplt 0x0000000000000002 0x0000000000000003 = 0x0000000000000001 ++cmplt 0x0000000000000002 0x000000000000000F = 0x0000000000000001 ++cmplt 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0x0000000000000002 0x000000000000007F = 0x0000000000000001 ++cmplt 0x0000000000000002 0x0000000000000080 = 0x0000000000000001 ++cmplt 0x0000000000000002 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0x0000000000000002 0x0000000000008000 = 0x0000000000000001 ++cmplt 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0x0000000000000002 0x0000000080000000 = 0x0000000000000001 ++cmplt 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++cmplt 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++cmplt 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++cmplt 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++cmplt 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++cmplt 0x0000000000000003 0x000000000000000F = 0x0000000000000001 ++cmplt 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0x0000000000000003 0x000000000000007F = 0x0000000000000001 ++cmplt 0x0000000000000003 0x0000000000000080 = 0x0000000000000001 ++cmplt 0x0000000000000003 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0x0000000000000003 0x0000000000008000 = 0x0000000000000001 ++cmplt 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0x0000000000000003 0x0000000080000000 = 0x0000000000000001 ++cmplt 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++cmplt 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++cmplt 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++cmplt 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++cmplt 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++cmplt 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++cmplt 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0x000000000000000F 0x000000000000007F = 0x0000000000000001 ++cmplt 0x000000000000000F 0x0000000000000080 = 0x0000000000000001 ++cmplt 0x000000000000000F 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0x000000000000000F 0x0000000000008000 = 0x0000000000000001 ++cmplt 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0x000000000000000F 0x0000000080000000 = 0x0000000000000001 ++cmplt 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++cmplt 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++cmplt 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++cmplt 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++cmplt 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++cmplt 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++cmplt 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++cmplt 0x000000000000007F 0x0000000000000080 = 0x0000000000000001 ++cmplt 0x000000000000007F 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0x000000000000007F 0x0000000000008000 = 0x0000000000000001 ++cmplt 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0x000000000000007F 0x0000000080000000 = 0x0000000000000001 ++cmplt 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++cmplt 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++cmplt 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++cmplt 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++cmplt 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++cmplt 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++cmplt 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++cmplt 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++cmplt 0x0000000000000080 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0x0000000000000080 0x0000000000008000 = 0x0000000000000001 ++cmplt 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0x0000000000000080 0x0000000080000000 = 0x0000000000000001 ++cmplt 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++cmplt 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000001 ++cmplt 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000001 ++cmplt 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++cmplt 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++cmplt 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++cmplt 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++cmplt 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++cmplt 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++cmplt 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++cmplt 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++cmplt 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++cmplt 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0x0000000000008000 0x0000000080000000 = 0x0000000000000001 ++cmplt 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++cmplt 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000001 ++cmplt 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++cmplt 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++cmplt 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++cmplt 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++cmplt 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++cmplt 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++cmplt 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++cmplt 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++cmplt 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++cmplt 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++cmplt 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++cmplt 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++cmplt 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0x8000000000000000 0x0000000000000000 = 0x0000000000000001 ++cmplt 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++cmplt 0x8000000000000000 0x0000000000000002 = 0x0000000000000001 ++cmplt 0x8000000000000000 0x0000000000000003 = 0x0000000000000001 ++cmplt 0x8000000000000000 0x000000000000000F = 0x0000000000000001 ++cmplt 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmplt 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmplt 0x8000000000000000 0x000000000000007F = 0x0000000000000001 ++cmplt 0x8000000000000000 0x0000000000000080 = 0x0000000000000001 ++cmplt 0x8000000000000000 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0x8000000000000000 0x0000000000008000 = 0x0000000000000001 ++cmplt 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0x8000000000000000 0x0000000080000000 = 0x0000000000000001 ++cmplt 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++cmplt 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmplt 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmplt 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmplt 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++cmplt 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++cmplt 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++cmplt 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmplt 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++cmplt 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000001 ++cmplt 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmple === ++cmple 0x0000000000000000 0x0000000000000000 = 0x0000000000000001 ++cmple 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++cmple 0x0000000000000000 0x0000000000000002 = 0x0000000000000001 ++cmple 0x0000000000000000 0x0000000000000003 = 0x0000000000000001 ++cmple 0x0000000000000000 0x000000000000000F = 0x0000000000000001 ++cmple 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmple 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0x0000000000000000 0x000000000000007F = 0x0000000000000001 ++cmple 0x0000000000000000 0x0000000000000080 = 0x0000000000000001 ++cmple 0x0000000000000000 0x0000000000007FFF = 0x0000000000000001 ++cmple 0x0000000000000000 0x0000000000008000 = 0x0000000000000001 ++cmple 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0x0000000000000000 0x0000000080000000 = 0x0000000000000001 ++cmple 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++cmple 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++cmple 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++cmple 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++cmple 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++cmple 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++cmple 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmple 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++cmple 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++cmple 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++cmple 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++cmple 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++cmple 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++cmple 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++cmple 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++cmple 0x0000000000000002 0x0000000000000002 = 0x0000000000000001 ++cmple 0x0000000000000002 0x0000000000000003 = 0x0000000000000001 ++cmple 0x0000000000000002 0x000000000000000F = 0x0000000000000001 ++cmple 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmple 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0x0000000000000002 0x000000000000007F = 0x0000000000000001 ++cmple 0x0000000000000002 0x0000000000000080 = 0x0000000000000001 ++cmple 0x0000000000000002 0x0000000000007FFF = 0x0000000000000001 ++cmple 0x0000000000000002 0x0000000000008000 = 0x0000000000000001 ++cmple 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0x0000000000000002 0x0000000080000000 = 0x0000000000000001 ++cmple 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++cmple 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++cmple 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++cmple 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++cmple 0x0000000000000003 0x0000000000000003 = 0x0000000000000001 ++cmple 0x0000000000000003 0x000000000000000F = 0x0000000000000001 ++cmple 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmple 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0x0000000000000003 0x000000000000007F = 0x0000000000000001 ++cmple 0x0000000000000003 0x0000000000000080 = 0x0000000000000001 ++cmple 0x0000000000000003 0x0000000000007FFF = 0x0000000000000001 ++cmple 0x0000000000000003 0x0000000000008000 = 0x0000000000000001 ++cmple 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0x0000000000000003 0x0000000080000000 = 0x0000000000000001 ++cmple 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++cmple 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++cmple 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++cmple 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++cmple 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++cmple 0x000000000000000F 0x000000000000000F = 0x0000000000000001 ++cmple 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmple 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0x000000000000000F 0x000000000000007F = 0x0000000000000001 ++cmple 0x000000000000000F 0x0000000000000080 = 0x0000000000000001 ++cmple 0x000000000000000F 0x0000000000007FFF = 0x0000000000000001 ++cmple 0x000000000000000F 0x0000000000008000 = 0x0000000000000001 ++cmple 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0x000000000000000F 0x0000000080000000 = 0x0000000000000001 ++cmple 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++cmple 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++cmple 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++cmple 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++cmple 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++cmple 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++cmple 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmple 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0x000000000000007F 0x000000000000007F = 0x0000000000000001 ++cmple 0x000000000000007F 0x0000000000000080 = 0x0000000000000001 ++cmple 0x000000000000007F 0x0000000000007FFF = 0x0000000000000001 ++cmple 0x000000000000007F 0x0000000000008000 = 0x0000000000000001 ++cmple 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0x000000000000007F 0x0000000080000000 = 0x0000000000000001 ++cmple 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++cmple 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++cmple 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++cmple 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++cmple 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++cmple 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++cmple 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmple 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++cmple 0x0000000000000080 0x0000000000000080 = 0x0000000000000001 ++cmple 0x0000000000000080 0x0000000000007FFF = 0x0000000000000001 ++cmple 0x0000000000000080 0x0000000000008000 = 0x0000000000000001 ++cmple 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0x0000000000000080 0x0000000080000000 = 0x0000000000000001 ++cmple 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++cmple 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++cmple 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++cmple 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++cmple 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++cmple 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++cmple 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmple 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++cmple 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++cmple 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000001 ++cmple 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000001 ++cmple 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000001 ++cmple 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++cmple 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++cmple 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++cmple 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++cmple 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++cmple 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++cmple 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmple 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++cmple 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++cmple 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++cmple 0x0000000000008000 0x0000000000008000 = 0x0000000000000001 ++cmple 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0x0000000000008000 0x0000000080000000 = 0x0000000000000001 ++cmple 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++cmple 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000001 ++cmple 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++cmple 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++cmple 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++cmple 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++cmple 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++cmple 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmple 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++cmple 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++cmple 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++cmple 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++cmple 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++cmple 0x0000000080000000 0x0000000080000000 = 0x0000000000000001 ++cmple 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++cmple 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0x8000000000000000 0x0000000000000000 = 0x0000000000000001 ++cmple 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++cmple 0x8000000000000000 0x0000000000000002 = 0x0000000000000001 ++cmple 0x8000000000000000 0x0000000000000003 = 0x0000000000000001 ++cmple 0x8000000000000000 0x000000000000000F = 0x0000000000000001 ++cmple 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmple 0x8000000000000000 0x000000000000007F = 0x0000000000000001 ++cmple 0x8000000000000000 0x0000000000000080 = 0x0000000000000001 ++cmple 0x8000000000000000 0x0000000000007FFF = 0x0000000000000001 ++cmple 0x8000000000000000 0x0000000000008000 = 0x0000000000000001 ++cmple 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0x8000000000000000 0x0000000080000000 = 0x0000000000000001 ++cmple 0x8000000000000000 0x8000000000000000 = 0x0000000000000001 ++cmple 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmple 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmple 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmple 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++cmple 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++cmple 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmple 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmple 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++cmple 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000001 ++cmple 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on cmpult === ++cmpult 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++cmpult 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++cmpult 0x0000000000000000 0x0000000000000002 = 0x0000000000000001 ++cmpult 0x0000000000000000 0x0000000000000003 = 0x0000000000000001 ++cmpult 0x0000000000000000 0x000000000000000F = 0x0000000000000001 ++cmpult 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0x0000000000000000 0x000000000000007F = 0x0000000000000001 ++cmpult 0x0000000000000000 0x0000000000000080 = 0x0000000000000001 ++cmpult 0x0000000000000000 0x0000000000007FFF = 0x0000000000000001 ++cmpult 0x0000000000000000 0x0000000000008000 = 0x0000000000000001 ++cmpult 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000000 0x0000000080000000 = 0x0000000000000001 ++cmpult 0x0000000000000000 0x8000000000000000 = 0x0000000000000001 ++cmpult 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpult 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpult 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++cmpult 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++cmpult 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++cmpult 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++cmpult 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++cmpult 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++cmpult 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++cmpult 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++cmpult 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++cmpult 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++cmpult 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++cmpult 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpult 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpult 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++cmpult 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++cmpult 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++cmpult 0x0000000000000002 0x0000000000000003 = 0x0000000000000001 ++cmpult 0x0000000000000002 0x000000000000000F = 0x0000000000000001 ++cmpult 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0x0000000000000002 0x000000000000007F = 0x0000000000000001 ++cmpult 0x0000000000000002 0x0000000000000080 = 0x0000000000000001 ++cmpult 0x0000000000000002 0x0000000000007FFF = 0x0000000000000001 ++cmpult 0x0000000000000002 0x0000000000008000 = 0x0000000000000001 ++cmpult 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000002 0x0000000080000000 = 0x0000000000000001 ++cmpult 0x0000000000000002 0x8000000000000000 = 0x0000000000000001 ++cmpult 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpult 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpult 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++cmpult 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++cmpult 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++cmpult 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++cmpult 0x0000000000000003 0x000000000000000F = 0x0000000000000001 ++cmpult 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0x0000000000000003 0x000000000000007F = 0x0000000000000001 ++cmpult 0x0000000000000003 0x0000000000000080 = 0x0000000000000001 ++cmpult 0x0000000000000003 0x0000000000007FFF = 0x0000000000000001 ++cmpult 0x0000000000000003 0x0000000000008000 = 0x0000000000000001 ++cmpult 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000003 0x0000000080000000 = 0x0000000000000001 ++cmpult 0x0000000000000003 0x8000000000000000 = 0x0000000000000001 ++cmpult 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpult 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpult 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++cmpult 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++cmpult 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++cmpult 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++cmpult 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++cmpult 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0x000000000000000F 0x000000000000007F = 0x0000000000000001 ++cmpult 0x000000000000000F 0x0000000000000080 = 0x0000000000000001 ++cmpult 0x000000000000000F 0x0000000000007FFF = 0x0000000000000001 ++cmpult 0x000000000000000F 0x0000000000008000 = 0x0000000000000001 ++cmpult 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000001 ++cmpult 0x000000000000000F 0x0000000080000000 = 0x0000000000000001 ++cmpult 0x000000000000000F 0x8000000000000000 = 0x0000000000000001 ++cmpult 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpult 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpult 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpult 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++cmpult 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++cmpult 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++cmpult 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++cmpult 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++cmpult 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++cmpult 0x000000000000007F 0x0000000000000080 = 0x0000000000000001 ++cmpult 0x000000000000007F 0x0000000000007FFF = 0x0000000000000001 ++cmpult 0x000000000000007F 0x0000000000008000 = 0x0000000000000001 ++cmpult 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000001 ++cmpult 0x000000000000007F 0x0000000080000000 = 0x0000000000000001 ++cmpult 0x000000000000007F 0x8000000000000000 = 0x0000000000000001 ++cmpult 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpult 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpult 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++cmpult 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++cmpult 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++cmpult 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++cmpult 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++cmpult 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++cmpult 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++cmpult 0x0000000000000080 0x0000000000007FFF = 0x0000000000000001 ++cmpult 0x0000000000000080 0x0000000000008000 = 0x0000000000000001 ++cmpult 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000080 0x0000000080000000 = 0x0000000000000001 ++cmpult 0x0000000000000080 0x8000000000000000 = 0x0000000000000001 ++cmpult 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpult 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpult 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++cmpult 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++cmpult 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++cmpult 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++cmpult 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++cmpult 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++cmpult 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++cmpult 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++cmpult 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000001 ++cmpult 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000001 ++cmpult 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000001 ++cmpult 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpult 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpult 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++cmpult 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++cmpult 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++cmpult 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++cmpult 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++cmpult 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++cmpult 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++cmpult 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++cmpult 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++cmpult 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000008000 0x0000000080000000 = 0x0000000000000001 ++cmpult 0x0000000000008000 0x8000000000000000 = 0x0000000000000001 ++cmpult 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpult 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpult 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++cmpult 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++cmpult 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++cmpult 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++cmpult 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++cmpult 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++cmpult 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++cmpult 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++cmpult 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++cmpult 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000001 ++cmpult 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000001 ++cmpult 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpult 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpult 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++cmpult 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++cmpult 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++cmpult 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++cmpult 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++cmpult 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++cmpult 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++cmpult 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++cmpult 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++cmpult 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++cmpult 0x0000000080000000 0x8000000000000000 = 0x0000000000000001 ++cmpult 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpult 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpult 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++cmpult 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++cmpult 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++cmpult 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++cmpult 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++cmpult 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++cmpult 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++cmpult 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++cmpult 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++cmpult 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++cmpult 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++cmpult 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpult 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpult 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++cmpult 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++cmpult 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++cmpult 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++cmpult 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++cmpult 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++cmpult 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++cmpult 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++cmpult 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++cmpult 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++cmpult 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000001 ++cmpult 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpult 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++cmpult 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++cmpult 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++cmpult 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++cmpult 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000000 ++cmpult 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++cmpult 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000000 ++cmpult 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++cmpult 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++cmpult 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++cmpult 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000001 ++cmpult 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpult 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++cmpult 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++cmpult 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++cmpult 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++cmpult 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000000 ++cmpult 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpult 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpult 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpult 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000000 ++cmpult 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000000 ++cmpult 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000000 ++cmpult 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000000 ++cmpult 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++cmpult 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++cmpult 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++cmpult 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpult 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpult 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpult 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpult 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpult 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cmpule === ++cmpule 0x0000000000000000 0x0000000000000000 = 0x0000000000000001 ++cmpule 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++cmpule 0x0000000000000000 0x0000000000000002 = 0x0000000000000001 ++cmpule 0x0000000000000000 0x0000000000000003 = 0x0000000000000001 ++cmpule 0x0000000000000000 0x000000000000000F = 0x0000000000000001 ++cmpule 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0x0000000000000000 0x000000000000007F = 0x0000000000000001 ++cmpule 0x0000000000000000 0x0000000000000080 = 0x0000000000000001 ++cmpule 0x0000000000000000 0x0000000000007FFF = 0x0000000000000001 ++cmpule 0x0000000000000000 0x0000000000008000 = 0x0000000000000001 ++cmpule 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000000 0x0000000080000000 = 0x0000000000000001 ++cmpule 0x0000000000000000 0x8000000000000000 = 0x0000000000000001 ++cmpule 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpule 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpule 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++cmpule 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++cmpule 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++cmpule 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++cmpule 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++cmpule 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++cmpule 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++cmpule 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++cmpule 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++cmpule 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++cmpule 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++cmpule 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpule 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpule 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++cmpule 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++cmpule 0x0000000000000002 0x0000000000000002 = 0x0000000000000001 ++cmpule 0x0000000000000002 0x0000000000000003 = 0x0000000000000001 ++cmpule 0x0000000000000002 0x000000000000000F = 0x0000000000000001 ++cmpule 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0x0000000000000002 0x000000000000007F = 0x0000000000000001 ++cmpule 0x0000000000000002 0x0000000000000080 = 0x0000000000000001 ++cmpule 0x0000000000000002 0x0000000000007FFF = 0x0000000000000001 ++cmpule 0x0000000000000002 0x0000000000008000 = 0x0000000000000001 ++cmpule 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000002 0x0000000080000000 = 0x0000000000000001 ++cmpule 0x0000000000000002 0x8000000000000000 = 0x0000000000000001 ++cmpule 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpule 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpule 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++cmpule 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++cmpule 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++cmpule 0x0000000000000003 0x0000000000000003 = 0x0000000000000001 ++cmpule 0x0000000000000003 0x000000000000000F = 0x0000000000000001 ++cmpule 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0x0000000000000003 0x000000000000007F = 0x0000000000000001 ++cmpule 0x0000000000000003 0x0000000000000080 = 0x0000000000000001 ++cmpule 0x0000000000000003 0x0000000000007FFF = 0x0000000000000001 ++cmpule 0x0000000000000003 0x0000000000008000 = 0x0000000000000001 ++cmpule 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000003 0x0000000080000000 = 0x0000000000000001 ++cmpule 0x0000000000000003 0x8000000000000000 = 0x0000000000000001 ++cmpule 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpule 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpule 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++cmpule 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++cmpule 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++cmpule 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++cmpule 0x000000000000000F 0x000000000000000F = 0x0000000000000001 ++cmpule 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0x000000000000000F 0x000000000000007F = 0x0000000000000001 ++cmpule 0x000000000000000F 0x0000000000000080 = 0x0000000000000001 ++cmpule 0x000000000000000F 0x0000000000007FFF = 0x0000000000000001 ++cmpule 0x000000000000000F 0x0000000000008000 = 0x0000000000000001 ++cmpule 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000001 ++cmpule 0x000000000000000F 0x0000000080000000 = 0x0000000000000001 ++cmpule 0x000000000000000F 0x8000000000000000 = 0x0000000000000001 ++cmpule 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpule 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpule 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++cmpule 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++cmpule 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++cmpule 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++cmpule 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++cmpule 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0x000000000000007F 0x000000000000007F = 0x0000000000000001 ++cmpule 0x000000000000007F 0x0000000000000080 = 0x0000000000000001 ++cmpule 0x000000000000007F 0x0000000000007FFF = 0x0000000000000001 ++cmpule 0x000000000000007F 0x0000000000008000 = 0x0000000000000001 ++cmpule 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000001 ++cmpule 0x000000000000007F 0x0000000080000000 = 0x0000000000000001 ++cmpule 0x000000000000007F 0x8000000000000000 = 0x0000000000000001 ++cmpule 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpule 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpule 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++cmpule 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++cmpule 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++cmpule 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++cmpule 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++cmpule 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++cmpule 0x0000000000000080 0x0000000000000080 = 0x0000000000000001 ++cmpule 0x0000000000000080 0x0000000000007FFF = 0x0000000000000001 ++cmpule 0x0000000000000080 0x0000000000008000 = 0x0000000000000001 ++cmpule 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000080 0x0000000080000000 = 0x0000000000000001 ++cmpule 0x0000000000000080 0x8000000000000000 = 0x0000000000000001 ++cmpule 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpule 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpule 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++cmpule 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++cmpule 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++cmpule 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++cmpule 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++cmpule 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++cmpule 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++cmpule 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000001 ++cmpule 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000001 ++cmpule 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000001 ++cmpule 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000001 ++cmpule 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpule 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpule 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++cmpule 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++cmpule 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++cmpule 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++cmpule 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++cmpule 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++cmpule 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++cmpule 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++cmpule 0x0000000000008000 0x0000000000008000 = 0x0000000000000001 ++cmpule 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000008000 0x0000000080000000 = 0x0000000000000001 ++cmpule 0x0000000000008000 0x8000000000000000 = 0x0000000000000001 ++cmpule 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpule 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpule 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++cmpule 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++cmpule 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++cmpule 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++cmpule 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++cmpule 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++cmpule 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++cmpule 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++cmpule 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++cmpule 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++cmpule 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000001 ++cmpule 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000001 ++cmpule 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpule 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpule 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++cmpule 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++cmpule 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++cmpule 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++cmpule 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++cmpule 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++cmpule 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++cmpule 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++cmpule 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++cmpule 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule 0x0000000080000000 0x0000000080000000 = 0x0000000000000001 ++cmpule 0x0000000080000000 0x8000000000000000 = 0x0000000000000001 ++cmpule 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpule 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpule 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++cmpule 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++cmpule 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++cmpule 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++cmpule 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++cmpule 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++cmpule 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++cmpule 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++cmpule 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++cmpule 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++cmpule 0x8000000000000000 0x8000000000000000 = 0x0000000000000001 ++cmpule 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpule 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++cmpule 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++cmpule 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++cmpule 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++cmpule 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++cmpule 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++cmpule 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++cmpule 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++cmpule 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpule 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++cmpule 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++cmpule 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++cmpule 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++cmpule 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++cmpule 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++cmpule 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++cmpule 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++cmpule 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++cmpule 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++cmpule 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000001 ++cmpule 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpule 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++cmpule 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++cmpule 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++cmpule 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++cmpule 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000000 ++cmpule 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++cmpule 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000000 ++cmpule 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++cmpule 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++cmpule 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++cmpule 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000001 ++cmpule 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpule 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpule 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++cmpule 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++cmpule 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++cmpule 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++cmpule 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000000 ++cmpule 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpule 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpule 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpule 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000000 ++cmpule 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000000 ++cmpule 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000000 ++cmpule 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000000 ++cmpule 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++cmpule 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++cmpule 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++cmpule 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000001 ++cmpule 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpule 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpule 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpule 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpule 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on and === ++and 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++and 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++and 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++and 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++and 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++and 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++and 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++and 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++and 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++and 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++and 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++and 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++and 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++and 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++and 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++and 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++and 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++and 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++and 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++and 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++and 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++and 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++and 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++and 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++and 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++and 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++and 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++and 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++and 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++and 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++and 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++and 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++and 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++and 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++and 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++and 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++and 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++and 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++and 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++and 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++and 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++and 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++and 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++and 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++and 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++and 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++and 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++and 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++and 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++and 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++and 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++and 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++and 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++and 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++and 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++and 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++and 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++and 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++and 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++and 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++and 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++and 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++and 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++and 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++and 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++and 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++and 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++and 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++and 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++and 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++and 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++and 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++and 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++and 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++and 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++and 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++and 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++and 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++and 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++and 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000002 ++and 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++and 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++and 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++and 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++and 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++and 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++and 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000E ++and 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000D ++and 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++and 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++and 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++and 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++and 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++and 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++and 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++and 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++and 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++and 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++and 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++and 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000002 ++and 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++and 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++and 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++and 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++and 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++and 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++and 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++and 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++and 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++and 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++and 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++and 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++and 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++and 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++and 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++and 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++and 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++and 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++and 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++and 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++and 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++and 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++and 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++and 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++and 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000002 ++and 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000E ++and 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++and 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++and 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++and 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007E ++and 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++and 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFE ++and 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++and 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFE ++and 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++and 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++and 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++and 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++and 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++and 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++and 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++and 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++and 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++and 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++and 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++and 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000001 ++and 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000D ++and 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++and 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++and 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++and 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007D ++and 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++and 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFD ++and 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++and 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFD ++and 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++and 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++and 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++and 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++and 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++and 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++and 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++and 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563410 ++and 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++and 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++and 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++and 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++and 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++and 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++and 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007E ++and 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007D ++and 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++and 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++and 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++and 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++and 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++and 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++and 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++and 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++and 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++and 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++and 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000070 ++and 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000012 ++and 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++and 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++and 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++and 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++and 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++and 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++and 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++and 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++and 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++and 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++and 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++and 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++and 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++and 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++and 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++and 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++and 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++and 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++and 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++and 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++and 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++and 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++and 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++and 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++and 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++and 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++and 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFE ++and 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFD ++and 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++and 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++and 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++and 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++and 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++and 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++and 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++and 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++and 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++and 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007F80 ++and 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++and 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000005EF0 ++and 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000003412 ++and 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++and 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++and 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++and 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++and 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++and 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++and 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++and 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++and 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++and 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++and 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++and 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++and 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++and 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++and 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++and 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++and 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++and 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++and 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++and 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++and 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++and 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++and 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++and 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++and 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++and 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++and 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++and 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFE ++and 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFD ++and 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++and 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++and 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++and 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++and 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++and 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++and 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++and 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++and 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFF8000 ++and 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFF80 ++and 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++and 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000001ABCDEF0 ++and 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000078563412 ++and 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++and 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++and 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++and 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++and 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++and 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++and 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++and 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++and 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++and 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++and 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++and 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++and 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++and 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++and 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++and 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++and 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++and 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++and 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++and 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++and 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++and 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++and 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++and 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++and 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++and 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++and 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++and 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++and 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++and 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++and 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++and 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++and 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++and 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++and 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++and 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++and 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++and 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++and 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++and 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++and 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++and 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++and 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++and 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++and 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++and 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++and 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++and 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++and 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++and 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++and 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++and 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++and 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++and 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++and 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++and 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++and 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++and 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++and 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++and 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++and 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFF80000000 ++and 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x1234567880000000 ++and 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A00000000 ++and 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++and 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++and 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++and 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++and 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++and 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++and 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8000 ++and 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8000 ++and 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++and 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++and 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++and 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++and 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFF8000 ++and 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++and 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++and 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++and 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++and 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++and 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF8000 ++and 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABC8000 ++and 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78560000 ++and 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++and 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++and 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++and 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000000 ++and 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000000 ++and 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++and 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF80 ++and 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF80 ++and 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000000 ++and 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++and 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007F80 ++and 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++and 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFF80 ++and 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++and 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++and 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++and 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++and 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++and 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF80 ++and 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDE80 ++and 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563400 ++and 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++and 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++and 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++and 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++and 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++and 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++and 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFE ++and 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFD ++and 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++and 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++and 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++and 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++and 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++and 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++and 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++and 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFF80000000 ++and 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFF8000 ++and 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFF80 ++and 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++and 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++and 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x70DEBC9A78563412 ++and 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++and 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++and 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++and 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++and 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000000 ++and 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++and 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDEF0 ++and 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDEF0 ++and 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000070 ++and 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++and 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000005EF0 ++and 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++and 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000001ABCDEF0 ++and 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++and 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++and 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x1234567880000000 ++and 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABC8000 ++and 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDE80 ++and 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++and 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++and 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x1014141818141410 ++and 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++and 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++and 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++and 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000002 ++and 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000002 ++and 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++and 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563412 ++and 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A78563410 ++and 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000012 ++and 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000000 ++and 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000003412 ++and 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000000 ++and 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000078563412 ++and 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++and 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++and 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A00000000 ++and 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78560000 ++and 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563400 ++and 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x70DEBC9A78563412 ++and 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x1014141818141410 ++and 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on bic === ++bic 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++bic 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++bic 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++bic 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++bic 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++bic 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++bic 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++bic 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++bic 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++bic 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++bic 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++bic 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++bic 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++bic 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++bic 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++bic 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++bic 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++bic 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++bic 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++bic 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++bic 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++bic 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++bic 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++bic 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++bic 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++bic 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++bic 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++bic 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++bic 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++bic 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++bic 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++bic 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++bic 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++bic 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++bic 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++bic 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++bic 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++bic 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++bic 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++bic 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++bic 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++bic 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++bic 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++bic 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++bic 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++bic 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++bic 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++bic 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++bic 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++bic 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++bic 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++bic 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++bic 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++bic 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++bic 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++bic 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++bic 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++bic 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++bic 0x0000000000000003 0x0000000000000001 = 0x0000000000000002 ++bic 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++bic 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++bic 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++bic 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++bic 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++bic 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++bic 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++bic 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++bic 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++bic 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++bic 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++bic 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++bic 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++bic 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++bic 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++bic 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++bic 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000001 ++bic 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++bic 0x000000000000000F 0x0000000000000001 = 0x000000000000000E ++bic 0x000000000000000F 0x0000000000000002 = 0x000000000000000D ++bic 0x000000000000000F 0x0000000000000003 = 0x000000000000000C ++bic 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++bic 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++bic 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++bic 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++bic 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++bic 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++bic 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++bic 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++bic 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++bic 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++bic 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++bic 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++bic 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++bic 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++bic 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000D ++bic 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++bic 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++bic 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++bic 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++bic 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++bic 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++bic 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++bic 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++bic 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++bic 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++bic 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++bic 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++bic 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++bic 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++bic 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++bic 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++bic 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++bic 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xEDCBA9876543210F ++bic 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0F21436587A9CBED ++bic 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++bic 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++bic 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFC ++bic 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++bic 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++bic 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++bic 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++bic 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++bic 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFF7E ++bic 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++bic 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFF7FFE ++bic 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFF7FFFFFFE ++bic 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x7FFFFFFFFFFFFFFE ++bic 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000007FFFFFFE ++bic 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000007FFE ++bic 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000007E ++bic 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++bic 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xEDCBA9876543210E ++bic 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0F21436587A9CBEC ++bic 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++bic 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFC ++bic 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++bic 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++bic 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++bic 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++bic 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++bic 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++bic 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFF7D ++bic 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++bic 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFF7FFD ++bic 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFF7FFFFFFD ++bic 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x7FFFFFFFFFFFFFFD ++bic 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000007FFFFFFD ++bic 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000007FFD ++bic 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000007D ++bic 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++bic 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xEDCBA9876543210D ++bic 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0F21436587A9CBED ++bic 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++bic 0x000000000000007F 0x0000000000000001 = 0x000000000000007E ++bic 0x000000000000007F 0x0000000000000002 = 0x000000000000007D ++bic 0x000000000000007F 0x0000000000000003 = 0x000000000000007C ++bic 0x000000000000007F 0x000000000000000F = 0x0000000000000070 ++bic 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++bic 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++bic 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++bic 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++bic 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++bic 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++bic 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++bic 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++bic 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++bic 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++bic 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++bic 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++bic 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000000F ++bic 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000006D ++bic 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++bic 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++bic 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++bic 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++bic 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++bic 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++bic 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++bic 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++bic 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++bic 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++bic 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++bic 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++bic 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++bic 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++bic 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++bic 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++bic 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++bic 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++bic 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++bic 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++bic 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFE ++bic 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFD ++bic 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFC ++bic 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FF0 ++bic 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++bic 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++bic 0x0000000000007FFF 0x000000000000007F = 0x0000000000007F80 ++bic 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007F7F ++bic 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++bic 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++bic 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++bic 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++bic 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++bic 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++bic 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++bic 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++bic 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000000007FFF 0x123456789ABCDEF0 = 0x000000000000210F ++bic 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000004BED ++bic 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++bic 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++bic 0x0000000000008000 0x0000000000000002 = 0x0000000000008000 ++bic 0x0000000000008000 0x0000000000000003 = 0x0000000000008000 ++bic 0x0000000000008000 0x000000000000000F = 0x0000000000008000 ++bic 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++bic 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++bic 0x0000000000008000 0x000000000000007F = 0x0000000000008000 ++bic 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++bic 0x0000000000008000 0x0000000000007FFF = 0x0000000000008000 ++bic 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++bic 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++bic 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++bic 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++bic 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++bic 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++bic 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++bic 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++bic 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++bic 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++bic 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFE ++bic 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFFFFFD ++bic 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFFC ++bic 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFF0 ++bic 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++bic 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++bic 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFF80 ++bic 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFF7F ++bic 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFF8000 ++bic 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFF7FFF ++bic 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++bic 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++bic 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++bic 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++bic 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++bic 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++bic 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000006543210F ++bic 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000007A9CBED ++bic 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++bic 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++bic 0x0000000080000000 0x0000000000000002 = 0x0000000080000000 ++bic 0x0000000080000000 0x0000000000000003 = 0x0000000080000000 ++bic 0x0000000080000000 0x000000000000000F = 0x0000000080000000 ++bic 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++bic 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++bic 0x0000000080000000 0x000000000000007F = 0x0000000080000000 ++bic 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++bic 0x0000000080000000 0x0000000000007FFF = 0x0000000080000000 ++bic 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++bic 0x0000000080000000 0x000000007FFFFFFF = 0x0000000080000000 ++bic 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++bic 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++bic 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++bic 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++bic 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++bic 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++bic 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080000000 ++bic 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++bic 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++bic 0x8000000000000000 0x0000000000000002 = 0x8000000000000000 ++bic 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++bic 0x8000000000000000 0x000000000000000F = 0x8000000000000000 ++bic 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++bic 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++bic 0x8000000000000000 0x000000000000007F = 0x8000000000000000 ++bic 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++bic 0x8000000000000000 0x0000000000007FFF = 0x8000000000000000 ++bic 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++bic 0x8000000000000000 0x000000007FFFFFFF = 0x8000000000000000 ++bic 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++bic 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++bic 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++bic 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++bic 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++bic 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++bic 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++bic 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++bic 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++bic 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++bic 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF00000000 ++bic 0xFFFFFFFF80000000 0x8000000000000000 = 0x7FFFFFFF80000000 ++bic 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++bic 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++bic 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++bic 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++bic 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xEDCBA98700000000 ++bic 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0F21436580000000 ++bic 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++bic 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++bic 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF8000 ++bic 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF8000 ++bic 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF8000 ++bic 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++bic 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++bic 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFF8000 ++bic 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++bic 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++bic 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++bic 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFF7FFF8000 ++bic 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x7FFFFFFFFFFF8000 ++bic 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000007FFF8000 ++bic 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++bic 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++bic 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++bic 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xEDCBA98765430000 ++bic 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0F21436587A98000 ++bic 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++bic 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF80 ++bic 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF80 ++bic 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF80 ++bic 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFF80 ++bic 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++bic 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++bic 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++bic 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF00 ++bic 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++bic 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFF7F80 ++bic 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++bic 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFF7FFFFF80 ++bic 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x7FFFFFFFFFFFFF80 ++bic 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000007FFFFF80 ++bic 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000007F80 ++bic 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++bic 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++bic 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xEDCBA98765432100 ++bic 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0F21436587A9CB80 ++bic 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++bic 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFE ++bic 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFFFFFD ++bic 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFFFFFC ++bic 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFFFFFFFFF0 ++bic 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++bic 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++bic 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7FFFFFFFFFFFFF80 ++bic 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFF7F ++bic 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFFFF8000 ++bic 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFF7FFF ++bic 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFF80000000 ++bic 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFF7FFFFFFF ++bic 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++bic 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++bic 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++bic 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++bic 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x6DCBA9876543210F ++bic 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0F21436587A9CBED ++bic 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++bic 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF0 ++bic 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABCDEF0 ++bic 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABCDEF0 ++bic 0x123456789ABCDEF0 0x000000000000000F = 0x123456789ABCDEF0 ++bic 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++bic 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++bic 0x123456789ABCDEF0 0x000000000000007F = 0x123456789ABCDE80 ++bic 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDE70 ++bic 0x123456789ABCDEF0 0x0000000000007FFF = 0x123456789ABC8000 ++bic 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABC5EF0 ++bic 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x1234567880000000 ++bic 0x123456789ABCDEF0 0x0000000080000000 = 0x123456781ABCDEF0 ++bic 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++bic 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000001ABCDEF0 ++bic 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000005EF0 ++bic 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000070 ++bic 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++bic 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0220426082A8CAE0 ++bic 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++bic 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563412 ++bic 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78563410 ++bic 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A78563410 ++bic 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A78563410 ++bic 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++bic 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++bic 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++bic 0xF0DEBC9A78563412 0x000000000000007F = 0xF0DEBC9A78563400 ++bic 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++bic 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF0DEBC9A78560000 ++bic 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++bic 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF0DEBC9A00000000 ++bic 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++bic 0xF0DEBC9A78563412 0x8000000000000000 = 0x70DEBC9A78563412 ++bic 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000078563412 ++bic 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000003412 ++bic 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000012 ++bic 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++bic 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xE0CAA88260422002 ++bic 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on bis === ++bis 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++bis 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++bis 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++bis 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++bis 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++bis 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bis 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++bis 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++bis 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++bis 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++bis 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++bis 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++bis 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++bis 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bis 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bis 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++bis 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++bis 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++bis 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++bis 0x0000000000000001 0x0000000000000002 = 0x0000000000000003 ++bis 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++bis 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++bis 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bis 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++bis 0x0000000000000001 0x0000000000000080 = 0x0000000000000081 ++bis 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++bis 0x0000000000000001 0x0000000000008000 = 0x0000000000008001 ++bis 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis 0x0000000000000001 0x0000000080000000 = 0x0000000080000001 ++bis 0x0000000000000001 0x8000000000000000 = 0x8000000000000001 ++bis 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000001 ++bis 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8001 ++bis 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF81 ++bis 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF1 ++bis 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563413 ++bis 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++bis 0x0000000000000002 0x0000000000000001 = 0x0000000000000003 ++bis 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++bis 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++bis 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++bis 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++bis 0x0000000000000002 0x0000000000000080 = 0x0000000000000082 ++bis 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++bis 0x0000000000000002 0x0000000000008000 = 0x0000000000008002 ++bis 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis 0x0000000000000002 0x0000000080000000 = 0x0000000080000002 ++bis 0x0000000000000002 0x8000000000000000 = 0x8000000000000002 ++bis 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000002 ++bis 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8002 ++bis 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF82 ++bis 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF2 ++bis 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++bis 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++bis 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++bis 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++bis 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++bis 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++bis 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++bis 0x0000000000000003 0x0000000000000080 = 0x0000000000000083 ++bis 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++bis 0x0000000000000003 0x0000000000008000 = 0x0000000000008003 ++bis 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis 0x0000000000000003 0x0000000080000000 = 0x0000000080000003 ++bis 0x0000000000000003 0x8000000000000000 = 0x8000000000000003 ++bis 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000003 ++bis 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8003 ++bis 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF83 ++bis 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF3 ++bis 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563413 ++bis 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++bis 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++bis 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++bis 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++bis 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++bis 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++bis 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++bis 0x000000000000000F 0x0000000000000080 = 0x000000000000008F ++bis 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++bis 0x000000000000000F 0x0000000000008000 = 0x000000000000800F ++bis 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis 0x000000000000000F 0x0000000080000000 = 0x000000008000000F ++bis 0x000000000000000F 0x8000000000000000 = 0x800000000000000F ++bis 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF8000000F ++bis 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF800F ++bis 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF8F ++bis 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEFF ++bis 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A7856341F ++bis 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++bis 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++bis 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bis 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++bis 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++bis 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++bis 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++bis 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++bis 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++bis 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++bis 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++bis 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++bis 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++bis 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++bis 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++bis 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++bis 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++bis 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++bis 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++bis 0x000000000000007F 0x0000000000000080 = 0x00000000000000FF ++bis 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++bis 0x000000000000007F 0x0000000000008000 = 0x000000000000807F ++bis 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis 0x000000000000007F 0x0000000080000000 = 0x000000008000007F ++bis 0x000000000000007F 0x8000000000000000 = 0x800000000000007F ++bis 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF8000007F ++bis 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF807F ++bis 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++bis 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEFF ++bis 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A7856347F ++bis 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++bis 0x0000000000000080 0x0000000000000001 = 0x0000000000000081 ++bis 0x0000000000000080 0x0000000000000002 = 0x0000000000000082 ++bis 0x0000000000000080 0x0000000000000003 = 0x0000000000000083 ++bis 0x0000000000000080 0x000000000000000F = 0x000000000000008F ++bis 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bis 0x0000000000000080 0x000000000000007F = 0x00000000000000FF ++bis 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++bis 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++bis 0x0000000000000080 0x0000000000008000 = 0x0000000000008080 ++bis 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis 0x0000000000000080 0x0000000080000000 = 0x0000000080000080 ++bis 0x0000000000000080 0x8000000000000000 = 0x8000000000000080 ++bis 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000080 ++bis 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8080 ++bis 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bis 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++bis 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563492 ++bis 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++bis 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++bis 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFF ++bis 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFF ++bis 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FFF ++bis 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000007FFF 0x000000000000007F = 0x0000000000007FFF ++bis 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++bis 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++bis 0x0000000000007FFF 0x0000000000008000 = 0x000000000000FFFF ++bis 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis 0x0000000000007FFF 0x0000000080000000 = 0x0000000080007FFF ++bis 0x0000000000007FFF 0x8000000000000000 = 0x8000000000007FFF ++bis 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80007FFF ++bis 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCFFFF ++bis 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78567FFF ++bis 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++bis 0x0000000000008000 0x0000000000000001 = 0x0000000000008001 ++bis 0x0000000000008000 0x0000000000000002 = 0x0000000000008002 ++bis 0x0000000000008000 0x0000000000000003 = 0x0000000000008003 ++bis 0x0000000000008000 0x000000000000000F = 0x000000000000800F ++bis 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bis 0x0000000000008000 0x000000000000007F = 0x000000000000807F ++bis 0x0000000000008000 0x0000000000000080 = 0x0000000000008080 ++bis 0x0000000000008000 0x0000000000007FFF = 0x000000000000FFFF ++bis 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++bis 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis 0x0000000000008000 0x0000000080000000 = 0x0000000080008000 ++bis 0x0000000000008000 0x8000000000000000 = 0x8000000000008000 ++bis 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80008000 ++bis 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bis 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bis 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++bis 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A7856B412 ++bis 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++bis 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++bis 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFFFFFF ++bis 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFFF ++bis 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFFF ++bis 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++bis 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFFFF ++bis 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++bis 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFFFFFF ++bis 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++bis 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++bis 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000FFFFFFFF ++bis 0x000000007FFFFFFF 0x8000000000000000 = 0x800000007FFFFFFF ++bis 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++bis 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++bis 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++bis 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x12345678FFFFFFFF ++bis 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A7FFFFFFF ++bis 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++bis 0x0000000080000000 0x0000000000000001 = 0x0000000080000001 ++bis 0x0000000080000000 0x0000000000000002 = 0x0000000080000002 ++bis 0x0000000080000000 0x0000000000000003 = 0x0000000080000003 ++bis 0x0000000080000000 0x000000000000000F = 0x000000008000000F ++bis 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bis 0x0000000080000000 0x000000000000007F = 0x000000008000007F ++bis 0x0000000080000000 0x0000000000000080 = 0x0000000080000080 ++bis 0x0000000080000000 0x0000000000007FFF = 0x0000000080007FFF ++bis 0x0000000080000000 0x0000000000008000 = 0x0000000080008000 ++bis 0x0000000080000000 0x000000007FFFFFFF = 0x00000000FFFFFFFF ++bis 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++bis 0x0000000080000000 0x8000000000000000 = 0x8000000080000000 ++bis 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++bis 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bis 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bis 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++bis 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9AF8563412 ++bis 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++bis 0x8000000000000000 0x0000000000000001 = 0x8000000000000001 ++bis 0x8000000000000000 0x0000000000000002 = 0x8000000000000002 ++bis 0x8000000000000000 0x0000000000000003 = 0x8000000000000003 ++bis 0x8000000000000000 0x000000000000000F = 0x800000000000000F ++bis 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bis 0x8000000000000000 0x000000000000007F = 0x800000000000007F ++bis 0x8000000000000000 0x0000000000000080 = 0x8000000000000080 ++bis 0x8000000000000000 0x0000000000007FFF = 0x8000000000007FFF ++bis 0x8000000000000000 0x0000000000008000 = 0x8000000000008000 ++bis 0x8000000000000000 0x000000007FFFFFFF = 0x800000007FFFFFFF ++bis 0x8000000000000000 0x0000000080000000 = 0x8000000080000000 ++bis 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++bis 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++bis 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bis 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bis 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x8000000000000000 0x123456789ABCDEF0 = 0x923456789ABCDEF0 ++bis 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++bis 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++bis 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000001 ++bis 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000002 ++bis 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000003 ++bis 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF8000000F ++bis 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bis 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF8000007F ++bis 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000080 ++bis 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80007FFF ++bis 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80008000 ++bis 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++bis 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++bis 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++bis 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bis 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bis 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF9ABCDEF0 ++bis 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFFF8563412 ++bis 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++bis 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8001 ++bis 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF8002 ++bis 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF8003 ++bis 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF800F ++bis 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bis 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFF807F ++bis 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8080 ++bis 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++bis 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++bis 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++bis 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++bis 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++bis 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bis 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFDEF0 ++bis 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFB412 ++bis 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++bis 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF81 ++bis 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF82 ++bis 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF83 ++bis 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFF8F ++bis 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bis 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++bis 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++bis 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++bis 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++bis 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++bis 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++bis 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++bis 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFF0 ++bis 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFF92 ++bis 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7FFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFFFFFF ++bis 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++bis 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++bis 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF1 ++bis 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABCDEF2 ++bis 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABCDEF3 ++bis 0x123456789ABCDEF0 0x000000000000000F = 0x123456789ABCDEFF ++bis 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++bis 0x123456789ABCDEF0 0x000000000000007F = 0x123456789ABCDEFF ++bis 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++bis 0x123456789ABCDEF0 0x0000000000007FFF = 0x123456789ABCFFFF ++bis 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++bis 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x12345678FFFFFFFF ++bis 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++bis 0x123456789ABCDEF0 0x8000000000000000 = 0x923456789ABCDEF0 ++bis 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF9ABCDEF0 ++bis 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFDEF0 ++bis 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFF0 ++bis 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++bis 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++bis 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF2FEFEFAFAFEFEF2 ++bis 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++bis 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563413 ++bis 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78563412 ++bis 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A78563413 ++bis 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A7856341F ++bis 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++bis 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++bis 0xF0DEBC9A78563412 0x000000000000007F = 0xF0DEBC9A7856347F ++bis 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563492 ++bis 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF0DEBC9A78567FFF ++bis 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A7856B412 ++bis 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF0DEBC9A7FFFFFFF ++bis 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9AF8563412 ++bis 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++bis 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFFF8563412 ++bis 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFB412 ++bis 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF92 ++bis 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++bis 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF2FEFEFAFAFEFEF2 ++bis 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on ornot === ++ornot 0x0000000000000000 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++ornot 0x0000000000000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++ornot 0x0000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++ornot 0x0000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++ornot 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++ornot 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++ornot 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++ornot 0x0000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++ornot 0x0000000000000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++ornot 0x0000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++ornot 0x0000000000000000 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++ornot 0x0000000000000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++ornot 0x0000000000000000 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++ornot 0x0000000000000000 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x0000000000000000 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++ornot 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++ornot 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++ornot 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++ornot 0x0000000000000000 0x123456789ABCDEF0 = 0xEDCBA9876543210F ++ornot 0x0000000000000000 0xF0DEBC9A78563412 = 0x0F21436587A9CBED ++ornot 0x0000000000000001 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000000001 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000000001 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++ornot 0x0000000000000001 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++ornot 0x0000000000000001 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++ornot 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++ornot 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++ornot 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++ornot 0x0000000000000001 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++ornot 0x0000000000000001 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++ornot 0x0000000000000001 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++ornot 0x0000000000000001 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++ornot 0x0000000000000001 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++ornot 0x0000000000000001 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++ornot 0x0000000000000001 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x0000000000000001 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++ornot 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++ornot 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++ornot 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x8000000000000001 ++ornot 0x0000000000000001 0x123456789ABCDEF0 = 0xEDCBA9876543210F ++ornot 0x0000000000000001 0xF0DEBC9A78563412 = 0x0F21436587A9CBED ++ornot 0x0000000000000002 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000000002 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++ornot 0x0000000000000002 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000000002 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++ornot 0x0000000000000002 0x000000000000000F = 0xFFFFFFFFFFFFFFF2 ++ornot 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++ornot 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++ornot 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++ornot 0x0000000000000002 0x000000000000007F = 0xFFFFFFFFFFFFFF82 ++ornot 0x0000000000000002 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++ornot 0x0000000000000002 0x0000000000007FFF = 0xFFFFFFFFFFFF8002 ++ornot 0x0000000000000002 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++ornot 0x0000000000000002 0x000000007FFFFFFF = 0xFFFFFFFF80000002 ++ornot 0x0000000000000002 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++ornot 0x0000000000000002 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x0000000000000002 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++ornot 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++ornot 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++ornot 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x8000000000000002 ++ornot 0x0000000000000002 0x123456789ABCDEF0 = 0xEDCBA9876543210F ++ornot 0x0000000000000002 0xF0DEBC9A78563412 = 0x0F21436587A9CBEF ++ornot 0x0000000000000003 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000000003 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000000003 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000000003 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000000003 0x000000000000000F = 0xFFFFFFFFFFFFFFF3 ++ornot 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++ornot 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++ornot 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++ornot 0x0000000000000003 0x000000000000007F = 0xFFFFFFFFFFFFFF83 ++ornot 0x0000000000000003 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++ornot 0x0000000000000003 0x0000000000007FFF = 0xFFFFFFFFFFFF8003 ++ornot 0x0000000000000003 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++ornot 0x0000000000000003 0x000000007FFFFFFF = 0xFFFFFFFF80000003 ++ornot 0x0000000000000003 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++ornot 0x0000000000000003 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x0000000000000003 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++ornot 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++ornot 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++ornot 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x8000000000000003 ++ornot 0x0000000000000003 0x123456789ABCDEF0 = 0xEDCBA9876543210F ++ornot 0x0000000000000003 0xF0DEBC9A78563412 = 0x0F21436587A9CBEF ++ornot 0x000000000000000F 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000000000000F 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000000000000F 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000000000000F 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000000000000F 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++ornot 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++ornot 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++ornot 0x000000000000000F 0x000000000000007F = 0xFFFFFFFFFFFFFF8F ++ornot 0x000000000000000F 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++ornot 0x000000000000000F 0x0000000000007FFF = 0xFFFFFFFFFFFF800F ++ornot 0x000000000000000F 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++ornot 0x000000000000000F 0x000000007FFFFFFF = 0xFFFFFFFF8000000F ++ornot 0x000000000000000F 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++ornot 0x000000000000000F 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++ornot 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++ornot 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++ornot 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x800000000000000F ++ornot 0x000000000000000F 0x123456789ABCDEF0 = 0xEDCBA9876543210F ++ornot 0x000000000000000F 0xF0DEBC9A78563412 = 0x0F21436587A9CBEF ++ornot 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++ornot 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++ornot 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFFE ++ornot 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++ornot 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++ornot 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFFFE ++ornot 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++ornot 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++ornot 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++ornot 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++ornot 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++ornot 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFFD ++ornot 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++ornot 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++ornot 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFFFD ++ornot 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFD ++ornot 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFD ++ornot 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++ornot 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFD ++ornot 0x000000000000007F 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000000000007F 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000000000007F 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000000000007F 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000000000007F 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++ornot 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++ornot 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++ornot 0x000000000000007F 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000000000007F 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++ornot 0x000000000000007F 0x0000000000007FFF = 0xFFFFFFFFFFFF807F ++ornot 0x000000000000007F 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++ornot 0x000000000000007F 0x000000007FFFFFFF = 0xFFFFFFFF8000007F ++ornot 0x000000000000007F 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++ornot 0x000000000000007F 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++ornot 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++ornot 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++ornot 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x800000000000007F ++ornot 0x000000000000007F 0x123456789ABCDEF0 = 0xEDCBA9876543217F ++ornot 0x000000000000007F 0xF0DEBC9A78563412 = 0x0F21436587A9CBFF ++ornot 0x0000000000000080 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000000080 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++ornot 0x0000000000000080 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++ornot 0x0000000000000080 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++ornot 0x0000000000000080 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++ornot 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++ornot 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000081 ++ornot 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000082 ++ornot 0x0000000000000080 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++ornot 0x0000000000000080 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000000080 0x0000000000007FFF = 0xFFFFFFFFFFFF8080 ++ornot 0x0000000000000080 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++ornot 0x0000000000000080 0x000000007FFFFFFF = 0xFFFFFFFF80000080 ++ornot 0x0000000000000080 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++ornot 0x0000000000000080 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x0000000000000080 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++ornot 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++ornot 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++ornot 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x8000000000000080 ++ornot 0x0000000000000080 0x123456789ABCDEF0 = 0xEDCBA9876543218F ++ornot 0x0000000000000080 0xF0DEBC9A78563412 = 0x0F21436587A9CBED ++ornot 0x0000000000007FFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000007FFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000007FFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000007FFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000007FFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++ornot 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++ornot 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++ornot 0x0000000000007FFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000007FFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000007FFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000007FFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++ornot 0x0000000000007FFF 0x000000007FFFFFFF = 0xFFFFFFFF80007FFF ++ornot 0x0000000000007FFF 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++ornot 0x0000000000007FFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++ornot 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++ornot 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++ornot 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x8000000000007FFF ++ornot 0x0000000000007FFF 0x123456789ABCDEF0 = 0xEDCBA98765437FFF ++ornot 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0F21436587A9FFFF ++ornot 0x0000000000008000 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000008000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++ornot 0x0000000000008000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++ornot 0x0000000000008000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++ornot 0x0000000000008000 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++ornot 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++ornot 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008001 ++ornot 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008002 ++ornot 0x0000000000008000 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++ornot 0x0000000000008000 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++ornot 0x0000000000008000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++ornot 0x0000000000008000 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000000008000 0x000000007FFFFFFF = 0xFFFFFFFF80008000 ++ornot 0x0000000000008000 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++ornot 0x0000000000008000 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x0000000000008000 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++ornot 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++ornot 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000000807F ++ornot 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x8000000000008000 ++ornot 0x0000000000008000 0x123456789ABCDEF0 = 0xEDCBA9876543A10F ++ornot 0x0000000000008000 0xF0DEBC9A78563412 = 0x0F21436587A9CBED ++ornot 0x000000007FFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000007FFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000007FFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000007FFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000007FFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++ornot 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++ornot 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++ornot 0x000000007FFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000007FFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000007FFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000007FFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000007FFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot 0x000000007FFFFFFF 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++ornot 0x000000007FFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++ornot 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++ornot 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++ornot 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x800000007FFFFFFF ++ornot 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0xEDCBA9877FFFFFFF ++ornot 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0F214365FFFFFFFF ++ornot 0x0000000080000000 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000080000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++ornot 0x0000000080000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++ornot 0x0000000080000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++ornot 0x0000000080000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++ornot 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++ornot 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000001 ++ornot 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000002 ++ornot 0x0000000080000000 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++ornot 0x0000000080000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++ornot 0x0000000080000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++ornot 0x0000000080000000 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++ornot 0x0000000080000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++ornot 0x0000000080000000 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x0000000080000000 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x0000000080000000 0xFFFFFFFF80000000 = 0x00000000FFFFFFFF ++ornot 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080007FFF ++ornot 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000008000007F ++ornot 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x8000000080000000 ++ornot 0x0000000080000000 0x123456789ABCDEF0 = 0xEDCBA987E543210F ++ornot 0x0000000080000000 0xF0DEBC9A78563412 = 0x0F21436587A9CBED ++ornot 0x8000000000000000 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x8000000000000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++ornot 0x8000000000000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++ornot 0x8000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++ornot 0x8000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++ornot 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++ornot 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000001 ++ornot 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000002 ++ornot 0x8000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++ornot 0x8000000000000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++ornot 0x8000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++ornot 0x8000000000000000 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++ornot 0x8000000000000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++ornot 0x8000000000000000 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++ornot 0x8000000000000000 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x8000000000000000 0xFFFFFFFF80000000 = 0x800000007FFFFFFF ++ornot 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000007FFF ++ornot 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x800000000000007F ++ornot 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++ornot 0x8000000000000000 0x123456789ABCDEF0 = 0xEDCBA9876543210F ++ornot 0x8000000000000000 0xF0DEBC9A78563412 = 0x8F21436587A9CBED ++ornot 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++ornot 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++ornot 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++ornot 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++ornot 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++ornot 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000001 ++ornot 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000002 ++ornot 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++ornot 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++ornot 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++ornot 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++ornot 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++ornot 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80007FFF ++ornot 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF8000007F ++ornot 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++ornot 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFFE543210F ++ornot 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF87A9CBED ++ornot 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++ornot 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++ornot 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++ornot 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++ornot 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++ornot 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8001 ++ornot 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8002 ++ornot 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++ornot 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++ornot 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++ornot 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFFFF8000 ++ornot 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF807F ++ornot 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++ornot 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFA10F ++ornot 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFCBED ++ornot 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++ornot 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++ornot 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++ornot 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++ornot 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++ornot 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF81 ++ornot 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF82 ++ornot 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++ornot 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFFFF80 ++ornot 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF80 ++ornot 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++ornot 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++ornot 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF8F ++ornot 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFED ++ornot 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++ornot 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFFFFFFFFFFFF ++ornot 0x123456789ABCDEF0 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x123456789ABCDEF0 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++ornot 0x123456789ABCDEF0 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++ornot 0x123456789ABCDEF0 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++ornot 0x123456789ABCDEF0 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++ornot 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++ornot 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDEF1 ++ornot 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDEF2 ++ornot 0x123456789ABCDEF0 0x000000000000007F = 0xFFFFFFFFFFFFFFF0 ++ornot 0x123456789ABCDEF0 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++ornot 0x123456789ABCDEF0 0x0000000000007FFF = 0xFFFFFFFFFFFFDEF0 ++ornot 0x123456789ABCDEF0 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x123456789ABCDEF0 0x000000007FFFFFFF = 0xFFFFFFFF9ABCDEF0 ++ornot 0x123456789ABCDEF0 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0x123456789ABCDEF0 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++ornot 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x12345678FFFFFFFF ++ornot 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCFFFF ++ornot 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEFF ++ornot 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x923456789ABCDEF0 ++ornot 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++ornot 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x1F35577D9FBDDFFD ++ornot 0xF0DEBC9A78563412 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xF0DEBC9A78563412 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++ornot 0xF0DEBC9A78563412 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++ornot 0xF0DEBC9A78563412 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++ornot 0xF0DEBC9A78563412 0x000000000000000F = 0xFFFFFFFFFFFFFFF2 ++ornot 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++ornot 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563413 ++ornot 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A78563412 ++ornot 0xF0DEBC9A78563412 0x000000000000007F = 0xFFFFFFFFFFFFFF92 ++ornot 0xF0DEBC9A78563412 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++ornot 0xF0DEBC9A78563412 0x0000000000007FFF = 0xFFFFFFFFFFFFB412 ++ornot 0xF0DEBC9A78563412 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++ornot 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xFFFFFFFFF8563412 ++ornot 0xF0DEBC9A78563412 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++ornot 0xF0DEBC9A78563412 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++ornot 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A7FFFFFFF ++ornot 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78567FFF ++ornot 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A7856347F ++ornot 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++ornot 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xFDDFBD9F7D57351F ++ornot 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++=== Running test on xor === ++xor 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++xor 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++xor 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++xor 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++xor 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++xor 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++xor 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++xor 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++xor 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++xor 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++xor 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++xor 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++xor 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++xor 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++xor 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++xor 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++xor 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++xor 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++xor 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++xor 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++xor 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++xor 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++xor 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++xor 0x0000000000000001 0x0000000000000002 = 0x0000000000000003 ++xor 0x0000000000000001 0x0000000000000003 = 0x0000000000000002 ++xor 0x0000000000000001 0x000000000000000F = 0x000000000000000E ++xor 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++xor 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++xor 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++xor 0x0000000000000001 0x000000000000007F = 0x000000000000007E ++xor 0x0000000000000001 0x0000000000000080 = 0x0000000000000081 ++xor 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFE ++xor 0x0000000000000001 0x0000000000008000 = 0x0000000000008001 ++xor 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFE ++xor 0x0000000000000001 0x0000000080000000 = 0x0000000080000001 ++xor 0x0000000000000001 0x8000000000000000 = 0x8000000000000001 ++xor 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000001 ++xor 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8001 ++xor 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF81 ++xor 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++xor 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF1 ++xor 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563413 ++xor 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++xor 0x0000000000000002 0x0000000000000001 = 0x0000000000000003 ++xor 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++xor 0x0000000000000002 0x0000000000000003 = 0x0000000000000001 ++xor 0x0000000000000002 0x000000000000000F = 0x000000000000000D ++xor 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++xor 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++xor 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++xor 0x0000000000000002 0x000000000000007F = 0x000000000000007D ++xor 0x0000000000000002 0x0000000000000080 = 0x0000000000000082 ++xor 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFD ++xor 0x0000000000000002 0x0000000000008000 = 0x0000000000008002 ++xor 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFD ++xor 0x0000000000000002 0x0000000080000000 = 0x0000000080000002 ++xor 0x0000000000000002 0x8000000000000000 = 0x8000000000000002 ++xor 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000002 ++xor 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8002 ++xor 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF82 ++xor 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++xor 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF2 ++xor 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563410 ++xor 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++xor 0x0000000000000003 0x0000000000000001 = 0x0000000000000002 ++xor 0x0000000000000003 0x0000000000000002 = 0x0000000000000001 ++xor 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++xor 0x0000000000000003 0x000000000000000F = 0x000000000000000C ++xor 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFC ++xor 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++xor 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++xor 0x0000000000000003 0x000000000000007F = 0x000000000000007C ++xor 0x0000000000000003 0x0000000000000080 = 0x0000000000000083 ++xor 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFC ++xor 0x0000000000000003 0x0000000000008000 = 0x0000000000008003 ++xor 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFC ++xor 0x0000000000000003 0x0000000080000000 = 0x0000000080000003 ++xor 0x0000000000000003 0x8000000000000000 = 0x8000000000000003 ++xor 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000003 ++xor 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8003 ++xor 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF83 ++xor 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFC ++xor 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF3 ++xor 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563411 ++xor 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++xor 0x000000000000000F 0x0000000000000001 = 0x000000000000000E ++xor 0x000000000000000F 0x0000000000000002 = 0x000000000000000D ++xor 0x000000000000000F 0x0000000000000003 = 0x000000000000000C ++xor 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++xor 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFF0 ++xor 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFF1 ++xor 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFF2 ++xor 0x000000000000000F 0x000000000000007F = 0x0000000000000070 ++xor 0x000000000000000F 0x0000000000000080 = 0x000000000000008F ++xor 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FF0 ++xor 0x000000000000000F 0x0000000000008000 = 0x000000000000800F ++xor 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFF0 ++xor 0x000000000000000F 0x0000000080000000 = 0x000000008000000F ++xor 0x000000000000000F 0x8000000000000000 = 0x800000000000000F ++xor 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF8000000F ++xor 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF800F ++xor 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF8F ++xor 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFF0 ++xor 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEFF ++xor 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A7856341D ++xor 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++xor 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++xor 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++xor 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++xor 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++xor 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++xor 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++xor 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++xor 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++xor 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++xor 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++xor 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++xor 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++xor 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++xor 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++xor 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++xor 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++xor 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++xor 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++xor 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xEDCBA9876543210F ++xor 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0F21436587A9CBED ++xor 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++xor 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++xor 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFC ++xor 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++xor 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++xor 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++xor 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++xor 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++xor 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++xor 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFF7E ++xor 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++xor 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFF7FFE ++xor 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++xor 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFF7FFFFFFE ++xor 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x7FFFFFFFFFFFFFFE ++xor 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000007FFFFFFE ++xor 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000007FFE ++xor 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000007E ++xor 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x8000000000000001 ++xor 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xEDCBA9876543210E ++xor 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0F21436587A9CBEC ++xor 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++xor 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFC ++xor 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++xor 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++xor 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFF2 ++xor 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++xor 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++xor 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++xor 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFF82 ++xor 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFF7D ++xor 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFF8002 ++xor 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFF7FFD ++xor 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFF80000002 ++xor 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFF7FFFFFFD ++xor 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x7FFFFFFFFFFFFFFD ++xor 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000007FFFFFFD ++xor 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000007FFD ++xor 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000007D ++xor 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x8000000000000002 ++xor 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xEDCBA9876543210D ++xor 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0F21436587A9CBEF ++xor 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++xor 0x000000000000007F 0x0000000000000001 = 0x000000000000007E ++xor 0x000000000000007F 0x0000000000000002 = 0x000000000000007D ++xor 0x000000000000007F 0x0000000000000003 = 0x000000000000007C ++xor 0x000000000000007F 0x000000000000000F = 0x0000000000000070 ++xor 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++xor 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF81 ++xor 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF82 ++xor 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++xor 0x000000000000007F 0x0000000000000080 = 0x00000000000000FF ++xor 0x000000000000007F 0x0000000000007FFF = 0x0000000000007F80 ++xor 0x000000000000007F 0x0000000000008000 = 0x000000000000807F ++xor 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFF80 ++xor 0x000000000000007F 0x0000000080000000 = 0x000000008000007F ++xor 0x000000000000007F 0x8000000000000000 = 0x800000000000007F ++xor 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF8000007F ++xor 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF807F ++xor 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++xor 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF80 ++xor 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDE8F ++xor 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A7856346D ++xor 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++xor 0x0000000000000080 0x0000000000000001 = 0x0000000000000081 ++xor 0x0000000000000080 0x0000000000000002 = 0x0000000000000082 ++xor 0x0000000000000080 0x0000000000000003 = 0x0000000000000083 ++xor 0x0000000000000080 0x000000000000000F = 0x000000000000008F ++xor 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF7F ++xor 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF7E ++xor 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF7D ++xor 0x0000000000000080 0x000000000000007F = 0x00000000000000FF ++xor 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++xor 0x0000000000000080 0x0000000000007FFF = 0x0000000000007F7F ++xor 0x0000000000000080 0x0000000000008000 = 0x0000000000008080 ++xor 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFF7F ++xor 0x0000000000000080 0x0000000080000000 = 0x0000000080000080 ++xor 0x0000000000000080 0x8000000000000000 = 0x8000000000000080 ++xor 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000080 ++xor 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8080 ++xor 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++xor 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF7F ++xor 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDE70 ++xor 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563492 ++xor 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++xor 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFE ++xor 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFD ++xor 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFC ++xor 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FF0 ++xor 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++xor 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8001 ++xor 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8002 ++xor 0x0000000000007FFF 0x000000000000007F = 0x0000000000007F80 ++xor 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007F7F ++xor 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++xor 0x0000000000007FFF 0x0000000000008000 = 0x000000000000FFFF ++xor 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFF8000 ++xor 0x0000000000007FFF 0x0000000080000000 = 0x0000000080007FFF ++xor 0x0000000000007FFF 0x8000000000000000 = 0x8000000000007FFF ++xor 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80007FFF ++xor 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++xor 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF807F ++xor 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF8000 ++xor 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCA10F ++xor 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78564BED ++xor 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++xor 0x0000000000008000 0x0000000000000001 = 0x0000000000008001 ++xor 0x0000000000008000 0x0000000000000002 = 0x0000000000008002 ++xor 0x0000000000008000 0x0000000000000003 = 0x0000000000008003 ++xor 0x0000000000008000 0x000000000000000F = 0x000000000000800F ++xor 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF7FFF ++xor 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF7FFE ++xor 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF7FFD ++xor 0x0000000000008000 0x000000000000007F = 0x000000000000807F ++xor 0x0000000000008000 0x0000000000000080 = 0x0000000000008080 ++xor 0x0000000000008000 0x0000000000007FFF = 0x000000000000FFFF ++xor 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++xor 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFF7FFF ++xor 0x0000000000008000 0x0000000080000000 = 0x0000000080008000 ++xor 0x0000000000008000 0x8000000000000000 = 0x8000000000008000 ++xor 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80008000 ++xor 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++xor 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF7F80 ++xor 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF7FFF ++xor 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABC5EF0 ++xor 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A7856B412 ++xor 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++xor 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFE ++xor 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFFFFFD ++xor 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFFC ++xor 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFF0 ++xor 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++xor 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000001 ++xor 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000002 ++xor 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFF80 ++xor 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFF7F ++xor 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFF8000 ++xor 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFF7FFF ++xor 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++xor 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000FFFFFFFF ++xor 0x000000007FFFFFFF 0x8000000000000000 = 0x800000007FFFFFFF ++xor 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++xor 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80007FFF ++xor 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF8000007F ++xor 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFF80000000 ++xor 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x12345678E543210F ++xor 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A07A9CBED ++xor 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++xor 0x0000000080000000 0x0000000000000001 = 0x0000000080000001 ++xor 0x0000000080000000 0x0000000000000002 = 0x0000000080000002 ++xor 0x0000000080000000 0x0000000000000003 = 0x0000000080000003 ++xor 0x0000000080000000 0x000000000000000F = 0x000000008000000F ++xor 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF7FFFFFFF ++xor 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF7FFFFFFE ++xor 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF7FFFFFFD ++xor 0x0000000080000000 0x000000000000007F = 0x000000008000007F ++xor 0x0000000080000000 0x0000000000000080 = 0x0000000080000080 ++xor 0x0000000080000000 0x0000000000007FFF = 0x0000000080007FFF ++xor 0x0000000080000000 0x0000000000008000 = 0x0000000080008000 ++xor 0x0000000080000000 0x000000007FFFFFFF = 0x00000000FFFFFFFF ++xor 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++xor 0x0000000080000000 0x8000000000000000 = 0x8000000080000000 ++xor 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++xor 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF7FFF8000 ++xor 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF7FFFFF80 ++xor 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFF7FFFFFFF ++xor 0x0000000080000000 0x123456789ABCDEF0 = 0x123456781ABCDEF0 ++xor 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9AF8563412 ++xor 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++xor 0x8000000000000000 0x0000000000000001 = 0x8000000000000001 ++xor 0x8000000000000000 0x0000000000000002 = 0x8000000000000002 ++xor 0x8000000000000000 0x0000000000000003 = 0x8000000000000003 ++xor 0x8000000000000000 0x000000000000000F = 0x800000000000000F ++xor 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++xor 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFE ++xor 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFD ++xor 0x8000000000000000 0x000000000000007F = 0x800000000000007F ++xor 0x8000000000000000 0x0000000000000080 = 0x8000000000000080 ++xor 0x8000000000000000 0x0000000000007FFF = 0x8000000000007FFF ++xor 0x8000000000000000 0x0000000000008000 = 0x8000000000008000 ++xor 0x8000000000000000 0x000000007FFFFFFF = 0x800000007FFFFFFF ++xor 0x8000000000000000 0x0000000080000000 = 0x8000000080000000 ++xor 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++xor 0x8000000000000000 0xFFFFFFFF80000000 = 0x7FFFFFFF80000000 ++xor 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFF8000 ++xor 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFF80 ++xor 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++xor 0x8000000000000000 0x123456789ABCDEF0 = 0x923456789ABCDEF0 ++xor 0x8000000000000000 0xF0DEBC9A78563412 = 0x70DEBC9A78563412 ++xor 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++xor 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000001 ++xor 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000002 ++xor 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000003 ++xor 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF8000000F ++xor 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++xor 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFE ++xor 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFD ++xor 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF8000007F ++xor 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000080 ++xor 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80007FFF ++xor 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80008000 ++xor 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++xor 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF00000000 ++xor 0xFFFFFFFF80000000 0x8000000000000000 = 0x7FFFFFFF80000000 ++xor 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++xor 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x000000007FFF8000 ++xor 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFF80 ++xor 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x800000007FFFFFFF ++xor 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xEDCBA9871ABCDEF0 ++xor 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0F214365F8563412 ++xor 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++xor 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8001 ++xor 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF8002 ++xor 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF8003 ++xor 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF800F ++xor 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++xor 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFE ++xor 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFD ++xor 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFF807F ++xor 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8080 ++xor 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++xor 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++xor 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFF80007FFF ++xor 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFF7FFF8000 ++xor 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x7FFFFFFFFFFF8000 ++xor 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x000000007FFF8000 ++xor 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++xor 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000007F80 ++xor 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x8000000000007FFF ++xor 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xEDCBA98765435EF0 ++xor 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0F21436587A9B412 ++xor 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++xor 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF81 ++xor 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF82 ++xor 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF83 ++xor 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFF8F ++xor 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++xor 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000000000007E ++xor 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000000000007D ++xor 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++xor 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF00 ++xor 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFF807F ++xor 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFF7F80 ++xor 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFF8000007F ++xor 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFF7FFFFF80 ++xor 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x7FFFFFFFFFFFFF80 ++xor 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000007FFFFF80 ++xor 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000007F80 ++xor 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++xor 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x800000000000007F ++xor 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xEDCBA98765432170 ++xor 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0F21436587A9CB92 ++xor 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++xor 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFE ++xor 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFFFFFD ++xor 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFFFFFC ++xor 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFFFFFFFFF0 ++xor 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++xor 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x8000000000000001 ++xor 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x8000000000000002 ++xor 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7FFFFFFFFFFFFF80 ++xor 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFF7F ++xor 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFFFF8000 ++xor 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFF7FFF ++xor 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFF80000000 ++xor 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFF7FFFFFFF ++xor 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++xor 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x800000007FFFFFFF ++xor 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x8000000000007FFF ++xor 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x800000000000007F ++xor 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++xor 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x6DCBA9876543210F ++xor 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x8F21436587A9CBED ++xor 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++xor 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF1 ++xor 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABCDEF2 ++xor 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABCDEF3 ++xor 0x123456789ABCDEF0 0x000000000000000F = 0x123456789ABCDEFF ++xor 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xEDCBA9876543210F ++xor 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xEDCBA9876543210E ++xor 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xEDCBA9876543210D ++xor 0x123456789ABCDEF0 0x000000000000007F = 0x123456789ABCDE8F ++xor 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDE70 ++xor 0x123456789ABCDEF0 0x0000000000007FFF = 0x123456789ABCA10F ++xor 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABC5EF0 ++xor 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x12345678E543210F ++xor 0x123456789ABCDEF0 0x0000000080000000 = 0x123456781ABCDEF0 ++xor 0x123456789ABCDEF0 0x8000000000000000 = 0x923456789ABCDEF0 ++xor 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xEDCBA9871ABCDEF0 ++xor 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xEDCBA98765435EF0 ++xor 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xEDCBA98765432170 ++xor 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x6DCBA9876543210F ++xor 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++xor 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xE2EAEAE2E2EAEAE2 ++xor 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++xor 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563413 ++xor 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78563410 ++xor 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A78563411 ++xor 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A7856341D ++xor 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0F21436587A9CBED ++xor 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0F21436587A9CBEC ++xor 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0F21436587A9CBEF ++xor 0xF0DEBC9A78563412 0x000000000000007F = 0xF0DEBC9A7856346D ++xor 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563492 ++xor 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF0DEBC9A78564BED ++xor 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A7856B412 ++xor 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF0DEBC9A07A9CBED ++xor 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9AF8563412 ++xor 0xF0DEBC9A78563412 0x8000000000000000 = 0x70DEBC9A78563412 ++xor 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0F214365F8563412 ++xor 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0F21436587A9B412 ++xor 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0F21436587A9CB92 ++xor 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x8F21436587A9CBED ++xor 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xE2EAEAE2E2EAEAE2 ++xor 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on eqv === ++eqv 0x0000000000000000 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++eqv 0x0000000000000000 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++eqv 0x0000000000000000 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++eqv 0x0000000000000000 0x0000000000000003 = 0xFFFFFFFFFFFFFFFC ++eqv 0x0000000000000000 0x000000000000000F = 0xFFFFFFFFFFFFFFF0 ++eqv 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++eqv 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++eqv 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++eqv 0x0000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++eqv 0x0000000000000000 0x0000000000000080 = 0xFFFFFFFFFFFFFF7F ++eqv 0x0000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++eqv 0x0000000000000000 0x0000000000008000 = 0xFFFFFFFFFFFF7FFF ++eqv 0x0000000000000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++eqv 0x0000000000000000 0x0000000080000000 = 0xFFFFFFFF7FFFFFFF ++eqv 0x0000000000000000 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++eqv 0x0000000000000000 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++eqv 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++eqv 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++eqv 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++eqv 0x0000000000000000 0x123456789ABCDEF0 = 0xEDCBA9876543210F ++eqv 0x0000000000000000 0xF0DEBC9A78563412 = 0x0F21436587A9CBED ++eqv 0x0000000000000001 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++eqv 0x0000000000000001 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++eqv 0x0000000000000001 0x0000000000000002 = 0xFFFFFFFFFFFFFFFC ++eqv 0x0000000000000001 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++eqv 0x0000000000000001 0x000000000000000F = 0xFFFFFFFFFFFFFFF1 ++eqv 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++eqv 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++eqv 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++eqv 0x0000000000000001 0x000000000000007F = 0xFFFFFFFFFFFFFF81 ++eqv 0x0000000000000001 0x0000000000000080 = 0xFFFFFFFFFFFFFF7E ++eqv 0x0000000000000001 0x0000000000007FFF = 0xFFFFFFFFFFFF8001 ++eqv 0x0000000000000001 0x0000000000008000 = 0xFFFFFFFFFFFF7FFE ++eqv 0x0000000000000001 0x000000007FFFFFFF = 0xFFFFFFFF80000001 ++eqv 0x0000000000000001 0x0000000080000000 = 0xFFFFFFFF7FFFFFFE ++eqv 0x0000000000000001 0x8000000000000000 = 0x7FFFFFFFFFFFFFFE ++eqv 0x0000000000000001 0xFFFFFFFF80000000 = 0x000000007FFFFFFE ++eqv 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000007FFE ++eqv 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x000000000000007E ++eqv 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x8000000000000001 ++eqv 0x0000000000000001 0x123456789ABCDEF0 = 0xEDCBA9876543210E ++eqv 0x0000000000000001 0xF0DEBC9A78563412 = 0x0F21436587A9CBEC ++eqv 0x0000000000000002 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++eqv 0x0000000000000002 0x0000000000000001 = 0xFFFFFFFFFFFFFFFC ++eqv 0x0000000000000002 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++eqv 0x0000000000000002 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++eqv 0x0000000000000002 0x000000000000000F = 0xFFFFFFFFFFFFFFF2 ++eqv 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++eqv 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++eqv 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++eqv 0x0000000000000002 0x000000000000007F = 0xFFFFFFFFFFFFFF82 ++eqv 0x0000000000000002 0x0000000000000080 = 0xFFFFFFFFFFFFFF7D ++eqv 0x0000000000000002 0x0000000000007FFF = 0xFFFFFFFFFFFF8002 ++eqv 0x0000000000000002 0x0000000000008000 = 0xFFFFFFFFFFFF7FFD ++eqv 0x0000000000000002 0x000000007FFFFFFF = 0xFFFFFFFF80000002 ++eqv 0x0000000000000002 0x0000000080000000 = 0xFFFFFFFF7FFFFFFD ++eqv 0x0000000000000002 0x8000000000000000 = 0x7FFFFFFFFFFFFFFD ++eqv 0x0000000000000002 0xFFFFFFFF80000000 = 0x000000007FFFFFFD ++eqv 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000007FFD ++eqv 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x000000000000007D ++eqv 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x8000000000000002 ++eqv 0x0000000000000002 0x123456789ABCDEF0 = 0xEDCBA9876543210D ++eqv 0x0000000000000002 0xF0DEBC9A78563412 = 0x0F21436587A9CBEF ++eqv 0x0000000000000003 0x0000000000000000 = 0xFFFFFFFFFFFFFFFC ++eqv 0x0000000000000003 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++eqv 0x0000000000000003 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++eqv 0x0000000000000003 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++eqv 0x0000000000000003 0x000000000000000F = 0xFFFFFFFFFFFFFFF3 ++eqv 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++eqv 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++eqv 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++eqv 0x0000000000000003 0x000000000000007F = 0xFFFFFFFFFFFFFF83 ++eqv 0x0000000000000003 0x0000000000000080 = 0xFFFFFFFFFFFFFF7C ++eqv 0x0000000000000003 0x0000000000007FFF = 0xFFFFFFFFFFFF8003 ++eqv 0x0000000000000003 0x0000000000008000 = 0xFFFFFFFFFFFF7FFC ++eqv 0x0000000000000003 0x000000007FFFFFFF = 0xFFFFFFFF80000003 ++eqv 0x0000000000000003 0x0000000080000000 = 0xFFFFFFFF7FFFFFFC ++eqv 0x0000000000000003 0x8000000000000000 = 0x7FFFFFFFFFFFFFFC ++eqv 0x0000000000000003 0xFFFFFFFF80000000 = 0x000000007FFFFFFC ++eqv 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000007FFC ++eqv 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x000000000000007C ++eqv 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x8000000000000003 ++eqv 0x0000000000000003 0x123456789ABCDEF0 = 0xEDCBA9876543210C ++eqv 0x0000000000000003 0xF0DEBC9A78563412 = 0x0F21436587A9CBEE ++eqv 0x000000000000000F 0x0000000000000000 = 0xFFFFFFFFFFFFFFF0 ++eqv 0x000000000000000F 0x0000000000000001 = 0xFFFFFFFFFFFFFFF1 ++eqv 0x000000000000000F 0x0000000000000002 = 0xFFFFFFFFFFFFFFF2 ++eqv 0x000000000000000F 0x0000000000000003 = 0xFFFFFFFFFFFFFFF3 ++eqv 0x000000000000000F 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++eqv 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++eqv 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000E ++eqv 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000D ++eqv 0x000000000000000F 0x000000000000007F = 0xFFFFFFFFFFFFFF8F ++eqv 0x000000000000000F 0x0000000000000080 = 0xFFFFFFFFFFFFFF70 ++eqv 0x000000000000000F 0x0000000000007FFF = 0xFFFFFFFFFFFF800F ++eqv 0x000000000000000F 0x0000000000008000 = 0xFFFFFFFFFFFF7FF0 ++eqv 0x000000000000000F 0x000000007FFFFFFF = 0xFFFFFFFF8000000F ++eqv 0x000000000000000F 0x0000000080000000 = 0xFFFFFFFF7FFFFFF0 ++eqv 0x000000000000000F 0x8000000000000000 = 0x7FFFFFFFFFFFFFF0 ++eqv 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000007FFFFFF0 ++eqv 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000007FF0 ++eqv 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000070 ++eqv 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x800000000000000F ++eqv 0x000000000000000F 0x123456789ABCDEF0 = 0xEDCBA98765432100 ++eqv 0x000000000000000F 0xF0DEBC9A78563412 = 0x0F21436587A9CBE2 ++eqv 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++eqv 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++eqv 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++eqv 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++eqv 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++eqv 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++eqv 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++eqv 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++eqv 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++eqv 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++eqv 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++eqv 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++eqv 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++eqv 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++eqv 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++eqv 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++eqv 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++eqv 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++eqv 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++eqv 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++eqv 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++eqv 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000001 ++eqv 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++eqv 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000003 ++eqv 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000002 ++eqv 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000E ++eqv 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++eqv 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++eqv 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++eqv 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007E ++eqv 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000081 ++eqv 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFE ++eqv 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008001 ++eqv 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFE ++eqv 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000001 ++eqv 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000001 ++eqv 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000001 ++eqv 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8001 ++eqv 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF81 ++eqv 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFE ++eqv 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF1 ++eqv 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563413 ++eqv 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000002 ++eqv 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000003 ++eqv 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++eqv 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000001 ++eqv 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000D ++eqv 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++eqv 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFC ++eqv 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++eqv 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007D ++eqv 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000082 ++eqv 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFD ++eqv 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008002 ++eqv 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFD ++eqv 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000002 ++eqv 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000002 ++eqv 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000002 ++eqv 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8002 ++eqv 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF82 ++eqv 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFD ++eqv 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF2 ++eqv 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563410 ++eqv 0x000000000000007F 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++eqv 0x000000000000007F 0x0000000000000001 = 0xFFFFFFFFFFFFFF81 ++eqv 0x000000000000007F 0x0000000000000002 = 0xFFFFFFFFFFFFFF82 ++eqv 0x000000000000007F 0x0000000000000003 = 0xFFFFFFFFFFFFFF83 ++eqv 0x000000000000007F 0x000000000000000F = 0xFFFFFFFFFFFFFF8F ++eqv 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++eqv 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007E ++eqv 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007D ++eqv 0x000000000000007F 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++eqv 0x000000000000007F 0x0000000000000080 = 0xFFFFFFFFFFFFFF00 ++eqv 0x000000000000007F 0x0000000000007FFF = 0xFFFFFFFFFFFF807F ++eqv 0x000000000000007F 0x0000000000008000 = 0xFFFFFFFFFFFF7F80 ++eqv 0x000000000000007F 0x000000007FFFFFFF = 0xFFFFFFFF8000007F ++eqv 0x000000000000007F 0x0000000080000000 = 0xFFFFFFFF7FFFFF80 ++eqv 0x000000000000007F 0x8000000000000000 = 0x7FFFFFFFFFFFFF80 ++eqv 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000007FFFFF80 ++eqv 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000007F80 ++eqv 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++eqv 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x800000000000007F ++eqv 0x000000000000007F 0x123456789ABCDEF0 = 0xEDCBA98765432170 ++eqv 0x000000000000007F 0xF0DEBC9A78563412 = 0x0F21436587A9CB92 ++eqv 0x0000000000000080 0x0000000000000000 = 0xFFFFFFFFFFFFFF7F ++eqv 0x0000000000000080 0x0000000000000001 = 0xFFFFFFFFFFFFFF7E ++eqv 0x0000000000000080 0x0000000000000002 = 0xFFFFFFFFFFFFFF7D ++eqv 0x0000000000000080 0x0000000000000003 = 0xFFFFFFFFFFFFFF7C ++eqv 0x0000000000000080 0x000000000000000F = 0xFFFFFFFFFFFFFF70 ++eqv 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++eqv 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000081 ++eqv 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000082 ++eqv 0x0000000000000080 0x000000000000007F = 0xFFFFFFFFFFFFFF00 ++eqv 0x0000000000000080 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++eqv 0x0000000000000080 0x0000000000007FFF = 0xFFFFFFFFFFFF8080 ++eqv 0x0000000000000080 0x0000000000008000 = 0xFFFFFFFFFFFF7F7F ++eqv 0x0000000000000080 0x000000007FFFFFFF = 0xFFFFFFFF80000080 ++eqv 0x0000000000000080 0x0000000080000000 = 0xFFFFFFFF7FFFFF7F ++eqv 0x0000000000000080 0x8000000000000000 = 0x7FFFFFFFFFFFFF7F ++eqv 0x0000000000000080 0xFFFFFFFF80000000 = 0x000000007FFFFF7F ++eqv 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000007F7F ++eqv 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++eqv 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x8000000000000080 ++eqv 0x0000000000000080 0x123456789ABCDEF0 = 0xEDCBA9876543218F ++eqv 0x0000000000000080 0xF0DEBC9A78563412 = 0x0F21436587A9CB6D ++eqv 0x0000000000007FFF 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++eqv 0x0000000000007FFF 0x0000000000000001 = 0xFFFFFFFFFFFF8001 ++eqv 0x0000000000007FFF 0x0000000000000002 = 0xFFFFFFFFFFFF8002 ++eqv 0x0000000000007FFF 0x0000000000000003 = 0xFFFFFFFFFFFF8003 ++eqv 0x0000000000007FFF 0x000000000000000F = 0xFFFFFFFFFFFF800F ++eqv 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++eqv 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFE ++eqv 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFD ++eqv 0x0000000000007FFF 0x000000000000007F = 0xFFFFFFFFFFFF807F ++eqv 0x0000000000007FFF 0x0000000000000080 = 0xFFFFFFFFFFFF8080 ++eqv 0x0000000000007FFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++eqv 0x0000000000007FFF 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++eqv 0x0000000000007FFF 0x000000007FFFFFFF = 0xFFFFFFFF80007FFF ++eqv 0x0000000000007FFF 0x0000000080000000 = 0xFFFFFFFF7FFF8000 ++eqv 0x0000000000007FFF 0x8000000000000000 = 0x7FFFFFFFFFFF8000 ++eqv 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x000000007FFF8000 ++eqv 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++eqv 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007F80 ++eqv 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x8000000000007FFF ++eqv 0x0000000000007FFF 0x123456789ABCDEF0 = 0xEDCBA98765435EF0 ++eqv 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0F21436587A9B412 ++eqv 0x0000000000008000 0x0000000000000000 = 0xFFFFFFFFFFFF7FFF ++eqv 0x0000000000008000 0x0000000000000001 = 0xFFFFFFFFFFFF7FFE ++eqv 0x0000000000008000 0x0000000000000002 = 0xFFFFFFFFFFFF7FFD ++eqv 0x0000000000008000 0x0000000000000003 = 0xFFFFFFFFFFFF7FFC ++eqv 0x0000000000008000 0x000000000000000F = 0xFFFFFFFFFFFF7FF0 ++eqv 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++eqv 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008001 ++eqv 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008002 ++eqv 0x0000000000008000 0x000000000000007F = 0xFFFFFFFFFFFF7F80 ++eqv 0x0000000000008000 0x0000000000000080 = 0xFFFFFFFFFFFF7F7F ++eqv 0x0000000000008000 0x0000000000007FFF = 0xFFFFFFFFFFFF0000 ++eqv 0x0000000000008000 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++eqv 0x0000000000008000 0x000000007FFFFFFF = 0xFFFFFFFF80008000 ++eqv 0x0000000000008000 0x0000000080000000 = 0xFFFFFFFF7FFF7FFF ++eqv 0x0000000000008000 0x8000000000000000 = 0x7FFFFFFFFFFF7FFF ++eqv 0x0000000000008000 0xFFFFFFFF80000000 = 0x000000007FFF7FFF ++eqv 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++eqv 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x000000000000807F ++eqv 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x8000000000008000 ++eqv 0x0000000000008000 0x123456789ABCDEF0 = 0xEDCBA9876543A10F ++eqv 0x0000000000008000 0xF0DEBC9A78563412 = 0x0F21436587A94BED ++eqv 0x000000007FFFFFFF 0x0000000000000000 = 0xFFFFFFFF80000000 ++eqv 0x000000007FFFFFFF 0x0000000000000001 = 0xFFFFFFFF80000001 ++eqv 0x000000007FFFFFFF 0x0000000000000002 = 0xFFFFFFFF80000002 ++eqv 0x000000007FFFFFFF 0x0000000000000003 = 0xFFFFFFFF80000003 ++eqv 0x000000007FFFFFFF 0x000000000000000F = 0xFFFFFFFF8000000F ++eqv 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++eqv 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFE ++eqv 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFD ++eqv 0x000000007FFFFFFF 0x000000000000007F = 0xFFFFFFFF8000007F ++eqv 0x000000007FFFFFFF 0x0000000000000080 = 0xFFFFFFFF80000080 ++eqv 0x000000007FFFFFFF 0x0000000000007FFF = 0xFFFFFFFF80007FFF ++eqv 0x000000007FFFFFFF 0x0000000000008000 = 0xFFFFFFFF80008000 ++eqv 0x000000007FFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++eqv 0x000000007FFFFFFF 0x0000000080000000 = 0xFFFFFFFF00000000 ++eqv 0x000000007FFFFFFF 0x8000000000000000 = 0x7FFFFFFF80000000 ++eqv 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++eqv 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFF8000 ++eqv 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFF80 ++eqv 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x800000007FFFFFFF ++eqv 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0xEDCBA9871ABCDEF0 ++eqv 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0F214365F8563412 ++eqv 0x0000000080000000 0x0000000000000000 = 0xFFFFFFFF7FFFFFFF ++eqv 0x0000000080000000 0x0000000000000001 = 0xFFFFFFFF7FFFFFFE ++eqv 0x0000000080000000 0x0000000000000002 = 0xFFFFFFFF7FFFFFFD ++eqv 0x0000000080000000 0x0000000000000003 = 0xFFFFFFFF7FFFFFFC ++eqv 0x0000000080000000 0x000000000000000F = 0xFFFFFFFF7FFFFFF0 ++eqv 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++eqv 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000001 ++eqv 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000002 ++eqv 0x0000000080000000 0x000000000000007F = 0xFFFFFFFF7FFFFF80 ++eqv 0x0000000080000000 0x0000000000000080 = 0xFFFFFFFF7FFFFF7F ++eqv 0x0000000080000000 0x0000000000007FFF = 0xFFFFFFFF7FFF8000 ++eqv 0x0000000080000000 0x0000000000008000 = 0xFFFFFFFF7FFF7FFF ++eqv 0x0000000080000000 0x000000007FFFFFFF = 0xFFFFFFFF00000000 ++eqv 0x0000000080000000 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++eqv 0x0000000080000000 0x8000000000000000 = 0x7FFFFFFF7FFFFFFF ++eqv 0x0000000080000000 0xFFFFFFFF80000000 = 0x00000000FFFFFFFF ++eqv 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080007FFF ++eqv 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x000000008000007F ++eqv 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x8000000080000000 ++eqv 0x0000000080000000 0x123456789ABCDEF0 = 0xEDCBA987E543210F ++eqv 0x0000000080000000 0xF0DEBC9A78563412 = 0x0F21436507A9CBED ++eqv 0x8000000000000000 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++eqv 0x8000000000000000 0x0000000000000001 = 0x7FFFFFFFFFFFFFFE ++eqv 0x8000000000000000 0x0000000000000002 = 0x7FFFFFFFFFFFFFFD ++eqv 0x8000000000000000 0x0000000000000003 = 0x7FFFFFFFFFFFFFFC ++eqv 0x8000000000000000 0x000000000000000F = 0x7FFFFFFFFFFFFFF0 ++eqv 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++eqv 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000001 ++eqv 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000002 ++eqv 0x8000000000000000 0x000000000000007F = 0x7FFFFFFFFFFFFF80 ++eqv 0x8000000000000000 0x0000000000000080 = 0x7FFFFFFFFFFFFF7F ++eqv 0x8000000000000000 0x0000000000007FFF = 0x7FFFFFFFFFFF8000 ++eqv 0x8000000000000000 0x0000000000008000 = 0x7FFFFFFFFFFF7FFF ++eqv 0x8000000000000000 0x000000007FFFFFFF = 0x7FFFFFFF80000000 ++eqv 0x8000000000000000 0x0000000080000000 = 0x7FFFFFFF7FFFFFFF ++eqv 0x8000000000000000 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++eqv 0x8000000000000000 0xFFFFFFFF80000000 = 0x800000007FFFFFFF ++eqv 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000007FFF ++eqv 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x800000000000007F ++eqv 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++eqv 0x8000000000000000 0x123456789ABCDEF0 = 0x6DCBA9876543210F ++eqv 0x8000000000000000 0xF0DEBC9A78563412 = 0x8F21436587A9CBED ++eqv 0xFFFFFFFF80000000 0x0000000000000000 = 0x000000007FFFFFFF ++eqv 0xFFFFFFFF80000000 0x0000000000000001 = 0x000000007FFFFFFE ++eqv 0xFFFFFFFF80000000 0x0000000000000002 = 0x000000007FFFFFFD ++eqv 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000007FFFFFFC ++eqv 0xFFFFFFFF80000000 0x000000000000000F = 0x000000007FFFFFF0 ++eqv 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++eqv 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000001 ++eqv 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000002 ++eqv 0xFFFFFFFF80000000 0x000000000000007F = 0x000000007FFFFF80 ++eqv 0xFFFFFFFF80000000 0x0000000000000080 = 0x000000007FFFFF7F ++eqv 0xFFFFFFFF80000000 0x0000000000007FFF = 0x000000007FFF8000 ++eqv 0xFFFFFFFF80000000 0x0000000000008000 = 0x000000007FFF7FFF ++eqv 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++eqv 0xFFFFFFFF80000000 0x0000000080000000 = 0x00000000FFFFFFFF ++eqv 0xFFFFFFFF80000000 0x8000000000000000 = 0x800000007FFFFFFF ++eqv 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++eqv 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80007FFF ++eqv 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF8000007F ++eqv 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFF80000000 ++eqv 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x12345678E543210F ++eqv 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A07A9CBED ++eqv 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000007FFF ++eqv 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000007FFE ++eqv 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000007FFD ++eqv 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000007FFC ++eqv 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000007FF0 ++eqv 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++eqv 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8001 ++eqv 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8002 ++eqv 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000007F80 ++eqv 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000007F7F ++eqv 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++eqv 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x000000000000FFFF ++eqv 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFF8000 ++eqv 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080007FFF ++eqv 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000007FFF ++eqv 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80007FFF ++eqv 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++eqv 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF807F ++eqv 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFF8000 ++eqv 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCA10F ++eqv 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78564BED ++eqv 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x000000000000007F ++eqv 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000000000007E ++eqv 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000000000007D ++eqv 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000000000007C ++eqv 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000070 ++eqv 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++eqv 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF81 ++eqv 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF82 ++eqv 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000000 ++eqv 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x00000000000000FF ++eqv 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007F80 ++eqv 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000000000807F ++eqv 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFF80 ++eqv 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000008000007F ++eqv 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x800000000000007F ++eqv 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF8000007F ++eqv 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF807F ++eqv 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++eqv 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF80 ++eqv 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDE8F ++eqv 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A7856346D ++eqv 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x8000000000000000 ++eqv 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x8000000000000001 ++eqv 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x8000000000000002 ++eqv 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x8000000000000003 ++eqv 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x800000000000000F ++eqv 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++eqv 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFE ++eqv 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFD ++eqv 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x800000000000007F ++eqv 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x8000000000000080 ++eqv 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x8000000000007FFF ++eqv 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x8000000000008000 ++eqv 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x800000007FFFFFFF ++eqv 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x8000000080000000 ++eqv 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++eqv 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFF80000000 ++eqv 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFF8000 ++eqv 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFF80 ++eqv 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++eqv 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x923456789ABCDEF0 ++eqv 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x70DEBC9A78563412 ++eqv 0x123456789ABCDEF0 0x0000000000000000 = 0xEDCBA9876543210F ++eqv 0x123456789ABCDEF0 0x0000000000000001 = 0xEDCBA9876543210E ++eqv 0x123456789ABCDEF0 0x0000000000000002 = 0xEDCBA9876543210D ++eqv 0x123456789ABCDEF0 0x0000000000000003 = 0xEDCBA9876543210C ++eqv 0x123456789ABCDEF0 0x000000000000000F = 0xEDCBA98765432100 ++eqv 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++eqv 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDEF1 ++eqv 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDEF2 ++eqv 0x123456789ABCDEF0 0x000000000000007F = 0xEDCBA98765432170 ++eqv 0x123456789ABCDEF0 0x0000000000000080 = 0xEDCBA9876543218F ++eqv 0x123456789ABCDEF0 0x0000000000007FFF = 0xEDCBA98765435EF0 ++eqv 0x123456789ABCDEF0 0x0000000000008000 = 0xEDCBA9876543A10F ++eqv 0x123456789ABCDEF0 0x000000007FFFFFFF = 0xEDCBA9871ABCDEF0 ++eqv 0x123456789ABCDEF0 0x0000000080000000 = 0xEDCBA987E543210F ++eqv 0x123456789ABCDEF0 0x8000000000000000 = 0x6DCBA9876543210F ++eqv 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x12345678E543210F ++eqv 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCA10F ++eqv 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDE8F ++eqv 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x923456789ABCDEF0 ++eqv 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++eqv 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x1D15151D1D15151D ++eqv 0xF0DEBC9A78563412 0x0000000000000000 = 0x0F21436587A9CBED ++eqv 0xF0DEBC9A78563412 0x0000000000000001 = 0x0F21436587A9CBEC ++eqv 0xF0DEBC9A78563412 0x0000000000000002 = 0x0F21436587A9CBEF ++eqv 0xF0DEBC9A78563412 0x0000000000000003 = 0x0F21436587A9CBEE ++eqv 0xF0DEBC9A78563412 0x000000000000000F = 0x0F21436587A9CBE2 ++eqv 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++eqv 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563413 ++eqv 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A78563410 ++eqv 0xF0DEBC9A78563412 0x000000000000007F = 0x0F21436587A9CB92 ++eqv 0xF0DEBC9A78563412 0x0000000000000080 = 0x0F21436587A9CB6D ++eqv 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0F21436587A9B412 ++eqv 0xF0DEBC9A78563412 0x0000000000008000 = 0x0F21436587A94BED ++eqv 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0F214365F8563412 ++eqv 0xF0DEBC9A78563412 0x0000000080000000 = 0x0F21436507A9CBED ++eqv 0xF0DEBC9A78563412 0x8000000000000000 = 0x8F21436587A9CBED ++eqv 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A07A9CBED ++eqv 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78564BED ++eqv 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A7856346D ++eqv 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x70DEBC9A78563412 ++eqv 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x1D15151D1D15151D ++eqv 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++=== Running test on inslb === ++inslb 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++inslb 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++inslb 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++inslb 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++inslb 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++inslb 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslb 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inslb 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inslb 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++inslb 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++inslb 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++inslb 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++inslb 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++inslb 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++inslb 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++inslb 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslb 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslb 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inslb 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslb 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inslb 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inslb 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++inslb 0x0000000000000001 0x0000000000000001 = 0x0000000000000100 ++inslb 0x0000000000000001 0x0000000000000002 = 0x0000000000010000 ++inslb 0x0000000000000001 0x0000000000000003 = 0x0000000001000000 ++inslb 0x0000000000000001 0x000000000000000F = 0x0100000000000000 ++inslb 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0100000000000000 ++inslb 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0001000000000000 ++inslb 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000010000000000 ++inslb 0x0000000000000001 0x000000000000007F = 0x0100000000000000 ++inslb 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++inslb 0x0000000000000001 0x0000000000007FFF = 0x0100000000000000 ++inslb 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++inslb 0x0000000000000001 0x000000007FFFFFFF = 0x0100000000000000 ++inslb 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++inslb 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++inslb 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++inslb 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++inslb 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++inslb 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0100000000000000 ++inslb 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++inslb 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000010000 ++inslb 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++inslb 0x0000000000000002 0x0000000000000001 = 0x0000000000000200 ++inslb 0x0000000000000002 0x0000000000000002 = 0x0000000000020000 ++inslb 0x0000000000000002 0x0000000000000003 = 0x0000000002000000 ++inslb 0x0000000000000002 0x000000000000000F = 0x0200000000000000 ++inslb 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0200000000000000 ++inslb 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0002000000000000 ++inslb 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000020000000000 ++inslb 0x0000000000000002 0x000000000000007F = 0x0200000000000000 ++inslb 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++inslb 0x0000000000000002 0x0000000000007FFF = 0x0200000000000000 ++inslb 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++inslb 0x0000000000000002 0x000000007FFFFFFF = 0x0200000000000000 ++inslb 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++inslb 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++inslb 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++inslb 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++inslb 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++inslb 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0200000000000000 ++inslb 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++inslb 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000020000 ++inslb 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++inslb 0x0000000000000003 0x0000000000000001 = 0x0000000000000300 ++inslb 0x0000000000000003 0x0000000000000002 = 0x0000000000030000 ++inslb 0x0000000000000003 0x0000000000000003 = 0x0000000003000000 ++inslb 0x0000000000000003 0x000000000000000F = 0x0300000000000000 ++inslb 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0300000000000000 ++inslb 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0003000000000000 ++inslb 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000030000000000 ++inslb 0x0000000000000003 0x000000000000007F = 0x0300000000000000 ++inslb 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++inslb 0x0000000000000003 0x0000000000007FFF = 0x0300000000000000 ++inslb 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++inslb 0x0000000000000003 0x000000007FFFFFFF = 0x0300000000000000 ++inslb 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++inslb 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++inslb 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++inslb 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++inslb 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++inslb 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0300000000000000 ++inslb 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++inslb 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000030000 ++inslb 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++inslb 0x000000000000000F 0x0000000000000001 = 0x0000000000000F00 ++inslb 0x000000000000000F 0x0000000000000002 = 0x00000000000F0000 ++inslb 0x000000000000000F 0x0000000000000003 = 0x000000000F000000 ++inslb 0x000000000000000F 0x000000000000000F = 0x0F00000000000000 ++inslb 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0F00000000000000 ++inslb 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000F000000000000 ++inslb 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x00000F0000000000 ++inslb 0x000000000000000F 0x000000000000007F = 0x0F00000000000000 ++inslb 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++inslb 0x000000000000000F 0x0000000000007FFF = 0x0F00000000000000 ++inslb 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++inslb 0x000000000000000F 0x000000007FFFFFFF = 0x0F00000000000000 ++inslb 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++inslb 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++inslb 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++inslb 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++inslb 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++inslb 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0F00000000000000 ++inslb 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++inslb 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000000F0000 ++inslb 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++inslb 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000FF00 ++inslb 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000FF0000 ++inslb 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000FF000000 ++inslb 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFF00000000000000 ++inslb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00FF000000000000 ++inslb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000FF0000000000 ++inslb 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFF00000000000000 ++inslb 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++inslb 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFF00000000000000 ++inslb 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++inslb 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFF00000000000000 ++inslb 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++inslb 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++inslb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++inslb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++inslb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++inslb 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslb 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++inslb 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000FF0000 ++inslb 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x00000000000000FE ++inslb 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000000000FE00 ++inslb 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000FE0000 ++inslb 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x00000000FE000000 ++inslb 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFE00000000000000 ++inslb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFE00000000000000 ++inslb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x00FE000000000000 ++inslb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000FE0000000000 ++inslb 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFE00000000000000 ++inslb 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000000000FE ++inslb 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFE00000000000000 ++inslb 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x00000000000000FE ++inslb 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFE00000000000000 ++inslb 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000000000000FE ++inslb 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x00000000000000FE ++inslb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000000000FE ++inslb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x00000000000000FE ++inslb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000000000FE ++inslb 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFE00000000000000 ++inslb 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000000000FE ++inslb 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000FE0000 ++inslb 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x00000000000000FD ++inslb 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x000000000000FD00 ++inslb 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000FD0000 ++inslb 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x00000000FD000000 ++inslb 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFD00000000000000 ++inslb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFD00000000000000 ++inslb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x00FD000000000000 ++inslb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000FD0000000000 ++inslb 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFD00000000000000 ++inslb 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000000000FD ++inslb 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFD00000000000000 ++inslb 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x00000000000000FD ++inslb 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFD00000000000000 ++inslb 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000000000000FD ++inslb 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x00000000000000FD ++inslb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x00000000000000FD ++inslb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000000000FD ++inslb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00000000000000FD ++inslb 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFD00000000000000 ++inslb 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000000000FD ++inslb 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000FD0000 ++inslb 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++inslb 0x000000000000007F 0x0000000000000001 = 0x0000000000007F00 ++inslb 0x000000000000007F 0x0000000000000002 = 0x00000000007F0000 ++inslb 0x000000000000007F 0x0000000000000003 = 0x000000007F000000 ++inslb 0x000000000000007F 0x000000000000000F = 0x7F00000000000000 ++inslb 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x7F00000000000000 ++inslb 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x007F000000000000 ++inslb 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00007F0000000000 ++inslb 0x000000000000007F 0x000000000000007F = 0x7F00000000000000 ++inslb 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++inslb 0x000000000000007F 0x0000000000007FFF = 0x7F00000000000000 ++inslb 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++inslb 0x000000000000007F 0x000000007FFFFFFF = 0x7F00000000000000 ++inslb 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++inslb 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++inslb 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++inslb 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++inslb 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++inslb 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7F00000000000000 ++inslb 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++inslb 0x000000000000007F 0xF0DEBC9A78563412 = 0x00000000007F0000 ++inslb 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++inslb 0x0000000000000080 0x0000000000000001 = 0x0000000000008000 ++inslb 0x0000000000000080 0x0000000000000002 = 0x0000000000800000 ++inslb 0x0000000000000080 0x0000000000000003 = 0x0000000080000000 ++inslb 0x0000000000000080 0x000000000000000F = 0x8000000000000000 ++inslb 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++inslb 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0080000000000000 ++inslb 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000800000000000 ++inslb 0x0000000000000080 0x000000000000007F = 0x8000000000000000 ++inslb 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++inslb 0x0000000000000080 0x0000000000007FFF = 0x8000000000000000 ++inslb 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++inslb 0x0000000000000080 0x000000007FFFFFFF = 0x8000000000000000 ++inslb 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++inslb 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++inslb 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++inslb 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++inslb 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++inslb 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++inslb 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++inslb 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000800000 ++inslb 0x0000000000007FFF 0x0000000000000000 = 0x00000000000000FF ++inslb 0x0000000000007FFF 0x0000000000000001 = 0x000000000000FF00 ++inslb 0x0000000000007FFF 0x0000000000000002 = 0x0000000000FF0000 ++inslb 0x0000000000007FFF 0x0000000000000003 = 0x00000000FF000000 ++inslb 0x0000000000007FFF 0x000000000000000F = 0xFF00000000000000 ++inslb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x00FF000000000000 ++inslb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000FF0000000000 ++inslb 0x0000000000007FFF 0x000000000000007F = 0xFF00000000000000 ++inslb 0x0000000000007FFF 0x0000000000000080 = 0x00000000000000FF ++inslb 0x0000000000007FFF 0x0000000000007FFF = 0xFF00000000000000 ++inslb 0x0000000000007FFF 0x0000000000008000 = 0x00000000000000FF ++inslb 0x0000000000007FFF 0x000000007FFFFFFF = 0xFF00000000000000 ++inslb 0x0000000000007FFF 0x0000000080000000 = 0x00000000000000FF ++inslb 0x0000000000007FFF 0x8000000000000000 = 0x00000000000000FF ++inslb 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++inslb 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++inslb 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++inslb 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslb 0x0000000000007FFF 0x123456789ABCDEF0 = 0x00000000000000FF ++inslb 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000FF0000 ++inslb 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++inslb 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++inslb 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++inslb 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++inslb 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++inslb 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslb 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inslb 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inslb 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++inslb 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++inslb 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++inslb 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++inslb 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++inslb 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++inslb 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++inslb 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslb 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslb 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inslb 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslb 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++inslb 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inslb 0x000000007FFFFFFF 0x0000000000000000 = 0x00000000000000FF ++inslb 0x000000007FFFFFFF 0x0000000000000001 = 0x000000000000FF00 ++inslb 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000FF0000 ++inslb 0x000000007FFFFFFF 0x0000000000000003 = 0x00000000FF000000 ++inslb 0x000000007FFFFFFF 0x000000000000000F = 0xFF00000000000000 ++inslb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00FF000000000000 ++inslb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000FF0000000000 ++inslb 0x000000007FFFFFFF 0x000000000000007F = 0xFF00000000000000 ++inslb 0x000000007FFFFFFF 0x0000000000000080 = 0x00000000000000FF ++inslb 0x000000007FFFFFFF 0x0000000000007FFF = 0xFF00000000000000 ++inslb 0x000000007FFFFFFF 0x0000000000008000 = 0x00000000000000FF ++inslb 0x000000007FFFFFFF 0x000000007FFFFFFF = 0xFF00000000000000 ++inslb 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000000000FF ++inslb 0x000000007FFFFFFF 0x8000000000000000 = 0x00000000000000FF ++inslb 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++inslb 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++inslb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++inslb 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslb 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++inslb 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000FF0000 ++inslb 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++inslb 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++inslb 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++inslb 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++inslb 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++inslb 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslb 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inslb 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inslb 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++inslb 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++inslb 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++inslb 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++inslb 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++inslb 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++inslb 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++inslb 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslb 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslb 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inslb 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslb 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inslb 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inslb 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++inslb 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++inslb 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++inslb 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++inslb 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++inslb 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslb 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inslb 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inslb 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++inslb 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++inslb 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++inslb 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++inslb 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++inslb 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++inslb 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++inslb 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslb 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslb 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inslb 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslb 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inslb 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inslb 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inslb 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000080 ++inslb 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000008000 ++inslb 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000800000 ++inslb 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000080000000 ++inslb 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x8000000000000000 ++inslb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++inslb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0080000000000000 ++inslb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000800000000000 ++inslb 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x8000000000000000 ++inslb 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++inslb 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x8000000000000000 ++inslb 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000080 ++inslb 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x8000000000000000 ++inslb 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000080 ++inslb 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000080 ++inslb 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000080 ++inslb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++inslb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++inslb 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++inslb 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000080 ++inslb 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000800000 ++inslb 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++inslb 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000FF00 ++inslb 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000FF0000 ++inslb 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000FF000000 ++inslb 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFF00000000000000 ++inslb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00FF000000000000 ++inslb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000FF0000000000 ++inslb 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFF00000000000000 ++inslb 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++inslb 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFF00000000000000 ++inslb 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++inslb 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFF00000000000000 ++inslb 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++inslb 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++inslb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++inslb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++inslb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++inslb 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslb 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++inslb 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000FF0000 ++inslb 0x123456789ABCDEF0 0x0000000000000000 = 0x00000000000000F0 ++inslb 0x123456789ABCDEF0 0x0000000000000001 = 0x000000000000F000 ++inslb 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000F00000 ++inslb 0x123456789ABCDEF0 0x0000000000000003 = 0x00000000F0000000 ++inslb 0x123456789ABCDEF0 0x000000000000000F = 0xF000000000000000 ++inslb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xF000000000000000 ++inslb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x00F0000000000000 ++inslb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000F00000000000 ++inslb 0x123456789ABCDEF0 0x000000000000007F = 0xF000000000000000 ++inslb 0x123456789ABCDEF0 0x0000000000000080 = 0x00000000000000F0 ++inslb 0x123456789ABCDEF0 0x0000000000007FFF = 0xF000000000000000 ++inslb 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000000000F0 ++inslb 0x123456789ABCDEF0 0x000000007FFFFFFF = 0xF000000000000000 ++inslb 0x123456789ABCDEF0 0x0000000080000000 = 0x00000000000000F0 ++inslb 0x123456789ABCDEF0 0x8000000000000000 = 0x00000000000000F0 ++inslb 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x00000000000000F0 ++inslb 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x00000000000000F0 ++inslb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x00000000000000F0 ++inslb 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0xF000000000000000 ++inslb 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x00000000000000F0 ++inslb 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000F00000 ++inslb 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000012 ++inslb 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000001200 ++inslb 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000120000 ++inslb 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000012000000 ++inslb 0xF0DEBC9A78563412 0x000000000000000F = 0x1200000000000000 ++inslb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x1200000000000000 ++inslb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0012000000000000 ++inslb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000120000000000 ++inslb 0xF0DEBC9A78563412 0x000000000000007F = 0x1200000000000000 ++inslb 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000012 ++inslb 0xF0DEBC9A78563412 0x0000000000007FFF = 0x1200000000000000 ++inslb 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000012 ++inslb 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x1200000000000000 ++inslb 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000012 ++inslb 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000012 ++inslb 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000012 ++inslb 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000012 ++inslb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000012 ++inslb 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x1200000000000000 ++inslb 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000012 ++inslb 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000120000 ++=== Running test on inslh === ++inslh 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++inslh 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++inslh 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++inslh 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++inslh 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++inslh 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslh 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inslh 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inslh 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++inslh 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++inslh 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++inslh 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++inslh 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++inslh 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++inslh 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++inslh 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslh 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslh 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inslh 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslh 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inslh 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inslh 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++inslh 0x0000000000000001 0x0000000000000001 = 0x0000000000000100 ++inslh 0x0000000000000001 0x0000000000000002 = 0x0000000000010000 ++inslh 0x0000000000000001 0x0000000000000003 = 0x0000000001000000 ++inslh 0x0000000000000001 0x000000000000000F = 0x0100000000000000 ++inslh 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0100000000000000 ++inslh 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0001000000000000 ++inslh 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000010000000000 ++inslh 0x0000000000000001 0x000000000000007F = 0x0100000000000000 ++inslh 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++inslh 0x0000000000000001 0x0000000000007FFF = 0x0100000000000000 ++inslh 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++inslh 0x0000000000000001 0x000000007FFFFFFF = 0x0100000000000000 ++inslh 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++inslh 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++inslh 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++inslh 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++inslh 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++inslh 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0100000000000000 ++inslh 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++inslh 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000010000 ++inslh 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++inslh 0x0000000000000002 0x0000000000000001 = 0x0000000000000200 ++inslh 0x0000000000000002 0x0000000000000002 = 0x0000000000020000 ++inslh 0x0000000000000002 0x0000000000000003 = 0x0000000002000000 ++inslh 0x0000000000000002 0x000000000000000F = 0x0200000000000000 ++inslh 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0200000000000000 ++inslh 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0002000000000000 ++inslh 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000020000000000 ++inslh 0x0000000000000002 0x000000000000007F = 0x0200000000000000 ++inslh 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++inslh 0x0000000000000002 0x0000000000007FFF = 0x0200000000000000 ++inslh 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++inslh 0x0000000000000002 0x000000007FFFFFFF = 0x0200000000000000 ++inslh 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++inslh 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++inslh 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++inslh 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++inslh 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++inslh 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0200000000000000 ++inslh 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++inslh 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000020000 ++inslh 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++inslh 0x0000000000000003 0x0000000000000001 = 0x0000000000000300 ++inslh 0x0000000000000003 0x0000000000000002 = 0x0000000000030000 ++inslh 0x0000000000000003 0x0000000000000003 = 0x0000000003000000 ++inslh 0x0000000000000003 0x000000000000000F = 0x0300000000000000 ++inslh 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0300000000000000 ++inslh 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0003000000000000 ++inslh 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000030000000000 ++inslh 0x0000000000000003 0x000000000000007F = 0x0300000000000000 ++inslh 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++inslh 0x0000000000000003 0x0000000000007FFF = 0x0300000000000000 ++inslh 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++inslh 0x0000000000000003 0x000000007FFFFFFF = 0x0300000000000000 ++inslh 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++inslh 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++inslh 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++inslh 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++inslh 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++inslh 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0300000000000000 ++inslh 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++inslh 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000030000 ++inslh 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++inslh 0x000000000000000F 0x0000000000000001 = 0x0000000000000F00 ++inslh 0x000000000000000F 0x0000000000000002 = 0x00000000000F0000 ++inslh 0x000000000000000F 0x0000000000000003 = 0x000000000F000000 ++inslh 0x000000000000000F 0x000000000000000F = 0x0F00000000000000 ++inslh 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0F00000000000000 ++inslh 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000F000000000000 ++inslh 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x00000F0000000000 ++inslh 0x000000000000000F 0x000000000000007F = 0x0F00000000000000 ++inslh 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++inslh 0x000000000000000F 0x0000000000007FFF = 0x0F00000000000000 ++inslh 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++inslh 0x000000000000000F 0x000000007FFFFFFF = 0x0F00000000000000 ++inslh 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++inslh 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++inslh 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++inslh 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++inslh 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++inslh 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0F00000000000000 ++inslh 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++inslh 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000000F0000 ++inslh 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000FFFF ++inslh 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000FFFF00 ++inslh 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000FFFF0000 ++inslh 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000FFFF000000 ++inslh 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFF00000000000000 ++inslh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++inslh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00FFFF0000000000 ++inslh 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFF00000000000000 ++inslh 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000FFFF ++inslh 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFF00000000000000 ++inslh 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000FFFF ++inslh 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFF00000000000000 ++inslh 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000FFFF ++inslh 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000FFFF ++inslh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000FFFF ++inslh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++inslh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++inslh 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslh 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000FFFF ++inslh 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000FFFF0000 ++inslh 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000000000FFFE ++inslh 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000FFFE00 ++inslh 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x00000000FFFE0000 ++inslh 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000FFFE000000 ++inslh 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFE00000000000000 ++inslh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFE00000000000000 ++inslh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFE000000000000 ++inslh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x00FFFE0000000000 ++inslh 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFE00000000000000 ++inslh 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000FFFE ++inslh 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFE00000000000000 ++inslh 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000000000FFFE ++inslh 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFE00000000000000 ++inslh 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000000000FFFE ++inslh 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000000000FFFE ++inslh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000000000FFFE ++inslh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000000000FFFE ++inslh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFE ++inslh 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFE00000000000000 ++inslh 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000000000FFFE ++inslh 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x00000000FFFE0000 ++inslh 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x000000000000FFFD ++inslh 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000FFFD00 ++inslh 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x00000000FFFD0000 ++inslh 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000FFFD000000 ++inslh 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFD00000000000000 ++inslh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFD00000000000000 ++inslh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFD000000000000 ++inslh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x00FFFD0000000000 ++inslh 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFD00000000000000 ++inslh 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000FFFD ++inslh 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFD00000000000000 ++inslh 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x000000000000FFFD ++inslh 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFD00000000000000 ++inslh 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000000000FFFD ++inslh 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x000000000000FFFD ++inslh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000000000FFFD ++inslh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x000000000000FFFD ++inslh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFD ++inslh 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFD00000000000000 ++inslh 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000000000FFFD ++inslh 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x00000000FFFD0000 ++inslh 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++inslh 0x000000000000007F 0x0000000000000001 = 0x0000000000007F00 ++inslh 0x000000000000007F 0x0000000000000002 = 0x00000000007F0000 ++inslh 0x000000000000007F 0x0000000000000003 = 0x000000007F000000 ++inslh 0x000000000000007F 0x000000000000000F = 0x7F00000000000000 ++inslh 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x7F00000000000000 ++inslh 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x007F000000000000 ++inslh 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00007F0000000000 ++inslh 0x000000000000007F 0x000000000000007F = 0x7F00000000000000 ++inslh 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++inslh 0x000000000000007F 0x0000000000007FFF = 0x7F00000000000000 ++inslh 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++inslh 0x000000000000007F 0x000000007FFFFFFF = 0x7F00000000000000 ++inslh 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++inslh 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++inslh 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++inslh 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++inslh 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++inslh 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7F00000000000000 ++inslh 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++inslh 0x000000000000007F 0xF0DEBC9A78563412 = 0x00000000007F0000 ++inslh 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++inslh 0x0000000000000080 0x0000000000000001 = 0x0000000000008000 ++inslh 0x0000000000000080 0x0000000000000002 = 0x0000000000800000 ++inslh 0x0000000000000080 0x0000000000000003 = 0x0000000080000000 ++inslh 0x0000000000000080 0x000000000000000F = 0x8000000000000000 ++inslh 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++inslh 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0080000000000000 ++inslh 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000800000000000 ++inslh 0x0000000000000080 0x000000000000007F = 0x8000000000000000 ++inslh 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++inslh 0x0000000000000080 0x0000000000007FFF = 0x8000000000000000 ++inslh 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++inslh 0x0000000000000080 0x000000007FFFFFFF = 0x8000000000000000 ++inslh 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++inslh 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++inslh 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++inslh 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++inslh 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++inslh 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++inslh 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++inslh 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000800000 ++inslh 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++inslh 0x0000000000007FFF 0x0000000000000001 = 0x00000000007FFF00 ++inslh 0x0000000000007FFF 0x0000000000000002 = 0x000000007FFF0000 ++inslh 0x0000000000007FFF 0x0000000000000003 = 0x0000007FFF000000 ++inslh 0x0000000000007FFF 0x000000000000000F = 0xFF00000000000000 ++inslh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x7FFF000000000000 ++inslh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x007FFF0000000000 ++inslh 0x0000000000007FFF 0x000000000000007F = 0xFF00000000000000 ++inslh 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++inslh 0x0000000000007FFF 0x0000000000007FFF = 0xFF00000000000000 ++inslh 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++inslh 0x0000000000007FFF 0x000000007FFFFFFF = 0xFF00000000000000 ++inslh 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++inslh 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++inslh 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++inslh 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++inslh 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++inslh 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslh 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++inslh 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000007FFF0000 ++inslh 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++inslh 0x0000000000008000 0x0000000000000001 = 0x0000000000800000 ++inslh 0x0000000000008000 0x0000000000000002 = 0x0000000080000000 ++inslh 0x0000000000008000 0x0000000000000003 = 0x0000008000000000 ++inslh 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++inslh 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslh 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++inslh 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0080000000000000 ++inslh 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++inslh 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++inslh 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++inslh 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++inslh 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++inslh 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++inslh 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++inslh 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++inslh 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++inslh 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++inslh 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslh 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++inslh 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000080000000 ++inslh 0x000000007FFFFFFF 0x0000000000000000 = 0x000000000000FFFF ++inslh 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000FFFF00 ++inslh 0x000000007FFFFFFF 0x0000000000000002 = 0x00000000FFFF0000 ++inslh 0x000000007FFFFFFF 0x0000000000000003 = 0x000000FFFF000000 ++inslh 0x000000007FFFFFFF 0x000000000000000F = 0xFF00000000000000 ++inslh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++inslh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00FFFF0000000000 ++inslh 0x000000007FFFFFFF 0x000000000000007F = 0xFF00000000000000 ++inslh 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000FFFF ++inslh 0x000000007FFFFFFF 0x0000000000007FFF = 0xFF00000000000000 ++inslh 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000FFFF ++inslh 0x000000007FFFFFFF 0x000000007FFFFFFF = 0xFF00000000000000 ++inslh 0x000000007FFFFFFF 0x0000000080000000 = 0x000000000000FFFF ++inslh 0x000000007FFFFFFF 0x8000000000000000 = 0x000000000000FFFF ++inslh 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000000000FFFF ++inslh 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++inslh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++inslh 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslh 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000000000FFFF ++inslh 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00000000FFFF0000 ++inslh 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++inslh 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++inslh 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++inslh 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++inslh 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++inslh 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslh 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inslh 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inslh 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++inslh 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++inslh 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++inslh 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++inslh 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++inslh 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++inslh 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++inslh 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslh 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslh 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inslh 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslh 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inslh 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inslh 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++inslh 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++inslh 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++inslh 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++inslh 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++inslh 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslh 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inslh 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inslh 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++inslh 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++inslh 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++inslh 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++inslh 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++inslh 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++inslh 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++inslh 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslh 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslh 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inslh 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslh 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inslh 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inslh 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inslh 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000008000 ++inslh 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000800000 ++inslh 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000080000000 ++inslh 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000008000000000 ++inslh 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++inslh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++inslh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0080000000000000 ++inslh 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++inslh 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000008000 ++inslh 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++inslh 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++inslh 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++inslh 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000008000 ++inslh 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000008000 ++inslh 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000008000 ++inslh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++inslh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++inslh 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslh 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000008000 ++inslh 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000080000000 ++inslh 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x000000000000FF80 ++inslh 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000FF8000 ++inslh 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x00000000FF800000 ++inslh 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000FF80000000 ++inslh 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x8000000000000000 ++inslh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++inslh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFF80000000000000 ++inslh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x00FF800000000000 ++inslh 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x8000000000000000 ++inslh 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000000000FF80 ++inslh 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x8000000000000000 ++inslh 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000000000FF80 ++inslh 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x8000000000000000 ++inslh 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000000000FF80 ++inslh 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x000000000000FF80 ++inslh 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000000000FF80 ++inslh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x000000000000FF80 ++inslh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x000000000000FF80 ++inslh 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++inslh 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000000000FF80 ++inslh 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x00000000FF800000 ++inslh 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000FFFF ++inslh 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000FFFF00 ++inslh 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000FFFF0000 ++inslh 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000FFFF000000 ++inslh 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFF00000000000000 ++inslh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++inslh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00FFFF0000000000 ++inslh 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFF00000000000000 ++inslh 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000FFFF ++inslh 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFF00000000000000 ++inslh 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000FFFF ++inslh 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFF00000000000000 ++inslh 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000FFFF ++inslh 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000FFFF ++inslh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000FFFF ++inslh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++inslh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++inslh 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslh 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000FFFF ++inslh 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000FFFF0000 ++inslh 0x123456789ABCDEF0 0x0000000000000000 = 0x000000000000DEF0 ++inslh 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000DEF000 ++inslh 0x123456789ABCDEF0 0x0000000000000002 = 0x00000000DEF00000 ++inslh 0x123456789ABCDEF0 0x0000000000000003 = 0x000000DEF0000000 ++inslh 0x123456789ABCDEF0 0x000000000000000F = 0xF000000000000000 ++inslh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xF000000000000000 ++inslh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xDEF0000000000000 ++inslh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x00DEF00000000000 ++inslh 0x123456789ABCDEF0 0x000000000000007F = 0xF000000000000000 ++inslh 0x123456789ABCDEF0 0x0000000000000080 = 0x000000000000DEF0 ++inslh 0x123456789ABCDEF0 0x0000000000007FFF = 0xF000000000000000 ++inslh 0x123456789ABCDEF0 0x0000000000008000 = 0x000000000000DEF0 ++inslh 0x123456789ABCDEF0 0x000000007FFFFFFF = 0xF000000000000000 ++inslh 0x123456789ABCDEF0 0x0000000080000000 = 0x000000000000DEF0 ++inslh 0x123456789ABCDEF0 0x8000000000000000 = 0x000000000000DEF0 ++inslh 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000000000DEF0 ++inslh 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000000000DEF0 ++inslh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000000000DEF0 ++inslh 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0xF000000000000000 ++inslh 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000000000DEF0 ++inslh 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x00000000DEF00000 ++inslh 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000003412 ++inslh 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000341200 ++inslh 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000034120000 ++inslh 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000003412000000 ++inslh 0xF0DEBC9A78563412 0x000000000000000F = 0x1200000000000000 ++inslh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x1200000000000000 ++inslh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x3412000000000000 ++inslh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0034120000000000 ++inslh 0xF0DEBC9A78563412 0x000000000000007F = 0x1200000000000000 ++inslh 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000003412 ++inslh 0xF0DEBC9A78563412 0x0000000000007FFF = 0x1200000000000000 ++inslh 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000003412 ++inslh 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x1200000000000000 ++inslh 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000003412 ++inslh 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000003412 ++inslh 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000003412 ++inslh 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000003412 ++inslh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000003412 ++inslh 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x1200000000000000 ++inslh 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000003412 ++inslh 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000034120000 ++=== Running test on inslw === ++inslw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++inslw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++inslw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++inslw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++inslw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++inslw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inslw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inslw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++inslw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++inslw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++inslw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++inslw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++inslw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++inslw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++inslw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inslw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inslw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inslw 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++inslw 0x0000000000000001 0x0000000000000001 = 0x0000000000000100 ++inslw 0x0000000000000001 0x0000000000000002 = 0x0000000000010000 ++inslw 0x0000000000000001 0x0000000000000003 = 0x0000000001000000 ++inslw 0x0000000000000001 0x000000000000000F = 0x0100000000000000 ++inslw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0100000000000000 ++inslw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0001000000000000 ++inslw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000010000000000 ++inslw 0x0000000000000001 0x000000000000007F = 0x0100000000000000 ++inslw 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++inslw 0x0000000000000001 0x0000000000007FFF = 0x0100000000000000 ++inslw 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++inslw 0x0000000000000001 0x000000007FFFFFFF = 0x0100000000000000 ++inslw 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++inslw 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++inslw 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++inslw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++inslw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++inslw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0100000000000000 ++inslw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++inslw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000010000 ++inslw 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++inslw 0x0000000000000002 0x0000000000000001 = 0x0000000000000200 ++inslw 0x0000000000000002 0x0000000000000002 = 0x0000000000020000 ++inslw 0x0000000000000002 0x0000000000000003 = 0x0000000002000000 ++inslw 0x0000000000000002 0x000000000000000F = 0x0200000000000000 ++inslw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0200000000000000 ++inslw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0002000000000000 ++inslw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000020000000000 ++inslw 0x0000000000000002 0x000000000000007F = 0x0200000000000000 ++inslw 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++inslw 0x0000000000000002 0x0000000000007FFF = 0x0200000000000000 ++inslw 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++inslw 0x0000000000000002 0x000000007FFFFFFF = 0x0200000000000000 ++inslw 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++inslw 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++inslw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++inslw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++inslw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++inslw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0200000000000000 ++inslw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++inslw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000020000 ++inslw 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++inslw 0x0000000000000003 0x0000000000000001 = 0x0000000000000300 ++inslw 0x0000000000000003 0x0000000000000002 = 0x0000000000030000 ++inslw 0x0000000000000003 0x0000000000000003 = 0x0000000003000000 ++inslw 0x0000000000000003 0x000000000000000F = 0x0300000000000000 ++inslw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0300000000000000 ++inslw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0003000000000000 ++inslw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000030000000000 ++inslw 0x0000000000000003 0x000000000000007F = 0x0300000000000000 ++inslw 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++inslw 0x0000000000000003 0x0000000000007FFF = 0x0300000000000000 ++inslw 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++inslw 0x0000000000000003 0x000000007FFFFFFF = 0x0300000000000000 ++inslw 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++inslw 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++inslw 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++inslw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++inslw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++inslw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0300000000000000 ++inslw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++inslw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000030000 ++inslw 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++inslw 0x000000000000000F 0x0000000000000001 = 0x0000000000000F00 ++inslw 0x000000000000000F 0x0000000000000002 = 0x00000000000F0000 ++inslw 0x000000000000000F 0x0000000000000003 = 0x000000000F000000 ++inslw 0x000000000000000F 0x000000000000000F = 0x0F00000000000000 ++inslw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0F00000000000000 ++inslw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000F000000000000 ++inslw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x00000F0000000000 ++inslw 0x000000000000000F 0x000000000000007F = 0x0F00000000000000 ++inslw 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++inslw 0x000000000000000F 0x0000000000007FFF = 0x0F00000000000000 ++inslw 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++inslw 0x000000000000000F 0x000000007FFFFFFF = 0x0F00000000000000 ++inslw 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++inslw 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++inslw 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++inslw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++inslw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++inslw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0F00000000000000 ++inslw 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++inslw 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000000F0000 ++inslw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000FFFFFFFF ++inslw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000FFFFFFFF00 ++inslw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000FFFFFFFF0000 ++inslw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00FFFFFFFF000000 ++inslw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFF00000000000000 ++inslw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++inslw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFF0000000000 ++inslw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFF00000000000000 ++inslw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000FFFFFFFF ++inslw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFF00000000000000 ++inslw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000FFFFFFFF ++inslw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFF00000000000000 ++inslw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000FFFFFFFF ++inslw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000FFFFFFFF ++inslw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000FFFFFFFF ++inslw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFFFF ++inslw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFF ++inslw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000FFFFFFFF ++inslw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000FFFFFFFF0000 ++inslw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x00000000FFFFFFFE ++inslw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000FFFFFFFE00 ++inslw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000FFFFFFFE0000 ++inslw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x00FFFFFFFE000000 ++inslw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFE00000000000000 ++inslw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFE00000000000000 ++inslw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFE000000000000 ++inslw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFE0000000000 ++inslw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFE00000000000000 ++inslw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000FFFFFFFE ++inslw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFE00000000000000 ++inslw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x00000000FFFFFFFE ++inslw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFE00000000000000 ++inslw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000000FFFFFFFE ++inslw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x00000000FFFFFFFE ++inslw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000FFFFFFFE ++inslw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFFFE ++inslw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFE ++inslw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFE00000000000000 ++inslw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000FFFFFFFE ++inslw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000FFFFFFFE0000 ++inslw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x00000000FFFFFFFD ++inslw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x000000FFFFFFFD00 ++inslw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000FFFFFFFD0000 ++inslw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x00FFFFFFFD000000 ++inslw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFD00000000000000 ++inslw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFD00000000000000 ++inslw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFD000000000000 ++inslw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFD0000000000 ++inslw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFD00000000000000 ++inslw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000FFFFFFFD ++inslw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFD00000000000000 ++inslw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x00000000FFFFFFFD ++inslw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFD00000000000000 ++inslw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000000FFFFFFFD ++inslw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x00000000FFFFFFFD ++inslw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x00000000FFFFFFFD ++inslw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFFFD ++inslw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFD ++inslw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFD00000000000000 ++inslw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000FFFFFFFD ++inslw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000FFFFFFFD0000 ++inslw 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++inslw 0x000000000000007F 0x0000000000000001 = 0x0000000000007F00 ++inslw 0x000000000000007F 0x0000000000000002 = 0x00000000007F0000 ++inslw 0x000000000000007F 0x0000000000000003 = 0x000000007F000000 ++inslw 0x000000000000007F 0x000000000000000F = 0x7F00000000000000 ++inslw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x7F00000000000000 ++inslw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x007F000000000000 ++inslw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00007F0000000000 ++inslw 0x000000000000007F 0x000000000000007F = 0x7F00000000000000 ++inslw 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++inslw 0x000000000000007F 0x0000000000007FFF = 0x7F00000000000000 ++inslw 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++inslw 0x000000000000007F 0x000000007FFFFFFF = 0x7F00000000000000 ++inslw 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++inslw 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++inslw 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++inslw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++inslw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++inslw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7F00000000000000 ++inslw 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++inslw 0x000000000000007F 0xF0DEBC9A78563412 = 0x00000000007F0000 ++inslw 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++inslw 0x0000000000000080 0x0000000000000001 = 0x0000000000008000 ++inslw 0x0000000000000080 0x0000000000000002 = 0x0000000000800000 ++inslw 0x0000000000000080 0x0000000000000003 = 0x0000000080000000 ++inslw 0x0000000000000080 0x000000000000000F = 0x8000000000000000 ++inslw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++inslw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0080000000000000 ++inslw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000800000000000 ++inslw 0x0000000000000080 0x000000000000007F = 0x8000000000000000 ++inslw 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++inslw 0x0000000000000080 0x0000000000007FFF = 0x8000000000000000 ++inslw 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++inslw 0x0000000000000080 0x000000007FFFFFFF = 0x8000000000000000 ++inslw 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++inslw 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++inslw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++inslw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++inslw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++inslw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++inslw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++inslw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000800000 ++inslw 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++inslw 0x0000000000007FFF 0x0000000000000001 = 0x00000000007FFF00 ++inslw 0x0000000000007FFF 0x0000000000000002 = 0x000000007FFF0000 ++inslw 0x0000000000007FFF 0x0000000000000003 = 0x0000007FFF000000 ++inslw 0x0000000000007FFF 0x000000000000000F = 0xFF00000000000000 ++inslw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x7FFF000000000000 ++inslw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x007FFF0000000000 ++inslw 0x0000000000007FFF 0x000000000000007F = 0xFF00000000000000 ++inslw 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++inslw 0x0000000000007FFF 0x0000000000007FFF = 0xFF00000000000000 ++inslw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++inslw 0x0000000000007FFF 0x000000007FFFFFFF = 0xFF00000000000000 ++inslw 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++inslw 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++inslw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++inslw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++inslw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++inslw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++inslw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000007FFF0000 ++inslw 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++inslw 0x0000000000008000 0x0000000000000001 = 0x0000000000800000 ++inslw 0x0000000000008000 0x0000000000000002 = 0x0000000080000000 ++inslw 0x0000000000008000 0x0000000000000003 = 0x0000008000000000 ++inslw 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++inslw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++inslw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0080000000000000 ++inslw 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++inslw 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++inslw 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++inslw 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++inslw 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++inslw 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++inslw 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++inslw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++inslw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++inslw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++inslw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslw 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++inslw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000080000000 ++inslw 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++inslw 0x000000007FFFFFFF 0x0000000000000001 = 0x0000007FFFFFFF00 ++inslw 0x000000007FFFFFFF 0x0000000000000002 = 0x00007FFFFFFF0000 ++inslw 0x000000007FFFFFFF 0x0000000000000003 = 0x007FFFFFFF000000 ++inslw 0x000000007FFFFFFF 0x000000000000000F = 0xFF00000000000000 ++inslw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++inslw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFF0000000000 ++inslw 0x000000007FFFFFFF 0x000000000000007F = 0xFF00000000000000 ++inslw 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++inslw 0x000000007FFFFFFF 0x0000000000007FFF = 0xFF00000000000000 ++inslw 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++inslw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0xFF00000000000000 ++inslw 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++inslw 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++inslw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++inslw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++inslw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++inslw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++inslw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00007FFFFFFF0000 ++inslw 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++inslw 0x0000000080000000 0x0000000000000001 = 0x0000008000000000 ++inslw 0x0000000080000000 0x0000000000000002 = 0x0000800000000000 ++inslw 0x0000000080000000 0x0000000000000003 = 0x0080000000000000 ++inslw 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++inslw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inslw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inslw 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++inslw 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++inslw 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++inslw 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++inslw 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++inslw 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++inslw 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++inslw 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++inslw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++inslw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++inslw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++inslw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000800000000000 ++inslw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++inslw 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++inslw 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++inslw 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++inslw 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++inslw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inslw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inslw 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++inslw 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++inslw 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++inslw 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++inslw 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++inslw 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++inslw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++inslw 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inslw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inslw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inslw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inslw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inslw 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000080000000 ++inslw 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000008000000000 ++inslw 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000800000000000 ++inslw 0xFFFFFFFF80000000 0x0000000000000003 = 0x0080000000000000 ++inslw 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++inslw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inslw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inslw 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++inslw 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000080000000 ++inslw 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++inslw 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000080000000 ++inslw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++inslw 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++inslw 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000080000000 ++inslw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++inslw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++inslw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++inslw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000080000000 ++inslw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000800000000000 ++inslw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x00000000FFFF8000 ++inslw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x000000FFFF800000 ++inslw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000FFFF80000000 ++inslw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x00FFFF8000000000 ++inslw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++inslw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inslw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++inslw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFF80000000000000 ++inslw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++inslw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00000000FFFF8000 ++inslw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++inslw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x00000000FFFF8000 ++inslw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++inslw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x00000000FFFF8000 ++inslw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x00000000FFFF8000 ++inslw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x00000000FFFF8000 ++inslw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x00000000FFFF8000 ++inslw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00000000FFFF8000 ++inslw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inslw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000FFFF8000 ++inslw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000FFFF80000000 ++inslw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x00000000FFFFFF80 ++inslw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000FFFFFF8000 ++inslw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000FFFFFF800000 ++inslw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x00FFFFFF80000000 ++inslw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x8000000000000000 ++inslw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++inslw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFF80000000000000 ++inslw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFF800000000000 ++inslw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x8000000000000000 ++inslw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x00000000FFFFFF80 ++inslw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x8000000000000000 ++inslw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x00000000FFFFFF80 ++inslw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x8000000000000000 ++inslw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x00000000FFFFFF80 ++inslw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x00000000FFFFFF80 ++inslw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x00000000FFFFFF80 ++inslw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFF80 ++inslw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFF80 ++inslw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++inslw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x00000000FFFFFF80 ++inslw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000FFFFFF800000 ++inslw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000FFFFFFFF ++inslw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000FFFFFFFF00 ++inslw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000FFFFFFFF0000 ++inslw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00FFFFFFFF000000 ++inslw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFF00000000000000 ++inslw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++inslw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFF0000000000 ++inslw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFF00000000000000 ++inslw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000FFFFFFFF ++inslw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFF00000000000000 ++inslw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000FFFFFFFF ++inslw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFF00000000000000 ++inslw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000FFFFFFFF ++inslw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000FFFFFFFF ++inslw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000FFFFFFFF ++inslw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFFFF ++inslw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFF ++inslw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++inslw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000FFFFFFFF ++inslw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000FFFFFFFF0000 ++inslw 0x123456789ABCDEF0 0x0000000000000000 = 0x000000009ABCDEF0 ++inslw 0x123456789ABCDEF0 0x0000000000000001 = 0x0000009ABCDEF000 ++inslw 0x123456789ABCDEF0 0x0000000000000002 = 0x00009ABCDEF00000 ++inslw 0x123456789ABCDEF0 0x0000000000000003 = 0x009ABCDEF0000000 ++inslw 0x123456789ABCDEF0 0x000000000000000F = 0xF000000000000000 ++inslw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xF000000000000000 ++inslw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xDEF0000000000000 ++inslw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xBCDEF00000000000 ++inslw 0x123456789ABCDEF0 0x000000000000007F = 0xF000000000000000 ++inslw 0x123456789ABCDEF0 0x0000000000000080 = 0x000000009ABCDEF0 ++inslw 0x123456789ABCDEF0 0x0000000000007FFF = 0xF000000000000000 ++inslw 0x123456789ABCDEF0 0x0000000000008000 = 0x000000009ABCDEF0 ++inslw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0xF000000000000000 ++inslw 0x123456789ABCDEF0 0x0000000080000000 = 0x000000009ABCDEF0 ++inslw 0x123456789ABCDEF0 0x8000000000000000 = 0x000000009ABCDEF0 ++inslw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000009ABCDEF0 ++inslw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000009ABCDEF0 ++inslw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000009ABCDEF0 ++inslw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0xF000000000000000 ++inslw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000009ABCDEF0 ++inslw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x00009ABCDEF00000 ++inslw 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000078563412 ++inslw 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000007856341200 ++inslw 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000785634120000 ++inslw 0xF0DEBC9A78563412 0x0000000000000003 = 0x0078563412000000 ++inslw 0xF0DEBC9A78563412 0x000000000000000F = 0x1200000000000000 ++inslw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x1200000000000000 ++inslw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x3412000000000000 ++inslw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x5634120000000000 ++inslw 0xF0DEBC9A78563412 0x000000000000007F = 0x1200000000000000 ++inslw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000078563412 ++inslw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x1200000000000000 ++inslw 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000078563412 ++inslw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x1200000000000000 ++inslw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000078563412 ++inslw 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000078563412 ++inslw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000078563412 ++inslw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000078563412 ++inslw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000078563412 ++inslw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x1200000000000000 ++inslw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000078563412 ++inslw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000785634120000 ++=== Running test on insll === ++insll 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++insll 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++insll 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++insll 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++insll 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++insll 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++insll 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++insll 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++insll 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++insll 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++insll 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++insll 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++insll 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++insll 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++insll 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++insll 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++insll 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++insll 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++insll 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++insll 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++insll 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++insll 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++insll 0x0000000000000001 0x0000000000000001 = 0x0000000000000100 ++insll 0x0000000000000001 0x0000000000000002 = 0x0000000000010000 ++insll 0x0000000000000001 0x0000000000000003 = 0x0000000001000000 ++insll 0x0000000000000001 0x000000000000000F = 0x0100000000000000 ++insll 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0100000000000000 ++insll 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0001000000000000 ++insll 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000010000000000 ++insll 0x0000000000000001 0x000000000000007F = 0x0100000000000000 ++insll 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++insll 0x0000000000000001 0x0000000000007FFF = 0x0100000000000000 ++insll 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++insll 0x0000000000000001 0x000000007FFFFFFF = 0x0100000000000000 ++insll 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++insll 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++insll 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++insll 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++insll 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++insll 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0100000000000000 ++insll 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++insll 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000010000 ++insll 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++insll 0x0000000000000002 0x0000000000000001 = 0x0000000000000200 ++insll 0x0000000000000002 0x0000000000000002 = 0x0000000000020000 ++insll 0x0000000000000002 0x0000000000000003 = 0x0000000002000000 ++insll 0x0000000000000002 0x000000000000000F = 0x0200000000000000 ++insll 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0200000000000000 ++insll 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0002000000000000 ++insll 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000020000000000 ++insll 0x0000000000000002 0x000000000000007F = 0x0200000000000000 ++insll 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++insll 0x0000000000000002 0x0000000000007FFF = 0x0200000000000000 ++insll 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++insll 0x0000000000000002 0x000000007FFFFFFF = 0x0200000000000000 ++insll 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++insll 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++insll 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++insll 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++insll 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++insll 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0200000000000000 ++insll 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++insll 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000020000 ++insll 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++insll 0x0000000000000003 0x0000000000000001 = 0x0000000000000300 ++insll 0x0000000000000003 0x0000000000000002 = 0x0000000000030000 ++insll 0x0000000000000003 0x0000000000000003 = 0x0000000003000000 ++insll 0x0000000000000003 0x000000000000000F = 0x0300000000000000 ++insll 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0300000000000000 ++insll 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0003000000000000 ++insll 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000030000000000 ++insll 0x0000000000000003 0x000000000000007F = 0x0300000000000000 ++insll 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++insll 0x0000000000000003 0x0000000000007FFF = 0x0300000000000000 ++insll 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++insll 0x0000000000000003 0x000000007FFFFFFF = 0x0300000000000000 ++insll 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++insll 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++insll 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++insll 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++insll 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++insll 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0300000000000000 ++insll 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++insll 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000030000 ++insll 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++insll 0x000000000000000F 0x0000000000000001 = 0x0000000000000F00 ++insll 0x000000000000000F 0x0000000000000002 = 0x00000000000F0000 ++insll 0x000000000000000F 0x0000000000000003 = 0x000000000F000000 ++insll 0x000000000000000F 0x000000000000000F = 0x0F00000000000000 ++insll 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0F00000000000000 ++insll 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000F000000000000 ++insll 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x00000F0000000000 ++insll 0x000000000000000F 0x000000000000007F = 0x0F00000000000000 ++insll 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++insll 0x000000000000000F 0x0000000000007FFF = 0x0F00000000000000 ++insll 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++insll 0x000000000000000F 0x000000007FFFFFFF = 0x0F00000000000000 ++insll 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++insll 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++insll 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++insll 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++insll 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++insll 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0F00000000000000 ++insll 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++insll 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000000F0000 ++insll 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++insll 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFF00 ++insll 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFF0000 ++insll 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFF000000 ++insll 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFF00000000000000 ++insll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++insll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++insll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFF0000000000 ++insll 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFF00000000000000 ++insll 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++insll 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFF00000000000000 ++insll 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++insll 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFF00000000000000 ++insll 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++insll 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++insll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++insll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++insll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++insll 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++insll 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++insll 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF0000 ++insll 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++insll 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFE00 ++insll 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFE0000 ++insll 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFE000000 ++insll 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFE00000000000000 ++insll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFE00000000000000 ++insll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFE000000000000 ++insll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFE0000000000 ++insll 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFE00000000000000 ++insll 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++insll 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFE00000000000000 ++insll 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++insll 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFE00000000000000 ++insll 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++insll 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++insll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++insll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++insll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++insll 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFE00000000000000 ++insll 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++insll 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFE0000 ++insll 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++insll 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFD00 ++insll 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFD0000 ++insll 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFD000000 ++insll 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFD00000000000000 ++insll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFD00000000000000 ++insll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFD000000000000 ++insll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFD0000000000 ++insll 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFD00000000000000 ++insll 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++insll 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFD00000000000000 ++insll 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++insll 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFD00000000000000 ++insll 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++insll 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++insll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++insll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++insll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++insll 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFD00000000000000 ++insll 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++insll 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFD0000 ++insll 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++insll 0x000000000000007F 0x0000000000000001 = 0x0000000000007F00 ++insll 0x000000000000007F 0x0000000000000002 = 0x00000000007F0000 ++insll 0x000000000000007F 0x0000000000000003 = 0x000000007F000000 ++insll 0x000000000000007F 0x000000000000000F = 0x7F00000000000000 ++insll 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x7F00000000000000 ++insll 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x007F000000000000 ++insll 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x00007F0000000000 ++insll 0x000000000000007F 0x000000000000007F = 0x7F00000000000000 ++insll 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++insll 0x000000000000007F 0x0000000000007FFF = 0x7F00000000000000 ++insll 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++insll 0x000000000000007F 0x000000007FFFFFFF = 0x7F00000000000000 ++insll 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++insll 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++insll 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++insll 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++insll 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++insll 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7F00000000000000 ++insll 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++insll 0x000000000000007F 0xF0DEBC9A78563412 = 0x00000000007F0000 ++insll 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++insll 0x0000000000000080 0x0000000000000001 = 0x0000000000008000 ++insll 0x0000000000000080 0x0000000000000002 = 0x0000000000800000 ++insll 0x0000000000000080 0x0000000000000003 = 0x0000000080000000 ++insll 0x0000000000000080 0x000000000000000F = 0x8000000000000000 ++insll 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++insll 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0080000000000000 ++insll 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000800000000000 ++insll 0x0000000000000080 0x000000000000007F = 0x8000000000000000 ++insll 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++insll 0x0000000000000080 0x0000000000007FFF = 0x8000000000000000 ++insll 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++insll 0x0000000000000080 0x000000007FFFFFFF = 0x8000000000000000 ++insll 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++insll 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++insll 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++insll 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++insll 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++insll 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++insll 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++insll 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000800000 ++insll 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++insll 0x0000000000007FFF 0x0000000000000001 = 0x00000000007FFF00 ++insll 0x0000000000007FFF 0x0000000000000002 = 0x000000007FFF0000 ++insll 0x0000000000007FFF 0x0000000000000003 = 0x0000007FFF000000 ++insll 0x0000000000007FFF 0x000000000000000F = 0xFF00000000000000 ++insll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++insll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x7FFF000000000000 ++insll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x007FFF0000000000 ++insll 0x0000000000007FFF 0x000000000000007F = 0xFF00000000000000 ++insll 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++insll 0x0000000000007FFF 0x0000000000007FFF = 0xFF00000000000000 ++insll 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++insll 0x0000000000007FFF 0x000000007FFFFFFF = 0xFF00000000000000 ++insll 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++insll 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++insll 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++insll 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++insll 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++insll 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++insll 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++insll 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x000000007FFF0000 ++insll 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++insll 0x0000000000008000 0x0000000000000001 = 0x0000000000800000 ++insll 0x0000000000008000 0x0000000000000002 = 0x0000000080000000 ++insll 0x0000000000008000 0x0000000000000003 = 0x0000008000000000 ++insll 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++insll 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++insll 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++insll 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0080000000000000 ++insll 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++insll 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++insll 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++insll 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++insll 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++insll 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++insll 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++insll 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++insll 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++insll 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++insll 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++insll 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++insll 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000080000000 ++insll 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++insll 0x000000007FFFFFFF 0x0000000000000001 = 0x0000007FFFFFFF00 ++insll 0x000000007FFFFFFF 0x0000000000000002 = 0x00007FFFFFFF0000 ++insll 0x000000007FFFFFFF 0x0000000000000003 = 0x007FFFFFFF000000 ++insll 0x000000007FFFFFFF 0x000000000000000F = 0xFF00000000000000 ++insll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++insll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++insll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFF0000000000 ++insll 0x000000007FFFFFFF 0x000000000000007F = 0xFF00000000000000 ++insll 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++insll 0x000000007FFFFFFF 0x0000000000007FFF = 0xFF00000000000000 ++insll 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++insll 0x000000007FFFFFFF 0x000000007FFFFFFF = 0xFF00000000000000 ++insll 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++insll 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++insll 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++insll 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++insll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++insll 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++insll 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++insll 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00007FFFFFFF0000 ++insll 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++insll 0x0000000080000000 0x0000000000000001 = 0x0000008000000000 ++insll 0x0000000080000000 0x0000000000000002 = 0x0000800000000000 ++insll 0x0000000080000000 0x0000000000000003 = 0x0080000000000000 ++insll 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++insll 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++insll 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++insll 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++insll 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++insll 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++insll 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++insll 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++insll 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++insll 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++insll 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++insll 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++insll 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++insll 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++insll 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++insll 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++insll 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000800000000000 ++insll 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++insll 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++insll 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++insll 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++insll 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++insll 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++insll 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++insll 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++insll 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++insll 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++insll 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++insll 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++insll 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++insll 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++insll 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++insll 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++insll 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++insll 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++insll 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++insll 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++insll 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++insll 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++insll 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFF8000000000 ++insll 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFF800000000000 ++insll 0xFFFFFFFF80000000 0x0000000000000003 = 0xFF80000000000000 ++insll 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++insll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++insll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++insll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++insll 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++insll 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++insll 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++insll 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++insll 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++insll 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++insll 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++insll 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++insll 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++insll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++insll 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++insll 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++insll 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFF800000000000 ++insll 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++insll 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFF800000 ++insll 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFF80000000 ++insll 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFF8000000000 ++insll 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++insll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++insll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++insll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFF80000000000000 ++insll 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++insll 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++insll 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++insll 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++insll 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++insll 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++insll 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++insll 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++insll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++insll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++insll 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++insll 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++insll 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++insll 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++insll 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++insll 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFF800000 ++insll 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFF80000000 ++insll 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x8000000000000000 ++insll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++insll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFF80000000000000 ++insll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFF800000000000 ++insll 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x8000000000000000 ++insll 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++insll 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x8000000000000000 ++insll 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++insll 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x8000000000000000 ++insll 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++insll 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++insll 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++insll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++insll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++insll 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++insll 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF80 ++insll 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFF800000 ++insll 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++insll 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFF00 ++insll 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFF0000 ++insll 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFF000000 ++insll 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFF00000000000000 ++insll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++insll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++insll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFF0000000000 ++insll 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFF00000000000000 ++insll 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++insll 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFF00000000000000 ++insll 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++insll 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFF00000000000000 ++insll 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++insll 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++insll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++insll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++insll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++insll 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++insll 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFFFFFF ++insll 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF0000 ++insll 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++insll 0x123456789ABCDEF0 0x0000000000000001 = 0x3456789ABCDEF000 ++insll 0x123456789ABCDEF0 0x0000000000000002 = 0x56789ABCDEF00000 ++insll 0x123456789ABCDEF0 0x0000000000000003 = 0x789ABCDEF0000000 ++insll 0x123456789ABCDEF0 0x000000000000000F = 0xF000000000000000 ++insll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xF000000000000000 ++insll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xDEF0000000000000 ++insll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xBCDEF00000000000 ++insll 0x123456789ABCDEF0 0x000000000000007F = 0xF000000000000000 ++insll 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++insll 0x123456789ABCDEF0 0x0000000000007FFF = 0xF000000000000000 ++insll 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++insll 0x123456789ABCDEF0 0x000000007FFFFFFF = 0xF000000000000000 ++insll 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++insll 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++insll 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++insll 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++insll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++insll 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0xF000000000000000 ++insll 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++insll 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x56789ABCDEF00000 ++insll 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++insll 0xF0DEBC9A78563412 0x0000000000000001 = 0xDEBC9A7856341200 ++insll 0xF0DEBC9A78563412 0x0000000000000002 = 0xBC9A785634120000 ++insll 0xF0DEBC9A78563412 0x0000000000000003 = 0x9A78563412000000 ++insll 0xF0DEBC9A78563412 0x000000000000000F = 0x1200000000000000 ++insll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x1200000000000000 ++insll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x3412000000000000 ++insll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x5634120000000000 ++insll 0xF0DEBC9A78563412 0x000000000000007F = 0x1200000000000000 ++insll 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++insll 0xF0DEBC9A78563412 0x0000000000007FFF = 0x1200000000000000 ++insll 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++insll 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x1200000000000000 ++insll 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++insll 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++insll 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++insll 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++insll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++insll 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x1200000000000000 ++insll 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78563412 ++insll 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xBC9A785634120000 ++=== Running test on inshb === ++inshb 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++inshb 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++inshb 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++inshb 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++inshb 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++inshb 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++inshb 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++inshb 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++inshb 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++inshb 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++inshb 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++inshb 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++inshb 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++inshb 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++inshb 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++inshb 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++inshb 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++inshb 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++inshb 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++inshb 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++inshb 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++inshb 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++inshb 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++inshb 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++inshb 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++inshb 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++inshb 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++inshb 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++inshb 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++inshb 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++inshb 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++inshb 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++inshb 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++inshb 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++inshb 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++inshb 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++inshb 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++inshb 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++inshb 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++inshb 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++inshb 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++inshb 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++inshb 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++inshb 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++inshb 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++inshb 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++inshb 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++inshb 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++inshb 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++inshb 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++inshb 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++inshb 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++inshb 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++inshb 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++inshb 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++inshb 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++inshb 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++inshb 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++inshb 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++inshb 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++inshb 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++inshb 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++inshb 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++inshb 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++inshb 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++inshb 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++inshb 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++inshb 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++inshb 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++inshb 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++inshb 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++inshb 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++inshb 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++inshb 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++inshb 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++inshb 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++inshb 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++inshb 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++inshb 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++inshb 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++inshb 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++inshb 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++inshb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++inshb 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++inshb 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++inshb 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++inshb 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++inshb 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++inshb 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++inshb 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++inshb 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++inshb 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++inshb 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++inshb 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++inshb 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++inshb 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++inshb 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++inshb 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++inshb 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++inshb 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++inshb 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++inshb 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++inshb 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++inshb 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++inshb 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++inshb 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++inshb 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++inshb 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++inshb 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++inshb 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++inshb 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++inshb 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++inshb 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++inshb 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++inshb 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++inshb 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++inshb 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++inshb 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++inshb 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++inshb 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++inshb 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++inshb 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000000 ++inshb 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshh === ++inshh 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++inshh 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++inshh 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++inshh 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++inshh 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++inshh 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++inshh 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++inshh 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++inshh 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++inshh 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++inshh 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++inshh 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++inshh 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++inshh 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++inshh 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++inshh 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++inshh 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++inshh 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++inshh 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++inshh 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++inshh 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++inshh 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++inshh 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++inshh 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++inshh 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++inshh 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++inshh 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++inshh 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++inshh 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++inshh 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++inshh 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++inshh 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++inshh 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++inshh 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++inshh 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++inshh 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++inshh 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++inshh 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++inshh 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++inshh 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++inshh 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++inshh 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++inshh 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++inshh 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++inshh 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++inshh 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++inshh 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++inshh 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++inshh 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++inshh 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++inshh 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++inshh 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++inshh 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++inshh 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++inshh 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++inshh 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++inshh 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++inshh 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++inshh 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++inshh 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++inshh 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++inshh 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++inshh 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++inshh 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++inshh 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++inshh 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++inshh 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++inshh 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++inshh 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++inshh 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++inshh 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++inshh 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++inshh 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++inshh 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++inshh 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++inshh 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++inshh 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++inshh 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++inshh 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++inshh 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++inshh 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++inshh 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++inshh 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++inshh 0x0000000000007FFF 0x000000000000000F = 0x000000000000007F ++inshh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++inshh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++inshh 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++inshh 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000007F ++inshh 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++inshh 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000000000007F ++inshh 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++inshh 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++inshh 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++inshh 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++inshh 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++inshh 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++inshh 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++inshh 0x0000000000008000 0x000000000000000F = 0x0000000000000080 ++inshh 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++inshh 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0x0000000000008000 0x000000000000007F = 0x0000000000000080 ++inshh 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++inshh 0x0000000000008000 0x0000000000007FFF = 0x0000000000000080 ++inshh 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++inshh 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000080 ++inshh 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++inshh 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++inshh 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++inshh 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0x000000000000000F = 0x00000000000000FF ++inshh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0x000000000000007F = 0x00000000000000FF ++inshh 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++inshh 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++inshh 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++inshh 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++inshh 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++inshh 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++inshh 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++inshh 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++inshh 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++inshh 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++inshh 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++inshh 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++inshh 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++inshh 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++inshh 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++inshh 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++inshh 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++inshh 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++inshh 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++inshh 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++inshh 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++inshh 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++inshh 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++inshh 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++inshh 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++inshh 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++inshh 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000080 ++inshh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++inshh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000080 ++inshh 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000080 ++inshh 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000080 ++inshh 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++inshh 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++inshh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++inshh 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++inshh 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++inshh 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++inshh 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0x000000000000000F = 0x00000000000000DE ++inshh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x00000000000000DE ++inshh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0x000000000000007F = 0x00000000000000DE ++inshh 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0x0000000000007FFF = 0x00000000000000DE ++inshh 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x00000000000000DE ++inshh 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x00000000000000DE ++inshh 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000034 ++inshh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000034 ++inshh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000034 ++inshh 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000034 ++inshh 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000034 ++inshh 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000034 ++inshh 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000000 ++inshh 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshw === ++inshw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++inshw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++inshw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++inshw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++inshw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++inshw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++inshw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++inshw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++inshw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++inshw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++inshw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++inshw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++inshw 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++inshw 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++inshw 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++inshw 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++inshw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++inshw 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++inshw 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++inshw 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++inshw 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++inshw 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++inshw 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++inshw 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++inshw 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++inshw 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++inshw 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++inshw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++inshw 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++inshw 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++inshw 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++inshw 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++inshw 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++inshw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++inshw 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++inshw 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++inshw 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++inshw 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++inshw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++inshw 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++inshw 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++inshw 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++inshw 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++inshw 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++inshw 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++inshw 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++inshw 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++inshw 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++inshw 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++inshw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++inshw 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++inshw 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++inshw 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++inshw 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++inshw 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++inshw 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++inshw 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++inshw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++inshw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++inshw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++inshw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++inshw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++inshw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++inshw 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++inshw 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++inshw 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++inshw 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++inshw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++inshw 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++inshw 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++inshw 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++inshw 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++inshw 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++inshw 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++inshw 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++inshw 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++inshw 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++inshw 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++inshw 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++inshw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++inshw 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++inshw 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++inshw 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++inshw 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++inshw 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++inshw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++inshw 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++inshw 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++inshw 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++inshw 0x0000000000007FFF 0x000000000000000F = 0x000000000000007F ++inshw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++inshw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++inshw 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++inshw 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000007F ++inshw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++inshw 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000000000007F ++inshw 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++inshw 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++inshw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++inshw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++inshw 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++inshw 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++inshw 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++inshw 0x0000000000008000 0x000000000000000F = 0x0000000000000080 ++inshw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++inshw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw 0x0000000000008000 0x000000000000007F = 0x0000000000000080 ++inshw 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++inshw 0x0000000000008000 0x0000000000007FFF = 0x0000000000000080 ++inshw 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++inshw 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000080 ++inshw 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++inshw 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++inshw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++inshw 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++inshw 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++inshw 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++inshw 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++inshw 0x000000007FFFFFFF 0x000000000000000F = 0x00000000007FFFFF ++inshw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000007FFFFF ++inshw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++inshw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++inshw 0x000000007FFFFFFF 0x000000000000007F = 0x00000000007FFFFF ++inshw 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++inshw 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000000007FFFFF ++inshw 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++inshw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x00000000007FFFFF ++inshw 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++inshw 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++inshw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000007FFFFF ++inshw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++inshw 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++inshw 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++inshw 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++inshw 0x0000000080000000 0x000000000000000F = 0x0000000000800000 ++inshw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000800000 ++inshw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++inshw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++inshw 0x0000000080000000 0x000000000000007F = 0x0000000000800000 ++inshw 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++inshw 0x0000000080000000 0x0000000000007FFF = 0x0000000000800000 ++inshw 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++inshw 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000800000 ++inshw 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++inshw 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++inshw 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000800000 ++inshw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++inshw 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++inshw 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++inshw 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++inshw 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++inshw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshw 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++inshw 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++inshw 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++inshw 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++inshw 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++inshw 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++inshw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++inshw 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++inshw 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++inshw 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++inshw 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++inshw 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000800000 ++inshw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000800000 ++inshw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++inshw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++inshw 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000800000 ++inshw 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++inshw 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000800000 ++inshw 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++inshw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000800000 ++inshw 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++inshw 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++inshw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000800000 ++inshw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000FFFF80 ++inshw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFF80 ++inshw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++inshw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++inshw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000FFFF80 ++inshw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000FFFF80 ++inshw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000FFFF80 ++inshw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFF80 ++inshw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++inshw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++inshw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++inshw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++inshw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++inshw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++inshw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000FFFFFF ++inshw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++inshw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++inshw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000FFFFFF ++inshw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++inshw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000FFFFFF ++inshw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++inshw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000FFFFFF ++inshw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++inshw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++inshw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000FFFFFF ++inshw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++inshw 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++inshw 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++inshw 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++inshw 0x123456789ABCDEF0 0x000000000000000F = 0x00000000009ABCDE ++inshw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x00000000009ABCDE ++inshw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000009ABC ++inshw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000000000009A ++inshw 0x123456789ABCDEF0 0x000000000000007F = 0x00000000009ABCDE ++inshw 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000000 ++inshw 0x123456789ABCDEF0 0x0000000000007FFF = 0x00000000009ABCDE ++inshw 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++inshw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x00000000009ABCDE ++inshw 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++inshw 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++inshw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x00000000009ABCDE ++inshw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshw 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++inshw 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++inshw 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++inshw 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++inshw 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000785634 ++inshw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000785634 ++inshw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000007856 ++inshw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000078 ++inshw 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000785634 ++inshw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000000 ++inshw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000785634 ++inshw 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000000 ++inshw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000785634 ++inshw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++inshw 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++inshw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000785634 ++inshw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000000 ++inshw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on inshl === ++inshl 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++inshl 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++inshl 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++inshl 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++inshl 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++inshl 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshl 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshl 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++inshl 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++inshl 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++inshl 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++inshl 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++inshl 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++inshl 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshl 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++inshl 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++inshl 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++inshl 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++inshl 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++inshl 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshl 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshl 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++inshl 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++inshl 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++inshl 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++inshl 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++inshl 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++inshl 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshl 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++inshl 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++inshl 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++inshl 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++inshl 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++inshl 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshl 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshl 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++inshl 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++inshl 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++inshl 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++inshl 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++inshl 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++inshl 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshl 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++inshl 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++inshl 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++inshl 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++inshl 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++inshl 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshl 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshl 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++inshl 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++inshl 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++inshl 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++inshl 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++inshl 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++inshl 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshl 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++inshl 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++inshl 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++inshl 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++inshl 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++inshl 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshl 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshl 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++inshl 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++inshl 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++inshl 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++inshl 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++inshl 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++inshl 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++inshl 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++inshl 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000FFFF ++inshl 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000FFFFFF ++inshl 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000FFFF ++inshl 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000000000FF ++inshl 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000000000FFFF ++inshl 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000FFFFFF ++inshl 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000000000FFFF ++inshl 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000000000FF ++inshl 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000000000FFFF ++inshl 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000FFFFFF ++inshl 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000000000FFFF ++inshl 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++inshl 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++inshl 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++inshl 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++inshl 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++inshl 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshl 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshl 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++inshl 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++inshl 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++inshl 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++inshl 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++inshl 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++inshl 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++inshl 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshl 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++inshl 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++inshl 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++inshl 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++inshl 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++inshl 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshl 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshl 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++inshl 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++inshl 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++inshl 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++inshl 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++inshl 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++inshl 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++inshl 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshl 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++inshl 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++inshl 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++inshl 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++inshl 0x0000000000007FFF 0x000000000000000F = 0x000000000000007F ++inshl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++inshl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshl 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++inshl 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++inshl 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000007F ++inshl 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++inshl 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000000000007F ++inshl 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++inshl 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++inshl 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++inshl 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshl 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++inshl 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++inshl 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++inshl 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++inshl 0x0000000000008000 0x000000000000000F = 0x0000000000000080 ++inshl 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++inshl 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++inshl 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++inshl 0x0000000000008000 0x000000000000007F = 0x0000000000000080 ++inshl 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++inshl 0x0000000000008000 0x0000000000007FFF = 0x0000000000000080 ++inshl 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++inshl 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000080 ++inshl 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++inshl 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++inshl 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++inshl 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshl 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++inshl 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++inshl 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++inshl 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++inshl 0x000000007FFFFFFF 0x000000000000000F = 0x00000000007FFFFF ++inshl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000007FFFFF ++inshl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++inshl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++inshl 0x000000007FFFFFFF 0x000000000000007F = 0x00000000007FFFFF ++inshl 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++inshl 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000000007FFFFF ++inshl 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++inshl 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x00000000007FFFFF ++inshl 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++inshl 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++inshl 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000007FFFFF ++inshl 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshl 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++inshl 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++inshl 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++inshl 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++inshl 0x0000000080000000 0x000000000000000F = 0x0000000000800000 ++inshl 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000800000 ++inshl 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++inshl 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++inshl 0x0000000080000000 0x000000000000007F = 0x0000000000800000 ++inshl 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++inshl 0x0000000080000000 0x0000000000007FFF = 0x0000000000800000 ++inshl 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++inshl 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000800000 ++inshl 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++inshl 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++inshl 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000800000 ++inshl 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++inshl 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++inshl 0x8000000000000000 0x0000000000000001 = 0x0000000000000080 ++inshl 0x8000000000000000 0x0000000000000002 = 0x0000000000008000 ++inshl 0x8000000000000000 0x0000000000000003 = 0x0000000000800000 ++inshl 0x8000000000000000 0x000000000000000F = 0x0080000000000000 ++inshl 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0080000000000000 ++inshl 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000800000000000 ++inshl 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000008000000000 ++inshl 0x8000000000000000 0x000000000000007F = 0x0080000000000000 ++inshl 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++inshl 0x8000000000000000 0x0000000000007FFF = 0x0080000000000000 ++inshl 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++inshl 0x8000000000000000 0x000000007FFFFFFF = 0x0080000000000000 ++inshl 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++inshl 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++inshl 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0080000000000000 ++inshl 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000008000 ++inshl 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++inshl 0xFFFFFFFF80000000 0x0000000000000001 = 0x00000000000000FF ++inshl 0xFFFFFFFF80000000 0x0000000000000002 = 0x000000000000FFFF ++inshl 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000FFFFFF ++inshl 0xFFFFFFFF80000000 0x000000000000000F = 0x00FFFFFFFF800000 ++inshl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFF800000 ++inshl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFF8000 ++inshl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFF80 ++inshl 0xFFFFFFFF80000000 0x000000000000007F = 0x00FFFFFFFF800000 ++inshl 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++inshl 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00FFFFFFFF800000 ++inshl 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++inshl 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00FFFFFFFF800000 ++inshl 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++inshl 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++inshl 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFF800000 ++inshl 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x000000000000FFFF ++inshl 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x00000000000000FF ++inshl 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x000000000000FFFF ++inshl 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000FFFFFF ++inshl 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00FFFFFFFFFFFF80 ++inshl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFF80 ++inshl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFFFF ++inshl 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00FFFFFFFFFFFF80 ++inshl 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00FFFFFFFFFFFF80 ++inshl 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00FFFFFFFFFFFF80 ++inshl 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFF80 ++inshl 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000000000FFFF ++inshl 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x00000000000000FF ++inshl 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000000000FFFF ++inshl 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000FFFFFF ++inshl 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++inshl 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000000000FFFF ++inshl 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++inshl 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000007F ++inshl 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000007FFF ++inshl 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000007FFFFF ++inshl 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x007FFFFFFFFFFFFF ++inshl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x007FFFFFFFFFFFFF ++inshl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00007FFFFFFFFFFF ++inshl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000007FFFFFFFFF ++inshl 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x007FFFFFFFFFFFFF ++inshl 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++inshl 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x007FFFFFFFFFFFFF ++inshl 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++inshl 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x007FFFFFFFFFFFFF ++inshl 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++inshl 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++inshl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x007FFFFFFFFFFFFF ++inshl 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++inshl 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++inshl 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000012 ++inshl 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000001234 ++inshl 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000123456 ++inshl 0x123456789ABCDEF0 0x000000000000000F = 0x00123456789ABCDE ++inshl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x00123456789ABCDE ++inshl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000123456789ABC ++inshl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000123456789A ++inshl 0x123456789ABCDEF0 0x000000000000007F = 0x00123456789ABCDE ++inshl 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000000 ++inshl 0x123456789ABCDEF0 0x0000000000007FFF = 0x00123456789ABCDE ++inshl 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++inshl 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x00123456789ABCDE ++inshl 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++inshl 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++inshl 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x00123456789ABCDE ++inshl 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000001234 ++inshl 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++inshl 0xF0DEBC9A78563412 0x0000000000000001 = 0x00000000000000F0 ++inshl 0xF0DEBC9A78563412 0x0000000000000002 = 0x000000000000F0DE ++inshl 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000F0DEBC ++inshl 0xF0DEBC9A78563412 0x000000000000000F = 0x00F0DEBC9A785634 ++inshl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00F0DEBC9A785634 ++inshl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000F0DEBC9A7856 ++inshl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x000000F0DEBC9A78 ++inshl 0xF0DEBC9A78563412 0x000000000000007F = 0x00F0DEBC9A785634 ++inshl 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000000 ++inshl 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00F0DEBC9A785634 ++inshl 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000000 ++inshl 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00F0DEBC9A785634 ++inshl 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++inshl 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++inshl 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++inshl 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++inshl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++inshl 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00F0DEBC9A785634 ++inshl 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000000 ++inshl 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x000000000000F0DE ++=== Running test on sll === ++sll 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sll 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++sll 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++sll 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++sll 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++sll 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sll 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sll 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++sll 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++sll 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++sll 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++sll 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++sll 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++sll 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++sll 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sll 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sll 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sll 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sll 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sll 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++sll 0x0000000000000001 0x0000000000000001 = 0x0000000000000002 ++sll 0x0000000000000001 0x0000000000000002 = 0x0000000000000004 ++sll 0x0000000000000001 0x0000000000000003 = 0x0000000000000008 ++sll 0x0000000000000001 0x000000000000000F = 0x0000000000008000 ++sll 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x4000000000000000 ++sll 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x2000000000000000 ++sll 0x0000000000000001 0x000000000000007F = 0x8000000000000000 ++sll 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++sll 0x0000000000000001 0x0000000000007FFF = 0x8000000000000000 ++sll 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++sll 0x0000000000000001 0x000000007FFFFFFF = 0x8000000000000000 ++sll 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++sll 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++sll 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++sll 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sll 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sll 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0x0000000000000001 0x123456789ABCDEF0 = 0x0001000000000000 ++sll 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000040000 ++sll 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++sll 0x0000000000000002 0x0000000000000001 = 0x0000000000000004 ++sll 0x0000000000000002 0x0000000000000002 = 0x0000000000000008 ++sll 0x0000000000000002 0x0000000000000003 = 0x0000000000000010 ++sll 0x0000000000000002 0x000000000000000F = 0x0000000000010000 ++sll 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++sll 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x4000000000000000 ++sll 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++sll 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++sll 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++sll 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++sll 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++sll 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++sll 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++sll 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++sll 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sll 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sll 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0x0000000000000002 0x123456789ABCDEF0 = 0x0002000000000000 ++sll 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000080000 ++sll 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++sll 0x0000000000000003 0x0000000000000001 = 0x0000000000000006 ++sll 0x0000000000000003 0x0000000000000002 = 0x000000000000000C ++sll 0x0000000000000003 0x0000000000000003 = 0x0000000000000018 ++sll 0x0000000000000003 0x000000000000000F = 0x0000000000018000 ++sll 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xC000000000000000 ++sll 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x6000000000000000 ++sll 0x0000000000000003 0x000000000000007F = 0x8000000000000000 ++sll 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++sll 0x0000000000000003 0x0000000000007FFF = 0x8000000000000000 ++sll 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++sll 0x0000000000000003 0x000000007FFFFFFF = 0x8000000000000000 ++sll 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++sll 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++sll 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++sll 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sll 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sll 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0x0000000000000003 0x123456789ABCDEF0 = 0x0003000000000000 ++sll 0x0000000000000003 0xF0DEBC9A78563412 = 0x00000000000C0000 ++sll 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++sll 0x000000000000000F 0x0000000000000001 = 0x000000000000001E ++sll 0x000000000000000F 0x0000000000000002 = 0x000000000000003C ++sll 0x000000000000000F 0x0000000000000003 = 0x0000000000000078 ++sll 0x000000000000000F 0x000000000000000F = 0x0000000000078000 ++sll 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xC000000000000000 ++sll 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xE000000000000000 ++sll 0x000000000000000F 0x000000000000007F = 0x8000000000000000 ++sll 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++sll 0x000000000000000F 0x0000000000007FFF = 0x8000000000000000 ++sll 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++sll 0x000000000000000F 0x000000007FFFFFFF = 0x8000000000000000 ++sll 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++sll 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++sll 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++sll 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sll 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sll 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0x000000000000000F 0x123456789ABCDEF0 = 0x000F000000000000 ++sll 0x000000000000000F 0xF0DEBC9A78563412 = 0x00000000003C0000 ++sll 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++sll 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++sll 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFC ++sll 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF8 ++sll 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFF8000 ++sll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xC000000000000000 ++sll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xE000000000000000 ++sll 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x8000000000000000 ++sll 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++sll 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x8000000000000000 ++sll 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++sll 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x8000000000000000 ++sll 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++sll 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++sll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++sll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sll 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFF000000000000 ++sll 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFC0000 ++sll 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++sll 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFC ++sll 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFF8 ++sll 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFF0 ++sll 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFF0000 ++sll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++sll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xC000000000000000 ++sll 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000000 ++sll 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++sll 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000000 ++sll 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++sll 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++sll 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++sll 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++sll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++sll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++sll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++sll 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFE000000000000 ++sll 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFF80000 ++sll 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++sll 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFA ++sll 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFF4 ++sll 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFE8 ++sll 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFE8000 ++sll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x4000000000000000 ++sll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xA000000000000000 ++sll 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x8000000000000000 ++sll 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++sll 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x8000000000000000 ++sll 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++sll 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x8000000000000000 ++sll 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++sll 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++sll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++sll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++sll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++sll 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFD000000000000 ++sll 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFF40000 ++sll 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++sll 0x000000000000007F 0x0000000000000001 = 0x00000000000000FE ++sll 0x000000000000007F 0x0000000000000002 = 0x00000000000001FC ++sll 0x000000000000007F 0x0000000000000003 = 0x00000000000003F8 ++sll 0x000000000000007F 0x000000000000000F = 0x00000000003F8000 ++sll 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xC000000000000000 ++sll 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xE000000000000000 ++sll 0x000000000000007F 0x000000000000007F = 0x8000000000000000 ++sll 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++sll 0x000000000000007F 0x0000000000007FFF = 0x8000000000000000 ++sll 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++sll 0x000000000000007F 0x000000007FFFFFFF = 0x8000000000000000 ++sll 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++sll 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++sll 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++sll 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sll 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sll 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0x000000000000007F 0x123456789ABCDEF0 = 0x007F000000000000 ++sll 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000001FC0000 ++sll 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++sll 0x0000000000000080 0x0000000000000001 = 0x0000000000000100 ++sll 0x0000000000000080 0x0000000000000002 = 0x0000000000000200 ++sll 0x0000000000000080 0x0000000000000003 = 0x0000000000000400 ++sll 0x0000000000000080 0x000000000000000F = 0x0000000000400000 ++sll 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sll 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sll 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++sll 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sll 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++sll 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++sll 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++sll 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++sll 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++sll 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++sll 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sll 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sll 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0x0000000000000080 0x123456789ABCDEF0 = 0x0080000000000000 ++sll 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000002000000 ++sll 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++sll 0x0000000000007FFF 0x0000000000000001 = 0x000000000000FFFE ++sll 0x0000000000007FFF 0x0000000000000002 = 0x000000000001FFFC ++sll 0x0000000000007FFF 0x0000000000000003 = 0x000000000003FFF8 ++sll 0x0000000000007FFF 0x000000000000000F = 0x000000003FFF8000 ++sll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xC000000000000000 ++sll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xE000000000000000 ++sll 0x0000000000007FFF 0x000000000000007F = 0x8000000000000000 ++sll 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++sll 0x0000000000007FFF 0x0000000000007FFF = 0x8000000000000000 ++sll 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++sll 0x0000000000007FFF 0x000000007FFFFFFF = 0x8000000000000000 ++sll 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++sll 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++sll 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++sll 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++sll 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++sll 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0x0000000000007FFF 0x123456789ABCDEF0 = 0x7FFF000000000000 ++sll 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x00000001FFFC0000 ++sll 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++sll 0x0000000000008000 0x0000000000000001 = 0x0000000000010000 ++sll 0x0000000000008000 0x0000000000000002 = 0x0000000000020000 ++sll 0x0000000000008000 0x0000000000000003 = 0x0000000000040000 ++sll 0x0000000000008000 0x000000000000000F = 0x0000000040000000 ++sll 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sll 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sll 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++sll 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++sll 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++sll 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sll 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++sll 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++sll 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++sll 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++sll 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++sll 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++sll 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0x0000000000008000 0x123456789ABCDEF0 = 0x8000000000000000 ++sll 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000200000000 ++sll 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++sll 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000FFFFFFFE ++sll 0x000000007FFFFFFF 0x0000000000000002 = 0x00000001FFFFFFFC ++sll 0x000000007FFFFFFF 0x0000000000000003 = 0x00000003FFFFFFF8 ++sll 0x000000007FFFFFFF 0x000000000000000F = 0x00003FFFFFFF8000 ++sll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xC000000000000000 ++sll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xE000000000000000 ++sll 0x000000007FFFFFFF 0x000000000000007F = 0x8000000000000000 ++sll 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++sll 0x000000007FFFFFFF 0x0000000000007FFF = 0x8000000000000000 ++sll 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++sll 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x8000000000000000 ++sll 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++sll 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++sll 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++sll 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++sll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++sll 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0xFFFF000000000000 ++sll 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0001FFFFFFFC0000 ++sll 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++sll 0x0000000080000000 0x0000000000000001 = 0x0000000100000000 ++sll 0x0000000080000000 0x0000000000000002 = 0x0000000200000000 ++sll 0x0000000080000000 0x0000000000000003 = 0x0000000400000000 ++sll 0x0000000080000000 0x000000000000000F = 0x0000400000000000 ++sll 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sll 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sll 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++sll 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++sll 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++sll 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++sll 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++sll 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sll 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++sll 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++sll 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++sll 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++sll 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sll 0x0000000080000000 0xF0DEBC9A78563412 = 0x0002000000000000 ++sll 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++sll 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++sll 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++sll 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++sll 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++sll 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sll 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sll 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++sll 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++sll 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++sll 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++sll 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++sll 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++sll 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++sll 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++sll 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++sll 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++sll 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sll 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sll 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++sll 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF00000000 ++sll 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFE00000000 ++sll 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFC00000000 ++sll 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFC00000000000 ++sll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sll 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++sll 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++sll 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++sll 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++sll 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++sll 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++sll 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++sll 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sll 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++sll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++sll 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sll 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFE000000000000 ++sll 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++sll 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF0000 ++sll 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFE0000 ++sll 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFC0000 ++sll 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFC0000000 ++sll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sll 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++sll 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++sll 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++sll 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++sll 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++sll 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++sll 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++sll 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++sll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++sll 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x8000000000000000 ++sll 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFE00000000 ++sll 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++sll 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF00 ++sll 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFE00 ++sll 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFC00 ++sll 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFC00000 ++sll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sll 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000000 ++sll 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++sll 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000000 ++sll 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++sll 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000000 ++sll 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++sll 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++sll 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++sll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++sll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sll 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFF80000000000000 ++sll 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFE000000 ++sll 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++sll 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++sll 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFC ++sll 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFF8 ++sll 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFF8000 ++sll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xC000000000000000 ++sll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xE000000000000000 ++sll 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x8000000000000000 ++sll 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++sll 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x8000000000000000 ++sll 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++sll 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x8000000000000000 ++sll 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++sll 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++sll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++sll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++sll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++sll 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++sll 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFF000000000000 ++sll 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFC0000 ++sll 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++sll 0x123456789ABCDEF0 0x0000000000000001 = 0x2468ACF13579BDE0 ++sll 0x123456789ABCDEF0 0x0000000000000002 = 0x48D159E26AF37BC0 ++sll 0x123456789ABCDEF0 0x0000000000000003 = 0x91A2B3C4D5E6F780 ++sll 0x123456789ABCDEF0 0x000000000000000F = 0x2B3C4D5E6F780000 ++sll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sll 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++sll 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++sll 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++sll 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++sll 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++sll 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++sll 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++sll 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++sll 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++sll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++sll 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0xDEF0000000000000 ++sll 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x59E26AF37BC00000 ++sll 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++sll 0xF0DEBC9A78563412 0x0000000000000001 = 0xE1BD7934F0AC6824 ++sll 0xF0DEBC9A78563412 0x0000000000000002 = 0xC37AF269E158D048 ++sll 0xF0DEBC9A78563412 0x0000000000000003 = 0x86F5E4D3C2B1A090 ++sll 0xF0DEBC9A78563412 0x000000000000000F = 0x5E4D3C2B1A090000 ++sll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++sll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x4000000000000000 ++sll 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000000 ++sll 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++sll 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000000 ++sll 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++sll 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++sll 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++sll 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++sll 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++sll 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++sll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++sll 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sll 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x3412000000000000 ++sll 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF269E158D0480000 ++=== Running test on srl === ++srl 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++srl 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++srl 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++srl 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++srl 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++srl 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srl 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srl 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++srl 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++srl 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++srl 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++srl 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++srl 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++srl 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++srl 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++srl 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++srl 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++srl 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++srl 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++srl 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++srl 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++srl 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++srl 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++srl 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++srl 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srl 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srl 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++srl 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++srl 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++srl 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++srl 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++srl 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++srl 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++srl 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++srl 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++srl 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++srl 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++srl 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++srl 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++srl 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++srl 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++srl 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++srl 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++srl 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srl 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srl 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++srl 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++srl 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++srl 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++srl 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++srl 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++srl 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++srl 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++srl 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++srl 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++srl 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++srl 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++srl 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++srl 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++srl 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++srl 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++srl 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++srl 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srl 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srl 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++srl 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++srl 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++srl 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++srl 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++srl 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++srl 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++srl 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++srl 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++srl 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++srl 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++srl 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++srl 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++srl 0x000000000000000F 0x0000000000000001 = 0x0000000000000007 ++srl 0x000000000000000F 0x0000000000000002 = 0x0000000000000003 ++srl 0x000000000000000F 0x0000000000000003 = 0x0000000000000001 ++srl 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++srl 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srl 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srl 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++srl 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++srl 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++srl 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++srl 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++srl 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++srl 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++srl 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++srl 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++srl 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++srl 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++srl 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++srl 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x3FFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x1FFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0001FFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++srl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++srl 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000FFFF ++srl 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00003FFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++srl 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x3FFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x1FFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0001FFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++srl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++srl 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++srl 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++srl 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++srl 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++srl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++srl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++srl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++srl 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000000000FFFF ++srl 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x00003FFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++srl 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x7FFFFFFFFFFFFFFE ++srl 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x3FFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x1FFFFFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0001FFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++srl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++srl 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++srl 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++srl 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++srl 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++srl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++srl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++srl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++srl 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000000000FFFF ++srl 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x00003FFFFFFFFFFF ++srl 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++srl 0x000000000000007F 0x0000000000000001 = 0x000000000000003F ++srl 0x000000000000007F 0x0000000000000002 = 0x000000000000001F ++srl 0x000000000000007F 0x0000000000000003 = 0x000000000000000F ++srl 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++srl 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srl 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srl 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++srl 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++srl 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++srl 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++srl 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++srl 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++srl 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++srl 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++srl 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++srl 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++srl 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++srl 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++srl 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++srl 0x0000000000000080 0x0000000000000001 = 0x0000000000000040 ++srl 0x0000000000000080 0x0000000000000002 = 0x0000000000000020 ++srl 0x0000000000000080 0x0000000000000003 = 0x0000000000000010 ++srl 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++srl 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srl 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srl 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++srl 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++srl 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++srl 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++srl 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++srl 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++srl 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++srl 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++srl 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++srl 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++srl 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++srl 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++srl 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++srl 0x0000000000007FFF 0x0000000000000001 = 0x0000000000003FFF ++srl 0x0000000000007FFF 0x0000000000000002 = 0x0000000000001FFF ++srl 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000FFF ++srl 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++srl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srl 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++srl 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++srl 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++srl 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++srl 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++srl 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++srl 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++srl 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++srl 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++srl 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++srl 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++srl 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++srl 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++srl 0x0000000000008000 0x0000000000000001 = 0x0000000000004000 ++srl 0x0000000000008000 0x0000000000000002 = 0x0000000000002000 ++srl 0x0000000000008000 0x0000000000000003 = 0x0000000000001000 ++srl 0x0000000000008000 0x000000000000000F = 0x0000000000000001 ++srl 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srl 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srl 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++srl 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++srl 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++srl 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++srl 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++srl 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++srl 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++srl 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++srl 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++srl 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++srl 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++srl 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++srl 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++srl 0x000000007FFFFFFF 0x0000000000000001 = 0x000000003FFFFFFF ++srl 0x000000007FFFFFFF 0x0000000000000002 = 0x000000001FFFFFFF ++srl 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000FFFFFFF ++srl 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000FFFF ++srl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srl 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++srl 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++srl 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++srl 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++srl 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++srl 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++srl 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++srl 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++srl 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++srl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++srl 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++srl 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000001FFF ++srl 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++srl 0x0000000080000000 0x0000000000000001 = 0x0000000040000000 ++srl 0x0000000080000000 0x0000000000000002 = 0x0000000020000000 ++srl 0x0000000080000000 0x0000000000000003 = 0x0000000010000000 ++srl 0x0000000080000000 0x000000000000000F = 0x0000000000010000 ++srl 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srl 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srl 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++srl 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++srl 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++srl 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++srl 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++srl 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++srl 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++srl 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++srl 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++srl 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++srl 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++srl 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000002000 ++srl 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++srl 0x8000000000000000 0x0000000000000001 = 0x4000000000000000 ++srl 0x8000000000000000 0x0000000000000002 = 0x2000000000000000 ++srl 0x8000000000000000 0x0000000000000003 = 0x1000000000000000 ++srl 0x8000000000000000 0x000000000000000F = 0x0001000000000000 ++srl 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++srl 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000004 ++srl 0x8000000000000000 0x000000000000007F = 0x0000000000000001 ++srl 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++srl 0x8000000000000000 0x0000000000007FFF = 0x0000000000000001 ++srl 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++srl 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000001 ++srl 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++srl 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++srl 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++srl 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++srl 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++srl 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000008000 ++srl 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000200000000000 ++srl 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++srl 0xFFFFFFFF80000000 0x0000000000000001 = 0x7FFFFFFFC0000000 ++srl 0xFFFFFFFF80000000 0x0000000000000002 = 0x3FFFFFFFE0000000 ++srl 0xFFFFFFFF80000000 0x0000000000000003 = 0x1FFFFFFFF0000000 ++srl 0xFFFFFFFF80000000 0x000000000000000F = 0x0001FFFFFFFF0000 ++srl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++srl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++srl 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000001 ++srl 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++srl 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000001 ++srl 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++srl 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++srl 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++srl 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++srl 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++srl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++srl 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x000000000000FFFF ++srl 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x00003FFFFFFFE000 ++srl 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++srl 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x7FFFFFFFFFFFC000 ++srl 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x3FFFFFFFFFFFE000 ++srl 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x1FFFFFFFFFFFF000 ++srl 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0001FFFFFFFFFFFF ++srl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++srl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++srl 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000001 ++srl 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++srl 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++srl 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++srl 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++srl 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++srl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++srl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++srl 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x000000000000FFFF ++srl 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x00003FFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++srl 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x7FFFFFFFFFFFFFC0 ++srl 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x3FFFFFFFFFFFFFE0 ++srl 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x1FFFFFFFFFFFFFF0 ++srl 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0001FFFFFFFFFFFF ++srl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++srl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++srl 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++srl 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++srl 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++srl 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++srl 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++srl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++srl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++srl 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000000000FFFF ++srl 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x00003FFFFFFFFFFF ++srl 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++srl 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x3FFFFFFFFFFFFFFF ++srl 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x1FFFFFFFFFFFFFFF ++srl 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0FFFFFFFFFFFFFFF ++srl 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000FFFFFFFFFFFF ++srl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++srl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++srl 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++srl 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++srl 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++srl 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++srl 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++srl 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++srl 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++srl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++srl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++srl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++srl 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++srl 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00001FFFFFFFFFFF ++srl 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++srl 0x123456789ABCDEF0 0x0000000000000001 = 0x091A2B3C4D5E6F78 ++srl 0x123456789ABCDEF0 0x0000000000000002 = 0x048D159E26AF37BC ++srl 0x123456789ABCDEF0 0x0000000000000003 = 0x02468ACF13579BDE ++srl 0x123456789ABCDEF0 0x000000000000000F = 0x00002468ACF13579 ++srl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++srl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++srl 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++srl 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++srl 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++srl 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++srl 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++srl 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++srl 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++srl 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++srl 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++srl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++srl 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++srl 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000001234 ++srl 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000048D159E26AF ++srl 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++srl 0xF0DEBC9A78563412 0x0000000000000001 = 0x786F5E4D3C2B1A09 ++srl 0xF0DEBC9A78563412 0x0000000000000002 = 0x3C37AF269E158D04 ++srl 0xF0DEBC9A78563412 0x0000000000000003 = 0x1E1BD7934F0AC682 ++srl 0xF0DEBC9A78563412 0x000000000000000F = 0x0001E1BD7934F0AC ++srl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++srl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++srl 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000001 ++srl 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++srl 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000001 ++srl 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++srl 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000001 ++srl 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++srl 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++srl 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++srl 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++srl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++srl 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++srl 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x000000000000F0DE ++srl 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x00003C37AF269E15 ++=== Running test on sra === ++sra 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sra 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++sra 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++sra 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++sra 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++sra 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sra 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sra 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++sra 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++sra 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++sra 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++sra 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++sra 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++sra 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++sra 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sra 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sra 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sra 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sra 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sra 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++sra 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++sra 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++sra 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++sra 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++sra 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sra 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sra 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++sra 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++sra 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++sra 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++sra 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++sra 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++sra 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++sra 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++sra 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sra 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sra 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++sra 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++sra 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++sra 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sra 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++sra 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++sra 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++sra 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sra 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sra 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++sra 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++sra 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++sra 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++sra 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++sra 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++sra 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++sra 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++sra 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sra 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sra 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++sra 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++sra 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++sra 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sra 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++sra 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++sra 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++sra 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sra 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sra 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++sra 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++sra 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++sra 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++sra 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++sra 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++sra 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++sra 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++sra 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sra 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sra 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++sra 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++sra 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++sra 0x000000000000000F 0x0000000000000001 = 0x0000000000000007 ++sra 0x000000000000000F 0x0000000000000002 = 0x0000000000000003 ++sra 0x000000000000000F 0x0000000000000003 = 0x0000000000000001 ++sra 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++sra 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sra 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sra 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++sra 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++sra 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++sra 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++sra 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++sra 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++sra 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++sra 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++sra 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sra 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sra 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++sra 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++sra 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++sra 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++sra 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++sra 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++sra 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++sra 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++sra 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++sra 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++sra 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++sra 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++sra 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++sra 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++sra 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++sra 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++sra 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++sra 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++sra 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++sra 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++sra 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++sra 0x000000000000007F 0x0000000000000001 = 0x000000000000003F ++sra 0x000000000000007F 0x0000000000000002 = 0x000000000000001F ++sra 0x000000000000007F 0x0000000000000003 = 0x000000000000000F ++sra 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++sra 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sra 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sra 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++sra 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++sra 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++sra 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++sra 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++sra 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++sra 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++sra 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++sra 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sra 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sra 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++sra 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++sra 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++sra 0x0000000000000080 0x0000000000000001 = 0x0000000000000040 ++sra 0x0000000000000080 0x0000000000000002 = 0x0000000000000020 ++sra 0x0000000000000080 0x0000000000000003 = 0x0000000000000010 ++sra 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++sra 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sra 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sra 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++sra 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sra 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++sra 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++sra 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++sra 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++sra 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++sra 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++sra 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sra 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sra 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++sra 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++sra 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++sra 0x0000000000007FFF 0x0000000000000001 = 0x0000000000003FFF ++sra 0x0000000000007FFF 0x0000000000000002 = 0x0000000000001FFF ++sra 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000FFF ++sra 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++sra 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sra 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sra 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++sra 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++sra 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++sra 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++sra 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++sra 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++sra 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++sra 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++sra 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++sra 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++sra 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++sra 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++sra 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++sra 0x0000000000008000 0x0000000000000001 = 0x0000000000004000 ++sra 0x0000000000008000 0x0000000000000002 = 0x0000000000002000 ++sra 0x0000000000008000 0x0000000000000003 = 0x0000000000001000 ++sra 0x0000000000008000 0x000000000000000F = 0x0000000000000001 ++sra 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sra 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sra 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++sra 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++sra 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++sra 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sra 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++sra 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++sra 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++sra 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++sra 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++sra 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++sra 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++sra 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sra 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++sra 0x000000007FFFFFFF 0x0000000000000001 = 0x000000003FFFFFFF ++sra 0x000000007FFFFFFF 0x0000000000000002 = 0x000000001FFFFFFF ++sra 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000FFFFFFF ++sra 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000FFFF ++sra 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sra 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sra 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++sra 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++sra 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++sra 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++sra 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++sra 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++sra 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++sra 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++sra 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++sra 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++sra 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++sra 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000001FFF ++sra 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++sra 0x0000000080000000 0x0000000000000001 = 0x0000000040000000 ++sra 0x0000000080000000 0x0000000000000002 = 0x0000000020000000 ++sra 0x0000000080000000 0x0000000000000003 = 0x0000000010000000 ++sra 0x0000000080000000 0x000000000000000F = 0x0000000000010000 ++sra 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sra 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sra 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++sra 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++sra 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++sra 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++sra 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++sra 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sra 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++sra 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++sra 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++sra 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++sra 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sra 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000002000 ++sra 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++sra 0x8000000000000000 0x0000000000000001 = 0xC000000000000000 ++sra 0x8000000000000000 0x0000000000000002 = 0xE000000000000000 ++sra 0x8000000000000000 0x0000000000000003 = 0xF000000000000000 ++sra 0x8000000000000000 0x000000000000000F = 0xFFFF000000000000 ++sra 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sra 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFC ++sra 0x8000000000000000 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sra 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++sra 0x8000000000000000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sra 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++sra 0x8000000000000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++sra 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++sra 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++sra 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++sra 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++sra 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0x8000000000000000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++sra 0x8000000000000000 0xF0DEBC9A78563412 = 0xFFFFE00000000000 ++sra 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++sra 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFFC0000000 ++sra 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFFE0000000 ++sra 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFFF0000000 ++sra 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFFFFFF0000 ++sra 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++sra 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++sra 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++sra 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++sra 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sra 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++sra 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++sra 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFE000 ++sra 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++sra 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFFC000 ++sra 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFFE000 ++sra 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFFF000 ++sra 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++sra 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++sra 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++sra 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++sra 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++sra 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sra 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++sra 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++sra 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFFC0 ++sra 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFFE0 ++sra 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFFF0 ++sra 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++sra 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++sra 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++sra 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++sra 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++sra 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++sra 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sra 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sra 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++sra 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++sra 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x3FFFFFFFFFFFFFFF ++sra 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x1FFFFFFFFFFFFFFF ++sra 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0FFFFFFFFFFFFFFF ++sra 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000FFFFFFFFFFFF ++sra 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sra 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sra 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++sra 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++sra 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++sra 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++sra 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++sra 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++sra 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++sra 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++sra 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++sra 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++sra 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++sra 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00001FFFFFFFFFFF ++sra 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++sra 0x123456789ABCDEF0 0x0000000000000001 = 0x091A2B3C4D5E6F78 ++sra 0x123456789ABCDEF0 0x0000000000000002 = 0x048D159E26AF37BC ++sra 0x123456789ABCDEF0 0x0000000000000003 = 0x02468ACF13579BDE ++sra 0x123456789ABCDEF0 0x000000000000000F = 0x00002468ACF13579 ++sra 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sra 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sra 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++sra 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++sra 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++sra 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++sra 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++sra 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++sra 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++sra 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++sra 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++sra 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++sra 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sra 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000001234 ++sra 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000048D159E26AF ++sra 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++sra 0xF0DEBC9A78563412 0x0000000000000001 = 0xF86F5E4D3C2B1A09 ++sra 0xF0DEBC9A78563412 0x0000000000000002 = 0xFC37AF269E158D04 ++sra 0xF0DEBC9A78563412 0x0000000000000003 = 0xFE1BD7934F0AC682 ++sra 0xF0DEBC9A78563412 0x000000000000000F = 0xFFFFE1BD7934F0AC ++sra 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sra 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sra 0xF0DEBC9A78563412 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sra 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++sra 0xF0DEBC9A78563412 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sra 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++sra 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++sra 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++sra 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++sra 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++sra 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++sra 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sra 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFF0DE ++sra 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xFFFFFC37AF269E15 ++=== Running test on extlb === ++extlb 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++extlb 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++extlb 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++extlb 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++extlb 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++extlb 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlb 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlb 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++extlb 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++extlb 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++extlb 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++extlb 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++extlb 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++extlb 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlb 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extlb 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++extlb 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++extlb 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlb 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++extlb 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++extlb 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++extlb 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++extlb 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++extlb 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlb 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlb 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++extlb 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++extlb 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++extlb 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++extlb 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++extlb 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++extlb 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++extlb 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++extlb 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++extlb 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++extlb 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlb 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++extlb 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++extlb 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++extlb 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++extlb 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++extlb 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlb 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlb 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++extlb 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++extlb 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++extlb 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++extlb 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++extlb 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++extlb 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++extlb 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++extlb 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++extlb 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++extlb 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlb 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++extlb 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++extlb 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++extlb 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++extlb 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++extlb 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlb 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlb 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++extlb 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++extlb 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++extlb 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++extlb 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++extlb 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++extlb 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++extlb 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++extlb 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++extlb 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++extlb 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlb 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++extlb 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++extlb 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++extlb 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++extlb 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++extlb 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlb 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlb 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++extlb 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++extlb 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++extlb 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++extlb 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++extlb 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++extlb 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++extlb 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++extlb 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++extlb 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++extlb 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++extlb 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlb 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x00000000000000FE ++extlb 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000000000FE ++extlb 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x00000000000000FE ++extlb 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000000000000FE ++extlb 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x00000000000000FE ++extlb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000000000FE ++extlb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x00000000000000FE ++extlb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000000000FE ++extlb 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000000000FE ++extlb 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x00000000000000FD ++extlb 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000000000FD ++extlb 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x00000000000000FD ++extlb 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000000000000FD ++extlb 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x00000000000000FD ++extlb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x00000000000000FD ++extlb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000000000FD ++extlb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00000000000000FD ++extlb 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000000000FD ++extlb 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x00000000000000FF ++extlb 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++extlb 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++extlb 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++extlb 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++extlb 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++extlb 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlb 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlb 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++extlb 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++extlb 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++extlb 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++extlb 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++extlb 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++extlb 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++extlb 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++extlb 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++extlb 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++extlb 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++extlb 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlb 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++extlb 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++extlb 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++extlb 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++extlb 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++extlb 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlb 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlb 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++extlb 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++extlb 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++extlb 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++extlb 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++extlb 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++extlb 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++extlb 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++extlb 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++extlb 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++extlb 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlb 0x0000000000007FFF 0x0000000000000000 = 0x00000000000000FF ++extlb 0x0000000000007FFF 0x0000000000000001 = 0x000000000000007F ++extlb 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++extlb 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++extlb 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++extlb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlb 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++extlb 0x0000000000007FFF 0x0000000000000080 = 0x00000000000000FF ++extlb 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++extlb 0x0000000000007FFF 0x0000000000008000 = 0x00000000000000FF ++extlb 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++extlb 0x0000000000007FFF 0x0000000080000000 = 0x00000000000000FF ++extlb 0x0000000000007FFF 0x8000000000000000 = 0x00000000000000FF ++extlb 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++extlb 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlb 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlb 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000000007FFF 0x123456789ABCDEF0 = 0x00000000000000FF ++extlb 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlb 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++extlb 0x0000000000008000 0x0000000000000001 = 0x0000000000000080 ++extlb 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++extlb 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++extlb 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++extlb 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlb 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlb 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++extlb 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++extlb 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++extlb 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++extlb 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++extlb 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++extlb 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++extlb 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlb 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extlb 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++extlb 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++extlb 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlb 0x000000007FFFFFFF 0x0000000000000000 = 0x00000000000000FF ++extlb 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000000000FF ++extlb 0x000000007FFFFFFF 0x0000000000000002 = 0x00000000000000FF ++extlb 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000000007F ++extlb 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++extlb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlb 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++extlb 0x000000007FFFFFFF 0x0000000000000080 = 0x00000000000000FF ++extlb 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++extlb 0x000000007FFFFFFF 0x0000000000008000 = 0x00000000000000FF ++extlb 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++extlb 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000000000FF ++extlb 0x000000007FFFFFFF 0x8000000000000000 = 0x00000000000000FF ++extlb 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++extlb 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlb 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++extlb 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++extlb 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++extlb 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++extlb 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++extlb 0x0000000080000000 0x0000000000000003 = 0x0000000000000080 ++extlb 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++extlb 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlb 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlb 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++extlb 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++extlb 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++extlb 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++extlb 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++extlb 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++extlb 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++extlb 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlb 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extlb 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++extlb 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlb 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++extlb 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlb 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++extlb 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++extlb 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++extlb 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++extlb 0x8000000000000000 0x000000000000000F = 0x0000000000000080 ++extlb 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++extlb 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlb 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlb 0x8000000000000000 0x000000000000007F = 0x0000000000000080 ++extlb 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++extlb 0x8000000000000000 0x0000000000007FFF = 0x0000000000000080 ++extlb 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++extlb 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000080 ++extlb 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++extlb 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++extlb 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlb 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extlb 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++extlb 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++extlb 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++extlb 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlb 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++extlb 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++extlb 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++extlb 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000080 ++extlb 0xFFFFFFFF80000000 0x000000000000000F = 0x00000000000000FF ++extlb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlb 0xFFFFFFFF80000000 0x000000000000007F = 0x00000000000000FF ++extlb 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++extlb 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00000000000000FF ++extlb 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++extlb 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++extlb 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++extlb 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlb 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extlb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++extlb 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++extlb 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlb 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++extlb 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000080 ++extlb 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++extlb 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++extlb 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++extlb 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++extlb 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extlb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++extlb 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++extlb 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000080 ++extlb 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++extlb 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000080 ++extlb 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000080 ++extlb 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000080 ++extlb 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000080 ++extlb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++extlb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++extlb 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlb 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000080 ++extlb 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000007F ++extlb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++extlb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++extlb 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000007F ++extlb 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++extlb 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extlb 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++extlb 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++extlb 0x123456789ABCDEF0 0x0000000000000000 = 0x00000000000000F0 ++extlb 0x123456789ABCDEF0 0x0000000000000001 = 0x00000000000000DE ++extlb 0x123456789ABCDEF0 0x0000000000000002 = 0x00000000000000BC ++extlb 0x123456789ABCDEF0 0x0000000000000003 = 0x000000000000009A ++extlb 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000012 ++extlb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000012 ++extlb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000034 ++extlb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000056 ++extlb 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000012 ++extlb 0x123456789ABCDEF0 0x0000000000000080 = 0x00000000000000F0 ++extlb 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000012 ++extlb 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000000000F0 ++extlb 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000012 ++extlb 0x123456789ABCDEF0 0x0000000080000000 = 0x00000000000000F0 ++extlb 0x123456789ABCDEF0 0x8000000000000000 = 0x00000000000000F0 ++extlb 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x00000000000000F0 ++extlb 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x00000000000000F0 ++extlb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x00000000000000F0 ++extlb 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000012 ++extlb 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x00000000000000F0 ++extlb 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x00000000000000BC ++extlb 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000012 ++extlb 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000034 ++extlb 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000056 ++extlb 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000078 ++extlb 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000000000F0 ++extlb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00000000000000F0 ++extlb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x00000000000000DE ++extlb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x00000000000000BC ++extlb 0xF0DEBC9A78563412 0x000000000000007F = 0x00000000000000F0 ++extlb 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000012 ++extlb 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00000000000000F0 ++extlb 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000012 ++extlb 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000000000F0 ++extlb 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000012 ++extlb 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000012 ++extlb 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000012 ++extlb 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000012 ++extlb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000012 ++extlb 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000000000F0 ++extlb 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000012 ++extlb 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000056 ++=== Running test on extlh === ++extlh 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++extlh 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++extlh 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++extlh 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++extlh 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++extlh 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlh 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlh 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++extlh 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++extlh 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++extlh 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++extlh 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++extlh 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++extlh 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlh 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extlh 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++extlh 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++extlh 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlh 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++extlh 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++extlh 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++extlh 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++extlh 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++extlh 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlh 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlh 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++extlh 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++extlh 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++extlh 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++extlh 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++extlh 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++extlh 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++extlh 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++extlh 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++extlh 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++extlh 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlh 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++extlh 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++extlh 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++extlh 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++extlh 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++extlh 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlh 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlh 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++extlh 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++extlh 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++extlh 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++extlh 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++extlh 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++extlh 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++extlh 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++extlh 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++extlh 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++extlh 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlh 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++extlh 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++extlh 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++extlh 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++extlh 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++extlh 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlh 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlh 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++extlh 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++extlh 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++extlh 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++extlh 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++extlh 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++extlh 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++extlh 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++extlh 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++extlh 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++extlh 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlh 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++extlh 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++extlh 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++extlh 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++extlh 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++extlh 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlh 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlh 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++extlh 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++extlh 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++extlh 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++extlh 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++extlh 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++extlh 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++extlh 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++extlh 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++extlh 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++extlh 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++extlh 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlh 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000000000FFFE ++extlh 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000FFFE ++extlh 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000000000FFFE ++extlh 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000000000FFFE ++extlh 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000000000FFFE ++extlh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000000000FFFE ++extlh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000000000FFFE ++extlh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFE ++extlh 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000000000FFFE ++extlh 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x000000000000FFFD ++extlh 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000FFFD ++extlh 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x000000000000FFFD ++extlh 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000000000FFFD ++extlh 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x000000000000FFFD ++extlh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000000000FFFD ++extlh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x000000000000FFFD ++extlh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFD ++extlh 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000000000FFFD ++extlh 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000000000FFFF ++extlh 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++extlh 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++extlh 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++extlh 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++extlh 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++extlh 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlh 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlh 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++extlh 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++extlh 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++extlh 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++extlh 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++extlh 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++extlh 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++extlh 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++extlh 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++extlh 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++extlh 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++extlh 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlh 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++extlh 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++extlh 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++extlh 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++extlh 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++extlh 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlh 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlh 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++extlh 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++extlh 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++extlh 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++extlh 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++extlh 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++extlh 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++extlh 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++extlh 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++extlh 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++extlh 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlh 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++extlh 0x0000000000007FFF 0x0000000000000001 = 0x000000000000007F ++extlh 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++extlh 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++extlh 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++extlh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlh 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++extlh 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++extlh 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++extlh 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++extlh 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++extlh 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++extlh 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++extlh 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++extlh 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++extlh 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++extlh 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++extlh 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlh 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++extlh 0x0000000000008000 0x0000000000000001 = 0x0000000000000080 ++extlh 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++extlh 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++extlh 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++extlh 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlh 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlh 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++extlh 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++extlh 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++extlh 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++extlh 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++extlh 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++extlh 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++extlh 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++extlh 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++extlh 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++extlh 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++extlh 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlh 0x000000007FFFFFFF 0x0000000000000000 = 0x000000000000FFFF ++extlh 0x000000007FFFFFFF 0x0000000000000001 = 0x000000000000FFFF ++extlh 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000007FFF ++extlh 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000000007F ++extlh 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++extlh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlh 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++extlh 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000FFFF ++extlh 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++extlh 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000FFFF ++extlh 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++extlh 0x000000007FFFFFFF 0x0000000080000000 = 0x000000000000FFFF ++extlh 0x000000007FFFFFFF 0x8000000000000000 = 0x000000000000FFFF ++extlh 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000000000FFFF ++extlh 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++extlh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++extlh 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000000000FFFF ++extlh 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++extlh 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++extlh 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++extlh 0x0000000080000000 0x0000000000000002 = 0x0000000000008000 ++extlh 0x0000000080000000 0x0000000000000003 = 0x0000000000000080 ++extlh 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++extlh 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlh 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlh 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++extlh 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++extlh 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++extlh 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++extlh 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++extlh 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++extlh 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++extlh 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlh 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extlh 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++extlh 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlh 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++extlh 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000008000 ++extlh 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++extlh 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++extlh 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++extlh 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++extlh 0x8000000000000000 0x000000000000000F = 0x0000000000000080 ++extlh 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++extlh 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++extlh 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlh 0x8000000000000000 0x000000000000007F = 0x0000000000000080 ++extlh 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++extlh 0x8000000000000000 0x0000000000007FFF = 0x0000000000000080 ++extlh 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++extlh 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000080 ++extlh 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++extlh 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++extlh 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlh 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extlh 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++extlh 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++extlh 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++extlh 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlh 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++extlh 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++extlh 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000008000 ++extlh 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000000000FF80 ++extlh 0xFFFFFFFF80000000 0x000000000000000F = 0x00000000000000FF ++extlh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFF ++extlh 0xFFFFFFFF80000000 0x000000000000007F = 0x00000000000000FF ++extlh 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++extlh 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00000000000000FF ++extlh 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++extlh 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++extlh 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++extlh 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlh 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extlh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++extlh 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++extlh 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000008000 ++extlh 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000008000 ++extlh 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x000000000000FF80 ++extlh 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000008000 ++extlh 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++extlh 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000008000 ++extlh 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000008000 ++extlh 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000008000 ++extlh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++extlh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++extlh 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000008000 ++extlh 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x000000000000FF80 ++extlh 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFF ++extlh 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000000000FF80 ++extlh 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000000000FF80 ++extlh 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000000000FF80 ++extlh 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x000000000000FF80 ++extlh 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000000000FF80 ++extlh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x000000000000FF80 ++extlh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x000000000000FF80 ++extlh 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlh 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000000000FF80 ++extlh 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000000000FFFF ++extlh 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000FFFF ++extlh 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x000000000000FFFF ++extlh 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000FFFF ++extlh 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000FFFF ++extlh 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000007F ++extlh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++extlh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++extlh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000FFFF ++extlh 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++extlh 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000FFFF ++extlh 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000007F ++extlh 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000FFFF ++extlh 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++extlh 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000FFFF ++extlh 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000FFFF ++extlh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000FFFF ++extlh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++extlh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++extlh 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extlh 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000FFFF ++extlh 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000FFFF ++extlh 0x123456789ABCDEF0 0x0000000000000000 = 0x000000000000DEF0 ++extlh 0x123456789ABCDEF0 0x0000000000000001 = 0x000000000000BCDE ++extlh 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000009ABC ++extlh 0x123456789ABCDEF0 0x0000000000000003 = 0x000000000000789A ++extlh 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000012 ++extlh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000012 ++extlh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000001234 ++extlh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000003456 ++extlh 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000012 ++extlh 0x123456789ABCDEF0 0x0000000000000080 = 0x000000000000DEF0 ++extlh 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000012 ++extlh 0x123456789ABCDEF0 0x0000000000008000 = 0x000000000000DEF0 ++extlh 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000012 ++extlh 0x123456789ABCDEF0 0x0000000080000000 = 0x000000000000DEF0 ++extlh 0x123456789ABCDEF0 0x8000000000000000 = 0x000000000000DEF0 ++extlh 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000000000DEF0 ++extlh 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000000000DEF0 ++extlh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000000000DEF0 ++extlh 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000012 ++extlh 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000000000DEF0 ++extlh 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000009ABC ++extlh 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000003412 ++extlh 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000005634 ++extlh 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000007856 ++extlh 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000009A78 ++extlh 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000000000F0 ++extlh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00000000000000F0 ++extlh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x000000000000F0DE ++extlh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x000000000000DEBC ++extlh 0xF0DEBC9A78563412 0x000000000000007F = 0x00000000000000F0 ++extlh 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000003412 ++extlh 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00000000000000F0 ++extlh 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000003412 ++extlh 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000000000F0 ++extlh 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000003412 ++extlh 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000003412 ++extlh 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000003412 ++extlh 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000003412 ++extlh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000003412 ++extlh 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000000000F0 ++extlh 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000003412 ++extlh 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000007856 ++=== Running test on extlw === ++extlw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++extlw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++extlw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++extlw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++extlw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++extlw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++extlw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++extlw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++extlw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++extlw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++extlw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++extlw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extlw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++extlw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++extlw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlw 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++extlw 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++extlw 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++extlw 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++extlw 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++extlw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlw 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++extlw 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++extlw 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++extlw 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++extlw 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++extlw 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++extlw 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++extlw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++extlw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++extlw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++extlw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlw 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++extlw 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++extlw 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++extlw 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++extlw 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++extlw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlw 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++extlw 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++extlw 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++extlw 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++extlw 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++extlw 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++extlw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++extlw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++extlw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++extlw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++extlw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlw 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++extlw 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++extlw 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++extlw 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++extlw 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++extlw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlw 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++extlw 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++extlw 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++extlw 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++extlw 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++extlw 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++extlw 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++extlw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++extlw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++extlw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++extlw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlw 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++extlw 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++extlw 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++extlw 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++extlw 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++extlw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlw 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++extlw 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++extlw 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++extlw 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++extlw 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++extlw 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++extlw 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++extlw 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++extlw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++extlw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++extlw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++extlw 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++extlw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x00000000FFFFFFFE ++extlw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++extlw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000FFFFFFFE ++extlw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x00000000FFFFFFFE ++extlw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000000FFFFFFFE ++extlw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x00000000FFFFFFFE ++extlw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000FFFFFFFE ++extlw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFFFE ++extlw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFE ++extlw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000FFFFFFFE ++extlw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x00000000FFFFFFFD ++extlw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++extlw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000FFFFFFFD ++extlw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x00000000FFFFFFFD ++extlw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000000FFFFFFFD ++extlw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x00000000FFFFFFFD ++extlw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x00000000FFFFFFFD ++extlw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFFFD ++extlw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFD ++extlw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000FFFFFFFD ++extlw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x00000000FFFFFFFF ++extlw 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++extlw 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++extlw 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++extlw 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++extlw 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++extlw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlw 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++extlw 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++extlw 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++extlw 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++extlw 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++extlw 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++extlw 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++extlw 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++extlw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++extlw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++extlw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++extlw 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlw 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++extlw 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++extlw 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++extlw 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++extlw 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++extlw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlw 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++extlw 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++extlw 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++extlw 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++extlw 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++extlw 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++extlw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++extlw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++extlw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++extlw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++extlw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlw 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++extlw 0x0000000000007FFF 0x0000000000000001 = 0x000000000000007F ++extlw 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++extlw 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++extlw 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++extlw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlw 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++extlw 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++extlw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++extlw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++extlw 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++extlw 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++extlw 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++extlw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++extlw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++extlw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++extlw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++extlw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlw 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++extlw 0x0000000000008000 0x0000000000000001 = 0x0000000000000080 ++extlw 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++extlw 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++extlw 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++extlw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlw 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++extlw 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++extlw 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++extlw 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++extlw 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++extlw 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++extlw 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++extlw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++extlw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++extlw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++extlw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++extlw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlw 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++extlw 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000007FFFFF ++extlw 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000007FFF ++extlw 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000000007F ++extlw 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++extlw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlw 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++extlw 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++extlw 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++extlw 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++extlw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++extlw 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++extlw 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++extlw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++extlw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++extlw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++extlw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++extlw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++extlw 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++extlw 0x0000000080000000 0x0000000000000001 = 0x0000000000800000 ++extlw 0x0000000080000000 0x0000000000000002 = 0x0000000000008000 ++extlw 0x0000000080000000 0x0000000000000003 = 0x0000000000000080 ++extlw 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++extlw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extlw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extlw 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++extlw 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++extlw 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++extlw 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++extlw 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++extlw 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++extlw 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++extlw 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++extlw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++extlw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++extlw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extlw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++extlw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000008000 ++extlw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++extlw 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++extlw 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++extlw 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++extlw 0x8000000000000000 0x000000000000000F = 0x0000000000000080 ++extlw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++extlw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++extlw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000800000 ++extlw 0x8000000000000000 0x000000000000007F = 0x0000000000000080 ++extlw 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++extlw 0x8000000000000000 0x0000000000007FFF = 0x0000000000000080 ++extlw 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++extlw 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000080 ++extlw 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++extlw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++extlw 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++extlw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extlw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++extlw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++extlw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++extlw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++extlw 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000080000000 ++extlw 0xFFFFFFFF80000000 0x0000000000000001 = 0x00000000FF800000 ++extlw 0xFFFFFFFF80000000 0x0000000000000002 = 0x00000000FFFF8000 ++extlw 0xFFFFFFFF80000000 0x0000000000000003 = 0x00000000FFFFFF80 ++extlw 0xFFFFFFFF80000000 0x000000000000000F = 0x00000000000000FF ++extlw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++extlw 0xFFFFFFFF80000000 0x000000000000007F = 0x00000000000000FF ++extlw 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000080000000 ++extlw 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00000000000000FF ++extlw 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000080000000 ++extlw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++extlw 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000080000000 ++extlw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++extlw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++extlw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++extlw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000080000000 ++extlw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x00000000FFFF8000 ++extlw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x00000000FFFF8000 ++extlw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x00000000FFFFFF80 ++extlw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++extlw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00000000FFFF8000 ++extlw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x00000000FFFF8000 ++extlw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x00000000FFFF8000 ++extlw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x00000000FFFF8000 ++extlw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x00000000FFFF8000 ++extlw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x00000000FFFF8000 ++extlw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00000000FFFF8000 ++extlw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000FFFF8000 ++extlw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x00000000FFFFFF80 ++extlw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x00000000FFFFFFFF ++extlw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extlw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++extlw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x00000000FFFFFF80 ++extlw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x00000000FFFFFF80 ++extlw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x00000000FFFFFF80 ++extlw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x00000000FFFFFF80 ++extlw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x00000000FFFFFF80 ++extlw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFF80 ++extlw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFF80 ++extlw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extlw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x00000000FFFFFF80 ++extlw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x00000000FFFFFFFF ++extlw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000FFFFFFFF ++extlw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000FFFFFFFF ++extlw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000FFFFFFFF ++extlw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000FFFFFFFF ++extlw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000007F ++extlw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++extlw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++extlw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000007FFFFF ++extlw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++extlw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000FFFFFFFF ++extlw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000007F ++extlw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000FFFFFFFF ++extlw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++extlw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000FFFFFFFF ++extlw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000FFFFFFFF ++extlw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000FFFFFFFF ++extlw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFFFF ++extlw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFF ++extlw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extlw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000FFFFFFFF ++extlw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000FFFFFFFF ++extlw 0x123456789ABCDEF0 0x0000000000000000 = 0x000000009ABCDEF0 ++extlw 0x123456789ABCDEF0 0x0000000000000001 = 0x00000000789ABCDE ++extlw 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000056789ABC ++extlw 0x123456789ABCDEF0 0x0000000000000003 = 0x000000003456789A ++extlw 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000012 ++extlw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000012 ++extlw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000001234 ++extlw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000123456 ++extlw 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000012 ++extlw 0x123456789ABCDEF0 0x0000000000000080 = 0x000000009ABCDEF0 ++extlw 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000012 ++extlw 0x123456789ABCDEF0 0x0000000000008000 = 0x000000009ABCDEF0 ++extlw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000012 ++extlw 0x123456789ABCDEF0 0x0000000080000000 = 0x000000009ABCDEF0 ++extlw 0x123456789ABCDEF0 0x8000000000000000 = 0x000000009ABCDEF0 ++extlw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000009ABCDEF0 ++extlw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000009ABCDEF0 ++extlw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000009ABCDEF0 ++extlw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000012 ++extlw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000009ABCDEF0 ++extlw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000056789ABC ++extlw 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000078563412 ++extlw 0xF0DEBC9A78563412 0x0000000000000001 = 0x000000009A785634 ++extlw 0xF0DEBC9A78563412 0x0000000000000002 = 0x00000000BC9A7856 ++extlw 0xF0DEBC9A78563412 0x0000000000000003 = 0x00000000DEBC9A78 ++extlw 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000000000F0 ++extlw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00000000000000F0 ++extlw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x000000000000F0DE ++extlw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000F0DEBC ++extlw 0xF0DEBC9A78563412 0x000000000000007F = 0x00000000000000F0 ++extlw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000078563412 ++extlw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00000000000000F0 ++extlw 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000078563412 ++extlw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000000000F0 ++extlw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000078563412 ++extlw 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000078563412 ++extlw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000078563412 ++extlw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000078563412 ++extlw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000078563412 ++extlw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000000000F0 ++extlw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000078563412 ++extlw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x00000000BC9A7856 ++=== Running test on extll === ++extll 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++extll 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++extll 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++extll 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++extll 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++extll 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extll 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extll 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++extll 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++extll 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++extll 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++extll 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++extll 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++extll 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++extll 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++extll 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++extll 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++extll 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++extll 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++extll 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++extll 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++extll 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++extll 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++extll 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++extll 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extll 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extll 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++extll 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++extll 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++extll 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++extll 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++extll 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++extll 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++extll 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++extll 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++extll 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++extll 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++extll 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++extll 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++extll 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++extll 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++extll 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++extll 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++extll 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extll 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extll 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++extll 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++extll 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++extll 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++extll 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++extll 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++extll 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++extll 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++extll 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++extll 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++extll 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++extll 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++extll 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++extll 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++extll 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++extll 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++extll 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++extll 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extll 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extll 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++extll 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++extll 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++extll 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++extll 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++extll 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++extll 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++extll 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++extll 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++extll 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++extll 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++extll 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++extll 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++extll 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++extll 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++extll 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++extll 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++extll 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extll 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extll 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++extll 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++extll 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++extll 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++extll 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++extll 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++extll 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++extll 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++extll 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++extll 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++extll 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++extll 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++extll 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x00FFFFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000FFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000FFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++extll 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000FFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++extll 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00FFFFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000FFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000FFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++extll 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++extll 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++extll 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++extll 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++extll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++extll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++extll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++extll 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++extll 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000FFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++extll 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00FFFFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000FFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000FFFFFFFFFF ++extll 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++extll 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++extll 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++extll 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++extll 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++extll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++extll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++extll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++extll 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++extll 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000FFFFFFFFFFFF ++extll 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++extll 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++extll 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++extll 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++extll 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++extll 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extll 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extll 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++extll 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++extll 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++extll 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++extll 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++extll 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++extll 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++extll 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++extll 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++extll 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++extll 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++extll 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++extll 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++extll 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++extll 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++extll 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++extll 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++extll 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extll 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extll 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++extll 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++extll 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++extll 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++extll 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++extll 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++extll 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++extll 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++extll 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++extll 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++extll 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++extll 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++extll 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++extll 0x0000000000007FFF 0x0000000000000001 = 0x000000000000007F ++extll 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++extll 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++extll 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++extll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extll 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++extll 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++extll 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++extll 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++extll 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++extll 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++extll 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++extll 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++extll 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++extll 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++extll 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++extll 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++extll 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++extll 0x0000000000008000 0x0000000000000001 = 0x0000000000000080 ++extll 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++extll 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++extll 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++extll 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extll 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extll 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++extll 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++extll 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++extll 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++extll 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++extll 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++extll 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++extll 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++extll 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++extll 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++extll 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++extll 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++extll 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++extll 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000007FFFFF ++extll 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000007FFF ++extll 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000000007F ++extll 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++extll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extll 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++extll 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++extll 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++extll 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++extll 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++extll 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++extll 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++extll 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++extll 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++extll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++extll 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++extll 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++extll 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++extll 0x0000000080000000 0x0000000000000001 = 0x0000000000800000 ++extll 0x0000000080000000 0x0000000000000002 = 0x0000000000008000 ++extll 0x0000000080000000 0x0000000000000003 = 0x0000000000000080 ++extll 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++extll 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++extll 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++extll 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++extll 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++extll 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++extll 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++extll 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++extll 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++extll 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++extll 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++extll 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++extll 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++extll 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++extll 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++extll 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000008000 ++extll 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++extll 0x8000000000000000 0x0000000000000001 = 0x0080000000000000 ++extll 0x8000000000000000 0x0000000000000002 = 0x0000800000000000 ++extll 0x8000000000000000 0x0000000000000003 = 0x0000008000000000 ++extll 0x8000000000000000 0x000000000000000F = 0x0000000000000080 ++extll 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++extll 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++extll 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000800000 ++extll 0x8000000000000000 0x000000000000007F = 0x0000000000000080 ++extll 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++extll 0x8000000000000000 0x0000000000007FFF = 0x0000000000000080 ++extll 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++extll 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000080 ++extll 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++extll 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++extll 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++extll 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++extll 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++extll 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++extll 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++extll 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000800000000000 ++extll 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++extll 0xFFFFFFFF80000000 0x0000000000000001 = 0x00FFFFFFFF800000 ++extll 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000FFFFFFFF8000 ++extll 0xFFFFFFFF80000000 0x0000000000000003 = 0x000000FFFFFFFF80 ++extll 0xFFFFFFFF80000000 0x000000000000000F = 0x00000000000000FF ++extll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++extll 0xFFFFFFFF80000000 0x000000000000007F = 0x00000000000000FF ++extll 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++extll 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00000000000000FF ++extll 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++extll 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++extll 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++extll 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++extll 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++extll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++extll 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++extll 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000FFFFFFFF8000 ++extll 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++extll 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x00FFFFFFFFFFFF80 ++extll 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000FFFFFFFFFFFF ++extll 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x000000FFFFFFFFFF ++extll 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00000000000000FF ++extll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++extll 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000000000FF ++extll 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++extll 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++extll 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++extll 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++extll 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++extll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++extll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++extll 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++extll 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000FFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++extll 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x00FFFFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000FFFFFFFFFFFF ++extll 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000FFFFFFFFFF ++extll 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x000000000000FFFF ++extll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000FFFFFF ++extll 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++extll 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++extll 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++extll 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++extll 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++extll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++extll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++extll 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++extll 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF80 ++extll 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000FFFFFFFFFFFF ++extll 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++extll 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x007FFFFFFFFFFFFF ++extll 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x00007FFFFFFFFFFF ++extll 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000007FFFFFFFFF ++extll 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000007F ++extll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++extll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++extll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000007FFFFF ++extll 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++extll 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++extll 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000007F ++extll 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++extll 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000007F ++extll 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++extll 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++extll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++extll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++extll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++extll 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++extll 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFFFFFF ++extll 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00007FFFFFFFFFFF ++extll 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++extll 0x123456789ABCDEF0 0x0000000000000001 = 0x00123456789ABCDE ++extll 0x123456789ABCDEF0 0x0000000000000002 = 0x0000123456789ABC ++extll 0x123456789ABCDEF0 0x0000000000000003 = 0x000000123456789A ++extll 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000012 ++extll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000012 ++extll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000001234 ++extll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000123456 ++extll 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000012 ++extll 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++extll 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000012 ++extll 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++extll 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000012 ++extll 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++extll 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++extll 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++extll 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++extll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++extll 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000012 ++extll 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++extll 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000123456789ABC ++extll 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++extll 0xF0DEBC9A78563412 0x0000000000000001 = 0x00F0DEBC9A785634 ++extll 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000F0DEBC9A7856 ++extll 0xF0DEBC9A78563412 0x0000000000000003 = 0x000000F0DEBC9A78 ++extll 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000000000F0 ++extll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00000000000000F0 ++extll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x000000000000F0DE ++extll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000F0DEBC ++extll 0xF0DEBC9A78563412 0x000000000000007F = 0x00000000000000F0 ++extll 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++extll 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00000000000000F0 ++extll 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++extll 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000000000F0 ++extll 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++extll 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++extll 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++extll 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++extll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++extll 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00000000000000F0 ++extll 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78563412 ++extll 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000F0DEBC9A7856 ++=== Running test on exthb === ++exthb 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++exthb 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++exthb 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++exthb 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++exthb 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++exthb 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++exthb 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++exthb 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++exthb 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++exthb 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++exthb 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++exthb 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthb 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthb 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthb 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++exthb 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++exthb 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++exthb 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++exthb 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++exthb 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++exthb 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++exthb 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++exthb 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++exthb 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++exthb 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++exthb 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++exthb 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++exthb 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++exthb 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++exthb 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++exthb 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++exthb 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++exthb 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++exthb 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++exthb 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++exthb 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++exthb 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++exthb 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++exthb 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++exthb 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++exthb 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++exthb 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++exthb 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++exthb 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++exthb 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++exthb 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++exthb 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++exthb 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++exthb 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++exthb 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++exthb 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++exthb 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++exthb 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++exthb 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++exthb 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++exthb 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++exthb 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++exthb 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++exthb 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++exthb 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++exthb 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++exthb 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++exthb 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++exthb 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++exthb 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++exthb 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++exthb 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++exthb 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++exthb 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++exthb 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++exthb 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++exthb 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++exthb 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++exthb 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++exthb 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++exthb 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++exthb 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++exthb 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++exthb 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++exthb 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++exthb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++exthb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++exthb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++exthb 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++exthb 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x00000000000000FE ++exthb 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000000000FE ++exthb 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x00000000000000FE ++exthb 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000000000000FE ++exthb 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x00000000000000FE ++exthb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000000000FE ++exthb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x00000000000000FE ++exthb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000000000FE ++exthb 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000000000FE ++exthb 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x00000000000000FD ++exthb 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000000000FD ++exthb 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x00000000000000FD ++exthb 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000000000000FD ++exthb 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x00000000000000FD ++exthb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x00000000000000FD ++exthb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000000000FD ++exthb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00000000000000FD ++exthb 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000000000FD ++exthb 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++exthb 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++exthb 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++exthb 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++exthb 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++exthb 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++exthb 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++exthb 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++exthb 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++exthb 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++exthb 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++exthb 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++exthb 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++exthb 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++exthb 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++exthb 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++exthb 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++exthb 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++exthb 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++exthb 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++exthb 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++exthb 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++exthb 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++exthb 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++exthb 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++exthb 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++exthb 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++exthb 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++exthb 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++exthb 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++exthb 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0x0000000000007FFF 0x0000000000000000 = 0x00000000000000FF ++exthb 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++exthb 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++exthb 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++exthb 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++exthb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++exthb 0x0000000000007FFF 0x0000000000000080 = 0x00000000000000FF ++exthb 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++exthb 0x0000000000007FFF 0x0000000000008000 = 0x00000000000000FF ++exthb 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0x0000000000007FFF 0x0000000080000000 = 0x00000000000000FF ++exthb 0x0000000000007FFF 0x8000000000000000 = 0x00000000000000FF ++exthb 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++exthb 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++exthb 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++exthb 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000000007FFF 0x123456789ABCDEF0 = 0x00000000000000FF ++exthb 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++exthb 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++exthb 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++exthb 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++exthb 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++exthb 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++exthb 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++exthb 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++exthb 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++exthb 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++exthb 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++exthb 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthb 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthb 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthb 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++exthb 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0x000000007FFFFFFF 0x0000000000000000 = 0x00000000000000FF ++exthb 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++exthb 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++exthb 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++exthb 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++exthb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++exthb 0x000000007FFFFFFF 0x0000000000000080 = 0x00000000000000FF ++exthb 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++exthb 0x000000007FFFFFFF 0x0000000000008000 = 0x00000000000000FF ++exthb 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000000000FF ++exthb 0x000000007FFFFFFF 0x8000000000000000 = 0x00000000000000FF ++exthb 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++exthb 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++exthb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++exthb 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++exthb 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++exthb 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++exthb 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++exthb 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++exthb 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++exthb 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++exthb 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++exthb 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++exthb 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++exthb 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++exthb 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++exthb 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthb 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthb 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthb 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++exthb 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++exthb 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++exthb 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++exthb 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++exthb 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++exthb 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++exthb 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++exthb 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++exthb 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++exthb 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++exthb 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++exthb 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthb 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthb 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthb 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++exthb 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++exthb 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000080 ++exthb 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++exthb 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000080 ++exthb 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000080 ++exthb 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000080 ++exthb 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000080 ++exthb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++exthb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++exthb 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000080 ++exthb 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++exthb 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++exthb 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++exthb 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++exthb 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x0000000000000000 ++exthb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x0000000000000000 ++exthb 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++exthb 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++exthb 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++exthb 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++exthb 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++exthb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++exthb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++exthb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++exthb 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++exthb 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0x123456789ABCDEF0 0x0000000000000000 = 0x00000000000000F0 ++exthb 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++exthb 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++exthb 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++exthb 0x123456789ABCDEF0 0x000000000000000F = 0x0000000000000000 ++exthb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0x123456789ABCDEF0 0x000000000000007F = 0x0000000000000000 ++exthb 0x123456789ABCDEF0 0x0000000000000080 = 0x00000000000000F0 ++exthb 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++exthb 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000000000F0 ++exthb 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0x123456789ABCDEF0 0x0000000080000000 = 0x00000000000000F0 ++exthb 0x123456789ABCDEF0 0x8000000000000000 = 0x00000000000000F0 ++exthb 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x00000000000000F0 ++exthb 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x00000000000000F0 ++exthb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x00000000000000F0 ++exthb 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x00000000000000F0 ++exthb 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthb 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000012 ++exthb 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++exthb 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++exthb 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++exthb 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000000000 ++exthb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthb 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000000000 ++exthb 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000012 ++exthb 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000000 ++exthb 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000012 ++exthb 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++exthb 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000012 ++exthb 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000012 ++exthb 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000012 ++exthb 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000012 ++exthb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000012 ++exthb 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthb 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000012 ++exthb 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthh === ++exthh 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++exthh 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++exthh 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++exthh 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++exthh 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++exthh 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++exthh 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++exthh 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++exthh 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++exthh 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++exthh 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++exthh 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++exthh 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthh 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthh 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthh 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++exthh 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++exthh 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++exthh 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++exthh 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++exthh 0x0000000000000001 0x000000000000000F = 0x0000000000000100 ++exthh 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000100 ++exthh 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0x0000000000000001 0x000000000000007F = 0x0000000000000100 ++exthh 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++exthh 0x0000000000000001 0x0000000000007FFF = 0x0000000000000100 ++exthh 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++exthh 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000100 ++exthh 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++exthh 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++exthh 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++exthh 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++exthh 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++exthh 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000100 ++exthh 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++exthh 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++exthh 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++exthh 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++exthh 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++exthh 0x0000000000000002 0x000000000000000F = 0x0000000000000200 ++exthh 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000200 ++exthh 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0x0000000000000002 0x000000000000007F = 0x0000000000000200 ++exthh 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++exthh 0x0000000000000002 0x0000000000007FFF = 0x0000000000000200 ++exthh 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++exthh 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000200 ++exthh 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++exthh 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++exthh 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++exthh 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++exthh 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++exthh 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000200 ++exthh 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++exthh 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++exthh 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++exthh 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++exthh 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++exthh 0x0000000000000003 0x000000000000000F = 0x0000000000000300 ++exthh 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000300 ++exthh 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0x0000000000000003 0x000000000000007F = 0x0000000000000300 ++exthh 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++exthh 0x0000000000000003 0x0000000000007FFF = 0x0000000000000300 ++exthh 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++exthh 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000300 ++exthh 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++exthh 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++exthh 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++exthh 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++exthh 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++exthh 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000300 ++exthh 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++exthh 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++exthh 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++exthh 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++exthh 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++exthh 0x000000000000000F 0x000000000000000F = 0x0000000000000F00 ++exthh 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000F00 ++exthh 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0x000000000000000F 0x000000000000007F = 0x0000000000000F00 ++exthh 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++exthh 0x000000000000000F 0x0000000000007FFF = 0x0000000000000F00 ++exthh 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++exthh 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000F00 ++exthh 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++exthh 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++exthh 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++exthh 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++exthh 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++exthh 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000F00 ++exthh 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++exthh 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000FFFF ++exthh 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000FF00 ++exthh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000FF00 ++exthh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000FF00 ++exthh 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000FFFF ++exthh 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000FF00 ++exthh 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000FFFF ++exthh 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000FF00 ++exthh 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000FFFF ++exthh 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000FFFF ++exthh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000FFFF ++exthh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++exthh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++exthh 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000FF00 ++exthh 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000FFFF ++exthh 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x000000000000FFFE ++exthh 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000FE00 ++exthh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x000000000000FE00 ++exthh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000FE00 ++exthh 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x000000000000FFFE ++exthh 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x000000000000FE00 ++exthh 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x000000000000FFFE ++exthh 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000000000FE00 ++exthh 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x000000000000FFFE ++exthh 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x000000000000FFFE ++exthh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x000000000000FFFE ++exthh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x000000000000FFFE ++exthh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFE ++exthh 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x000000000000FE00 ++exthh 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x000000000000FFFE ++exthh 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x000000000000FFFD ++exthh 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000FD00 ++exthh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x000000000000FD00 ++exthh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000FD00 ++exthh 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x000000000000FFFD ++exthh 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x000000000000FD00 ++exthh 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x000000000000FFFD ++exthh 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000000000FD00 ++exthh 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x000000000000FFFD ++exthh 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x000000000000FFFD ++exthh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x000000000000FFFD ++exthh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x000000000000FFFD ++exthh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFD ++exthh 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x000000000000FD00 ++exthh 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x000000000000FFFD ++exthh 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++exthh 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++exthh 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++exthh 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++exthh 0x000000000000007F 0x000000000000000F = 0x0000000000007F00 ++exthh 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000007F00 ++exthh 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0x000000000000007F 0x000000000000007F = 0x0000000000007F00 ++exthh 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++exthh 0x000000000000007F 0x0000000000007FFF = 0x0000000000007F00 ++exthh 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++exthh 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000007F00 ++exthh 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++exthh 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++exthh 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++exthh 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++exthh 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++exthh 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000007F00 ++exthh 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++exthh 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++exthh 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++exthh 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++exthh 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++exthh 0x0000000000000080 0x000000000000000F = 0x0000000000008000 ++exthh 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++exthh 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0x0000000000000080 0x000000000000007F = 0x0000000000008000 ++exthh 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++exthh 0x0000000000000080 0x0000000000007FFF = 0x0000000000008000 ++exthh 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++exthh 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000008000 ++exthh 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++exthh 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++exthh 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++exthh 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++exthh 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++exthh 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++exthh 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++exthh 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++exthh 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++exthh 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++exthh 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++exthh 0x0000000000007FFF 0x000000000000000F = 0x000000000000FF00 ++exthh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x000000000000FF00 ++exthh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0x0000000000007FFF 0x000000000000007F = 0x000000000000FF00 ++exthh 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++exthh 0x0000000000007FFF 0x0000000000007FFF = 0x000000000000FF00 ++exthh 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++exthh 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000000000FF00 ++exthh 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++exthh 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++exthh 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++exthh 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++exthh 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++exthh 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x000000000000FF00 ++exthh 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++exthh 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++exthh 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++exthh 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++exthh 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++exthh 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++exthh 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++exthh 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++exthh 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++exthh 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++exthh 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++exthh 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++exthh 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++exthh 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++exthh 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++exthh 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++exthh 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++exthh 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0x000000007FFFFFFF 0x0000000000000000 = 0x000000000000FFFF ++exthh 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++exthh 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++exthh 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++exthh 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000FF00 ++exthh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000FF00 ++exthh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000FF00 ++exthh 0x000000007FFFFFFF 0x0000000000000080 = 0x000000000000FFFF ++exthh 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000000000FF00 ++exthh 0x000000007FFFFFFF 0x0000000000008000 = 0x000000000000FFFF ++exthh 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000000000FF00 ++exthh 0x000000007FFFFFFF 0x0000000080000000 = 0x000000000000FFFF ++exthh 0x000000007FFFFFFF 0x8000000000000000 = 0x000000000000FFFF ++exthh 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000000000FFFF ++exthh 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++exthh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++exthh 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000FF00 ++exthh 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000000000FFFF ++exthh 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++exthh 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++exthh 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++exthh 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++exthh 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++exthh 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++exthh 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++exthh 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++exthh 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++exthh 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++exthh 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++exthh 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++exthh 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthh 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthh 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthh 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++exthh 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++exthh 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++exthh 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++exthh 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++exthh 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++exthh 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++exthh 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++exthh 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++exthh 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++exthh 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++exthh 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++exthh 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++exthh 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthh 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthh 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthh 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++exthh 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++exthh 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x000000000000FF80 ++exthh 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x000000000000FF80 ++exthh 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x000000000000FF80 ++exthh 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x000000000000FF80 ++exthh 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x000000000000FF80 ++exthh 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x000000000000FF80 ++exthh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x000000000000FF80 ++exthh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x000000000000FF80 ++exthh 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++exthh 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x000000000000FF80 ++exthh 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x000000000000FFFF ++exthh 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++exthh 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++exthh 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++exthh 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000FF00 ++exthh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000FF00 ++exthh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000FF00 ++exthh 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x000000000000FFFF ++exthh 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x000000000000FF00 ++exthh 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x000000000000FFFF ++exthh 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000000000FF00 ++exthh 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x000000000000FFFF ++exthh 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000FFFF ++exthh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000FFFF ++exthh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000FFFF ++exthh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000FFFF ++exthh 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000000000FF00 ++exthh 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x000000000000FFFF ++exthh 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0x123456789ABCDEF0 0x0000000000000000 = 0x000000000000DEF0 ++exthh 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++exthh 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++exthh 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++exthh 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000F000 ++exthh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x000000000000F000 ++exthh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000F000 ++exthh 0x123456789ABCDEF0 0x0000000000000080 = 0x000000000000DEF0 ++exthh 0x123456789ABCDEF0 0x0000000000007FFF = 0x000000000000F000 ++exthh 0x123456789ABCDEF0 0x0000000000008000 = 0x000000000000DEF0 ++exthh 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000000000F000 ++exthh 0x123456789ABCDEF0 0x0000000080000000 = 0x000000000000DEF0 ++exthh 0x123456789ABCDEF0 0x8000000000000000 = 0x000000000000DEF0 ++exthh 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000000000DEF0 ++exthh 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000000000DEF0 ++exthh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000000000DEF0 ++exthh 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x000000000000F000 ++exthh 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000000000DEF0 ++exthh 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthh 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000003412 ++exthh 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++exthh 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++exthh 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++exthh 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000000001200 ++exthh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000001200 ++exthh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthh 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000000001200 ++exthh 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000003412 ++exthh 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000001200 ++exthh 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000003412 ++exthh 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000001200 ++exthh 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000003412 ++exthh 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000003412 ++exthh 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000003412 ++exthh 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000003412 ++exthh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000003412 ++exthh 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000001200 ++exthh 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000003412 ++exthh 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthw === ++exthw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++exthw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++exthw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++exthw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++exthw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++exthw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++exthw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++exthw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++exthw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++exthw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++exthw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++exthw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++exthw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++exthw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++exthw 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++exthw 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++exthw 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++exthw 0x0000000000000001 0x000000000000000F = 0x0000000000000100 ++exthw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000100 ++exthw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000010000 ++exthw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000001000000 ++exthw 0x0000000000000001 0x000000000000007F = 0x0000000000000100 ++exthw 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++exthw 0x0000000000000001 0x0000000000007FFF = 0x0000000000000100 ++exthw 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++exthw 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000100 ++exthw 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++exthw 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++exthw 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++exthw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++exthw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++exthw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000100 ++exthw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++exthw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++exthw 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++exthw 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++exthw 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++exthw 0x0000000000000002 0x000000000000000F = 0x0000000000000200 ++exthw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000200 ++exthw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000020000 ++exthw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000002000000 ++exthw 0x0000000000000002 0x000000000000007F = 0x0000000000000200 ++exthw 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++exthw 0x0000000000000002 0x0000000000007FFF = 0x0000000000000200 ++exthw 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++exthw 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000200 ++exthw 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++exthw 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++exthw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++exthw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++exthw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++exthw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000200 ++exthw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++exthw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++exthw 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++exthw 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++exthw 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++exthw 0x0000000000000003 0x000000000000000F = 0x0000000000000300 ++exthw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000300 ++exthw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000030000 ++exthw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000003000000 ++exthw 0x0000000000000003 0x000000000000007F = 0x0000000000000300 ++exthw 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++exthw 0x0000000000000003 0x0000000000007FFF = 0x0000000000000300 ++exthw 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++exthw 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000300 ++exthw 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++exthw 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++exthw 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++exthw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++exthw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++exthw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000300 ++exthw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++exthw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++exthw 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++exthw 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++exthw 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++exthw 0x000000000000000F 0x000000000000000F = 0x0000000000000F00 ++exthw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000F00 ++exthw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x00000000000F0000 ++exthw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000F000000 ++exthw 0x000000000000000F 0x000000000000007F = 0x0000000000000F00 ++exthw 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++exthw 0x000000000000000F 0x0000000000007FFF = 0x0000000000000F00 ++exthw 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++exthw 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000F00 ++exthw 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++exthw 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++exthw 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++exthw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++exthw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++exthw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000F00 ++exthw 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++exthw 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000FFFFFFFF ++exthw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000FFFFFF00 ++exthw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFF00 ++exthw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000FFFF0000 ++exthw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000FF000000 ++exthw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000FFFFFF00 ++exthw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000FFFFFFFF ++exthw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000FFFFFF00 ++exthw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000FFFFFFFF ++exthw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000FFFFFF00 ++exthw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000FFFFFFFF ++exthw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000FFFFFFFF ++exthw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000FFFFFFFF ++exthw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFFFF ++exthw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFF ++exthw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFF00 ++exthw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000FFFFFFFF ++exthw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x00000000FFFFFFFE ++exthw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00000000FFFFFE00 ++exthw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFE00 ++exthw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x00000000FFFE0000 ++exthw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x00000000FE000000 ++exthw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00000000FFFFFE00 ++exthw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000FFFFFFFE ++exthw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000FFFFFE00 ++exthw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x00000000FFFFFFFE ++exthw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00000000FFFFFE00 ++exthw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000000FFFFFFFE ++exthw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x00000000FFFFFFFE ++exthw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000FFFFFFFE ++exthw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFFFE ++exthw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFE ++exthw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFE00 ++exthw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000FFFFFFFE ++exthw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x00000000FFFFFFFD ++exthw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000FFFFFD00 ++exthw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFD00 ++exthw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x00000000FFFD0000 ++exthw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x00000000FD000000 ++exthw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00000000FFFFFD00 ++exthw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000FFFFFFFD ++exthw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000FFFFFD00 ++exthw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x00000000FFFFFFFD ++exthw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000FFFFFD00 ++exthw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000000FFFFFFFD ++exthw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x00000000FFFFFFFD ++exthw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x00000000FFFFFFFD ++exthw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFFFD ++exthw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFD ++exthw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFD00 ++exthw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000FFFFFFFD ++exthw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++exthw 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++exthw 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++exthw 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++exthw 0x000000000000007F 0x000000000000000F = 0x0000000000007F00 ++exthw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000007F00 ++exthw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000007F0000 ++exthw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000007F000000 ++exthw 0x000000000000007F 0x000000000000007F = 0x0000000000007F00 ++exthw 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++exthw 0x000000000000007F 0x0000000000007FFF = 0x0000000000007F00 ++exthw 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++exthw 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000007F00 ++exthw 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++exthw 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++exthw 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++exthw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++exthw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++exthw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000007F00 ++exthw 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++exthw 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++exthw 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++exthw 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++exthw 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++exthw 0x0000000000000080 0x000000000000000F = 0x0000000000008000 ++exthw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++exthw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000800000 ++exthw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++exthw 0x0000000000000080 0x000000000000007F = 0x0000000000008000 ++exthw 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++exthw 0x0000000000000080 0x0000000000007FFF = 0x0000000000008000 ++exthw 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++exthw 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000008000 ++exthw 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++exthw 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++exthw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++exthw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++exthw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++exthw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++exthw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++exthw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++exthw 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000000 ++exthw 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++exthw 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++exthw 0x0000000000007FFF 0x000000000000000F = 0x00000000007FFF00 ++exthw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x00000000007FFF00 ++exthw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFF0000 ++exthw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x00000000FF000000 ++exthw 0x0000000000007FFF 0x000000000000007F = 0x00000000007FFF00 ++exthw 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++exthw 0x0000000000007FFF 0x0000000000007FFF = 0x00000000007FFF00 ++exthw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++exthw 0x0000000000007FFF 0x000000007FFFFFFF = 0x00000000007FFF00 ++exthw 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++exthw 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++exthw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++exthw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++exthw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++exthw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x00000000007FFF00 ++exthw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++exthw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++exthw 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++exthw 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++exthw 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++exthw 0x0000000000008000 0x000000000000000F = 0x0000000000800000 ++exthw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000800000 ++exthw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++exthw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthw 0x0000000000008000 0x000000000000007F = 0x0000000000800000 ++exthw 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++exthw 0x0000000000008000 0x0000000000007FFF = 0x0000000000800000 ++exthw 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++exthw 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000800000 ++exthw 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++exthw 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++exthw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++exthw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++exthw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++exthw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000800000 ++exthw 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++exthw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++exthw 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000000 ++exthw 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000000 ++exthw 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000000 ++exthw 0x000000007FFFFFFF 0x000000000000000F = 0x00000000FFFFFF00 ++exthw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFF00 ++exthw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000FFFF0000 ++exthw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000FF000000 ++exthw 0x000000007FFFFFFF 0x000000000000007F = 0x00000000FFFFFF00 ++exthw 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++exthw 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000000FFFFFF00 ++exthw 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++exthw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x00000000FFFFFF00 ++exthw 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++exthw 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++exthw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++exthw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++exthw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++exthw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFF00 ++exthw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++exthw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++exthw 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++exthw 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++exthw 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++exthw 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++exthw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthw 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++exthw 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++exthw 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++exthw 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++exthw 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++exthw 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++exthw 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++exthw 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++exthw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++exthw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++exthw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++exthw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++exthw 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++exthw 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++exthw 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++exthw 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++exthw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthw 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++exthw 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++exthw 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++exthw 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++exthw 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++exthw 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++exthw 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++exthw 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthw 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++exthw 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000080000000 ++exthw 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++exthw 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++exthw 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++exthw 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000000000000 ++exthw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthw 0xFFFFFFFF80000000 0x000000000000007F = 0x0000000000000000 ++exthw 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000080000000 ++exthw 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++exthw 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000080000000 ++exthw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++exthw 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++exthw 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000080000000 ++exthw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++exthw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++exthw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++exthw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000080000000 ++exthw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00000000FF800000 ++exthw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00000000FF800000 ++exthw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++exthw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000FF800000 ++exthw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00000000FF800000 ++exthw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00000000FF800000 ++exthw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00000000FF800000 ++exthw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x00000000FFFFFF80 ++exthw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000000 ++exthw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x00000000FF800000 ++exthw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++exthw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x00000000FFFFFF80 ++exthw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x00000000FFFFFF80 ++exthw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x00000000FFFFFF80 ++exthw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x00000000FFFFFF80 ++exthw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x00000000FFFFFF80 ++exthw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFF80 ++exthw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFF80 ++exthw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000FFFF8000 ++exthw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x00000000FFFFFF80 ++exthw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000FFFFFFFF ++exthw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000000 ++exthw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000000 ++exthw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000000 ++exthw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000FFFFFF00 ++exthw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000FFFFFF00 ++exthw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000FFFF0000 ++exthw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000FF000000 ++exthw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000FFFFFF00 ++exthw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000FFFFFFFF ++exthw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000FFFFFF00 ++exthw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000FFFFFFFF ++exthw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000FFFFFF00 ++exthw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000FFFFFFFF ++exthw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000FFFFFFFF ++exthw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000FFFFFFFF ++exthw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000FFFFFFFF ++exthw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000FFFFFFFF ++exthw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000FFFFFF00 ++exthw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000FFFFFFFF ++exthw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0x123456789ABCDEF0 0x0000000000000000 = 0x000000009ABCDEF0 ++exthw 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000000 ++exthw 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000000 ++exthw 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000000 ++exthw 0x123456789ABCDEF0 0x000000000000000F = 0x00000000BCDEF000 ++exthw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x00000000BCDEF000 ++exthw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x00000000DEF00000 ++exthw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x00000000F0000000 ++exthw 0x123456789ABCDEF0 0x000000000000007F = 0x00000000BCDEF000 ++exthw 0x123456789ABCDEF0 0x0000000000000080 = 0x000000009ABCDEF0 ++exthw 0x123456789ABCDEF0 0x0000000000007FFF = 0x00000000BCDEF000 ++exthw 0x123456789ABCDEF0 0x0000000000008000 = 0x000000009ABCDEF0 ++exthw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x00000000BCDEF000 ++exthw 0x123456789ABCDEF0 0x0000000080000000 = 0x000000009ABCDEF0 ++exthw 0x123456789ABCDEF0 0x8000000000000000 = 0x000000009ABCDEF0 ++exthw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000009ABCDEF0 ++exthw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x000000009ABCDEF0 ++exthw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x000000009ABCDEF0 ++exthw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x00000000BCDEF000 ++exthw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000009ABCDEF0 ++exthw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthw 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000078563412 ++exthw 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000000 ++exthw 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000000 ++exthw 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000000 ++exthw 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000056341200 ++exthw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000056341200 ++exthw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000034120000 ++exthw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000012000000 ++exthw 0xF0DEBC9A78563412 0x000000000000007F = 0x0000000056341200 ++exthw 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000078563412 ++exthw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000056341200 ++exthw 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000078563412 ++exthw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000056341200 ++exthw 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000078563412 ++exthw 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000078563412 ++exthw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000078563412 ++exthw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000078563412 ++exthw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000078563412 ++exthw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000056341200 ++exthw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000078563412 ++exthw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on exthl === ++exthl 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++exthl 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++exthl 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++exthl 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++exthl 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++exthl 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthl 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthl 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthl 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++exthl 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++exthl 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++exthl 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++exthl 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++exthl 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++exthl 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++exthl 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++exthl 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++exthl 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++exthl 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthl 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++exthl 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthl 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++exthl 0x0000000000000001 0x0000000000000001 = 0x0100000000000000 ++exthl 0x0000000000000001 0x0000000000000002 = 0x0001000000000000 ++exthl 0x0000000000000001 0x0000000000000003 = 0x0000010000000000 ++exthl 0x0000000000000001 0x000000000000000F = 0x0000000000000100 ++exthl 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000100 ++exthl 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000010000 ++exthl 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000001000000 ++exthl 0x0000000000000001 0x000000000000007F = 0x0000000000000100 ++exthl 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++exthl 0x0000000000000001 0x0000000000007FFF = 0x0000000000000100 ++exthl 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++exthl 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000100 ++exthl 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++exthl 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++exthl 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++exthl 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++exthl 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++exthl 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000100 ++exthl 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++exthl 0x0000000000000001 0xF0DEBC9A78563412 = 0x0001000000000000 ++exthl 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++exthl 0x0000000000000002 0x0000000000000001 = 0x0200000000000000 ++exthl 0x0000000000000002 0x0000000000000002 = 0x0002000000000000 ++exthl 0x0000000000000002 0x0000000000000003 = 0x0000020000000000 ++exthl 0x0000000000000002 0x000000000000000F = 0x0000000000000200 ++exthl 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000200 ++exthl 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000020000 ++exthl 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000002000000 ++exthl 0x0000000000000002 0x000000000000007F = 0x0000000000000200 ++exthl 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++exthl 0x0000000000000002 0x0000000000007FFF = 0x0000000000000200 ++exthl 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++exthl 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000200 ++exthl 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++exthl 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++exthl 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++exthl 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++exthl 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++exthl 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000200 ++exthl 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++exthl 0x0000000000000002 0xF0DEBC9A78563412 = 0x0002000000000000 ++exthl 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++exthl 0x0000000000000003 0x0000000000000001 = 0x0300000000000000 ++exthl 0x0000000000000003 0x0000000000000002 = 0x0003000000000000 ++exthl 0x0000000000000003 0x0000000000000003 = 0x0000030000000000 ++exthl 0x0000000000000003 0x000000000000000F = 0x0000000000000300 ++exthl 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000300 ++exthl 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000030000 ++exthl 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000003000000 ++exthl 0x0000000000000003 0x000000000000007F = 0x0000000000000300 ++exthl 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++exthl 0x0000000000000003 0x0000000000007FFF = 0x0000000000000300 ++exthl 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++exthl 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000300 ++exthl 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++exthl 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++exthl 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++exthl 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++exthl 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++exthl 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000300 ++exthl 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++exthl 0x0000000000000003 0xF0DEBC9A78563412 = 0x0003000000000000 ++exthl 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++exthl 0x000000000000000F 0x0000000000000001 = 0x0F00000000000000 ++exthl 0x000000000000000F 0x0000000000000002 = 0x000F000000000000 ++exthl 0x000000000000000F 0x0000000000000003 = 0x00000F0000000000 ++exthl 0x000000000000000F 0x000000000000000F = 0x0000000000000F00 ++exthl 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000F00 ++exthl 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x00000000000F0000 ++exthl 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000F000000 ++exthl 0x000000000000000F 0x000000000000007F = 0x0000000000000F00 ++exthl 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++exthl 0x000000000000000F 0x0000000000007FFF = 0x0000000000000F00 ++exthl 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++exthl 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000F00 ++exthl 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++exthl 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++exthl 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++exthl 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++exthl 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++exthl 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000F00 ++exthl 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++exthl 0x000000000000000F 0xF0DEBC9A78563412 = 0x000F000000000000 ++exthl 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++exthl 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFF00000000000000 ++exthl 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFF000000000000 ++exthl 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFF0000000000 ++exthl 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFF00 ++exthl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++exthl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++exthl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFF000000 ++exthl 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF00 ++exthl 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++exthl 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFF00 ++exthl 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++exthl 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF00 ++exthl 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++exthl 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++exthl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++exthl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++exthl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++exthl 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++exthl 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++exthl 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFF000000000000 ++exthl 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++exthl 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFE00000000000000 ++exthl 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFE000000000000 ++exthl 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFE0000000000 ++exthl 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFE00 ++exthl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFE00 ++exthl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFE0000 ++exthl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFE000000 ++exthl 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFE00 ++exthl 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++exthl 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFE00 ++exthl 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++exthl 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFE00 ++exthl 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++exthl 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++exthl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++exthl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++exthl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++exthl 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFE00 ++exthl 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++exthl 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFE000000000000 ++exthl 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++exthl 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFD00000000000000 ++exthl 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFD000000000000 ++exthl 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFD0000000000 ++exthl 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFD00 ++exthl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFD00 ++exthl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFD0000 ++exthl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFD000000 ++exthl 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFD00 ++exthl 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++exthl 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFD00 ++exthl 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++exthl 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFD00 ++exthl 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++exthl 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++exthl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++exthl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++exthl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++exthl 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFD00 ++exthl 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++exthl 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFD000000000000 ++exthl 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++exthl 0x000000000000007F 0x0000000000000001 = 0x7F00000000000000 ++exthl 0x000000000000007F 0x0000000000000002 = 0x007F000000000000 ++exthl 0x000000000000007F 0x0000000000000003 = 0x00007F0000000000 ++exthl 0x000000000000007F 0x000000000000000F = 0x0000000000007F00 ++exthl 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000007F00 ++exthl 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x00000000007F0000 ++exthl 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000007F000000 ++exthl 0x000000000000007F 0x000000000000007F = 0x0000000000007F00 ++exthl 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++exthl 0x000000000000007F 0x0000000000007FFF = 0x0000000000007F00 ++exthl 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++exthl 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000007F00 ++exthl 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++exthl 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++exthl 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++exthl 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++exthl 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++exthl 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000007F00 ++exthl 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++exthl 0x000000000000007F 0xF0DEBC9A78563412 = 0x007F000000000000 ++exthl 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++exthl 0x0000000000000080 0x0000000000000001 = 0x8000000000000000 ++exthl 0x0000000000000080 0x0000000000000002 = 0x0080000000000000 ++exthl 0x0000000000000080 0x0000000000000003 = 0x0000800000000000 ++exthl 0x0000000000000080 0x000000000000000F = 0x0000000000008000 ++exthl 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++exthl 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000800000 ++exthl 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++exthl 0x0000000000000080 0x000000000000007F = 0x0000000000008000 ++exthl 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++exthl 0x0000000000000080 0x0000000000007FFF = 0x0000000000008000 ++exthl 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++exthl 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000008000 ++exthl 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++exthl 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++exthl 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++exthl 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++exthl 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++exthl 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++exthl 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++exthl 0x0000000000000080 0xF0DEBC9A78563412 = 0x0080000000000000 ++exthl 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++exthl 0x0000000000007FFF 0x0000000000000001 = 0xFF00000000000000 ++exthl 0x0000000000007FFF 0x0000000000000002 = 0x7FFF000000000000 ++exthl 0x0000000000007FFF 0x0000000000000003 = 0x007FFF0000000000 ++exthl 0x0000000000007FFF 0x000000000000000F = 0x00000000007FFF00 ++exthl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x00000000007FFF00 ++exthl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFF0000 ++exthl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000007FFF000000 ++exthl 0x0000000000007FFF 0x000000000000007F = 0x00000000007FFF00 ++exthl 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++exthl 0x0000000000007FFF 0x0000000000007FFF = 0x00000000007FFF00 ++exthl 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++exthl 0x0000000000007FFF 0x000000007FFFFFFF = 0x00000000007FFF00 ++exthl 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++exthl 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++exthl 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++exthl 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++exthl 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++exthl 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x00000000007FFF00 ++exthl 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++exthl 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x7FFF000000000000 ++exthl 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++exthl 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++exthl 0x0000000000008000 0x0000000000000002 = 0x8000000000000000 ++exthl 0x0000000000008000 0x0000000000000003 = 0x0080000000000000 ++exthl 0x0000000000008000 0x000000000000000F = 0x0000000000800000 ++exthl 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000800000 ++exthl 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++exthl 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000008000000000 ++exthl 0x0000000000008000 0x000000000000007F = 0x0000000000800000 ++exthl 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++exthl 0x0000000000008000 0x0000000000007FFF = 0x0000000000800000 ++exthl 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++exthl 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000800000 ++exthl 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++exthl 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++exthl 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++exthl 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++exthl 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++exthl 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000800000 ++exthl 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++exthl 0x0000000000008000 0xF0DEBC9A78563412 = 0x8000000000000000 ++exthl 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++exthl 0x000000007FFFFFFF 0x0000000000000001 = 0xFF00000000000000 ++exthl 0x000000007FFFFFFF 0x0000000000000002 = 0xFFFF000000000000 ++exthl 0x000000007FFFFFFF 0x0000000000000003 = 0xFFFFFF0000000000 ++exthl 0x000000007FFFFFFF 0x000000000000000F = 0x0000007FFFFFFF00 ++exthl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000007FFFFFFF00 ++exthl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00007FFFFFFF0000 ++exthl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x007FFFFFFF000000 ++exthl 0x000000007FFFFFFF 0x000000000000007F = 0x0000007FFFFFFF00 ++exthl 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++exthl 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000007FFFFFFF00 ++exthl 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++exthl 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000007FFFFFFF00 ++exthl 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++exthl 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++exthl 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++exthl 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++exthl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++exthl 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000007FFFFFFF00 ++exthl 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++exthl 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xFFFF000000000000 ++exthl 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++exthl 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++exthl 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++exthl 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++exthl 0x0000000080000000 0x000000000000000F = 0x0000008000000000 ++exthl 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000008000000000 ++exthl 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000800000000000 ++exthl 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0080000000000000 ++exthl 0x0000000080000000 0x000000000000007F = 0x0000008000000000 ++exthl 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++exthl 0x0000000080000000 0x0000000000007FFF = 0x0000008000000000 ++exthl 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++exthl 0x0000000080000000 0x000000007FFFFFFF = 0x0000008000000000 ++exthl 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++exthl 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++exthl 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++exthl 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++exthl 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++exthl 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000008000000000 ++exthl 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++exthl 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthl 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++exthl 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++exthl 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++exthl 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++exthl 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++exthl 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++exthl 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++exthl 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++exthl 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++exthl 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++exthl 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++exthl 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++exthl 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++exthl 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++exthl 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++exthl 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++exthl 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++exthl 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++exthl 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++exthl 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++exthl 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthl 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++exthl 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++exthl 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++exthl 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++exthl 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFF8000000000 ++exthl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFF8000000000 ++exthl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFF800000000000 ++exthl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFF80000000000000 ++exthl 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFF8000000000 ++exthl 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++exthl 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFF8000000000 ++exthl 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++exthl 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFF8000000000 ++exthl 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++exthl 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++exthl 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++exthl 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++exthl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++exthl 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFF8000000000 ++exthl 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++exthl 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++exthl 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++exthl 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x8000000000000000 ++exthl 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFF80000000000000 ++exthl 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFF800000 ++exthl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFF800000 ++exthl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++exthl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFF8000000000 ++exthl 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFF800000 ++exthl 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFF800000 ++exthl 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFF800000 ++exthl 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFF800000 ++exthl 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x8000000000000000 ++exthl 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++exthl 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x8000000000000000 ++exthl 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFF80000000000000 ++exthl 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFF800000000000 ++exthl 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFF800000 ++exthl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++exthl 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++exthl 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++exthl 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++exthl 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++exthl 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++exthl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++exthl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++exthl 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++exthl 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF80 ++exthl 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFF80000000000000 ++exthl 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++exthl 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0xFF00000000000000 ++exthl 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFF000000000000 ++exthl 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFF0000000000 ++exthl 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFF00 ++exthl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++exthl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++exthl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFF000000 ++exthl 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF00 ++exthl 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++exthl 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFF00 ++exthl 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++exthl 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF00 ++exthl 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++exthl 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++exthl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++exthl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++exthl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++exthl 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++exthl 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFFFFFF ++exthl 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFF000000000000 ++exthl 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++exthl 0x123456789ABCDEF0 0x0000000000000001 = 0xF000000000000000 ++exthl 0x123456789ABCDEF0 0x0000000000000002 = 0xDEF0000000000000 ++exthl 0x123456789ABCDEF0 0x0000000000000003 = 0xBCDEF00000000000 ++exthl 0x123456789ABCDEF0 0x000000000000000F = 0x3456789ABCDEF000 ++exthl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x3456789ABCDEF000 ++exthl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x56789ABCDEF00000 ++exthl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x789ABCDEF0000000 ++exthl 0x123456789ABCDEF0 0x000000000000007F = 0x3456789ABCDEF000 ++exthl 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++exthl 0x123456789ABCDEF0 0x0000000000007FFF = 0x3456789ABCDEF000 ++exthl 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++exthl 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x3456789ABCDEF000 ++exthl 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++exthl 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++exthl 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++exthl 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++exthl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++exthl 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x3456789ABCDEF000 ++exthl 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++exthl 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xDEF0000000000000 ++exthl 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++exthl 0xF0DEBC9A78563412 0x0000000000000001 = 0x1200000000000000 ++exthl 0xF0DEBC9A78563412 0x0000000000000002 = 0x3412000000000000 ++exthl 0xF0DEBC9A78563412 0x0000000000000003 = 0x5634120000000000 ++exthl 0xF0DEBC9A78563412 0x000000000000000F = 0xDEBC9A7856341200 ++exthl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xDEBC9A7856341200 ++exthl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xBC9A785634120000 ++exthl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x9A78563412000000 ++exthl 0xF0DEBC9A78563412 0x000000000000007F = 0xDEBC9A7856341200 ++exthl 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++exthl 0xF0DEBC9A78563412 0x0000000000007FFF = 0xDEBC9A7856341200 ++exthl 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++exthl 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xDEBC9A7856341200 ++exthl 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++exthl 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++exthl 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++exthl 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++exthl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++exthl 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xDEBC9A7856341200 ++exthl 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78563412 ++exthl 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x3412000000000000 ++=== Running test on ctpop === ++ctpop 0x0000000000000000 = 0x0000000000000000 ++ctpop 0x0000000000000001 = 0x0000000000000001 ++ctpop 0x0000000000000002 = 0x0000000000000001 ++ctpop 0x0000000000000003 = 0x0000000000000002 ++ctpop 0x000000000000000F = 0x0000000000000004 ++ctpop 0xFFFFFFFFFFFFFFFF = 0x0000000000000040 ++ctpop 0xFFFFFFFFFFFFFFFE = 0x000000000000003F ++ctpop 0xFFFFFFFFFFFFFFFD = 0x000000000000003F ++ctpop 0x000000000000007F = 0x0000000000000007 ++ctpop 0x0000000000000080 = 0x0000000000000001 ++ctpop 0x0000000000007FFF = 0x000000000000000F ++ctpop 0x0000000000008000 = 0x0000000000000001 ++ctpop 0x000000007FFFFFFF = 0x000000000000001F ++ctpop 0x0000000080000000 = 0x0000000000000001 ++ctpop 0x8000000000000000 = 0x0000000000000001 ++ctpop 0xFFFFFFFF80000000 = 0x0000000000000021 ++ctpop 0xFFFFFFFFFFFF8000 = 0x0000000000000031 ++ctpop 0xFFFFFFFFFFFFFF80 = 0x0000000000000039 ++ctpop 0x7FFFFFFFFFFFFFFF = 0x000000000000003F ++ctpop 0x123456789ABCDEF0 = 0x0000000000000020 ++ctpop 0xF0DEBC9A78563412 = 0x0000000000000020 ++=== Running test on ctlz === ++ctlz 0x0000000000000000 = 0x0000000000000040 ++ctlz 0x0000000000000001 = 0x000000000000003F ++ctlz 0x0000000000000002 = 0x000000000000003E ++ctlz 0x0000000000000003 = 0x000000000000003E ++ctlz 0x000000000000000F = 0x000000000000003C ++ctlz 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++ctlz 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++ctlz 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++ctlz 0x000000000000007F = 0x0000000000000039 ++ctlz 0x0000000000000080 = 0x0000000000000038 ++ctlz 0x0000000000007FFF = 0x0000000000000031 ++ctlz 0x0000000000008000 = 0x0000000000000030 ++ctlz 0x000000007FFFFFFF = 0x0000000000000021 ++ctlz 0x0000000080000000 = 0x0000000000000020 ++ctlz 0x8000000000000000 = 0x0000000000000000 ++ctlz 0xFFFFFFFF80000000 = 0x0000000000000000 ++ctlz 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++ctlz 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++ctlz 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++ctlz 0x123456789ABCDEF0 = 0x0000000000000003 ++ctlz 0xF0DEBC9A78563412 = 0x0000000000000000 ++=== Running test on cttz === ++cttz 0x0000000000000000 = 0x0000000000000040 ++cttz 0x0000000000000001 = 0x0000000000000000 ++cttz 0x0000000000000002 = 0x0000000000000001 ++cttz 0x0000000000000003 = 0x0000000000000000 ++cttz 0x000000000000000F = 0x0000000000000000 ++cttz 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cttz 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cttz 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cttz 0x000000000000007F = 0x0000000000000000 ++cttz 0x0000000000000080 = 0x0000000000000007 ++cttz 0x0000000000007FFF = 0x0000000000000000 ++cttz 0x0000000000008000 = 0x000000000000000F ++cttz 0x000000007FFFFFFF = 0x0000000000000000 ++cttz 0x0000000080000000 = 0x000000000000001F ++cttz 0x8000000000000000 = 0x000000000000003F ++cttz 0xFFFFFFFF80000000 = 0x000000000000001F ++cttz 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++cttz 0xFFFFFFFFFFFFFF80 = 0x0000000000000007 ++cttz 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cttz 0x123456789ABCDEF0 = 0x0000000000000004 ++cttz 0xF0DEBC9A78563412 = 0x0000000000000001 ++=== Running test on masklb === ++masklb 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++masklb 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++masklb 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++masklb 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++masklb 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++masklb 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++masklb 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++masklb 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++masklb 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++masklb 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++masklb 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++masklb 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++masklb 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++masklb 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++masklb 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++masklb 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklb 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklb 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklb 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++masklb 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++masklb 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++masklb 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++masklb 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++masklb 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++masklb 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++masklb 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++masklb 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++masklb 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++masklb 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++masklb 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++masklb 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++masklb 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++masklb 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++masklb 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++masklb 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++masklb 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++masklb 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklb 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklb 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklb 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++masklb 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++masklb 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++masklb 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++masklb 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++masklb 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++masklb 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++masklb 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++masklb 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++masklb 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++masklb 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++masklb 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++masklb 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++masklb 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++masklb 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++masklb 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++masklb 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++masklb 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++masklb 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklb 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklb 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklb 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++masklb 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++masklb 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++masklb 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++masklb 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++masklb 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++masklb 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++masklb 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++masklb 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++masklb 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++masklb 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++masklb 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++masklb 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++masklb 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++masklb 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++masklb 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++masklb 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++masklb 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++masklb 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklb 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklb 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklb 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++masklb 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++masklb 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++masklb 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++masklb 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++masklb 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++masklb 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++masklb 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++masklb 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++masklb 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++masklb 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++masklb 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++masklb 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++masklb 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++masklb 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++masklb 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++masklb 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++masklb 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++masklb 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklb 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklb 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklb 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++masklb 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++masklb 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++masklb 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFF00FF ++masklb 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFF00FFFF ++masklb 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFF00FFFFFF ++masklb 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00FFFFFFFFFFFFFF ++masklb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFF00FFFFFFFFFFFF ++masklb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFF00FFFFFFFFFF ++masklb 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00FFFFFFFFFFFFFF ++masklb 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00FFFFFFFFFFFFFF ++masklb 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFF ++masklb 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklb 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFF00FFFF ++masklb 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFF00FE ++masklb 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFF00FFFE ++masklb 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFF00FFFFFE ++masklb 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00FFFFFFFFFFFFFE ++masklb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFE ++masklb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFF00FFFFFFFFFFFE ++masklb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFF00FFFFFFFFFE ++masklb 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00FFFFFFFFFFFFFE ++masklb 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00FFFFFFFFFFFFFE ++masklb 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFE ++masklb 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFE ++masklb 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFF00FFFE ++masklb 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFF00FD ++masklb 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFF00FFFD ++masklb 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFF00FFFFFD ++masklb 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00FFFFFFFFFFFFFD ++masklb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFD ++masklb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFF00FFFFFFFFFFFD ++masklb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFF00FFFFFFFFFD ++masklb 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00FFFFFFFFFFFFFD ++masklb 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00FFFFFFFFFFFFFD ++masklb 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFD ++masklb 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFD ++masklb 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFF00FFFD ++masklb 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++masklb 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++masklb 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++masklb 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++masklb 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++masklb 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++masklb 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++masklb 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++masklb 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++masklb 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++masklb 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++masklb 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++masklb 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++masklb 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++masklb 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++masklb 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklb 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklb 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklb 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++masklb 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++masklb 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++masklb 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++masklb 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++masklb 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++masklb 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++masklb 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++masklb 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++masklb 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++masklb 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++masklb 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++masklb 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++masklb 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++masklb 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++masklb 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++masklb 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++masklb 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++masklb 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklb 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklb 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklb 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++masklb 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++masklb 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++masklb 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007F00 ++masklb 0x0000000000007FFF 0x0000000000000001 = 0x00000000000000FF ++masklb 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFF ++masklb 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFF ++masklb 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FFF ++masklb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++masklb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++masklb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++masklb 0x0000000000007FFF 0x000000000000007F = 0x0000000000007FFF ++masklb 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007F00 ++masklb 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++masklb 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007F00 ++masklb 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++masklb 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007F00 ++masklb 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007F00 ++masklb 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007F00 ++masklb 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007F00 ++masklb 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007F00 ++masklb 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++masklb 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007F00 ++masklb 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++masklb 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++masklb 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++masklb 0x0000000000008000 0x0000000000000002 = 0x0000000000008000 ++masklb 0x0000000000008000 0x0000000000000003 = 0x0000000000008000 ++masklb 0x0000000000008000 0x000000000000000F = 0x0000000000008000 ++masklb 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++masklb 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++masklb 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++masklb 0x0000000000008000 0x000000000000007F = 0x0000000000008000 ++masklb 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++masklb 0x0000000000008000 0x0000000000007FFF = 0x0000000000008000 ++masklb 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++masklb 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++masklb 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++masklb 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++masklb 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++masklb 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++masklb 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++masklb 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++masklb 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++masklb 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++masklb 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFF00 ++masklb 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFF00FF ++masklb 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007F00FFFF ++masklb 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000FFFFFF ++masklb 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFFF ++masklb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++masklb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++masklb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++masklb 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFFFF ++masklb 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFF00 ++masklb 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFFFFFF ++masklb 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFF00 ++masklb 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++masklb 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFF00 ++masklb 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFF00 ++masklb 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFF00 ++masklb 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFF00 ++masklb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFF00 ++masklb 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++masklb 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFF00 ++masklb 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007F00FFFF ++masklb 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++masklb 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++masklb 0x0000000080000000 0x0000000000000002 = 0x0000000080000000 ++masklb 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++masklb 0x0000000080000000 0x000000000000000F = 0x0000000080000000 ++masklb 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++masklb 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++masklb 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++masklb 0x0000000080000000 0x000000000000007F = 0x0000000080000000 ++masklb 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++masklb 0x0000000080000000 0x0000000000007FFF = 0x0000000080000000 ++masklb 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++masklb 0x0000000080000000 0x000000007FFFFFFF = 0x0000000080000000 ++masklb 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++masklb 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++masklb 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++masklb 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++masklb 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++masklb 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++masklb 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++masklb 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080000000 ++masklb 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++masklb 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++masklb 0x8000000000000000 0x0000000000000002 = 0x8000000000000000 ++masklb 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++masklb 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++masklb 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++masklb 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++masklb 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++masklb 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++masklb 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++masklb 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++masklb 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++masklb 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++masklb 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++masklb 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++masklb 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++masklb 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++masklb 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++masklb 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++masklb 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++masklb 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++masklb 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF00000000 ++masklb 0xFFFFFFFF80000000 0x000000000000000F = 0x00FFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00FFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFF00FFFF80000000 ++masklb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFF00FF80000000 ++masklb 0xFFFFFFFF80000000 0x000000000000007F = 0x00FFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00FFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00FFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00FFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++masklb 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++masklb 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF0000 ++masklb 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFF008000 ++masklb 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFF00FF8000 ++masklb 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00FFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFF00FFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFF00FFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00FFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00FFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00FFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++masklb 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFF008000 ++masklb 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFF0080 ++masklb 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFF00FF80 ++masklb 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFF00FFFF80 ++masklb 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00FFFFFFFFFFFF80 ++masklb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFF80 ++masklb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFF00FFFFFFFFFF80 ++masklb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFF00FFFFFFFF80 ++masklb 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00FFFFFFFFFFFF80 ++masklb 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00FFFFFFFFFFFF80 ++masklb 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00FFFFFFFFFFFF80 ++masklb 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFF80 ++masklb 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF00 ++masklb 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFF00FF80 ++masklb 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFF00 ++masklb 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFF00FF ++masklb 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFF00FFFF ++masklb 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFF00FFFFFF ++masklb 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00FFFFFFFFFFFFFF ++masklb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7F00FFFFFFFFFFFF ++masklb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFF00FFFFFFFFFF ++masklb 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00FFFFFFFFFFFFFF ++masklb 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFF00 ++masklb 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00FFFFFFFFFFFFFF ++masklb 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFF00 ++masklb 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFF ++masklb 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFF00 ++masklb 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFF00 ++masklb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFF00 ++masklb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFF00 ++masklb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFF00 ++masklb 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklb 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFFFF00 ++masklb 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFFFFFF00FFFF ++masklb 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDE00 ++masklb 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABC00F0 ++masklb 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789A00DEF0 ++masklb 0x123456789ABCDEF0 0x0000000000000003 = 0x1234567800BCDEF0 ++masklb 0x123456789ABCDEF0 0x000000000000000F = 0x003456789ABCDEF0 ++masklb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x003456789ABCDEF0 ++masklb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x120056789ABCDEF0 ++masklb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123400789ABCDEF0 ++masklb 0x123456789ABCDEF0 0x000000000000007F = 0x003456789ABCDEF0 ++masklb 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDE00 ++masklb 0x123456789ABCDEF0 0x0000000000007FFF = 0x003456789ABCDEF0 ++masklb 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDE00 ++masklb 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x003456789ABCDEF0 ++masklb 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDE00 ++masklb 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDE00 ++masklb 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDE00 ++masklb 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDE00 ++masklb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDE00 ++masklb 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x003456789ABCDEF0 ++masklb 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDE00 ++masklb 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123456789A00DEF0 ++masklb 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563400 ++masklb 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78560012 ++masklb 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78003412 ++masklb 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A00563412 ++masklb 0xF0DEBC9A78563412 0x000000000000000F = 0x00DEBC9A78563412 ++masklb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00DEBC9A78563412 ++masklb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF000BC9A78563412 ++masklb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DE009A78563412 ++masklb 0xF0DEBC9A78563412 0x000000000000007F = 0x00DEBC9A78563412 ++masklb 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563400 ++masklb 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00DEBC9A78563412 ++masklb 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563400 ++masklb 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00DEBC9A78563412 ++masklb 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563400 ++masklb 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563400 ++masklb 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563400 ++masklb 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563400 ++masklb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563400 ++masklb 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00DEBC9A78563412 ++masklb 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78563400 ++masklb 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78003412 ++=== Running test on masklh === ++masklh 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++masklh 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++masklh 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++masklh 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++masklh 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++masklh 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++masklh 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++masklh 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++masklh 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++masklh 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++masklh 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++masklh 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++masklh 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++masklh 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++masklh 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++masklh 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklh 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklh 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklh 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++masklh 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++masklh 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++masklh 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++masklh 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++masklh 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++masklh 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++masklh 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++masklh 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++masklh 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++masklh 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++masklh 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++masklh 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++masklh 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++masklh 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++masklh 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++masklh 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++masklh 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++masklh 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklh 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklh 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklh 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++masklh 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++masklh 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++masklh 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++masklh 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++masklh 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++masklh 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++masklh 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++masklh 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++masklh 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++masklh 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++masklh 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++masklh 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++masklh 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++masklh 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++masklh 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++masklh 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++masklh 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++masklh 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklh 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklh 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklh 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++masklh 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++masklh 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++masklh 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++masklh 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++masklh 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++masklh 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++masklh 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++masklh 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++masklh 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++masklh 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++masklh 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++masklh 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++masklh 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++masklh 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++masklh 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++masklh 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++masklh 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++masklh 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklh 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklh 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklh 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++masklh 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++masklh 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++masklh 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++masklh 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++masklh 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++masklh 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++masklh 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++masklh 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++masklh 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++masklh 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++masklh 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++masklh 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++masklh 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++masklh 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++masklh 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++masklh 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++masklh 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++masklh 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklh 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklh 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklh 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++masklh 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++masklh 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++masklh 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFF0000FF ++masklh 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFF0000FFFF ++masklh 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFF0000FFFFFF ++masklh 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00FFFFFFFFFFFFFF ++masklh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFF ++masklh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFF0000FFFFFFFFFF ++masklh 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00FFFFFFFFFFFFFF ++masklh 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00FFFFFFFFFFFFFF ++masklh 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFF ++masklh 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklh 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFF0000FFFF ++masklh 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFF0000FE ++masklh 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFF0000FFFE ++masklh 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFF0000FFFFFE ++masklh 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00FFFFFFFFFFFFFE ++masklh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFE ++masklh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFE ++masklh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFF0000FFFFFFFFFE ++masklh 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00FFFFFFFFFFFFFE ++masklh 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00FFFFFFFFFFFFFE ++masklh 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFE ++masklh 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFE ++masklh 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFF0000FFFE ++masklh 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFF0000FD ++masklh 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFF0000FFFD ++masklh 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFF0000FFFFFD ++masklh 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00FFFFFFFFFFFFFD ++masklh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFD ++masklh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFD ++masklh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFF0000FFFFFFFFFD ++masklh 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00FFFFFFFFFFFFFD ++masklh 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00FFFFFFFFFFFFFD ++masklh 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFD ++masklh 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFD ++masklh 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFF0000FFFD ++masklh 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++masklh 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++masklh 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++masklh 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++masklh 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++masklh 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++masklh 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++masklh 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++masklh 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++masklh 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++masklh 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++masklh 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++masklh 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++masklh 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++masklh 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++masklh 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklh 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklh 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklh 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++masklh 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++masklh 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++masklh 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++masklh 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++masklh 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++masklh 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++masklh 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++masklh 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++masklh 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++masklh 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++masklh 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++masklh 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++masklh 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++masklh 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++masklh 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++masklh 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++masklh 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++masklh 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklh 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklh 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklh 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++masklh 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++masklh 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++masklh 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++masklh 0x0000000000007FFF 0x0000000000000001 = 0x00000000000000FF ++masklh 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFF ++masklh 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFF ++masklh 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FFF ++masklh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++masklh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++masklh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++masklh 0x0000000000007FFF 0x000000000000007F = 0x0000000000007FFF ++masklh 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++masklh 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++masklh 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++masklh 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++masklh 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++masklh 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++masklh 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklh 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklh 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklh 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++masklh 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++masklh 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++masklh 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++masklh 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++masklh 0x0000000000008000 0x0000000000000002 = 0x0000000000008000 ++masklh 0x0000000000008000 0x0000000000000003 = 0x0000000000008000 ++masklh 0x0000000000008000 0x000000000000000F = 0x0000000000008000 ++masklh 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++masklh 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++masklh 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++masklh 0x0000000000008000 0x000000000000007F = 0x0000000000008000 ++masklh 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++masklh 0x0000000000008000 0x0000000000007FFF = 0x0000000000008000 ++masklh 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++masklh 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++masklh 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++masklh 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++masklh 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklh 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklh 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklh 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++masklh 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++masklh 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++masklh 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFF0000 ++masklh 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007F0000FF ++masklh 0x000000007FFFFFFF 0x0000000000000002 = 0x000000000000FFFF ++masklh 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000FFFFFF ++masklh 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFFF ++masklh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++masklh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++masklh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++masklh 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFFFF ++masklh 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFF0000 ++masklh 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFFFFFF ++masklh 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFF0000 ++masklh 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++masklh 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFF0000 ++masklh 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFF0000 ++masklh 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFF0000 ++masklh 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFF0000 ++masklh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFF0000 ++masklh 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++masklh 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFF0000 ++masklh 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000000000FFFF ++masklh 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++masklh 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++masklh 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++masklh 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++masklh 0x0000000080000000 0x000000000000000F = 0x0000000080000000 ++masklh 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++masklh 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++masklh 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++masklh 0x0000000080000000 0x000000000000007F = 0x0000000080000000 ++masklh 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++masklh 0x0000000080000000 0x0000000000007FFF = 0x0000000080000000 ++masklh 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++masklh 0x0000000080000000 0x000000007FFFFFFF = 0x0000000080000000 ++masklh 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++masklh 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++masklh 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++masklh 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++masklh 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++masklh 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++masklh 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++masklh 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++masklh 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++masklh 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++masklh 0x8000000000000000 0x0000000000000002 = 0x8000000000000000 ++masklh 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++masklh 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++masklh 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++masklh 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++masklh 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++masklh 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++masklh 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++masklh 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++masklh 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++masklh 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++masklh 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++masklh 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++masklh 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++masklh 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++masklh 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++masklh 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++masklh 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++masklh 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++masklh 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF00000000 ++masklh 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFF0000000000 ++masklh 0xFFFFFFFF80000000 0x000000000000000F = 0x00FFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00FFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000FFFF80000000 ++masklh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFF0000FF80000000 ++masklh 0xFFFFFFFF80000000 0x000000000000007F = 0x00FFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00FFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00FFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00FFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++masklh 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF00000000 ++masklh 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFF000000 ++masklh 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFF00008000 ++masklh 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFF0000FF8000 ++masklh 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00FFFFFFFFFF8000 ++masklh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFF8000 ++masklh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFF8000 ++masklh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFF0000FFFFFF8000 ++masklh 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00FFFFFFFFFF8000 ++masklh 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00FFFFFFFFFF8000 ++masklh 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00FFFFFFFFFF8000 ++masklh 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFF8000 ++masklh 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFF00008000 ++masklh 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFF000080 ++masklh 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFF0000FF80 ++masklh 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFF0000FFFF80 ++masklh 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00FFFFFFFFFFFF80 ++masklh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFF80 ++masklh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFF80 ++masklh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFF0000FFFFFFFF80 ++masklh 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00FFFFFFFFFFFF80 ++masklh 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00FFFFFFFFFFFF80 ++masklh 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00FFFFFFFFFFFF80 ++masklh 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFF80 ++masklh 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF0000 ++masklh 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFF0000FF80 ++masklh 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFF0000 ++masklh 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFF0000FF ++masklh 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFF0000FFFF ++masklh 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFF0000FFFFFF ++masklh 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00FFFFFFFFFFFFFF ++masklh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFF ++masklh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7F0000FFFFFFFFFF ++masklh 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00FFFFFFFFFFFFFF ++masklh 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFF0000 ++masklh 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00FFFFFFFFFFFFFF ++masklh 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFF0000 ++masklh 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFF ++masklh 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFF0000 ++masklh 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFF0000 ++masklh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFF0000 ++masklh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFF0000 ++masklh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFF0000 ++masklh 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklh 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFF0000 ++masklh 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFFFF0000FFFF ++masklh 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABC0000 ++masklh 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789A0000F0 ++masklh 0x123456789ABCDEF0 0x0000000000000002 = 0x123456780000DEF0 ++masklh 0x123456789ABCDEF0 0x0000000000000003 = 0x1234560000BCDEF0 ++masklh 0x123456789ABCDEF0 0x000000000000000F = 0x003456789ABCDEF0 ++masklh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x003456789ABCDEF0 ++masklh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000056789ABCDEF0 ++masklh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x120000789ABCDEF0 ++masklh 0x123456789ABCDEF0 0x000000000000007F = 0x003456789ABCDEF0 ++masklh 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABC0000 ++masklh 0x123456789ABCDEF0 0x0000000000007FFF = 0x003456789ABCDEF0 ++masklh 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABC0000 ++masklh 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x003456789ABCDEF0 ++masklh 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABC0000 ++masklh 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABC0000 ++masklh 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABC0000 ++masklh 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABC0000 ++masklh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABC0000 ++masklh 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x003456789ABCDEF0 ++masklh 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABC0000 ++masklh 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123456780000DEF0 ++masklh 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78560000 ++masklh 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78000012 ++masklh 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A00003412 ++masklh 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC0000563412 ++masklh 0xF0DEBC9A78563412 0x000000000000000F = 0x00DEBC9A78563412 ++masklh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00DEBC9A78563412 ++masklh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000BC9A78563412 ++masklh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF000009A78563412 ++masklh 0xF0DEBC9A78563412 0x000000000000007F = 0x00DEBC9A78563412 ++masklh 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78560000 ++masklh 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00DEBC9A78563412 ++masklh 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78560000 ++masklh 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00DEBC9A78563412 ++masklh 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78560000 ++masklh 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78560000 ++masklh 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78560000 ++masklh 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78560000 ++masklh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78560000 ++masklh 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00DEBC9A78563412 ++masklh 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78560000 ++masklh 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A00003412 ++=== Running test on masklw === ++masklw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++masklw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++masklw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++masklw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++masklw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++masklw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++masklw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++masklw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++masklw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++masklw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++masklw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++masklw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++masklw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++masklw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++masklw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++masklw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++masklw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++masklw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++masklw 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++masklw 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++masklw 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++masklw 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++masklw 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++masklw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++masklw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++masklw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++masklw 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++masklw 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++masklw 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++masklw 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++masklw 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++masklw 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++masklw 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++masklw 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++masklw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++masklw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++masklw 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++masklw 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++masklw 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++masklw 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++masklw 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++masklw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++masklw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++masklw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++masklw 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++masklw 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++masklw 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++masklw 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++masklw 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++masklw 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++masklw 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++masklw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++masklw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++masklw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++masklw 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++masklw 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++masklw 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++masklw 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++masklw 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++masklw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++masklw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++masklw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++masklw 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++masklw 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++masklw 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++masklw 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++masklw 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++masklw 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++masklw 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++masklw 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++masklw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++masklw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++masklw 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++masklw 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++masklw 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++masklw 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++masklw 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++masklw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++masklw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++masklw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++masklw 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++masklw 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++masklw 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++masklw 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++masklw 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++masklw 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++masklw 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++masklw 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++masklw 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++masklw 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++masklw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFF00000000FF ++masklw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFF00000000FFFF ++masklw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFF00000000FFFFFF ++masklw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00FFFFFFFFFFFFFF ++masklw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFF ++masklw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFFFF ++masklw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00FFFFFFFFFFFFFF ++masklw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00FFFFFFFFFFFFFF ++masklw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFF ++masklw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFF00000000FFFF ++masklw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFF00000000FE ++masklw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFF00000000FFFE ++masklw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFF00000000FFFFFE ++masklw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00FFFFFFFFFFFFFE ++masklw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFE ++masklw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFE ++masklw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFFFE ++masklw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00FFFFFFFFFFFFFE ++masklw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00FFFFFFFFFFFFFE ++masklw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFE ++masklw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFE ++masklw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFF00000000FFFE ++masklw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFF00000000FD ++masklw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFF00000000FFFD ++masklw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFF00000000FFFFFD ++masklw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00FFFFFFFFFFFFFD ++masklw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFD ++masklw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFD ++masklw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFFFD ++masklw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00FFFFFFFFFFFFFD ++masklw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00FFFFFFFFFFFFFD ++masklw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFD ++masklw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFD ++masklw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFF00000000FFFD ++masklw 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++masklw 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++masklw 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++masklw 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++masklw 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++masklw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++masklw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++masklw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++masklw 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++masklw 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++masklw 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++masklw 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++masklw 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++masklw 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++masklw 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++masklw 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++masklw 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++masklw 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++masklw 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++masklw 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++masklw 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++masklw 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++masklw 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++masklw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++masklw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++masklw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++masklw 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++masklw 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++masklw 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++masklw 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++masklw 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++masklw 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++masklw 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++masklw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++masklw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++masklw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++masklw 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++masklw 0x0000000000007FFF 0x0000000000000001 = 0x00000000000000FF ++masklw 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFF ++masklw 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFF ++masklw 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FFF ++masklw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++masklw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++masklw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++masklw 0x0000000000007FFF 0x000000000000007F = 0x0000000000007FFF ++masklw 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++masklw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++masklw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++masklw 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++masklw 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++masklw 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++masklw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++masklw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++masklw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++masklw 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++masklw 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++masklw 0x0000000000008000 0x0000000000000002 = 0x0000000000008000 ++masklw 0x0000000000008000 0x0000000000000003 = 0x0000000000008000 ++masklw 0x0000000000008000 0x000000000000000F = 0x0000000000008000 ++masklw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++masklw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++masklw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++masklw 0x0000000000008000 0x000000000000007F = 0x0000000000008000 ++masklw 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++masklw 0x0000000000008000 0x0000000000007FFF = 0x0000000000008000 ++masklw 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++masklw 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++masklw 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++masklw 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++masklw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++masklw 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++masklw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++masklw 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++masklw 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000000000FF ++masklw 0x000000007FFFFFFF 0x0000000000000002 = 0x000000000000FFFF ++masklw 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000FFFFFF ++masklw 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFFF ++masklw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++masklw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++masklw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++masklw 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFFFF ++masklw 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++masklw 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFFFFFF ++masklw 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++masklw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++masklw 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++masklw 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++masklw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++masklw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++masklw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000000000FFFF ++masklw 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++masklw 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++masklw 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++masklw 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++masklw 0x0000000080000000 0x000000000000000F = 0x0000000080000000 ++masklw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++masklw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++masklw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++masklw 0x0000000080000000 0x000000000000007F = 0x0000000080000000 ++masklw 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++masklw 0x0000000080000000 0x0000000000007FFF = 0x0000000080000000 ++masklw 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++masklw 0x0000000080000000 0x000000007FFFFFFF = 0x0000000080000000 ++masklw 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++masklw 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++masklw 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++masklw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++masklw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++masklw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++masklw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++masklw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++masklw 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++masklw 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++masklw 0x8000000000000000 0x0000000000000002 = 0x8000000000000000 ++masklw 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++masklw 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++masklw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++masklw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++masklw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++masklw 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++masklw 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++masklw 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++masklw 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++masklw 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++masklw 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++masklw 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++masklw 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++masklw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++masklw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++masklw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++masklw 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++masklw 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++masklw 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFF0000000000 ++masklw 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFF000000000000 ++masklw 0xFFFFFFFF80000000 0x0000000000000003 = 0xFF00000000000000 ++masklw 0xFFFFFFFF80000000 0x000000000000000F = 0x00FFFFFF80000000 ++masklw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00FFFFFF80000000 ++masklw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000FFFF80000000 ++masklw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000FF80000000 ++masklw 0xFFFFFFFF80000000 0x000000000000007F = 0x00FFFFFF80000000 ++masklw 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00FFFFFF80000000 ++masklw 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00FFFFFF80000000 ++masklw 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00FFFFFF80000000 ++masklw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFF000000000000 ++masklw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFF0000000000 ++masklw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFF000000008000 ++masklw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFF00000000FF8000 ++masklw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00FFFFFFFFFF8000 ++masklw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFF8000 ++masklw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFF8000 ++masklw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFF8000 ++masklw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00FFFFFFFFFF8000 ++masklw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00FFFFFFFFFF8000 ++masklw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00FFFFFFFFFF8000 ++masklw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFF8000 ++masklw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFF000000008000 ++masklw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFF0000000080 ++masklw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFF00000000FF80 ++masklw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFF00000000FFFF80 ++masklw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00FFFFFFFFFFFF80 ++masklw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFF80 ++masklw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFF80 ++masklw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFF80 ++masklw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00FFFFFFFFFFFF80 ++masklw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00FFFFFFFFFFFF80 ++masklw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00FFFFFFFFFFFF80 ++masklw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFF80 ++masklw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFF00000000 ++masklw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFF00000000FF80 ++masklw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFF00000000 ++masklw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFF00000000FF ++masklw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFF00000000FFFF ++masklw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7F00000000FFFFFF ++masklw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00FFFFFFFFFFFFFF ++masklw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFF ++masklw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFFFF ++masklw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00FFFFFFFFFFFFFF ++masklw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFF00000000 ++masklw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00FFFFFFFFFFFFFF ++masklw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFF00000000 ++masklw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFF ++masklw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFF00000000 ++masklw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFF00000000 ++masklw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFF00000000 ++masklw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFF00000000 ++masklw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFF00000000 ++masklw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++masklw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFF00000000 ++masklw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFF00000000FFFF ++masklw 0x123456789ABCDEF0 0x0000000000000000 = 0x1234567800000000 ++masklw 0x123456789ABCDEF0 0x0000000000000001 = 0x12345600000000F0 ++masklw 0x123456789ABCDEF0 0x0000000000000002 = 0x123400000000DEF0 ++masklw 0x123456789ABCDEF0 0x0000000000000003 = 0x1200000000BCDEF0 ++masklw 0x123456789ABCDEF0 0x000000000000000F = 0x003456789ABCDEF0 ++masklw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x003456789ABCDEF0 ++masklw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000056789ABCDEF0 ++masklw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000789ABCDEF0 ++masklw 0x123456789ABCDEF0 0x000000000000007F = 0x003456789ABCDEF0 ++masklw 0x123456789ABCDEF0 0x0000000000000080 = 0x1234567800000000 ++masklw 0x123456789ABCDEF0 0x0000000000007FFF = 0x003456789ABCDEF0 ++masklw 0x123456789ABCDEF0 0x0000000000008000 = 0x1234567800000000 ++masklw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x003456789ABCDEF0 ++masklw 0x123456789ABCDEF0 0x0000000080000000 = 0x1234567800000000 ++masklw 0x123456789ABCDEF0 0x8000000000000000 = 0x1234567800000000 ++masklw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x1234567800000000 ++masklw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x1234567800000000 ++masklw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x1234567800000000 ++masklw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x003456789ABCDEF0 ++masklw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x1234567800000000 ++masklw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123400000000DEF0 ++masklw 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A00000000 ++masklw 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC0000000012 ++masklw 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DE000000003412 ++masklw 0xF0DEBC9A78563412 0x0000000000000003 = 0xF000000000563412 ++masklw 0xF0DEBC9A78563412 0x000000000000000F = 0x00DEBC9A78563412 ++masklw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00DEBC9A78563412 ++masklw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000BC9A78563412 ++masklw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000009A78563412 ++masklw 0xF0DEBC9A78563412 0x000000000000007F = 0x00DEBC9A78563412 ++masklw 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A00000000 ++masklw 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00DEBC9A78563412 ++masklw 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A00000000 ++masklw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00DEBC9A78563412 ++masklw 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A00000000 ++masklw 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A00000000 ++masklw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A00000000 ++masklw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A00000000 ++masklw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A00000000 ++masklw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00DEBC9A78563412 ++masklw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A00000000 ++masklw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DE000000003412 ++=== Running test on maskll === ++maskll 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++maskll 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++maskll 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++maskll 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++maskll 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++maskll 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskll 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskll 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskll 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++maskll 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++maskll 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++maskll 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++maskll 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++maskll 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++maskll 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++maskll 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskll 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskll 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++maskll 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++maskll 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++maskll 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++maskll 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++maskll 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++maskll 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++maskll 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++maskll 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++maskll 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++maskll 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++maskll 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++maskll 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++maskll 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++maskll 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++maskll 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++maskll 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++maskll 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++maskll 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++maskll 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++maskll 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++maskll 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++maskll 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++maskll 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++maskll 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++maskll 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++maskll 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++maskll 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++maskll 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++maskll 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++maskll 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++maskll 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++maskll 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++maskll 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++maskll 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++maskll 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++maskll 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++maskll 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++maskll 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++maskll 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++maskll 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++maskll 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++maskll 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++maskll 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++maskll 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++maskll 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++maskll 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++maskll 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++maskll 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++maskll 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++maskll 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++maskll 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++maskll 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++maskll 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++maskll 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++maskll 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++maskll 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++maskll 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++maskll 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++maskll 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++maskll 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++maskll 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++maskll 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++maskll 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++maskll 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++maskll 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++maskll 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++maskll 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++maskll 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++maskll 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000FFFF ++maskll 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000FFFFFF ++maskll 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00FFFFFFFFFFFFFF ++maskll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++maskll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFF ++maskll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFFFF ++maskll 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00FFFFFFFFFFFFFF ++maskll 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00FFFFFFFFFFFFFF ++maskll 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFF ++maskll 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++maskll 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000FFFF ++maskll 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000000000FE ++maskll 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000000000FFFE ++maskll 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000FFFFFE ++maskll 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00FFFFFFFFFFFFFE ++maskll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFE ++maskll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFE ++maskll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFFFE ++maskll 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00FFFFFFFFFFFFFE ++maskll 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00FFFFFFFFFFFFFE ++maskll 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFE ++maskll 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFE ++maskll 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000000000FFFE ++maskll 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000000000FD ++maskll 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000000000FFFD ++maskll 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000FFFFFD ++maskll 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00FFFFFFFFFFFFFD ++maskll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFD ++maskll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFD ++maskll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFFFD ++maskll 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00FFFFFFFFFFFFFD ++maskll 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00FFFFFFFFFFFFFD ++maskll 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFD ++maskll 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFD ++maskll 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000000000FFFD ++maskll 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++maskll 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++maskll 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++maskll 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++maskll 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++maskll 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++maskll 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++maskll 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++maskll 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++maskll 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++maskll 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++maskll 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++maskll 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++maskll 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++maskll 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++maskll 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++maskll 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++maskll 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++maskll 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++maskll 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++maskll 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++maskll 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++maskll 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++maskll 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++maskll 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++maskll 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++maskll 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++maskll 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++maskll 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++maskll 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++maskll 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++maskll 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++maskll 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++maskll 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++maskll 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++maskll 0x0000000000007FFF 0x0000000000000001 = 0x00000000000000FF ++maskll 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFF ++maskll 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFF ++maskll 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FFF ++maskll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++maskll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++maskll 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++maskll 0x0000000000007FFF 0x000000000000007F = 0x0000000000007FFF ++maskll 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++maskll 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++maskll 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++maskll 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++maskll 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++maskll 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++maskll 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++maskll 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++maskll 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++maskll 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++maskll 0x0000000000008000 0x0000000000000002 = 0x0000000000008000 ++maskll 0x0000000000008000 0x0000000000000003 = 0x0000000000008000 ++maskll 0x0000000000008000 0x000000000000000F = 0x0000000000008000 ++maskll 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++maskll 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++maskll 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++maskll 0x0000000000008000 0x000000000000007F = 0x0000000000008000 ++maskll 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++maskll 0x0000000000008000 0x0000000000007FFF = 0x0000000000008000 ++maskll 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++maskll 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++maskll 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++maskll 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++maskll 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++maskll 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++maskll 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++maskll 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000000000FF ++maskll 0x000000007FFFFFFF 0x0000000000000002 = 0x000000000000FFFF ++maskll 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000FFFFFF ++maskll 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFFF ++maskll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++maskll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++maskll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++maskll 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFFFF ++maskll 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++maskll 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFFFFFF ++maskll 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++maskll 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskll 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++maskll 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++maskll 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++maskll 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000000000FFFF ++maskll 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++maskll 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++maskll 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++maskll 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++maskll 0x0000000080000000 0x000000000000000F = 0x0000000080000000 ++maskll 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++maskll 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++maskll 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++maskll 0x0000000080000000 0x000000000000007F = 0x0000000080000000 ++maskll 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++maskll 0x0000000080000000 0x0000000000007FFF = 0x0000000080000000 ++maskll 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++maskll 0x0000000080000000 0x000000007FFFFFFF = 0x0000000080000000 ++maskll 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++maskll 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++maskll 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++maskll 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskll 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++maskll 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++maskll 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++maskll 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++maskll 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++maskll 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskll 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskll 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskll 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++maskll 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++maskll 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++maskll 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++maskll 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++maskll 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++maskll 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++maskll 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskll 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskll 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++maskll 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++maskll 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++maskll 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++maskll 0xFFFFFFFF80000000 0x000000000000000F = 0x00FFFFFF80000000 ++maskll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00FFFFFF80000000 ++maskll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000FFFF80000000 ++maskll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x000000FF80000000 ++maskll 0xFFFFFFFF80000000 0x000000000000007F = 0x00FFFFFF80000000 ++maskll 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000000 ++maskll 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00FFFFFF80000000 ++maskll 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++maskll 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00FFFFFF80000000 ++maskll 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++maskll 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++maskll 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00FFFFFF80000000 ++maskll 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000008000 ++maskll 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000FF8000 ++maskll 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00FFFFFFFFFF8000 ++maskll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFF8000 ++maskll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFF8000 ++maskll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFF8000 ++maskll 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00FFFFFFFFFF8000 ++maskll 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00FFFFFFFFFF8000 ++maskll 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00FFFFFFFFFF8000 ++maskll 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFF8000 ++maskll 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x0000000000008000 ++maskll 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000080 ++maskll 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000000000FF80 ++maskll 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000FFFF80 ++maskll 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00FFFFFFFFFFFF80 ++maskll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFF80 ++maskll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFF80 ++maskll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFF80 ++maskll 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00FFFFFFFFFFFF80 ++maskll 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00FFFFFFFFFFFF80 ++maskll 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00FFFFFFFFFFFF80 ++maskll 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFF80 ++maskll 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000000000FF80 ++maskll 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++maskll 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++maskll 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000FFFF ++maskll 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000FFFFFF ++maskll 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00FFFFFFFFFFFFFF ++maskll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++maskll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000FFFFFFFFFFFF ++maskll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000FFFFFFFFFF ++maskll 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00FFFFFFFFFFFFFF ++maskll 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000000 ++maskll 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00FFFFFFFFFFFFFF ++maskll 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++maskll 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00FFFFFFFFFFFFFF ++maskll 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++maskll 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++maskll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00FFFFFFFFFFFFFF ++maskll 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000FFFF ++maskll 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++maskll 0x123456789ABCDEF0 0x0000000000000001 = 0x00000000000000F0 ++maskll 0x123456789ABCDEF0 0x0000000000000002 = 0x000000000000DEF0 ++maskll 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000BCDEF0 ++maskll 0x123456789ABCDEF0 0x000000000000000F = 0x003456789ABCDEF0 ++maskll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x003456789ABCDEF0 ++maskll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x000056789ABCDEF0 ++maskll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000789ABCDEF0 ++maskll 0x123456789ABCDEF0 0x000000000000007F = 0x003456789ABCDEF0 ++maskll 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000000 ++maskll 0x123456789ABCDEF0 0x0000000000007FFF = 0x003456789ABCDEF0 ++maskll 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++maskll 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x003456789ABCDEF0 ++maskll 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++maskll 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++maskll 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x003456789ABCDEF0 ++maskll 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000000000DEF0 ++maskll 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++maskll 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000012 ++maskll 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000003412 ++maskll 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000563412 ++maskll 0xF0DEBC9A78563412 0x000000000000000F = 0x00DEBC9A78563412 ++maskll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x00DEBC9A78563412 ++maskll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000BC9A78563412 ++maskll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000009A78563412 ++maskll 0xF0DEBC9A78563412 0x000000000000007F = 0x00DEBC9A78563412 ++maskll 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000000 ++maskll 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00DEBC9A78563412 ++maskll 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000000 ++maskll 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00DEBC9A78563412 ++maskll 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++maskll 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++maskll 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskll 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskll 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskll 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x00DEBC9A78563412 ++maskll 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000000000000 ++maskll 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000000000003412 ++=== Running test on maskhb === ++maskhb 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++maskhb 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++maskhb 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++maskhb 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++maskhb 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++maskhb 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhb 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhb 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhb 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++maskhb 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++maskhb 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++maskhb 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++maskhb 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++maskhb 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++maskhb 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++maskhb 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskhb 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskhb 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskhb 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhb 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++maskhb 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskhb 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++maskhb 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++maskhb 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++maskhb 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++maskhb 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++maskhb 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++maskhb 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++maskhb 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++maskhb 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++maskhb 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++maskhb 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++maskhb 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++maskhb 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++maskhb 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++maskhb 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++maskhb 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++maskhb 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++maskhb 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++maskhb 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++maskhb 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++maskhb 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++maskhb 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++maskhb 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++maskhb 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++maskhb 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++maskhb 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++maskhb 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++maskhb 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++maskhb 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++maskhb 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++maskhb 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++maskhb 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++maskhb 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++maskhb 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++maskhb 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++maskhb 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++maskhb 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++maskhb 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++maskhb 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++maskhb 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++maskhb 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++maskhb 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++maskhb 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++maskhb 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++maskhb 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++maskhb 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++maskhb 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++maskhb 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++maskhb 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++maskhb 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++maskhb 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++maskhb 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++maskhb 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++maskhb 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++maskhb 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++maskhb 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++maskhb 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++maskhb 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++maskhb 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++maskhb 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++maskhb 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++maskhb 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++maskhb 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++maskhb 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++maskhb 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++maskhb 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++maskhb 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++maskhb 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++maskhb 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++maskhb 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++maskhb 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++maskhb 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++maskhb 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++maskhb 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++maskhb 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++maskhb 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++maskhb 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++maskhb 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++maskhb 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++maskhb 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++maskhb 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++maskhb 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++maskhb 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++maskhb 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++maskhb 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++maskhb 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFE ++maskhb 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++maskhb 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFD ++maskhb 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++maskhb 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++maskhb 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++maskhb 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++maskhb 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++maskhb 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++maskhb 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++maskhb 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++maskhb 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++maskhb 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++maskhb 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++maskhb 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++maskhb 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++maskhb 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++maskhb 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++maskhb 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++maskhb 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++maskhb 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++maskhb 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++maskhb 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++maskhb 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++maskhb 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++maskhb 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++maskhb 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++maskhb 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++maskhb 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++maskhb 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++maskhb 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++maskhb 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++maskhb 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++maskhb 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++maskhb 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++maskhb 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++maskhb 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++maskhb 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++maskhb 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++maskhb 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++maskhb 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++maskhb 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++maskhb 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++maskhb 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++maskhb 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++maskhb 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0x000000000000007F = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++maskhb 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++maskhb 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++maskhb 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++maskhb 0x0000000000008000 0x0000000000000002 = 0x0000000000008000 ++maskhb 0x0000000000008000 0x0000000000000003 = 0x0000000000008000 ++maskhb 0x0000000000008000 0x000000000000000F = 0x0000000000008000 ++maskhb 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++maskhb 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++maskhb 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++maskhb 0x0000000000008000 0x000000000000007F = 0x0000000000008000 ++maskhb 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++maskhb 0x0000000000008000 0x0000000000007FFF = 0x0000000000008000 ++maskhb 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++maskhb 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++maskhb 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++maskhb 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++maskhb 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++maskhb 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++maskhb 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++maskhb 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++maskhb 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++maskhb 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++maskhb 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++maskhb 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007FFFFFFF ++maskhb 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++maskhb 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++maskhb 0x0000000080000000 0x0000000000000002 = 0x0000000080000000 ++maskhb 0x0000000080000000 0x0000000000000003 = 0x0000000080000000 ++maskhb 0x0000000080000000 0x000000000000000F = 0x0000000080000000 ++maskhb 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++maskhb 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++maskhb 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++maskhb 0x0000000080000000 0x000000000000007F = 0x0000000080000000 ++maskhb 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++maskhb 0x0000000080000000 0x0000000000007FFF = 0x0000000080000000 ++maskhb 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++maskhb 0x0000000080000000 0x000000007FFFFFFF = 0x0000000080000000 ++maskhb 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++maskhb 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++maskhb 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++maskhb 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++maskhb 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++maskhb 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++maskhb 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++maskhb 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080000000 ++maskhb 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++maskhb 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++maskhb 0x8000000000000000 0x0000000000000002 = 0x8000000000000000 ++maskhb 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++maskhb 0x8000000000000000 0x000000000000000F = 0x8000000000000000 ++maskhb 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++maskhb 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++maskhb 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++maskhb 0x8000000000000000 0x000000000000007F = 0x8000000000000000 ++maskhb 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++maskhb 0x8000000000000000 0x0000000000007FFF = 0x8000000000000000 ++maskhb 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++maskhb 0x8000000000000000 0x000000007FFFFFFF = 0x8000000000000000 ++maskhb 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++maskhb 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++maskhb 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++maskhb 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++maskhb 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++maskhb 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++maskhb 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++maskhb 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++maskhb 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++maskhb 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF8000 ++maskhb 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF80 ++maskhb 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFF80 ++maskhb 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFFFFFF ++maskhb 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFFFFFFFFFFFF ++maskhb 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0x000000000000000F = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0x000000000000007F = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0x0000000000007FFF = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhb 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123456789ABCDEF0 ++maskhb 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0x000000000000007F = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78563412 ++maskhb 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhh === ++maskhh 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++maskhh 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++maskhh 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++maskhh 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++maskhh 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++maskhh 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhh 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhh 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++maskhh 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++maskhh 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++maskhh 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++maskhh 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++maskhh 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++maskhh 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskhh 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskhh 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskhh 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++maskhh 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskhh 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++maskhh 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++maskhh 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++maskhh 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++maskhh 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++maskhh 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++maskhh 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++maskhh 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++maskhh 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++maskhh 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++maskhh 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++maskhh 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++maskhh 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++maskhh 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++maskhh 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++maskhh 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++maskhh 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++maskhh 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++maskhh 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++maskhh 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++maskhh 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++maskhh 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++maskhh 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++maskhh 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++maskhh 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++maskhh 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++maskhh 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++maskhh 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++maskhh 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++maskhh 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++maskhh 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++maskhh 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++maskhh 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++maskhh 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++maskhh 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++maskhh 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++maskhh 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++maskhh 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++maskhh 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++maskhh 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++maskhh 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++maskhh 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++maskhh 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++maskhh 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++maskhh 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++maskhh 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++maskhh 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++maskhh 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++maskhh 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++maskhh 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++maskhh 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++maskhh 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++maskhh 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++maskhh 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++maskhh 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++maskhh 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++maskhh 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++maskhh 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++maskhh 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++maskhh 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhh 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++maskhh 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++maskhh 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++maskhh 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++maskhh 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++maskhh 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++maskhh 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++maskhh 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++maskhh 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++maskhh 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++maskhh 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++maskhh 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++maskhh 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhh 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++maskhh 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++maskhh 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++maskhh 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFE ++maskhh 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++maskhh 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++maskhh 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++maskhh 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++maskhh 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++maskhh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++maskhh 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++maskhh 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++maskhh 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++maskhh 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++maskhh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++maskhh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++maskhh 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++maskhh 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++maskhh 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFD ++maskhh 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++maskhh 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++maskhh 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++maskhh 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++maskhh 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++maskhh 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhh 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++maskhh 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++maskhh 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++maskhh 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++maskhh 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++maskhh 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++maskhh 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++maskhh 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++maskhh 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++maskhh 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++maskhh 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++maskhh 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++maskhh 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhh 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++maskhh 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++maskhh 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++maskhh 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++maskhh 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++maskhh 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++maskhh 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++maskhh 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++maskhh 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++maskhh 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++maskhh 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++maskhh 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++maskhh 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++maskhh 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++maskhh 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++maskhh 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++maskhh 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++maskhh 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++maskhh 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhh 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++maskhh 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++maskhh 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++maskhh 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++maskhh 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFF ++maskhh 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFF ++maskhh 0x0000000000007FFF 0x000000000000000F = 0x0000000000007F00 ++maskhh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007F00 ++maskhh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++maskhh 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++maskhh 0x0000000000007FFF 0x000000000000007F = 0x0000000000007F00 ++maskhh 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++maskhh 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007F00 ++maskhh 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++maskhh 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007F00 ++maskhh 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++maskhh 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++maskhh 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++maskhh 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++maskhh 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++maskhh 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007F00 ++maskhh 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++maskhh 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++maskhh 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++maskhh 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++maskhh 0x0000000000008000 0x0000000000000002 = 0x0000000000008000 ++maskhh 0x0000000000008000 0x0000000000000003 = 0x0000000000008000 ++maskhh 0x0000000000008000 0x000000000000000F = 0x0000000000008000 ++maskhh 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++maskhh 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++maskhh 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++maskhh 0x0000000000008000 0x000000000000007F = 0x0000000000008000 ++maskhh 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++maskhh 0x0000000000008000 0x0000000000007FFF = 0x0000000000008000 ++maskhh 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++maskhh 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++maskhh 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++maskhh 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++maskhh 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++maskhh 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++maskhh 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++maskhh 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++maskhh 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++maskhh 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++maskhh 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++maskhh 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++maskhh 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFFFFFF ++maskhh 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFFF ++maskhh 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFF00 ++maskhh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFF00 ++maskhh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++maskhh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++maskhh 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFF00 ++maskhh 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++maskhh 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFFFF00 ++maskhh 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++maskhh 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFF00 ++maskhh 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++maskhh 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++maskhh 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++maskhh 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++maskhh 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++maskhh 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFF00 ++maskhh 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++maskhh 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007FFFFFFF ++maskhh 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++maskhh 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++maskhh 0x0000000080000000 0x0000000000000002 = 0x0000000080000000 ++maskhh 0x0000000080000000 0x0000000000000003 = 0x0000000080000000 ++maskhh 0x0000000080000000 0x000000000000000F = 0x0000000080000000 ++maskhh 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++maskhh 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++maskhh 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++maskhh 0x0000000080000000 0x000000000000007F = 0x0000000080000000 ++maskhh 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++maskhh 0x0000000080000000 0x0000000000007FFF = 0x0000000080000000 ++maskhh 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++maskhh 0x0000000080000000 0x000000007FFFFFFF = 0x0000000080000000 ++maskhh 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++maskhh 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++maskhh 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++maskhh 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++maskhh 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++maskhh 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++maskhh 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++maskhh 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080000000 ++maskhh 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++maskhh 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++maskhh 0x8000000000000000 0x0000000000000002 = 0x8000000000000000 ++maskhh 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++maskhh 0x8000000000000000 0x000000000000000F = 0x8000000000000000 ++maskhh 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++maskhh 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++maskhh 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++maskhh 0x8000000000000000 0x000000000000007F = 0x8000000000000000 ++maskhh 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++maskhh 0x8000000000000000 0x0000000000007FFF = 0x8000000000000000 ++maskhh 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++maskhh 0x8000000000000000 0x000000007FFFFFFF = 0x8000000000000000 ++maskhh 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++maskhh 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++maskhh 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++maskhh 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++maskhh 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++maskhh 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++maskhh 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++maskhh 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++maskhh 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++maskhh 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF8000 ++maskhh 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++maskhh 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF80 ++maskhh 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF80 ++maskhh 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF80 ++maskhh 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF80 ++maskhh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF80 ++maskhh 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++maskhh 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++maskhh 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++maskhh 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++maskhh 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++maskhh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++maskhh 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhh 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF00 ++maskhh 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF80 ++maskhh 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFF80 ++maskhh 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++maskhh 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++maskhh 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFFFFFF ++maskhh 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFFFFFF ++maskhh 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFFFFFFFF00 ++maskhh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF00 ++maskhh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFF ++maskhh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFF ++maskhh 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7FFFFFFFFFFFFF00 ++maskhh 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++maskhh 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFFFFFF00 ++maskhh 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++maskhh 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFF00 ++maskhh 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++maskhh 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++maskhh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++maskhh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++maskhh 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++maskhh 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFF00 ++maskhh 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFFFFFF ++maskhh 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFFFFFFFFFFFF ++maskhh 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++maskhh 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF0 ++maskhh 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABCDEF0 ++maskhh 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABCDEF0 ++maskhh 0x123456789ABCDEF0 0x000000000000000F = 0x123456789ABCDE00 ++maskhh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDE00 ++maskhh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDEF0 ++maskhh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDEF0 ++maskhh 0x123456789ABCDEF0 0x000000000000007F = 0x123456789ABCDE00 ++maskhh 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++maskhh 0x123456789ABCDEF0 0x0000000000007FFF = 0x123456789ABCDE00 ++maskhh 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++maskhh 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x123456789ABCDE00 ++maskhh 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++maskhh 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++maskhh 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++maskhh 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++maskhh 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++maskhh 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x123456789ABCDE00 ++maskhh 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhh 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123456789ABCDEF0 ++maskhh 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++maskhh 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563412 ++maskhh 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78563412 ++maskhh 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A78563412 ++maskhh 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A78563400 ++maskhh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563400 ++maskhh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563412 ++maskhh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A78563412 ++maskhh 0xF0DEBC9A78563412 0x000000000000007F = 0xF0DEBC9A78563400 ++maskhh 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++maskhh 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF0DEBC9A78563400 ++maskhh 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++maskhh 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF0DEBC9A78563400 ++maskhh 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++maskhh 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++maskhh 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++maskhh 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++maskhh 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++maskhh 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xF0DEBC9A78563400 ++maskhh 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78563412 ++maskhh 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhw === ++maskhw 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++maskhw 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++maskhw 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++maskhw 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++maskhw 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++maskhw 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhw 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhw 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++maskhw 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++maskhw 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++maskhw 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++maskhw 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++maskhw 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++maskhw 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskhw 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskhw 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskhw 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++maskhw 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskhw 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++maskhw 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++maskhw 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++maskhw 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++maskhw 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++maskhw 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhw 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhw 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++maskhw 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++maskhw 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++maskhw 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++maskhw 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++maskhw 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++maskhw 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++maskhw 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++maskhw 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++maskhw 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++maskhw 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++maskhw 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++maskhw 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++maskhw 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++maskhw 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++maskhw 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++maskhw 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhw 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhw 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++maskhw 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++maskhw 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++maskhw 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++maskhw 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++maskhw 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++maskhw 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++maskhw 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++maskhw 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++maskhw 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++maskhw 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++maskhw 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++maskhw 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++maskhw 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++maskhw 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++maskhw 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++maskhw 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhw 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhw 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++maskhw 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++maskhw 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++maskhw 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++maskhw 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++maskhw 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++maskhw 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++maskhw 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++maskhw 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++maskhw 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++maskhw 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++maskhw 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++maskhw 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++maskhw 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++maskhw 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++maskhw 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++maskhw 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhw 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhw 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++maskhw 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++maskhw 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++maskhw 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++maskhw 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++maskhw 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++maskhw 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++maskhw 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++maskhw 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++maskhw 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++maskhw 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++maskhw 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++maskhw 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++maskhw 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++maskhw 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++maskhw 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++maskhw 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++maskhw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF00 ++maskhw 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++maskhw 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++maskhw 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++maskhw 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++maskhw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++maskhw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++maskhw 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++maskhw 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++maskhw 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++maskhw 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++maskhw 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++maskhw 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++maskhw 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++maskhw 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++maskhw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF00 ++maskhw 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++maskhw 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++maskhw 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++maskhw 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++maskhw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++maskhw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++maskhw 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++maskhw 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++maskhw 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFE ++maskhw 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++maskhw 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++maskhw 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++maskhw 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++maskhw 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++maskhw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF00 ++maskhw 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++maskhw 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++maskhw 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++maskhw 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++maskhw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++maskhw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++maskhw 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++maskhw 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++maskhw 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFD ++maskhw 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++maskhw 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++maskhw 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++maskhw 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++maskhw 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++maskhw 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhw 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhw 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++maskhw 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++maskhw 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++maskhw 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++maskhw 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++maskhw 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++maskhw 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++maskhw 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++maskhw 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++maskhw 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++maskhw 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++maskhw 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++maskhw 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++maskhw 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++maskhw 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++maskhw 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++maskhw 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++maskhw 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhw 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhw 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++maskhw 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++maskhw 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++maskhw 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++maskhw 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++maskhw 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++maskhw 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++maskhw 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++maskhw 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++maskhw 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++maskhw 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++maskhw 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++maskhw 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++maskhw 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFF ++maskhw 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFF ++maskhw 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++maskhw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhw 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007F00 ++maskhw 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++maskhw 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++maskhw 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++maskhw 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++maskhw 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++maskhw 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++maskhw 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++maskhw 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++maskhw 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++maskhw 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++maskhw 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++maskhw 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++maskhw 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++maskhw 0x0000000000008000 0x0000000000000002 = 0x0000000000008000 ++maskhw 0x0000000000008000 0x0000000000000003 = 0x0000000000008000 ++maskhw 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++maskhw 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhw 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++maskhw 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++maskhw 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++maskhw 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++maskhw 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++maskhw 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++maskhw 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++maskhw 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++maskhw 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++maskhw 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++maskhw 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhw 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++maskhw 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++maskhw 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++maskhw 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++maskhw 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFFFFFF ++maskhw 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFFF ++maskhw 0x000000007FFFFFFF 0x000000000000000F = 0x000000007F000000 ++maskhw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007F000000 ++maskhw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFF0000 ++maskhw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFF00 ++maskhw 0x000000007FFFFFFF 0x000000000000007F = 0x000000007F000000 ++maskhw 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++maskhw 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007F000000 ++maskhw 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++maskhw 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007F000000 ++maskhw 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++maskhw 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++maskhw 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++maskhw 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++maskhw 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++maskhw 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007F000000 ++maskhw 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++maskhw 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007FFFFFFF ++maskhw 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++maskhw 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++maskhw 0x0000000080000000 0x0000000000000002 = 0x0000000080000000 ++maskhw 0x0000000080000000 0x0000000000000003 = 0x0000000080000000 ++maskhw 0x0000000080000000 0x000000000000000F = 0x0000000080000000 ++maskhw 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++maskhw 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++maskhw 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++maskhw 0x0000000080000000 0x000000000000007F = 0x0000000080000000 ++maskhw 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++maskhw 0x0000000080000000 0x0000000000007FFF = 0x0000000080000000 ++maskhw 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++maskhw 0x0000000080000000 0x000000007FFFFFFF = 0x0000000080000000 ++maskhw 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++maskhw 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++maskhw 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++maskhw 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++maskhw 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++maskhw 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++maskhw 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++maskhw 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080000000 ++maskhw 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++maskhw 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++maskhw 0x8000000000000000 0x0000000000000002 = 0x8000000000000000 ++maskhw 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++maskhw 0x8000000000000000 0x000000000000000F = 0x8000000000000000 ++maskhw 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++maskhw 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++maskhw 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++maskhw 0x8000000000000000 0x000000000000007F = 0x8000000000000000 ++maskhw 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++maskhw 0x8000000000000000 0x0000000000007FFF = 0x8000000000000000 ++maskhw 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++maskhw 0x8000000000000000 0x000000007FFFFFFF = 0x8000000000000000 ++maskhw 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++maskhw 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++maskhw 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++maskhw 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++maskhw 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++maskhw 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++maskhw 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++maskhw 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++maskhw 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++maskhw 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++maskhw 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++maskhw 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF8000 ++maskhw 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF8000 ++maskhw 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++maskhw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8000 ++maskhw 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++maskhw 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++maskhw 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++maskhw 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++maskhw 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++maskhw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhw 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++maskhw 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++maskhw 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF8000 ++maskhw 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++maskhw 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF80 ++maskhw 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF80 ++maskhw 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF80 ++maskhw 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF0000 ++maskhw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF00 ++maskhw 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++maskhw 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++maskhw 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++maskhw 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++maskhw 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++maskhw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++maskhw 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhw 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFF000000 ++maskhw 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF80 ++maskhw 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFF80 ++maskhw 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++maskhw 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++maskhw 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFFFFFF ++maskhw 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFFFFFF ++maskhw 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFFFF000000 ++maskhw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFF000000 ++maskhw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFF0000 ++maskhw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFF00 ++maskhw 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7FFFFFFFFF000000 ++maskhw 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++maskhw 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFF000000 ++maskhw 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++maskhw 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFFFF000000 ++maskhw 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++maskhw 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++maskhw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++maskhw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++maskhw 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++maskhw 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFF000000 ++maskhw 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFFFFFF ++maskhw 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFFFFFFFFFFFF ++maskhw 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++maskhw 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF0 ++maskhw 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABCDEF0 ++maskhw 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABCDEF0 ++maskhw 0x123456789ABCDEF0 0x000000000000000F = 0x123456789A000000 ++maskhw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789A000000 ++maskhw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABC0000 ++maskhw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDE00 ++maskhw 0x123456789ABCDEF0 0x000000000000007F = 0x123456789A000000 ++maskhw 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++maskhw 0x123456789ABCDEF0 0x0000000000007FFF = 0x123456789A000000 ++maskhw 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++maskhw 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x123456789A000000 ++maskhw 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++maskhw 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++maskhw 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++maskhw 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++maskhw 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++maskhw 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x123456789A000000 ++maskhw 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhw 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123456789ABCDEF0 ++maskhw 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++maskhw 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563412 ++maskhw 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78563412 ++maskhw 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A78563412 ++maskhw 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A78000000 ++maskhw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78000000 ++maskhw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78560000 ++maskhw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A78563400 ++maskhw 0xF0DEBC9A78563412 0x000000000000007F = 0xF0DEBC9A78000000 ++maskhw 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++maskhw 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF0DEBC9A78000000 ++maskhw 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++maskhw 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF0DEBC9A78000000 ++maskhw 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++maskhw 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++maskhw 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++maskhw 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++maskhw 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++maskhw 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xF0DEBC9A78000000 ++maskhw 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78563412 ++maskhw 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++=== Running test on maskhl === ++maskhl 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++maskhl 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++maskhl 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++maskhl 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++maskhl 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++maskhl 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhl 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhl 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++maskhl 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++maskhl 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++maskhl 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++maskhl 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++maskhl 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++maskhl 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++maskhl 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++maskhl 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++maskhl 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++maskhl 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskhl 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++maskhl 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++maskhl 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++maskhl 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++maskhl 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++maskhl 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhl 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhl 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++maskhl 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++maskhl 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++maskhl 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++maskhl 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++maskhl 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++maskhl 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++maskhl 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++maskhl 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++maskhl 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++maskhl 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskhl 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++maskhl 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++maskhl 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++maskhl 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++maskhl 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++maskhl 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhl 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhl 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++maskhl 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++maskhl 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++maskhl 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++maskhl 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++maskhl 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++maskhl 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++maskhl 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++maskhl 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++maskhl 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++maskhl 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskhl 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++maskhl 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++maskhl 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++maskhl 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++maskhl 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++maskhl 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhl 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhl 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++maskhl 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++maskhl 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++maskhl 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++maskhl 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++maskhl 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++maskhl 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++maskhl 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++maskhl 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++maskhl 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++maskhl 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskhl 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++maskhl 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++maskhl 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++maskhl 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++maskhl 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++maskhl 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhl 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhl 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++maskhl 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++maskhl 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++maskhl 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++maskhl 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++maskhl 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++maskhl 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++maskhl 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++maskhl 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++maskhl 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++maskhl 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++maskhl 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskhl 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++maskhl 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFF00 ++maskhl 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFF0000 ++maskhl 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFF000000 ++maskhl 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++maskhl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFF0000000000 ++maskhl 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++maskhl 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++maskhl 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++maskhl 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++maskhl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++maskhl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++maskhl 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++maskhl 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++maskhl 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF0000 ++maskhl 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++maskhl 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFF00 ++maskhl 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFF0000 ++maskhl 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFF000000 ++maskhl 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++maskhl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFF0000000000 ++maskhl 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++maskhl 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++maskhl 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++maskhl 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++maskhl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++maskhl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++maskhl 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++maskhl 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++maskhl 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF0000 ++maskhl 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++maskhl 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFF00 ++maskhl 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFF0000 ++maskhl 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFF000000 ++maskhl 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++maskhl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFF0000000000 ++maskhl 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++maskhl 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++maskhl 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++maskhl 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++maskhl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++maskhl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++maskhl 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++maskhl 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++maskhl 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF0000 ++maskhl 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++maskhl 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++maskhl 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++maskhl 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++maskhl 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++maskhl 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhl 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhl 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++maskhl 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++maskhl 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++maskhl 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++maskhl 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++maskhl 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++maskhl 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++maskhl 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++maskhl 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++maskhl 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++maskhl 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++maskhl 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskhl 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++maskhl 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++maskhl 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++maskhl 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++maskhl 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++maskhl 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhl 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhl 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++maskhl 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++maskhl 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++maskhl 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++maskhl 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++maskhl 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++maskhl 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++maskhl 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++maskhl 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++maskhl 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++maskhl 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskhl 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++maskhl 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007F00 ++maskhl 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000000 ++maskhl 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++maskhl 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++maskhl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhl 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhl 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++maskhl 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++maskhl 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++maskhl 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++maskhl 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++maskhl 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++maskhl 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++maskhl 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++maskhl 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++maskhl 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++maskhl 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskhl 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++maskhl 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++maskhl 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++maskhl 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++maskhl 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++maskhl 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhl 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhl 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++maskhl 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++maskhl 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++maskhl 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++maskhl 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++maskhl 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++maskhl 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++maskhl 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++maskhl 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++maskhl 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++maskhl 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++maskhl 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++maskhl 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFF00 ++maskhl 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFF0000 ++maskhl 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007F000000 ++maskhl 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++maskhl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhl 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++maskhl 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++maskhl 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++maskhl 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++maskhl 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++maskhl 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++maskhl 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++maskhl 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++maskhl 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++maskhl 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++maskhl 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++maskhl 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007FFF0000 ++maskhl 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++maskhl 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++maskhl 0x0000000080000000 0x0000000000000002 = 0x0000000080000000 ++maskhl 0x0000000080000000 0x0000000000000003 = 0x0000000080000000 ++maskhl 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++maskhl 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++maskhl 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++maskhl 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++maskhl 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++maskhl 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++maskhl 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++maskhl 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++maskhl 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++maskhl 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++maskhl 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++maskhl 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++maskhl 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++maskhl 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++maskhl 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++maskhl 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080000000 ++maskhl 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++maskhl 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++maskhl 0x8000000000000000 0x0000000000000002 = 0x8000000000000000 ++maskhl 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++maskhl 0x8000000000000000 0x000000000000000F = 0x8000000000000000 ++maskhl 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++maskhl 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++maskhl 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++maskhl 0x8000000000000000 0x000000000000007F = 0x8000000000000000 ++maskhl 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++maskhl 0x8000000000000000 0x0000000000007FFF = 0x8000000000000000 ++maskhl 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++maskhl 0x8000000000000000 0x000000007FFFFFFF = 0x8000000000000000 ++maskhl 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++maskhl 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++maskhl 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++maskhl 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++maskhl 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++maskhl 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++maskhl 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++maskhl 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++maskhl 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++maskhl 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++maskhl 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000000 ++maskhl 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000000 ++maskhl 0xFFFFFFFF80000000 0x000000000000000F = 0xFF00000000000000 ++maskhl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++maskhl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFF0000000000 ++maskhl 0xFFFFFFFF80000000 0x000000000000007F = 0xFF00000000000000 ++maskhl 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++maskhl 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++maskhl 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++maskhl 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++maskhl 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++maskhl 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++maskhl 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++maskhl 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++maskhl 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++maskhl 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++maskhl 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++maskhl 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF0000 ++maskhl 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFF000000 ++maskhl 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++maskhl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFF0000000000 ++maskhl 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++maskhl 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++maskhl 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++maskhl 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++maskhl 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++maskhl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++maskhl 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++maskhl 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++maskhl 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF0000 ++maskhl 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++maskhl 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF00 ++maskhl 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFF0000 ++maskhl 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFF000000 ++maskhl 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFF000000000000 ++maskhl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFF0000000000 ++maskhl 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++maskhl 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++maskhl 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++maskhl 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++maskhl 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++maskhl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++maskhl 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++maskhl 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFF00000000000000 ++maskhl 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF80 ++maskhl 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF0000 ++maskhl 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++maskhl 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFF00 ++maskhl 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFF0000 ++maskhl 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFF000000 ++maskhl 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7F00000000000000 ++maskhl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7F00000000000000 ++maskhl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFF000000000000 ++maskhl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFF0000000000 ++maskhl 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7F00000000000000 ++maskhl 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++maskhl 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7F00000000000000 ++maskhl 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++maskhl 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7F00000000000000 ++maskhl 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++maskhl 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++maskhl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++maskhl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++maskhl 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++maskhl 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7F00000000000000 ++maskhl 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFFFFFF ++maskhl 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFFFFFFFF0000 ++maskhl 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++maskhl 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDE00 ++maskhl 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABC0000 ++maskhl 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789A000000 ++maskhl 0x123456789ABCDEF0 0x000000000000000F = 0x1200000000000000 ++maskhl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x1200000000000000 ++maskhl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x1234000000000000 ++maskhl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x1234560000000000 ++maskhl 0x123456789ABCDEF0 0x000000000000007F = 0x1200000000000000 ++maskhl 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++maskhl 0x123456789ABCDEF0 0x0000000000007FFF = 0x1200000000000000 ++maskhl 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++maskhl 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x1200000000000000 ++maskhl 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++maskhl 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++maskhl 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++maskhl 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++maskhl 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++maskhl 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x1200000000000000 ++maskhl 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++maskhl 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123456789ABC0000 ++maskhl 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++maskhl 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563400 ++maskhl 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78560000 ++maskhl 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A78000000 ++maskhl 0xF0DEBC9A78563412 0x000000000000000F = 0xF000000000000000 ++maskhl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF000000000000000 ++maskhl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DE000000000000 ++maskhl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC0000000000 ++maskhl 0xF0DEBC9A78563412 0x000000000000007F = 0xF000000000000000 ++maskhl 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++maskhl 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF000000000000000 ++maskhl 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++maskhl 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF000000000000000 ++maskhl 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++maskhl 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++maskhl 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++maskhl 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++maskhl 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++maskhl 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xF000000000000000 ++maskhl 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78563412 ++maskhl 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78560000 ++=== Running test on zap === ++zap 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++zap 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++zap 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++zap 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++zap 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++zap 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zap 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++zap 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++zap 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++zap 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++zap 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++zap 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++zap 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++zap 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++zap 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zap 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zap 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++zap 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++zap 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++zap 0x0000000000000001 0x0000000000000001 = 0x0000000000000000 ++zap 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++zap 0x0000000000000001 0x0000000000000003 = 0x0000000000000000 ++zap 0x0000000000000001 0x000000000000000F = 0x0000000000000000 ++zap 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++zap 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++zap 0x0000000000000001 0x000000000000007F = 0x0000000000000000 ++zap 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++zap 0x0000000000000001 0x0000000000007FFF = 0x0000000000000000 ++zap 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++zap 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++zap 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++zap 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++zap 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++zap 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++zap 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++zap 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++zap 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++zap 0x0000000000000002 0x0000000000000001 = 0x0000000000000000 ++zap 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++zap 0x0000000000000002 0x0000000000000003 = 0x0000000000000000 ++zap 0x0000000000000002 0x000000000000000F = 0x0000000000000000 ++zap 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++zap 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++zap 0x0000000000000002 0x000000000000007F = 0x0000000000000000 ++zap 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++zap 0x0000000000000002 0x0000000000007FFF = 0x0000000000000000 ++zap 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++zap 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++zap 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++zap 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++zap 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++zap 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++zap 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++zap 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++zap 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++zap 0x0000000000000003 0x0000000000000001 = 0x0000000000000000 ++zap 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++zap 0x0000000000000003 0x0000000000000003 = 0x0000000000000000 ++zap 0x0000000000000003 0x000000000000000F = 0x0000000000000000 ++zap 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++zap 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++zap 0x0000000000000003 0x000000000000007F = 0x0000000000000000 ++zap 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++zap 0x0000000000000003 0x0000000000007FFF = 0x0000000000000000 ++zap 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++zap 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++zap 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++zap 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++zap 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++zap 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++zap 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++zap 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++zap 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++zap 0x000000000000000F 0x0000000000000001 = 0x0000000000000000 ++zap 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++zap 0x000000000000000F 0x0000000000000003 = 0x0000000000000000 ++zap 0x000000000000000F 0x000000000000000F = 0x0000000000000000 ++zap 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++zap 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++zap 0x000000000000000F 0x000000000000007F = 0x0000000000000000 ++zap 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++zap 0x000000000000000F 0x0000000000007FFF = 0x0000000000000000 ++zap 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++zap 0x000000000000000F 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++zap 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++zap 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++zap 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++zap 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++zap 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++zap 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++zap 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++zap 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFF00 ++zap 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFF00FF ++zap 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFF0000 ++zap 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFF00000000 ++zap 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++zap 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000FF00 ++zap 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFF00000000000000 ++zap 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00FFFFFFFFFFFFFF ++zap 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++zap 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++zap 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++zap 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++zap 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++zap 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFFFF ++zap 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000FFFFFFFF ++zap 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFF00FFFF00FF ++zap 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++zap 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFF00 ++zap 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFF00FE ++zap 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFF0000 ++zap 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFF00000000 ++zap 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++zap 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x000000000000FF00 ++zap 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFF00000000000000 ++zap 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00FFFFFFFFFFFFFE ++zap 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++zap 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++zap 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++zap 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++zap 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++zap 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFFFE ++zap 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000FFFFFFFE ++zap 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFF00FFFF00FE ++zap 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++zap 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFF00 ++zap 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFF00FD ++zap 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFF0000 ++zap 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFF00000000 ++zap 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x00000000000000FD ++zap 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x000000000000FF00 ++zap 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFF00000000000000 ++zap 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00FFFFFFFFFFFFFD ++zap 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++zap 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++zap 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++zap 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++zap 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++zap 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFFFD ++zap 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000FFFFFFFD ++zap 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFF00FFFF00FD ++zap 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++zap 0x000000000000007F 0x0000000000000001 = 0x0000000000000000 ++zap 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++zap 0x000000000000007F 0x0000000000000003 = 0x0000000000000000 ++zap 0x000000000000007F 0x000000000000000F = 0x0000000000000000 ++zap 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++zap 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++zap 0x000000000000007F 0x000000000000007F = 0x0000000000000000 ++zap 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++zap 0x000000000000007F 0x0000000000007FFF = 0x0000000000000000 ++zap 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++zap 0x000000000000007F 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++zap 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++zap 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++zap 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++zap 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++zap 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++zap 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++zap 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++zap 0x0000000000000080 0x0000000000000001 = 0x0000000000000000 ++zap 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++zap 0x0000000000000080 0x0000000000000003 = 0x0000000000000000 ++zap 0x0000000000000080 0x000000000000000F = 0x0000000000000000 ++zap 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++zap 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++zap 0x0000000000000080 0x000000000000007F = 0x0000000000000000 ++zap 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++zap 0x0000000000000080 0x0000000000007FFF = 0x0000000000000000 ++zap 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++zap 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++zap 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++zap 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++zap 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++zap 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++zap 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++zap 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++zap 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++zap 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007F00 ++zap 0x0000000000007FFF 0x0000000000000002 = 0x00000000000000FF ++zap 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000000 ++zap 0x0000000000007FFF 0x000000000000000F = 0x0000000000000000 ++zap 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++zap 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007F00 ++zap 0x0000000000007FFF 0x000000000000007F = 0x0000000000000000 ++zap 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++zap 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000000000 ++zap 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++zap 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++zap 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++zap 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++zap 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++zap 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++zap 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++zap 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++zap 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++zap 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++zap 0x0000000000008000 0x0000000000000002 = 0x0000000000000000 ++zap 0x0000000000008000 0x0000000000000003 = 0x0000000000000000 ++zap 0x0000000000008000 0x000000000000000F = 0x0000000000000000 ++zap 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zap 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++zap 0x0000000000008000 0x000000000000007F = 0x0000000000000000 ++zap 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++zap 0x0000000000008000 0x0000000000007FFF = 0x0000000000000000 ++zap 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++zap 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++zap 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++zap 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++zap 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++zap 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++zap 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++zap 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000000 ++zap 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++zap 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFF00 ++zap 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFF00FF ++zap 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFF0000 ++zap 0x000000007FFFFFFF 0x000000000000000F = 0x0000000000000000 ++zap 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++zap 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000FF00 ++zap 0x000000007FFFFFFF 0x000000000000007F = 0x0000000000000000 ++zap 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++zap 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++zap 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++zap 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++zap 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++zap 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++zap 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++zap 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++zap 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++zap 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007FFF00FF ++zap 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++zap 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++zap 0x0000000080000000 0x0000000000000002 = 0x0000000080000000 ++zap 0x0000000080000000 0x0000000000000003 = 0x0000000080000000 ++zap 0x0000000080000000 0x000000000000000F = 0x0000000000000000 ++zap 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zap 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++zap 0x0000000080000000 0x000000000000007F = 0x0000000000000000 ++zap 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++zap 0x0000000080000000 0x0000000000007FFF = 0x0000000000000000 ++zap 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++zap 0x0000000080000000 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++zap 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++zap 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++zap 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++zap 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++zap 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++zap 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080000000 ++zap 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++zap 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++zap 0x8000000000000000 0x0000000000000002 = 0x8000000000000000 ++zap 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++zap 0x8000000000000000 0x000000000000000F = 0x8000000000000000 ++zap 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zap 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++zap 0x8000000000000000 0x000000000000007F = 0x8000000000000000 ++zap 0x8000000000000000 0x0000000000000080 = 0x0000000000000000 ++zap 0x8000000000000000 0x0000000000007FFF = 0x0000000000000000 ++zap 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++zap 0x8000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++zap 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++zap 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++zap 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++zap 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zap 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++zap 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++zap 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++zap 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++zap 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000000 ++zap 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000000 ++zap 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF00000000 ++zap 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zap 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++zap 0xFFFFFFFF80000000 0x000000000000007F = 0xFF00000000000000 ++zap 0xFFFFFFFF80000000 0x0000000000000080 = 0x00FFFFFF80000000 ++zap 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000000000 ++zap 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++zap 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++zap 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++zap 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++zap 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++zap 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x00FFFFFF80000000 ++zap 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x0000000080000000 ++zap 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFF0080000000 ++zap 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++zap 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++zap 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF0000 ++zap 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF0000 ++zap 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFF00000000 ++zap 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zap 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++zap 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFF00000000000000 ++zap 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00FFFFFFFFFF8000 ++zap 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++zap 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++zap 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++zap 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++zap 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++zap 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFF8000 ++zap 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000FFFF8000 ++zap 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFF00FFFF0000 ++zap 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++zap 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF00 ++zap 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFF0080 ++zap 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFF0000 ++zap 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFF00000000 ++zap 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++zap 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x000000000000FF00 ++zap 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFF00000000000000 ++zap 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x00FFFFFFFFFFFF80 ++zap 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++zap 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++zap 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++zap 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++zap 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++zap 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFF80 ++zap 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x00000000FFFFFF80 ++zap 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFF00FFFF0080 ++zap 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++zap 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFF00 ++zap 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFF00FF ++zap 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFF0000 ++zap 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFF00000000 ++zap 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++zap 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000FF00 ++zap 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7F00000000000000 ++zap 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00FFFFFFFFFFFFFF ++zap 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000000000 ++zap 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++zap 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++zap 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++zap 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++zap 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++zap 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00FFFFFFFFFFFFFF ++zap 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000FFFFFFFF ++zap 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFF00FFFF00FF ++zap 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++zap 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDE00 ++zap 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABC00F0 ++zap 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABC0000 ++zap 0x123456789ABCDEF0 0x000000000000000F = 0x1234567800000000 ++zap 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x00000000000000F0 ++zap 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x000000000000DE00 ++zap 0x123456789ABCDEF0 0x000000000000007F = 0x1200000000000000 ++zap 0x123456789ABCDEF0 0x0000000000000080 = 0x003456789ABCDEF0 ++zap 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000000000 ++zap 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++zap 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++zap 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++zap 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++zap 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++zap 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x003456789ABCDEF0 ++zap 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x000000009ABCDEF0 ++zap 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123456009ABC00F0 ++zap 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++zap 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563400 ++zap 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78560012 ++zap 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A78560000 ++zap 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A00000000 ++zap 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000012 ++zap 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000003400 ++zap 0xF0DEBC9A78563412 0x000000000000007F = 0xF000000000000000 ++zap 0xF0DEBC9A78563412 0x0000000000000080 = 0x00DEBC9A78563412 ++zap 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000000000 ++zap 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++zap 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x0000000000000000 ++zap 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++zap 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++zap 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++zap 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++zap 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x00DEBC9A78563412 ++zap 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zap 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x0000000078563412 ++zap 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC0078560012 ++=== Running test on zapnot === ++zapnot 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++zapnot 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++zapnot 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++zapnot 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++zapnot 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++zapnot 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++zapnot 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zapnot 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++zapnot 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++zapnot 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++zapnot 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++zapnot 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++zapnot 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++zapnot 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++zapnot 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++zapnot 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zapnot 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++zapnot 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++zapnot 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++zapnot 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++zapnot 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++zapnot 0x0000000000000001 0x0000000000000002 = 0x0000000000000000 ++zapnot 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++zapnot 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++zapnot 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++zapnot 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zapnot 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++zapnot 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++zapnot 0x0000000000000001 0x0000000000000080 = 0x0000000000000000 ++zapnot 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++zapnot 0x0000000000000001 0x0000000000008000 = 0x0000000000000000 ++zapnot 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++zapnot 0x0000000000000001 0x0000000080000000 = 0x0000000000000000 ++zapnot 0x0000000000000001 0x8000000000000000 = 0x0000000000000000 ++zapnot 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zapnot 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++zapnot 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++zapnot 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++zapnot 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++zapnot 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++zapnot 0x0000000000000002 0x0000000000000002 = 0x0000000000000000 ++zapnot 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++zapnot 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++zapnot 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++zapnot 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zapnot 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++zapnot 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++zapnot 0x0000000000000002 0x0000000000000080 = 0x0000000000000000 ++zapnot 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++zapnot 0x0000000000000002 0x0000000000008000 = 0x0000000000000000 ++zapnot 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++zapnot 0x0000000000000002 0x0000000080000000 = 0x0000000000000000 ++zapnot 0x0000000000000002 0x8000000000000000 = 0x0000000000000000 ++zapnot 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zapnot 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++zapnot 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++zapnot 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++zapnot 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++zapnot 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++zapnot 0x0000000000000003 0x0000000000000002 = 0x0000000000000000 ++zapnot 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++zapnot 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++zapnot 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++zapnot 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zapnot 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++zapnot 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++zapnot 0x0000000000000003 0x0000000000000080 = 0x0000000000000000 ++zapnot 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++zapnot 0x0000000000000003 0x0000000000008000 = 0x0000000000000000 ++zapnot 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++zapnot 0x0000000000000003 0x0000000080000000 = 0x0000000000000000 ++zapnot 0x0000000000000003 0x8000000000000000 = 0x0000000000000000 ++zapnot 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zapnot 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++zapnot 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++zapnot 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++zapnot 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++zapnot 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++zapnot 0x000000000000000F 0x0000000000000002 = 0x0000000000000000 ++zapnot 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++zapnot 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++zapnot 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++zapnot 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zapnot 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++zapnot 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++zapnot 0x000000000000000F 0x0000000000000080 = 0x0000000000000000 ++zapnot 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++zapnot 0x000000000000000F 0x0000000000008000 = 0x0000000000000000 ++zapnot 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++zapnot 0x000000000000000F 0x0000000080000000 = 0x0000000000000000 ++zapnot 0x000000000000000F 0x8000000000000000 = 0x0000000000000000 ++zapnot 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zapnot 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++zapnot 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++zapnot 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++zapnot 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000FF00 ++zapnot 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000FFFF ++zapnot 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000FFFFFFFF ++zapnot 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++zapnot 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++zapnot 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF00FF ++zapnot 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00FFFFFFFFFFFFFF ++zapnot 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFF00000000000000 ++zapnot 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++zapnot 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++zapnot 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFF00000000000000 ++zapnot 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++zapnot 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFF00000000 ++zapnot 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000FF0000FF00 ++zapnot 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000000000FE ++zapnot 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x000000000000FF00 ++zapnot 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x000000000000FFFE ++zapnot 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00000000FFFFFFFE ++zapnot 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++zapnot 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++zapnot 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF00FE ++zapnot 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00FFFFFFFFFFFFFE ++zapnot 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFF00000000000000 ++zapnot 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++zapnot 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++zapnot 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFF00000000000000 ++zapnot 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++zapnot 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFF00000000 ++zapnot 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x000000FF0000FF00 ++zapnot 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000000000FD ++zapnot 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x000000000000FF00 ++zapnot 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x000000000000FFFD ++zapnot 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000FFFFFFFD ++zapnot 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++zapnot 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++zapnot 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF00FD ++zapnot 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00FFFFFFFFFFFFFD ++zapnot 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFF00000000000000 ++zapnot 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFD ++zapnot 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFD ++zapnot 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFF00000000000000 ++zapnot 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++zapnot 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFF00000000 ++zapnot 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x000000FF0000FF00 ++zapnot 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++zapnot 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++zapnot 0x000000000000007F 0x0000000000000002 = 0x0000000000000000 ++zapnot 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++zapnot 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++zapnot 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++zapnot 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zapnot 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++zapnot 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++zapnot 0x000000000000007F 0x0000000000000080 = 0x0000000000000000 ++zapnot 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++zapnot 0x000000000000007F 0x0000000000008000 = 0x0000000000000000 ++zapnot 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++zapnot 0x000000000000007F 0x0000000080000000 = 0x0000000000000000 ++zapnot 0x000000000000007F 0x8000000000000000 = 0x0000000000000000 ++zapnot 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zapnot 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++zapnot 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++zapnot 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000000 ++zapnot 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++zapnot 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++zapnot 0x0000000000000080 0x0000000000000002 = 0x0000000000000000 ++zapnot 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++zapnot 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++zapnot 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++zapnot 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++zapnot 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++zapnot 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++zapnot 0x0000000000000080 0x0000000000000080 = 0x0000000000000000 ++zapnot 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++zapnot 0x0000000000000080 0x0000000000008000 = 0x0000000000000000 ++zapnot 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++zapnot 0x0000000000000080 0x0000000080000000 = 0x0000000000000000 ++zapnot 0x0000000000000080 0x8000000000000000 = 0x0000000000000000 ++zapnot 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zapnot 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++zapnot 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++zapnot 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000000 ++zapnot 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++zapnot 0x0000000000007FFF 0x0000000000000001 = 0x00000000000000FF ++zapnot 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007F00 ++zapnot 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFF ++zapnot 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FFF ++zapnot 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++zapnot 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007F00 ++zapnot 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++zapnot 0x0000000000007FFF 0x000000000000007F = 0x0000000000007FFF ++zapnot 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000000 ++zapnot 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++zapnot 0x0000000000007FFF 0x0000000000008000 = 0x0000000000000000 ++zapnot 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++zapnot 0x0000000000007FFF 0x0000000080000000 = 0x0000000000000000 ++zapnot 0x0000000000007FFF 0x8000000000000000 = 0x0000000000000000 ++zapnot 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zapnot 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++zapnot 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000000 ++zapnot 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007F00 ++zapnot 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++zapnot 0x0000000000008000 0x0000000000000001 = 0x0000000000000000 ++zapnot 0x0000000000008000 0x0000000000000002 = 0x0000000000008000 ++zapnot 0x0000000000008000 0x0000000000000003 = 0x0000000000008000 ++zapnot 0x0000000000008000 0x000000000000000F = 0x0000000000008000 ++zapnot 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++zapnot 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++zapnot 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++zapnot 0x0000000000008000 0x000000000000007F = 0x0000000000008000 ++zapnot 0x0000000000008000 0x0000000000000080 = 0x0000000000000000 ++zapnot 0x0000000000008000 0x0000000000007FFF = 0x0000000000008000 ++zapnot 0x0000000000008000 0x0000000000008000 = 0x0000000000000000 ++zapnot 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++zapnot 0x0000000000008000 0x0000000080000000 = 0x0000000000000000 ++zapnot 0x0000000000008000 0x8000000000000000 = 0x0000000000000000 ++zapnot 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zapnot 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++zapnot 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++zapnot 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++zapnot 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++zapnot 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000000000FF ++zapnot 0x000000007FFFFFFF 0x0000000000000002 = 0x000000000000FF00 ++zapnot 0x000000007FFFFFFF 0x0000000000000003 = 0x000000000000FFFF ++zapnot 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFFF ++zapnot 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++zapnot 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFF00 ++zapnot 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFF00FF ++zapnot 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFFFF ++zapnot 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000000 ++zapnot 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFFFFFF ++zapnot 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000000000 ++zapnot 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++zapnot 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000000000000 ++zapnot 0x000000007FFFFFFF 0x8000000000000000 = 0x0000000000000000 ++zapnot 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zapnot 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++zapnot 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000000 ++zapnot 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000000000FF00 ++zapnot 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++zapnot 0x0000000080000000 0x0000000000000001 = 0x0000000000000000 ++zapnot 0x0000000080000000 0x0000000000000002 = 0x0000000000000000 ++zapnot 0x0000000080000000 0x0000000000000003 = 0x0000000000000000 ++zapnot 0x0000000080000000 0x000000000000000F = 0x0000000080000000 ++zapnot 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++zapnot 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++zapnot 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++zapnot 0x0000000080000000 0x000000000000007F = 0x0000000080000000 ++zapnot 0x0000000080000000 0x0000000000000080 = 0x0000000000000000 ++zapnot 0x0000000080000000 0x0000000000007FFF = 0x0000000080000000 ++zapnot 0x0000000080000000 0x0000000000008000 = 0x0000000000000000 ++zapnot 0x0000000080000000 0x000000007FFFFFFF = 0x0000000080000000 ++zapnot 0x0000000080000000 0x0000000080000000 = 0x0000000000000000 ++zapnot 0x0000000080000000 0x8000000000000000 = 0x0000000000000000 ++zapnot 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++zapnot 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++zapnot 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++zapnot 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++zapnot 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++zapnot 0x8000000000000000 0x0000000000000001 = 0x0000000000000000 ++zapnot 0x8000000000000000 0x0000000000000002 = 0x0000000000000000 ++zapnot 0x8000000000000000 0x0000000000000003 = 0x0000000000000000 ++zapnot 0x8000000000000000 0x000000000000000F = 0x0000000000000000 ++zapnot 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++zapnot 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++zapnot 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++zapnot 0x8000000000000000 0x000000000000007F = 0x0000000000000000 ++zapnot 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++zapnot 0x8000000000000000 0x0000000000007FFF = 0x8000000000000000 ++zapnot 0x8000000000000000 0x0000000000008000 = 0x0000000000000000 ++zapnot 0x8000000000000000 0x000000007FFFFFFF = 0x8000000000000000 ++zapnot 0x8000000000000000 0x0000000080000000 = 0x0000000000000000 ++zapnot 0x8000000000000000 0x8000000000000000 = 0x0000000000000000 ++zapnot 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++zapnot 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++zapnot 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++zapnot 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++zapnot 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000000 ++zapnot 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000000 ++zapnot 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000000 ++zapnot 0xFFFFFFFF80000000 0x000000000000000F = 0x0000000080000000 ++zapnot 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++zapnot 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++zapnot 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++zapnot 0xFFFFFFFF80000000 0x000000000000007F = 0x00FFFFFF80000000 ++zapnot 0xFFFFFFFF80000000 0x0000000000000080 = 0xFF00000000000000 ++zapnot 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80000000 ++zapnot 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000000000 ++zapnot 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++zapnot 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFF80000000 0x8000000000000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFF00000000000000 ++zapnot 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++zapnot 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF00000000 ++zapnot 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x000000FF00000000 ++zapnot 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000008000 ++zapnot 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000008000 ++zapnot 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00000000FFFF8000 ++zapnot 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++zapnot 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8000 ++zapnot 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF0000 ++zapnot 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00FFFFFFFFFF8000 ++zapnot 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFF00000000000000 ++zapnot 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++zapnot 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFFFF8000 ++zapnot 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFF00000000000000 ++zapnot 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++zapnot 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFF00000000 ++zapnot 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x000000FF00008000 ++zapnot 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000080 ++zapnot 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x000000000000FF00 ++zapnot 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x000000000000FF80 ++zapnot 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000FFFFFF80 ++zapnot 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++zapnot 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF00 ++zapnot 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF0080 ++zapnot 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00FFFFFFFFFFFF80 ++zapnot 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFF00000000000000 ++zapnot 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFFFF80 ++zapnot 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF80 ++zapnot 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFF00000000000000 ++zapnot 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++zapnot 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFF00000000 ++zapnot 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x000000FF0000FF00 ++zapnot 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++zapnot 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++zapnot 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x000000000000FF00 ++zapnot 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x000000000000FFFF ++zapnot 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000FFFFFFFF ++zapnot 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++zapnot 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFF00 ++zapnot 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFF00FF ++zapnot 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00FFFFFFFFFFFFFF ++zapnot 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7F00000000000000 ++zapnot 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFFFFFFFF ++zapnot 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000000000 ++zapnot 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFFFF ++zapnot 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000000000000 ++zapnot 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x0000000000000000 ++zapnot 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7F00000000000000 ++zapnot 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++zapnot 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFF00000000 ++zapnot 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000FF0000FF00 ++zapnot 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++zapnot 0x123456789ABCDEF0 0x0000000000000001 = 0x00000000000000F0 ++zapnot 0x123456789ABCDEF0 0x0000000000000002 = 0x000000000000DE00 ++zapnot 0x123456789ABCDEF0 0x0000000000000003 = 0x000000000000DEF0 ++zapnot 0x123456789ABCDEF0 0x000000000000000F = 0x000000009ABCDEF0 ++zapnot 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++zapnot 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDE00 ++zapnot 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABC00F0 ++zapnot 0x123456789ABCDEF0 0x000000000000007F = 0x003456789ABCDEF0 ++zapnot 0x123456789ABCDEF0 0x0000000000000080 = 0x1200000000000000 ++zapnot 0x123456789ABCDEF0 0x0000000000007FFF = 0x123456789ABCDEF0 ++zapnot 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000000000 ++zapnot 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x123456789ABCDEF0 ++zapnot 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000000000000 ++zapnot 0x123456789ABCDEF0 0x8000000000000000 = 0x0000000000000000 ++zapnot 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x1200000000000000 ++zapnot 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++zapnot 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x1234567800000000 ++zapnot 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000780000DE00 ++zapnot 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++zapnot 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000012 ++zapnot 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000003400 ++zapnot 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000003412 ++zapnot 0xF0DEBC9A78563412 0x000000000000000F = 0x0000000078563412 ++zapnot 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++zapnot 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563400 ++zapnot 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A78560012 ++zapnot 0xF0DEBC9A78563412 0x000000000000007F = 0x00DEBC9A78563412 ++zapnot 0xF0DEBC9A78563412 0x0000000000000080 = 0xF000000000000000 ++zapnot 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF0DEBC9A78563412 ++zapnot 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000000000 ++zapnot 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF0DEBC9A78563412 ++zapnot 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000000000000 ++zapnot 0xF0DEBC9A78563412 0x8000000000000000 = 0x0000000000000000 ++zapnot 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000000 ++zapnot 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++zapnot 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF000000000000000 ++zapnot 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++zapnot 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A00000000 ++zapnot 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x0000009A00003400 ++=== Running test on sextb === ++sextb 0x0000000000000000 = 0x0000000000000000 ++sextb 0x0000000000000001 = 0x0000000000000001 ++sextb 0x0000000000000002 = 0x0000000000000002 ++sextb 0x0000000000000003 = 0x0000000000000003 ++sextb 0x000000000000000F = 0x000000000000000F ++sextb 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sextb 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sextb 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sextb 0x000000000000007F = 0x000000000000007F ++sextb 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++sextb 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sextb 0x0000000000008000 = 0x0000000000000000 ++sextb 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sextb 0x0000000080000000 = 0x0000000000000000 ++sextb 0x8000000000000000 = 0x0000000000000000 ++sextb 0xFFFFFFFF80000000 = 0x0000000000000000 ++sextb 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sextb 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sextb 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sextb 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFF0 ++sextb 0xF0DEBC9A78563412 = 0x0000000000000012 ++=== Running test on sexth === ++sexth 0x0000000000000000 = 0x0000000000000000 ++sexth 0x0000000000000001 = 0x0000000000000001 ++sexth 0x0000000000000002 = 0x0000000000000002 ++sexth 0x0000000000000003 = 0x0000000000000003 ++sexth 0x000000000000000F = 0x000000000000000F ++sexth 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sexth 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sexth 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sexth 0x000000000000007F = 0x000000000000007F ++sexth 0x0000000000000080 = 0x0000000000000080 ++sexth 0x0000000000007FFF = 0x0000000000007FFF ++sexth 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++sexth 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sexth 0x0000000080000000 = 0x0000000000000000 ++sexth 0x8000000000000000 = 0x0000000000000000 ++sexth 0xFFFFFFFF80000000 = 0x0000000000000000 ++sexth 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sexth 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sexth 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sexth 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFDEF0 ++sexth 0xF0DEBC9A78563412 = 0x0000000000003412 ++=== Running test on cmpgeb === ++cmpgeb 0x0000000000000000 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0x0000000000000000 0x0000000000000001 = 0x00000000000000FE ++cmpgeb 0x0000000000000000 0x0000000000000002 = 0x00000000000000FE ++cmpgeb 0x0000000000000000 0x0000000000000003 = 0x00000000000000FE ++cmpgeb 0x0000000000000000 0x000000000000000F = 0x00000000000000FE ++cmpgeb 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpgeb 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpgeb 0x0000000000000000 0x000000000000007F = 0x00000000000000FE ++cmpgeb 0x0000000000000000 0x0000000000000080 = 0x00000000000000FE ++cmpgeb 0x0000000000000000 0x0000000000007FFF = 0x00000000000000FC ++cmpgeb 0x0000000000000000 0x0000000000008000 = 0x00000000000000FD ++cmpgeb 0x0000000000000000 0x000000007FFFFFFF = 0x00000000000000F0 ++cmpgeb 0x0000000000000000 0x0000000080000000 = 0x00000000000000F7 ++cmpgeb 0x0000000000000000 0x8000000000000000 = 0x000000000000007F ++cmpgeb 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000007 ++cmpgeb 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpgeb 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpgeb 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpgeb 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpgeb 0x0000000000000001 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0x0000000000000001 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0x0000000000000001 0x0000000000000002 = 0x00000000000000FE ++cmpgeb 0x0000000000000001 0x0000000000000003 = 0x00000000000000FE ++cmpgeb 0x0000000000000001 0x000000000000000F = 0x00000000000000FE ++cmpgeb 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpgeb 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpgeb 0x0000000000000001 0x000000000000007F = 0x00000000000000FE ++cmpgeb 0x0000000000000001 0x0000000000000080 = 0x00000000000000FE ++cmpgeb 0x0000000000000001 0x0000000000007FFF = 0x00000000000000FC ++cmpgeb 0x0000000000000001 0x0000000000008000 = 0x00000000000000FD ++cmpgeb 0x0000000000000001 0x000000007FFFFFFF = 0x00000000000000F0 ++cmpgeb 0x0000000000000001 0x0000000080000000 = 0x00000000000000F7 ++cmpgeb 0x0000000000000001 0x8000000000000000 = 0x000000000000007F ++cmpgeb 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000007 ++cmpgeb 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpgeb 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpgeb 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpgeb 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpgeb 0x0000000000000002 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0x0000000000000002 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0x0000000000000002 0x0000000000000002 = 0x00000000000000FF ++cmpgeb 0x0000000000000002 0x0000000000000003 = 0x00000000000000FE ++cmpgeb 0x0000000000000002 0x000000000000000F = 0x00000000000000FE ++cmpgeb 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpgeb 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpgeb 0x0000000000000002 0x000000000000007F = 0x00000000000000FE ++cmpgeb 0x0000000000000002 0x0000000000000080 = 0x00000000000000FE ++cmpgeb 0x0000000000000002 0x0000000000007FFF = 0x00000000000000FC ++cmpgeb 0x0000000000000002 0x0000000000008000 = 0x00000000000000FD ++cmpgeb 0x0000000000000002 0x000000007FFFFFFF = 0x00000000000000F0 ++cmpgeb 0x0000000000000002 0x0000000080000000 = 0x00000000000000F7 ++cmpgeb 0x0000000000000002 0x8000000000000000 = 0x000000000000007F ++cmpgeb 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000007 ++cmpgeb 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpgeb 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpgeb 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpgeb 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpgeb 0x0000000000000003 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0x0000000000000003 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0x0000000000000003 0x0000000000000002 = 0x00000000000000FF ++cmpgeb 0x0000000000000003 0x0000000000000003 = 0x00000000000000FF ++cmpgeb 0x0000000000000003 0x000000000000000F = 0x00000000000000FE ++cmpgeb 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpgeb 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpgeb 0x0000000000000003 0x000000000000007F = 0x00000000000000FE ++cmpgeb 0x0000000000000003 0x0000000000000080 = 0x00000000000000FE ++cmpgeb 0x0000000000000003 0x0000000000007FFF = 0x00000000000000FC ++cmpgeb 0x0000000000000003 0x0000000000008000 = 0x00000000000000FD ++cmpgeb 0x0000000000000003 0x000000007FFFFFFF = 0x00000000000000F0 ++cmpgeb 0x0000000000000003 0x0000000080000000 = 0x00000000000000F7 ++cmpgeb 0x0000000000000003 0x8000000000000000 = 0x000000000000007F ++cmpgeb 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000007 ++cmpgeb 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpgeb 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpgeb 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpgeb 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpgeb 0x000000000000000F 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0x000000000000000F 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0x000000000000000F 0x0000000000000002 = 0x00000000000000FF ++cmpgeb 0x000000000000000F 0x0000000000000003 = 0x00000000000000FF ++cmpgeb 0x000000000000000F 0x000000000000000F = 0x00000000000000FF ++cmpgeb 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpgeb 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpgeb 0x000000000000000F 0x000000000000007F = 0x00000000000000FE ++cmpgeb 0x000000000000000F 0x0000000000000080 = 0x00000000000000FE ++cmpgeb 0x000000000000000F 0x0000000000007FFF = 0x00000000000000FC ++cmpgeb 0x000000000000000F 0x0000000000008000 = 0x00000000000000FD ++cmpgeb 0x000000000000000F 0x000000007FFFFFFF = 0x00000000000000F0 ++cmpgeb 0x000000000000000F 0x0000000080000000 = 0x00000000000000F7 ++cmpgeb 0x000000000000000F 0x8000000000000000 = 0x000000000000007F ++cmpgeb 0x000000000000000F 0xFFFFFFFF80000000 = 0x0000000000000007 ++cmpgeb 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpgeb 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpgeb 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x000000000000000F 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpgeb 0x000000000000000F 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpgeb 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0x00000000000000FF ++cmpgeb 0x000000000000007F 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0x000000000000007F 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0x000000000000007F 0x0000000000000002 = 0x00000000000000FF ++cmpgeb 0x000000000000007F 0x0000000000000003 = 0x00000000000000FF ++cmpgeb 0x000000000000007F 0x000000000000000F = 0x00000000000000FF ++cmpgeb 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpgeb 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpgeb 0x000000000000007F 0x000000000000007F = 0x00000000000000FF ++cmpgeb 0x000000000000007F 0x0000000000000080 = 0x00000000000000FE ++cmpgeb 0x000000000000007F 0x0000000000007FFF = 0x00000000000000FC ++cmpgeb 0x000000000000007F 0x0000000000008000 = 0x00000000000000FD ++cmpgeb 0x000000000000007F 0x000000007FFFFFFF = 0x00000000000000F0 ++cmpgeb 0x000000000000007F 0x0000000080000000 = 0x00000000000000F7 ++cmpgeb 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++cmpgeb 0x000000000000007F 0xFFFFFFFF80000000 = 0x0000000000000007 ++cmpgeb 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpgeb 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpgeb 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x000000000000007F 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpgeb 0x000000000000007F 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpgeb 0x0000000000000080 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0x0000000000000080 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0x0000000000000080 0x0000000000000002 = 0x00000000000000FF ++cmpgeb 0x0000000000000080 0x0000000000000003 = 0x00000000000000FF ++cmpgeb 0x0000000000000080 0x000000000000000F = 0x00000000000000FF ++cmpgeb 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpgeb 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpgeb 0x0000000000000080 0x000000000000007F = 0x00000000000000FF ++cmpgeb 0x0000000000000080 0x0000000000000080 = 0x00000000000000FF ++cmpgeb 0x0000000000000080 0x0000000000007FFF = 0x00000000000000FC ++cmpgeb 0x0000000000000080 0x0000000000008000 = 0x00000000000000FD ++cmpgeb 0x0000000000000080 0x000000007FFFFFFF = 0x00000000000000F0 ++cmpgeb 0x0000000000000080 0x0000000080000000 = 0x00000000000000F7 ++cmpgeb 0x0000000000000080 0x8000000000000000 = 0x000000000000007F ++cmpgeb 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000007 ++cmpgeb 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpgeb 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpgeb 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpgeb 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000001 ++cmpgeb 0x0000000000007FFF 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0x0000000000007FFF 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0x0000000000007FFF 0x0000000000000002 = 0x00000000000000FF ++cmpgeb 0x0000000000007FFF 0x0000000000000003 = 0x00000000000000FF ++cmpgeb 0x0000000000007FFF 0x000000000000000F = 0x00000000000000FF ++cmpgeb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpgeb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++cmpgeb 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++cmpgeb 0x0000000000007FFF 0x000000000000007F = 0x00000000000000FF ++cmpgeb 0x0000000000007FFF 0x0000000000000080 = 0x00000000000000FF ++cmpgeb 0x0000000000007FFF 0x0000000000007FFF = 0x00000000000000FF ++cmpgeb 0x0000000000007FFF 0x0000000000008000 = 0x00000000000000FD ++cmpgeb 0x0000000000007FFF 0x000000007FFFFFFF = 0x00000000000000F1 ++cmpgeb 0x0000000000007FFF 0x0000000080000000 = 0x00000000000000F7 ++cmpgeb 0x0000000000007FFF 0x8000000000000000 = 0x000000000000007F ++cmpgeb 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000000007 ++cmpgeb 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpgeb 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpgeb 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++cmpgeb 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000000001 ++cmpgeb 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000000003 ++cmpgeb 0x0000000000008000 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0x0000000000008000 0x0000000000000001 = 0x00000000000000FE ++cmpgeb 0x0000000000008000 0x0000000000000002 = 0x00000000000000FE ++cmpgeb 0x0000000000008000 0x0000000000000003 = 0x00000000000000FE ++cmpgeb 0x0000000000008000 0x000000000000000F = 0x00000000000000FE ++cmpgeb 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpgeb 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpgeb 0x0000000000008000 0x000000000000007F = 0x00000000000000FE ++cmpgeb 0x0000000000008000 0x0000000000000080 = 0x00000000000000FE ++cmpgeb 0x0000000000008000 0x0000000000007FFF = 0x00000000000000FE ++cmpgeb 0x0000000000008000 0x0000000000008000 = 0x00000000000000FF ++cmpgeb 0x0000000000008000 0x000000007FFFFFFF = 0x00000000000000F0 ++cmpgeb 0x0000000000008000 0x0000000080000000 = 0x00000000000000F7 ++cmpgeb 0x0000000000008000 0x8000000000000000 = 0x000000000000007F ++cmpgeb 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000000007 ++cmpgeb 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++cmpgeb 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpgeb 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpgeb 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000000002 ++cmpgeb 0x000000007FFFFFFF 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0x000000007FFFFFFF 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0x000000007FFFFFFF 0x0000000000000002 = 0x00000000000000FF ++cmpgeb 0x000000007FFFFFFF 0x0000000000000003 = 0x00000000000000FF ++cmpgeb 0x000000007FFFFFFF 0x000000000000000F = 0x00000000000000FF ++cmpgeb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x0000000000000007 ++cmpgeb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x0000000000000007 ++cmpgeb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x0000000000000007 ++cmpgeb 0x000000007FFFFFFF 0x000000000000007F = 0x00000000000000FF ++cmpgeb 0x000000007FFFFFFF 0x0000000000000080 = 0x00000000000000FF ++cmpgeb 0x000000007FFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++cmpgeb 0x000000007FFFFFFF 0x0000000000008000 = 0x00000000000000FF ++cmpgeb 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++cmpgeb 0x000000007FFFFFFF 0x0000000080000000 = 0x00000000000000F7 ++cmpgeb 0x000000007FFFFFFF 0x8000000000000000 = 0x000000000000007F ++cmpgeb 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x0000000000000007 ++cmpgeb 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x0000000000000007 ++cmpgeb 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x0000000000000007 ++cmpgeb 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x0000000000000007 ++cmpgeb 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x0000000000000007 ++cmpgeb 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000000000000F ++cmpgeb 0x0000000080000000 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0x0000000080000000 0x0000000000000001 = 0x00000000000000FE ++cmpgeb 0x0000000080000000 0x0000000000000002 = 0x00000000000000FE ++cmpgeb 0x0000000080000000 0x0000000000000003 = 0x00000000000000FE ++cmpgeb 0x0000000080000000 0x000000000000000F = 0x00000000000000FE ++cmpgeb 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpgeb 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpgeb 0x0000000080000000 0x000000000000007F = 0x00000000000000FE ++cmpgeb 0x0000000080000000 0x0000000000000080 = 0x00000000000000FE ++cmpgeb 0x0000000080000000 0x0000000000007FFF = 0x00000000000000FC ++cmpgeb 0x0000000080000000 0x0000000000008000 = 0x00000000000000FD ++cmpgeb 0x0000000080000000 0x000000007FFFFFFF = 0x00000000000000F8 ++cmpgeb 0x0000000080000000 0x0000000080000000 = 0x00000000000000FF ++cmpgeb 0x0000000080000000 0x8000000000000000 = 0x000000000000007F ++cmpgeb 0x0000000080000000 0xFFFFFFFF80000000 = 0x000000000000000F ++cmpgeb 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpgeb 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpgeb 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000000000000 ++cmpgeb 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000000000008 ++cmpgeb 0x8000000000000000 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0x8000000000000000 0x0000000000000001 = 0x00000000000000FE ++cmpgeb 0x8000000000000000 0x0000000000000002 = 0x00000000000000FE ++cmpgeb 0x8000000000000000 0x0000000000000003 = 0x00000000000000FE ++cmpgeb 0x8000000000000000 0x000000000000000F = 0x00000000000000FE ++cmpgeb 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpgeb 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpgeb 0x8000000000000000 0x000000000000007F = 0x00000000000000FE ++cmpgeb 0x8000000000000000 0x0000000000000080 = 0x00000000000000FE ++cmpgeb 0x8000000000000000 0x0000000000007FFF = 0x00000000000000FC ++cmpgeb 0x8000000000000000 0x0000000000008000 = 0x00000000000000FD ++cmpgeb 0x8000000000000000 0x000000007FFFFFFF = 0x00000000000000F0 ++cmpgeb 0x8000000000000000 0x0000000080000000 = 0x00000000000000F7 ++cmpgeb 0x8000000000000000 0x8000000000000000 = 0x00000000000000FF ++cmpgeb 0x8000000000000000 0xFFFFFFFF80000000 = 0x0000000000000007 ++cmpgeb 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpgeb 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpgeb 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++cmpgeb 0x8000000000000000 0x123456789ABCDEF0 = 0x0000000000000080 ++cmpgeb 0x8000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++cmpgeb 0xFFFFFFFF80000000 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFF80000000 0x0000000000000001 = 0x00000000000000FE ++cmpgeb 0xFFFFFFFF80000000 0x0000000000000002 = 0x00000000000000FE ++cmpgeb 0xFFFFFFFF80000000 0x0000000000000003 = 0x00000000000000FE ++cmpgeb 0xFFFFFFFF80000000 0x000000000000000F = 0x00000000000000FE ++cmpgeb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0x00000000000000F0 ++cmpgeb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0x00000000000000F0 ++cmpgeb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0x00000000000000F0 ++cmpgeb 0xFFFFFFFF80000000 0x000000000000007F = 0x00000000000000FE ++cmpgeb 0xFFFFFFFF80000000 0x0000000000000080 = 0x00000000000000FE ++cmpgeb 0xFFFFFFFF80000000 0x0000000000007FFF = 0x00000000000000FC ++cmpgeb 0xFFFFFFFF80000000 0x0000000000008000 = 0x00000000000000FD ++cmpgeb 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x00000000000000F8 ++cmpgeb 0xFFFFFFFF80000000 0x0000000080000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFF80000000 0x8000000000000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0x00000000000000F1 ++cmpgeb 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0x00000000000000F0 ++cmpgeb 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x00000000000000F0 ++cmpgeb 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x00000000000000F0 ++cmpgeb 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0x00000000000000F8 ++cmpgeb 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0x00000000000000FC ++cmpgeb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0x00000000000000FC ++cmpgeb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0x00000000000000FC ++cmpgeb 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x00000000000000FC ++cmpgeb 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0x00000000000000FC ++cmpgeb 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x00000000000000FC ++cmpgeb 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x00000000000000FC ++cmpgeb 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0x00000000000000FF ++cmpgeb 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x00000000000000FE ++cmpgeb 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0x00000000000000FF ++cmpgeb 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x00000000000000FF ++cmpgeb 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x00000000000000FF ++cmpgeb 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x00000000000000FF ++cmpgeb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++cmpgeb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++cmpgeb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++cmpgeb 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x00000000000000FF ++cmpgeb 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x00000000000000FF ++cmpgeb 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x00000000000000FF ++cmpgeb 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x00000000000000FF ++cmpgeb 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x00000000000000FF ++cmpgeb 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x00000000000000FF ++cmpgeb 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x000000000000007F ++cmpgeb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x000000000000007F ++cmpgeb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++cmpgeb 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++cmpgeb 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x00000000000000FF ++cmpgeb 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x00000000000000FF ++cmpgeb 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x000000000000007F ++cmpgeb 0x123456789ABCDEF0 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0x123456789ABCDEF0 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0x123456789ABCDEF0 0x0000000000000002 = 0x00000000000000FF ++cmpgeb 0x123456789ABCDEF0 0x0000000000000003 = 0x00000000000000FF ++cmpgeb 0x123456789ABCDEF0 0x000000000000000F = 0x00000000000000FF ++cmpgeb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpgeb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpgeb 0x123456789ABCDEF0 0x000000000000007F = 0x00000000000000FF ++cmpgeb 0x123456789ABCDEF0 0x0000000000000080 = 0x00000000000000FF ++cmpgeb 0x123456789ABCDEF0 0x0000000000007FFF = 0x00000000000000FE ++cmpgeb 0x123456789ABCDEF0 0x0000000000008000 = 0x00000000000000FF ++cmpgeb 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x00000000000000F8 ++cmpgeb 0x123456789ABCDEF0 0x0000000080000000 = 0x00000000000000FF ++cmpgeb 0x123456789ABCDEF0 0x8000000000000000 = 0x000000000000007F ++cmpgeb 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x000000000000000F ++cmpgeb 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++cmpgeb 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++cmpgeb 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x00000000000000FF ++cmpgeb 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x000000000000000F ++cmpgeb 0xF0DEBC9A78563412 0x0000000000000000 = 0x00000000000000FF ++cmpgeb 0xF0DEBC9A78563412 0x0000000000000001 = 0x00000000000000FF ++cmpgeb 0xF0DEBC9A78563412 0x0000000000000002 = 0x00000000000000FF ++cmpgeb 0xF0DEBC9A78563412 0x0000000000000003 = 0x00000000000000FF ++cmpgeb 0xF0DEBC9A78563412 0x000000000000000F = 0x00000000000000FF ++cmpgeb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++cmpgeb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++cmpgeb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++cmpgeb 0xF0DEBC9A78563412 0x000000000000007F = 0x00000000000000FE ++cmpgeb 0xF0DEBC9A78563412 0x0000000000000080 = 0x00000000000000FE ++cmpgeb 0xF0DEBC9A78563412 0x0000000000007FFF = 0x00000000000000FC ++cmpgeb 0xF0DEBC9A78563412 0x0000000000008000 = 0x00000000000000FD ++cmpgeb 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x00000000000000F0 ++cmpgeb 0xF0DEBC9A78563412 0x0000000080000000 = 0x00000000000000F7 ++cmpgeb 0xF0DEBC9A78563412 0x8000000000000000 = 0x00000000000000FF ++cmpgeb 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0x0000000000000007 ++cmpgeb 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++cmpgeb 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++cmpgeb 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++cmpgeb 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x00000000000000F0 ++cmpgeb 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0x00000000000000FF ++=== Running test on seleq === ++seleq 0x0000000000000000 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++seleq 0x0000000000000000 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++seleq 0x0000000000000000 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++seleq 0x0000000000000000 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++seleq 0x0000000000000000 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++seleq 0x0000000000000000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0x0000000000000000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x0000000000000000 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0x0000000000000000 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++seleq 0x0000000000000000 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++seleq 0x0000000000000000 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0x0000000000000000 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++seleq 0x0000000000000000 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0x0000000000000000 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++seleq 0x0000000000000000 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++seleq 0x0000000000000000 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0x0000000000000000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x0000000000000000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0x0000000000000000 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0x0000000000000000 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0x0000000000000000 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0x0000000000000001 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++seleq 0x0000000000000001 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++seleq 0x0000000000000001 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++seleq 0x0000000000000001 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++seleq 0x0000000000000001 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0x0000000000000001 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x0000000000000001 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0x0000000000000001 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++seleq 0x0000000000000001 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++seleq 0x0000000000000001 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0x0000000000000001 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++seleq 0x0000000000000001 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0x0000000000000001 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq 0x0000000000000001 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++seleq 0x0000000000000001 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0x0000000000000001 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x0000000000000001 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0x0000000000000001 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0x0000000000000001 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0x0000000000000001 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0x0000000000000001 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++seleq 0x0000000000000002 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++seleq 0x0000000000000002 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++seleq 0x0000000000000002 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++seleq 0x0000000000000002 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0x0000000000000002 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x0000000000000002 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0x0000000000000002 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++seleq 0x0000000000000002 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++seleq 0x0000000000000002 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0x0000000000000002 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++seleq 0x0000000000000002 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0x0000000000000002 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++seleq 0x0000000000000002 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq 0x0000000000000002 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0x0000000000000002 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x0000000000000002 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0x0000000000000002 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0x0000000000000002 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0x0000000000000002 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0x0000000000000002 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++seleq 0x0000000000000002 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++seleq 0x0000000000000003 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++seleq 0x0000000000000003 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++seleq 0x0000000000000003 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0x0000000000000003 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x0000000000000003 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0x0000000000000003 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq 0x0000000000000003 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++seleq 0x0000000000000003 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0x0000000000000003 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++seleq 0x0000000000000003 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0x0000000000000003 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++seleq 0x0000000000000003 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++seleq 0x0000000000000003 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0x0000000000000003 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x0000000000000003 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0x0000000000000003 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0x0000000000000003 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0x0000000000000003 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0x0000000000000003 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq 0x0000000000000003 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++seleq 0x0000000000000003 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++seleq 0x000000000000000F 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++seleq 0x000000000000000F 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0x000000000000000F 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x000000000000000F 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0x000000000000000F 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++seleq 0x000000000000000F 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq 0x000000000000000F 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0x000000000000000F 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++seleq 0x000000000000000F 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0x000000000000000F 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++seleq 0x000000000000000F 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++seleq 0x000000000000000F 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0x000000000000000F 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x000000000000000F 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0x000000000000000F 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0x000000000000000F 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0x000000000000000F 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0x000000000000000F 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++seleq 0x000000000000000F 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq 0x000000000000000F 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++seleq 0x000000000000000F 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++seleq 0xFFFFFFFFFFFFFFFF 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0xFFFFFFFFFFFFFFFF 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0xFFFFFFFFFFFFFFFF 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0xFFFFFFFFFFFFFFFF 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++seleq 0xFFFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++seleq 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++seleq 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0xFFFFFFFFFFFFFFFF 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++seleq 0xFFFFFFFFFFFFFFFF 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++seleq 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0xFFFFFFFFFFFFFFFF 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0xFFFFFFFFFFFFFFFF 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0xFFFFFFFFFFFFFFFF 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++seleq 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++seleq 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++seleq 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++seleq 0xFFFFFFFFFFFFFFFE 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0xFFFFFFFFFFFFFFFE 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0xFFFFFFFFFFFFFFFE 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++seleq 0xFFFFFFFFFFFFFFFE 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++seleq 0xFFFFFFFFFFFFFFFE 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++seleq 0xFFFFFFFFFFFFFFFE 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++seleq 0xFFFFFFFFFFFFFFFE 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0xFFFFFFFFFFFFFFFE 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0xFFFFFFFFFFFFFFFE 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0xFFFFFFFFFFFFFFFE 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++seleq 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++seleq 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++seleq 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++seleq 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0xFFFFFFFFFFFFFFFD 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0xFFFFFFFFFFFFFFFD 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++seleq 0xFFFFFFFFFFFFFFFD 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++seleq 0xFFFFFFFFFFFFFFFD 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0xFFFFFFFFFFFFFFFD 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++seleq 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++seleq 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++seleq 0xFFFFFFFFFFFFFFFD 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0xFFFFFFFFFFFFFFFD 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0xFFFFFFFFFFFFFFFD 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0xFFFFFFFFFFFFFFFD 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0xFFFFFFFFFFFFFFFD 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++seleq 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++seleq 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++seleq 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++seleq 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x000000000000007F 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++seleq 0x000000000000007F 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++seleq 0x000000000000007F 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0x000000000000007F 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++seleq 0x000000000000007F 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0x000000000000007F 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq 0x000000000000007F 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++seleq 0x000000000000007F 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0x000000000000007F 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x000000000000007F 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0x000000000000007F 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0x000000000000007F 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0x000000000000007F 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0x000000000000007F 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++seleq 0x000000000000007F 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++seleq 0x000000000000007F 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++seleq 0x000000000000007F 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++seleq 0x000000000000007F 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++seleq 0x000000000000007F 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0x000000000000007F 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x000000000000007F 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0x0000000000000080 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++seleq 0x0000000000000080 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0x0000000000000080 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++seleq 0x0000000000000080 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0x0000000000000080 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++seleq 0x0000000000000080 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq 0x0000000000000080 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0x0000000000000080 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x0000000000000080 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0x0000000000000080 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0x0000000000000080 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0x0000000000000080 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0x0000000000000080 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq 0x0000000000000080 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++seleq 0x0000000000000080 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++seleq 0x0000000000000080 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++seleq 0x0000000000000080 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++seleq 0x0000000000000080 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0x0000000000000080 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x0000000000000080 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0x0000000000000080 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++seleq 0x0000000000007FFF 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0x0000000000007FFF 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++seleq 0x0000000000007FFF 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0x0000000000007FFF 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++seleq 0x0000000000007FFF 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++seleq 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0x0000000000007FFF 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0x0000000000007FFF 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0x0000000000007FFF 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0x0000000000007FFF 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++seleq 0x0000000000007FFF 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq 0x0000000000007FFF 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++seleq 0x0000000000007FFF 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++seleq 0x0000000000007FFF 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++seleq 0x0000000000007FFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0x0000000000007FFF 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++seleq 0x0000000000007FFF 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++seleq 0x0000000000008000 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++seleq 0x0000000000008000 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0x0000000000008000 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++seleq 0x0000000000008000 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++seleq 0x0000000000008000 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0x0000000000008000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x0000000000008000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0x0000000000008000 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0x0000000000008000 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0x0000000000008000 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0x0000000000008000 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++seleq 0x0000000000008000 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++seleq 0x0000000000008000 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq 0x0000000000008000 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++seleq 0x0000000000008000 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++seleq 0x0000000000008000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0x0000000000008000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x0000000000008000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0x0000000000008000 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq 0x0000000000008000 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++seleq 0x0000000000008000 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0x000000007FFFFFFF 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0x000000007FFFFFFF 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++seleq 0x000000007FFFFFFF 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++seleq 0x000000007FFFFFFF 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0x000000007FFFFFFF 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0x000000007FFFFFFF 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0x000000007FFFFFFF 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++seleq 0x000000007FFFFFFF 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++seleq 0x000000007FFFFFFF 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++seleq 0x000000007FFFFFFF 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq 0x000000007FFFFFFF 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++seleq 0x000000007FFFFFFF 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0x000000007FFFFFFF 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++seleq 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq 0x000000007FFFFFFF 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0x000000007FFFFFFF 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++seleq 0x0000000080000000 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++seleq 0x0000000080000000 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++seleq 0x0000000080000000 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0x0000000080000000 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x0000000080000000 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0x0000000080000000 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0x0000000080000000 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0x0000000080000000 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0x0000000080000000 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++seleq 0x0000000080000000 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++seleq 0x0000000080000000 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++seleq 0x0000000080000000 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++seleq 0x0000000080000000 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq 0x0000000080000000 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0x0000000080000000 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x0000000080000000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0x0000000080000000 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++seleq 0x0000000080000000 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++seleq 0x0000000080000000 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0x0000000080000000 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++seleq 0x0000000080000000 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0x8000000000000000 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++seleq 0x8000000000000000 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0x8000000000000000 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x8000000000000000 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0x8000000000000000 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0x8000000000000000 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0x8000000000000000 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0x8000000000000000 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++seleq 0x8000000000000000 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++seleq 0x8000000000000000 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++seleq 0x8000000000000000 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++seleq 0x8000000000000000 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++seleq 0x8000000000000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0x8000000000000000 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x8000000000000000 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0x8000000000000000 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++seleq 0x8000000000000000 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++seleq 0x8000000000000000 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0x8000000000000000 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq 0x8000000000000000 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0x8000000000000000 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++seleq 0xFFFFFFFF80000000 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0xFFFFFFFF80000000 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0xFFFFFFFF80000000 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0xFFFFFFFF80000000 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0xFFFFFFFF80000000 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++seleq 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++seleq 0xFFFFFFFF80000000 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++seleq 0xFFFFFFFF80000000 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++seleq 0xFFFFFFFF80000000 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++seleq 0xFFFFFFFF80000000 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0xFFFFFFFF80000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0xFFFFFFFF80000000 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0xFFFFFFFF80000000 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++seleq 0xFFFFFFFF80000000 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++seleq 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++seleq 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0xFFFFFFFF80000000 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++seleq 0xFFFFFFFF80000000 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++seleq 0xFFFFFFFFFFFF8000 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0xFFFFFFFFFFFF8000 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0xFFFFFFFFFFFF8000 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0xFFFFFFFFFFFF8000 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0xFFFFFFFFFFFF8000 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++seleq 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++seleq 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++seleq 0xFFFFFFFFFFFF8000 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++seleq 0xFFFFFFFFFFFF8000 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++seleq 0xFFFFFFFFFFFF8000 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0xFFFFFFFFFFFF8000 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0xFFFFFFFFFFFF8000 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++seleq 0xFFFFFFFFFFFF8000 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++seleq 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++seleq 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++seleq 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++seleq 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0xFFFFFFFFFFFFFF80 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0xFFFFFFFFFFFFFF80 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0xFFFFFFFFFFFFFF80 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0xFFFFFFFFFFFFFF80 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0xFFFFFFFFFFFFFF80 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++seleq 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++seleq 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++seleq 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++seleq 0xFFFFFFFFFFFFFF80 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++seleq 0xFFFFFFFFFFFFFF80 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0xFFFFFFFFFFFFFF80 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0xFFFFFFFFFFFFFF80 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++seleq 0xFFFFFFFFFFFFFF80 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++seleq 0xFFFFFFFFFFFFFF80 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++seleq 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++seleq 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++seleq 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x7FFFFFFFFFFFFFFF 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0x7FFFFFFFFFFFFFFF 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0x7FFFFFFFFFFFFFFF 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0x7FFFFFFFFFFFFFFF 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++seleq 0x7FFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++seleq 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++seleq 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++seleq 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++seleq 0x7FFFFFFFFFFFFFFF 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0x7FFFFFFFFFFFFFFF 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0x7FFFFFFFFFFFFFFF 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++seleq 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++seleq 0x7FFFFFFFFFFFFFFF 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0x7FFFFFFFFFFFFFFF 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++seleq 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++seleq 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++seleq 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0x123456789ABCDEF0 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++seleq 0x123456789ABCDEF0 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0x123456789ABCDEF0 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++seleq 0x123456789ABCDEF0 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++seleq 0x123456789ABCDEF0 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++seleq 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++seleq 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++seleq 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0x123456789ABCDEF0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0x123456789ABCDEF0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0x123456789ABCDEF0 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++seleq 0x123456789ABCDEF0 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++seleq 0x123456789ABCDEF0 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0x123456789ABCDEF0 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++seleq 0x123456789ABCDEF0 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0x123456789ABCDEF0 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++seleq 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++seleq 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0x123456789ABCDEF0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0x123456789ABCDEF0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0xF0DEBC9A78563412 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++seleq 0xF0DEBC9A78563412 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++seleq 0xF0DEBC9A78563412 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++seleq 0xF0DEBC9A78563412 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++seleq 0xF0DEBC9A78563412 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++seleq 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++seleq 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++seleq 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++seleq 0xF0DEBC9A78563412 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++seleq 0xF0DEBC9A78563412 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++seleq 0xF0DEBC9A78563412 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++seleq 0xF0DEBC9A78563412 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++seleq 0xF0DEBC9A78563412 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++seleq 0xF0DEBC9A78563412 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++seleq 0xF0DEBC9A78563412 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++seleq 0xF0DEBC9A78563412 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++seleq 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++seleq 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++seleq 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++seleq 0xF0DEBC9A78563412 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++seleq 0xF0DEBC9A78563412 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++=== Running test on selge === ++selge 0x0000000000000000 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selge 0x0000000000000000 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selge 0x0000000000000000 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selge 0x0000000000000000 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selge 0x0000000000000000 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selge 0x0000000000000000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge 0x0000000000000000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge 0x0000000000000000 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge 0x0000000000000000 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selge 0x0000000000000000 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selge 0x0000000000000000 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++selge 0x0000000000000000 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++selge 0x0000000000000000 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge 0x0000000000000000 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++selge 0x0000000000000000 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selge 0x0000000000000000 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge 0x0000000000000000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge 0x0000000000000000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge 0x0000000000000000 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge 0x0000000000000000 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge 0x0000000000000000 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge 0x0000000000000001 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++selge 0x0000000000000001 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++selge 0x0000000000000001 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++selge 0x0000000000000001 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++selge 0x0000000000000001 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selge 0x0000000000000001 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++selge 0x0000000000000001 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++selge 0x0000000000000001 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFFFD ++selge 0x0000000000000001 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++selge 0x0000000000000001 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++selge 0x0000000000000001 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++selge 0x0000000000000001 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++selge 0x0000000000000001 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++selge 0x0000000000000001 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++selge 0x0000000000000001 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++selge 0x0000000000000001 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++selge 0x0000000000000001 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++selge 0x0000000000000001 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++selge 0x0000000000000001 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFFFFFF ++selge 0x0000000000000001 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123456789ABCDEF0 ++selge 0x0000000000000001 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++selge 0x0000000000000002 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++selge 0x0000000000000002 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++selge 0x0000000000000002 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++selge 0x0000000000000002 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selge 0x0000000000000002 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selge 0x0000000000000002 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++selge 0x0000000000000002 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFFFE ++selge 0x0000000000000002 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++selge 0x0000000000000002 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++selge 0x0000000000000002 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++selge 0x0000000000000002 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++selge 0x0000000000000002 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++selge 0x0000000000000002 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++selge 0x0000000000000002 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++selge 0x0000000000000002 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++selge 0x0000000000000002 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++selge 0x0000000000000002 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++selge 0x0000000000000002 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF80 ++selge 0x0000000000000002 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFFFFFFFFFFFF ++selge 0x0000000000000002 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++selge 0x0000000000000002 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563412 ++selge 0x0000000000000003 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++selge 0x0000000000000003 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++selge 0x0000000000000003 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selge 0x0000000000000003 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selge 0x0000000000000003 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selge 0x0000000000000003 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++selge 0x0000000000000003 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++selge 0x0000000000000003 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFD ++selge 0x0000000000000003 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++selge 0x0000000000000003 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++selge 0x0000000000000003 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++selge 0x0000000000000003 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++selge 0x0000000000000003 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++selge 0x0000000000000003 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++selge 0x0000000000000003 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++selge 0x0000000000000003 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++selge 0x0000000000000003 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++selge 0x0000000000000003 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFF80 ++selge 0x0000000000000003 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++selge 0x0000000000000003 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF0 ++selge 0x0000000000000003 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78563412 ++selge 0x000000000000000F 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++selge 0x000000000000000F 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selge 0x000000000000000F 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selge 0x000000000000000F 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selge 0x000000000000000F 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++selge 0x000000000000000F 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++selge 0x000000000000000F 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++selge 0x000000000000000F 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++selge 0x000000000000000F 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++selge 0x000000000000000F 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++selge 0x000000000000000F 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++selge 0x000000000000000F 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++selge 0x000000000000000F 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++selge 0x000000000000000F 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++selge 0x000000000000000F 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++selge 0x000000000000000F 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++selge 0x000000000000000F 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF8000 ++selge 0x000000000000000F 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++selge 0x000000000000000F 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++selge 0x000000000000000F 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABCDEF0 ++selge 0x000000000000000F 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A78563412 ++selge 0xFFFFFFFFFFFFFFFF 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge 0xFFFFFFFFFFFFFFFF 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge 0xFFFFFFFFFFFFFFFF 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge 0xFFFFFFFFFFFFFFFF 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++selge 0xFFFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++selge 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selge 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selge 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge 0xFFFFFFFFFFFFFFFF 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++selge 0xFFFFFFFFFFFFFFFF 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++selge 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge 0xFFFFFFFFFFFFFFFF 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge 0xFFFFFFFFFFFFFFFF 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge 0xFFFFFFFFFFFFFFFF 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selge 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selge 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selge 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++selge 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selge 0xFFFFFFFFFFFFFFFE 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge 0xFFFFFFFFFFFFFFFE 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge 0xFFFFFFFFFFFFFFFE 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++selge 0xFFFFFFFFFFFFFFFE 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++selge 0xFFFFFFFFFFFFFFFE 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++selge 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selge 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selge 0xFFFFFFFFFFFFFFFE 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++selge 0xFFFFFFFFFFFFFFFE 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge 0xFFFFFFFFFFFFFFFE 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge 0xFFFFFFFFFFFFFFFE 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge 0xFFFFFFFFFFFFFFFE 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selge 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selge 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selge 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selge 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++selge 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge 0xFFFFFFFFFFFFFFFD 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge 0xFFFFFFFFFFFFFFFD 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++selge 0xFFFFFFFFFFFFFFFD 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++selge 0xFFFFFFFFFFFFFFFD 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++selge 0xFFFFFFFFFFFFFFFD 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++selge 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selge 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selge 0xFFFFFFFFFFFFFFFD 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge 0xFFFFFFFFFFFFFFFD 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge 0xFFFFFFFFFFFFFFFD 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge 0xFFFFFFFFFFFFFFFD 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge 0xFFFFFFFFFFFFFFFD 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selge 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selge 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selge 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selge 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selge 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge 0x000000000000007F 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++selge 0x000000000000007F 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++selge 0x000000000000007F 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++selge 0x000000000000007F 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++selge 0x000000000000007F 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++selge 0x000000000000007F 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++selge 0x000000000000007F 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++selge 0x000000000000007F 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++selge 0x000000000000007F 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selge 0x000000000000007F 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selge 0x000000000000007F 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++selge 0x000000000000007F 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++selge 0x000000000000007F 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007FFFFFFF ++selge 0x000000000000007F 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++selge 0x000000000000007F 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++selge 0x000000000000007F 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000000 ++selge 0x000000000000007F 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF8000 ++selge 0x000000000000007F 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFF80 ++selge 0x000000000000007F 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge 0x000000000000007F 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDEF0 ++selge 0x000000000000007F 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A78563412 ++selge 0x0000000000000080 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++selge 0x0000000000000080 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++selge 0x0000000000000080 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++selge 0x0000000000000080 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++selge 0x0000000000000080 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++selge 0x0000000000000080 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++selge 0x0000000000000080 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++selge 0x0000000000000080 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++selge 0x0000000000000080 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selge 0x0000000000000080 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selge 0x0000000000000080 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++selge 0x0000000000000080 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++selge 0x0000000000000080 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++selge 0x0000000000000080 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++selge 0x0000000000000080 0x8000000000000000 0x0000000000000002 = 0x8000000000000000 ++selge 0x0000000000000080 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000000 ++selge 0x0000000000000080 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF8000 ++selge 0x0000000000000080 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++selge 0x0000000000000080 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFF ++selge 0x0000000000000080 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDEF0 ++selge 0x0000000000000080 0xF0DEBC9A78563412 0x000000000000007F = 0xF0DEBC9A78563412 ++selge 0x0000000000007FFF 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++selge 0x0000000000007FFF 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++selge 0x0000000000007FFF 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++selge 0x0000000000007FFF 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++selge 0x0000000000007FFF 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++selge 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++selge 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++selge 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++selge 0x0000000000007FFF 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selge 0x0000000000007FFF 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++selge 0x0000000000007FFF 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++selge 0x0000000000007FFF 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++selge 0x0000000000007FFF 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++selge 0x0000000000007FFF 0x0000000080000000 0x0000000000000002 = 0x0000000080000000 ++selge 0x0000000000007FFF 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++selge 0x0000000000007FFF 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF80000000 ++selge 0x0000000000007FFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++selge 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF80 ++selge 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFF ++selge 0x0000000000007FFF 0x123456789ABCDEF0 0x000000000000007F = 0x123456789ABCDEF0 ++selge 0x0000000000007FFF 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++selge 0x0000000000008000 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++selge 0x0000000000008000 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++selge 0x0000000000008000 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++selge 0x0000000000008000 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++selge 0x0000000000008000 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++selge 0x0000000000008000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++selge 0x0000000000008000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++selge 0x0000000000008000 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++selge 0x0000000000008000 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++selge 0x0000000000008000 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++selge 0x0000000000008000 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++selge 0x0000000000008000 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++selge 0x0000000000008000 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFFFFFF ++selge 0x0000000000008000 0x0000000080000000 0x0000000000000003 = 0x0000000080000000 ++selge 0x0000000000008000 0x8000000000000000 0x000000000000000F = 0x8000000000000000 ++selge 0x0000000000008000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++selge 0x0000000000008000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8000 ++selge 0x0000000000008000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF80 ++selge 0x0000000000008000 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7FFFFFFFFFFFFFFF ++selge 0x0000000000008000 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++selge 0x0000000000008000 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF0DEBC9A78563412 ++selge 0x000000007FFFFFFF 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++selge 0x000000007FFFFFFF 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++selge 0x000000007FFFFFFF 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++selge 0x000000007FFFFFFF 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++selge 0x000000007FFFFFFF 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selge 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++selge 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++selge 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++selge 0x000000007FFFFFFF 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++selge 0x000000007FFFFFFF 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++selge 0x000000007FFFFFFF 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++selge 0x000000007FFFFFFF 0x0000000000008000 0x0000000000000002 = 0x0000000000008000 ++selge 0x000000007FFFFFFF 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFFF ++selge 0x000000007FFFFFFF 0x0000000080000000 0x000000000000000F = 0x0000000080000000 ++selge 0x000000007FFFFFFF 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++selge 0x000000007FFFFFFF 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++selge 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8000 ++selge 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++selge 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++selge 0x000000007FFFFFFF 0x123456789ABCDEF0 0x0000000000007FFF = 0x123456789ABCDEF0 ++selge 0x000000007FFFFFFF 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++selge 0x0000000080000000 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++selge 0x0000000080000000 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++selge 0x0000000080000000 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++selge 0x0000000080000000 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selge 0x0000000080000000 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selge 0x0000000080000000 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge 0x0000000080000000 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++selge 0x0000000080000000 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFD ++selge 0x0000000080000000 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++selge 0x0000000080000000 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++selge 0x0000000080000000 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFF ++selge 0x0000000080000000 0x0000000000008000 0x0000000000000003 = 0x0000000000008000 ++selge 0x0000000080000000 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFFF ++selge 0x0000000080000000 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++selge 0x0000000080000000 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++selge 0x0000000080000000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++selge 0x0000000080000000 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFF8000 ++selge 0x0000000080000000 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++selge 0x0000000080000000 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFFFFFFFF ++selge 0x0000000080000000 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++selge 0x0000000080000000 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF0DEBC9A78563412 ++selge 0x8000000000000000 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selge 0x8000000000000000 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge 0x8000000000000000 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge 0x8000000000000000 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge 0x8000000000000000 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge 0x8000000000000000 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge 0x8000000000000000 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge 0x8000000000000000 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selge 0x8000000000000000 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++selge 0x8000000000000000 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++selge 0x8000000000000000 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++selge 0x8000000000000000 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++selge 0x8000000000000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge 0x8000000000000000 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge 0x8000000000000000 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge 0x8000000000000000 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selge 0x8000000000000000 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selge 0x8000000000000000 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selge 0x8000000000000000 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selge 0x8000000000000000 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge 0x8000000000000000 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selge 0xFFFFFFFF80000000 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge 0xFFFFFFFF80000000 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge 0xFFFFFFFF80000000 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge 0xFFFFFFFF80000000 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge 0xFFFFFFFF80000000 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selge 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selge 0xFFFFFFFF80000000 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++selge 0xFFFFFFFF80000000 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++selge 0xFFFFFFFF80000000 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++selge 0xFFFFFFFF80000000 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge 0xFFFFFFFF80000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge 0xFFFFFFFF80000000 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge 0xFFFFFFFF80000000 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selge 0xFFFFFFFF80000000 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selge 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selge 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selge 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge 0xFFFFFFFF80000000 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++selge 0xFFFFFFFF80000000 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selge 0xFFFFFFFFFFFF8000 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge 0xFFFFFFFFFFFF8000 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge 0xFFFFFFFFFFFF8000 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge 0xFFFFFFFFFFFF8000 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge 0xFFFFFFFFFFFF8000 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selge 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selge 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selge 0xFFFFFFFFFFFF8000 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++selge 0xFFFFFFFFFFFF8000 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++selge 0xFFFFFFFFFFFF8000 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge 0xFFFFFFFFFFFF8000 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge 0xFFFFFFFFFFFF8000 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++selge 0xFFFFFFFFFFFF8000 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selge 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selge 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selge 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selge 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++selge 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge 0xFFFFFFFFFFFFFF80 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge 0xFFFFFFFFFFFFFF80 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge 0xFFFFFFFFFFFFFF80 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selge 0xFFFFFFFFFFFFFF80 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge 0xFFFFFFFFFFFFFF80 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++selge 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selge 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selge 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selge 0xFFFFFFFFFFFFFF80 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++selge 0xFFFFFFFFFFFFFF80 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge 0xFFFFFFFFFFFFFF80 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge 0xFFFFFFFFFFFFFF80 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++selge 0xFFFFFFFFFFFFFF80 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++selge 0xFFFFFFFFFFFFFF80 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selge 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selge 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selge 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selge 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge 0x7FFFFFFFFFFFFFFF 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selge 0x7FFFFFFFFFFFFFFF 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++selge 0x7FFFFFFFFFFFFFFF 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++selge 0x7FFFFFFFFFFFFFFF 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++selge 0x7FFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++selge 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++selge 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++selge 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFFD ++selge 0x7FFFFFFFFFFFFFFF 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selge 0x7FFFFFFFFFFFFFFF 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selge 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++selge 0x7FFFFFFFFFFFFFFF 0x0000000000008000 0x000000000000007F = 0x0000000000008000 ++selge 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++selge 0x7FFFFFFFFFFFFFFF 0x0000000080000000 0x0000000000007FFF = 0x0000000080000000 ++selge 0x7FFFFFFFFFFFFFFF 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++selge 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++selge 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++selge 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++selge 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++selge 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++selge 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++selge 0x123456789ABCDEF0 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++selge 0x123456789ABCDEF0 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++selge 0x123456789ABCDEF0 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++selge 0x123456789ABCDEF0 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++selge 0x123456789ABCDEF0 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++selge 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++selge 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFFE ++selge 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++selge 0x123456789ABCDEF0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selge 0x123456789ABCDEF0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selge 0x123456789ABCDEF0 0x0000000000007FFF 0x000000000000007F = 0x0000000000007FFF ++selge 0x123456789ABCDEF0 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++selge 0x123456789ABCDEF0 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFFFFFF ++selge 0x123456789ABCDEF0 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++selge 0x123456789ABCDEF0 0x8000000000000000 0x000000007FFFFFFF = 0x8000000000000000 ++selge 0x123456789ABCDEF0 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++selge 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++selge 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++selge 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++selge 0x123456789ABCDEF0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++selge 0x123456789ABCDEF0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++selge 0xF0DEBC9A78563412 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selge 0xF0DEBC9A78563412 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++selge 0xF0DEBC9A78563412 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++selge 0xF0DEBC9A78563412 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++selge 0xF0DEBC9A78563412 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++selge 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selge 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selge 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selge 0xF0DEBC9A78563412 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selge 0xF0DEBC9A78563412 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++selge 0xF0DEBC9A78563412 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++selge 0xF0DEBC9A78563412 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++selge 0xF0DEBC9A78563412 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selge 0xF0DEBC9A78563412 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selge 0xF0DEBC9A78563412 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selge 0xF0DEBC9A78563412 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selge 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selge 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selge 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selge 0xF0DEBC9A78563412 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selge 0xF0DEBC9A78563412 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++=== Running test on selgt === ++selgt 0x0000000000000000 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt 0x0000000000000000 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selgt 0x0000000000000000 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selgt 0x0000000000000000 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selgt 0x0000000000000000 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selgt 0x0000000000000000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt 0x0000000000000000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt 0x0000000000000000 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt 0x0000000000000000 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selgt 0x0000000000000000 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selgt 0x0000000000000000 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++selgt 0x0000000000000000 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++selgt 0x0000000000000000 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt 0x0000000000000000 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++selgt 0x0000000000000000 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt 0x0000000000000000 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt 0x0000000000000000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt 0x0000000000000000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt 0x0000000000000000 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt 0x0000000000000000 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt 0x0000000000000000 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt 0x0000000000000001 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++selgt 0x0000000000000001 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++selgt 0x0000000000000001 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++selgt 0x0000000000000001 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++selgt 0x0000000000000001 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selgt 0x0000000000000001 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++selgt 0x0000000000000001 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++selgt 0x0000000000000001 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFFFD ++selgt 0x0000000000000001 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++selgt 0x0000000000000001 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++selgt 0x0000000000000001 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++selgt 0x0000000000000001 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++selgt 0x0000000000000001 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++selgt 0x0000000000000001 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++selgt 0x0000000000000001 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++selgt 0x0000000000000001 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++selgt 0x0000000000000001 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++selgt 0x0000000000000001 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++selgt 0x0000000000000001 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFFFFFF ++selgt 0x0000000000000001 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123456789ABCDEF0 ++selgt 0x0000000000000001 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++selgt 0x0000000000000002 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++selgt 0x0000000000000002 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++selgt 0x0000000000000002 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++selgt 0x0000000000000002 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selgt 0x0000000000000002 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selgt 0x0000000000000002 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++selgt 0x0000000000000002 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFFFE ++selgt 0x0000000000000002 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++selgt 0x0000000000000002 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++selgt 0x0000000000000002 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++selgt 0x0000000000000002 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++selgt 0x0000000000000002 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++selgt 0x0000000000000002 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++selgt 0x0000000000000002 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++selgt 0x0000000000000002 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++selgt 0x0000000000000002 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++selgt 0x0000000000000002 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++selgt 0x0000000000000002 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF80 ++selgt 0x0000000000000002 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFFFFFFFFFFFF ++selgt 0x0000000000000002 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++selgt 0x0000000000000002 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563412 ++selgt 0x0000000000000003 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++selgt 0x0000000000000003 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++selgt 0x0000000000000003 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selgt 0x0000000000000003 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selgt 0x0000000000000003 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selgt 0x0000000000000003 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++selgt 0x0000000000000003 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++selgt 0x0000000000000003 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFD ++selgt 0x0000000000000003 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++selgt 0x0000000000000003 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++selgt 0x0000000000000003 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++selgt 0x0000000000000003 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++selgt 0x0000000000000003 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++selgt 0x0000000000000003 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++selgt 0x0000000000000003 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++selgt 0x0000000000000003 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++selgt 0x0000000000000003 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++selgt 0x0000000000000003 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFF80 ++selgt 0x0000000000000003 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++selgt 0x0000000000000003 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF0 ++selgt 0x0000000000000003 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78563412 ++selgt 0x000000000000000F 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++selgt 0x000000000000000F 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selgt 0x000000000000000F 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selgt 0x000000000000000F 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selgt 0x000000000000000F 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++selgt 0x000000000000000F 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++selgt 0x000000000000000F 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++selgt 0x000000000000000F 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++selgt 0x000000000000000F 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++selgt 0x000000000000000F 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++selgt 0x000000000000000F 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++selgt 0x000000000000000F 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++selgt 0x000000000000000F 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++selgt 0x000000000000000F 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++selgt 0x000000000000000F 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++selgt 0x000000000000000F 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++selgt 0x000000000000000F 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF8000 ++selgt 0x000000000000000F 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++selgt 0x000000000000000F 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++selgt 0x000000000000000F 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABCDEF0 ++selgt 0x000000000000000F 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A78563412 ++selgt 0xFFFFFFFFFFFFFFFF 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt 0xFFFFFFFFFFFFFFFF 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt 0xFFFFFFFFFFFFFFFF 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt 0xFFFFFFFFFFFFFFFF 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++selgt 0xFFFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++selgt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selgt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++selgt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt 0xFFFFFFFFFFFFFFFF 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++selgt 0xFFFFFFFFFFFFFFFF 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++selgt 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt 0xFFFFFFFFFFFFFFFF 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt 0xFFFFFFFFFFFFFFFF 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt 0xFFFFFFFFFFFFFFFF 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++selgt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++selgt 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selgt 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++selgt 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++selgt 0xFFFFFFFFFFFFFFFE 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt 0xFFFFFFFFFFFFFFFE 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt 0xFFFFFFFFFFFFFFFE 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++selgt 0xFFFFFFFFFFFFFFFE 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++selgt 0xFFFFFFFFFFFFFFFE 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++selgt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selgt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++selgt 0xFFFFFFFFFFFFFFFE 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++selgt 0xFFFFFFFFFFFFFFFE 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt 0xFFFFFFFFFFFFFFFE 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt 0xFFFFFFFFFFFFFFFE 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt 0xFFFFFFFFFFFFFFFE 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++selgt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++selgt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++selgt 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selgt 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++selgt 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt 0xFFFFFFFFFFFFFFFD 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt 0xFFFFFFFFFFFFFFFD 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++selgt 0xFFFFFFFFFFFFFFFD 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++selgt 0xFFFFFFFFFFFFFFFD 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++selgt 0xFFFFFFFFFFFFFFFD 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++selgt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++selgt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++selgt 0xFFFFFFFFFFFFFFFD 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt 0xFFFFFFFFFFFFFFFD 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt 0xFFFFFFFFFFFFFFFD 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt 0xFFFFFFFFFFFFFFFD 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt 0xFFFFFFFFFFFFFFFD 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++selgt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++selgt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++selgt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++selgt 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selgt 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt 0x000000000000007F 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++selgt 0x000000000000007F 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++selgt 0x000000000000007F 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++selgt 0x000000000000007F 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++selgt 0x000000000000007F 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++selgt 0x000000000000007F 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++selgt 0x000000000000007F 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++selgt 0x000000000000007F 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++selgt 0x000000000000007F 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selgt 0x000000000000007F 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selgt 0x000000000000007F 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++selgt 0x000000000000007F 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++selgt 0x000000000000007F 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007FFFFFFF ++selgt 0x000000000000007F 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++selgt 0x000000000000007F 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++selgt 0x000000000000007F 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000000 ++selgt 0x000000000000007F 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF8000 ++selgt 0x000000000000007F 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFF80 ++selgt 0x000000000000007F 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt 0x000000000000007F 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDEF0 ++selgt 0x000000000000007F 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A78563412 ++selgt 0x0000000000000080 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++selgt 0x0000000000000080 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++selgt 0x0000000000000080 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++selgt 0x0000000000000080 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++selgt 0x0000000000000080 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++selgt 0x0000000000000080 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++selgt 0x0000000000000080 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++selgt 0x0000000000000080 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++selgt 0x0000000000000080 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selgt 0x0000000000000080 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selgt 0x0000000000000080 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++selgt 0x0000000000000080 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++selgt 0x0000000000000080 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++selgt 0x0000000000000080 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++selgt 0x0000000000000080 0x8000000000000000 0x0000000000000002 = 0x8000000000000000 ++selgt 0x0000000000000080 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000000 ++selgt 0x0000000000000080 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF8000 ++selgt 0x0000000000000080 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++selgt 0x0000000000000080 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFF ++selgt 0x0000000000000080 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDEF0 ++selgt 0x0000000000000080 0xF0DEBC9A78563412 0x000000000000007F = 0xF0DEBC9A78563412 ++selgt 0x0000000000007FFF 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++selgt 0x0000000000007FFF 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++selgt 0x0000000000007FFF 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++selgt 0x0000000000007FFF 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++selgt 0x0000000000007FFF 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++selgt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++selgt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++selgt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++selgt 0x0000000000007FFF 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selgt 0x0000000000007FFF 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++selgt 0x0000000000007FFF 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++selgt 0x0000000000007FFF 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++selgt 0x0000000000007FFF 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++selgt 0x0000000000007FFF 0x0000000080000000 0x0000000000000002 = 0x0000000080000000 ++selgt 0x0000000000007FFF 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++selgt 0x0000000000007FFF 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF80000000 ++selgt 0x0000000000007FFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++selgt 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF80 ++selgt 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFF ++selgt 0x0000000000007FFF 0x123456789ABCDEF0 0x000000000000007F = 0x123456789ABCDEF0 ++selgt 0x0000000000007FFF 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++selgt 0x0000000000008000 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++selgt 0x0000000000008000 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++selgt 0x0000000000008000 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++selgt 0x0000000000008000 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++selgt 0x0000000000008000 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++selgt 0x0000000000008000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++selgt 0x0000000000008000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++selgt 0x0000000000008000 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++selgt 0x0000000000008000 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++selgt 0x0000000000008000 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++selgt 0x0000000000008000 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++selgt 0x0000000000008000 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++selgt 0x0000000000008000 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFFFFFF ++selgt 0x0000000000008000 0x0000000080000000 0x0000000000000003 = 0x0000000080000000 ++selgt 0x0000000000008000 0x8000000000000000 0x000000000000000F = 0x8000000000000000 ++selgt 0x0000000000008000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++selgt 0x0000000000008000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8000 ++selgt 0x0000000000008000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF80 ++selgt 0x0000000000008000 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7FFFFFFFFFFFFFFF ++selgt 0x0000000000008000 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++selgt 0x0000000000008000 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF0DEBC9A78563412 ++selgt 0x000000007FFFFFFF 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++selgt 0x000000007FFFFFFF 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++selgt 0x000000007FFFFFFF 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++selgt 0x000000007FFFFFFF 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++selgt 0x000000007FFFFFFF 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selgt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++selgt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++selgt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++selgt 0x000000007FFFFFFF 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++selgt 0x000000007FFFFFFF 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++selgt 0x000000007FFFFFFF 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++selgt 0x000000007FFFFFFF 0x0000000000008000 0x0000000000000002 = 0x0000000000008000 ++selgt 0x000000007FFFFFFF 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFFF ++selgt 0x000000007FFFFFFF 0x0000000080000000 0x000000000000000F = 0x0000000080000000 ++selgt 0x000000007FFFFFFF 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++selgt 0x000000007FFFFFFF 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++selgt 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8000 ++selgt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++selgt 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++selgt 0x000000007FFFFFFF 0x123456789ABCDEF0 0x0000000000007FFF = 0x123456789ABCDEF0 ++selgt 0x000000007FFFFFFF 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++selgt 0x0000000080000000 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++selgt 0x0000000080000000 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++selgt 0x0000000080000000 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++selgt 0x0000000080000000 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selgt 0x0000000080000000 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selgt 0x0000000080000000 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt 0x0000000080000000 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++selgt 0x0000000080000000 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFD ++selgt 0x0000000080000000 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++selgt 0x0000000080000000 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++selgt 0x0000000080000000 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFF ++selgt 0x0000000080000000 0x0000000000008000 0x0000000000000003 = 0x0000000000008000 ++selgt 0x0000000080000000 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFFF ++selgt 0x0000000080000000 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++selgt 0x0000000080000000 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++selgt 0x0000000080000000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++selgt 0x0000000080000000 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFF8000 ++selgt 0x0000000080000000 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++selgt 0x0000000080000000 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFFFFFFFF ++selgt 0x0000000080000000 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++selgt 0x0000000080000000 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF0DEBC9A78563412 ++selgt 0x8000000000000000 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++selgt 0x8000000000000000 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt 0x8000000000000000 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt 0x8000000000000000 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt 0x8000000000000000 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt 0x8000000000000000 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt 0x8000000000000000 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt 0x8000000000000000 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++selgt 0x8000000000000000 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++selgt 0x8000000000000000 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++selgt 0x8000000000000000 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++selgt 0x8000000000000000 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++selgt 0x8000000000000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt 0x8000000000000000 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt 0x8000000000000000 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt 0x8000000000000000 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++selgt 0x8000000000000000 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++selgt 0x8000000000000000 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++selgt 0x8000000000000000 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selgt 0x8000000000000000 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt 0x8000000000000000 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++selgt 0xFFFFFFFF80000000 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt 0xFFFFFFFF80000000 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt 0xFFFFFFFF80000000 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt 0xFFFFFFFF80000000 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt 0xFFFFFFFF80000000 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++selgt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++selgt 0xFFFFFFFF80000000 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++selgt 0xFFFFFFFF80000000 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++selgt 0xFFFFFFFF80000000 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++selgt 0xFFFFFFFF80000000 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt 0xFFFFFFFF80000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt 0xFFFFFFFF80000000 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt 0xFFFFFFFF80000000 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++selgt 0xFFFFFFFF80000000 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++selgt 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++selgt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++selgt 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt 0xFFFFFFFF80000000 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++selgt 0xFFFFFFFF80000000 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++selgt 0xFFFFFFFFFFFF8000 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt 0xFFFFFFFFFFFF8000 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt 0xFFFFFFFFFFFF8000 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt 0xFFFFFFFFFFFF8000 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt 0xFFFFFFFFFFFF8000 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selgt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++selgt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++selgt 0xFFFFFFFFFFFF8000 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++selgt 0xFFFFFFFFFFFF8000 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++selgt 0xFFFFFFFFFFFF8000 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt 0xFFFFFFFFFFFF8000 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt 0xFFFFFFFFFFFF8000 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++selgt 0xFFFFFFFFFFFF8000 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++selgt 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++selgt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selgt 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++selgt 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt 0xFFFFFFFFFFFFFF80 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt 0xFFFFFFFFFFFFFF80 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt 0xFFFFFFFFFFFFFF80 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selgt 0xFFFFFFFFFFFFFF80 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt 0xFFFFFFFFFFFFFF80 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++selgt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selgt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++selgt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++selgt 0xFFFFFFFFFFFFFF80 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++selgt 0xFFFFFFFFFFFFFF80 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt 0xFFFFFFFFFFFFFF80 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt 0xFFFFFFFFFFFFFF80 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++selgt 0xFFFFFFFFFFFFFF80 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++selgt 0xFFFFFFFFFFFFFF80 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selgt 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++selgt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++selgt 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selgt 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt 0x7FFFFFFFFFFFFFFF 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selgt 0x7FFFFFFFFFFFFFFF 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++selgt 0x7FFFFFFFFFFFFFFF 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++selgt 0x7FFFFFFFFFFFFFFF 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++selgt 0x7FFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++selgt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++selgt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++selgt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFFD ++selgt 0x7FFFFFFFFFFFFFFF 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selgt 0x7FFFFFFFFFFFFFFF 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selgt 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++selgt 0x7FFFFFFFFFFFFFFF 0x0000000000008000 0x000000000000007F = 0x0000000000008000 ++selgt 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++selgt 0x7FFFFFFFFFFFFFFF 0x0000000080000000 0x0000000000007FFF = 0x0000000080000000 ++selgt 0x7FFFFFFFFFFFFFFF 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++selgt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++selgt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++selgt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++selgt 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++selgt 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++selgt 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++selgt 0x123456789ABCDEF0 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++selgt 0x123456789ABCDEF0 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++selgt 0x123456789ABCDEF0 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++selgt 0x123456789ABCDEF0 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++selgt 0x123456789ABCDEF0 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++selgt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++selgt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFFE ++selgt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++selgt 0x123456789ABCDEF0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selgt 0x123456789ABCDEF0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selgt 0x123456789ABCDEF0 0x0000000000007FFF 0x000000000000007F = 0x0000000000007FFF ++selgt 0x123456789ABCDEF0 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++selgt 0x123456789ABCDEF0 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFFFFFF ++selgt 0x123456789ABCDEF0 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++selgt 0x123456789ABCDEF0 0x8000000000000000 0x000000007FFFFFFF = 0x8000000000000000 ++selgt 0x123456789ABCDEF0 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++selgt 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++selgt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++selgt 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++selgt 0x123456789ABCDEF0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++selgt 0x123456789ABCDEF0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++selgt 0xF0DEBC9A78563412 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selgt 0xF0DEBC9A78563412 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++selgt 0xF0DEBC9A78563412 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++selgt 0xF0DEBC9A78563412 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++selgt 0xF0DEBC9A78563412 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++selgt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++selgt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selgt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selgt 0xF0DEBC9A78563412 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selgt 0xF0DEBC9A78563412 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++selgt 0xF0DEBC9A78563412 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++selgt 0xF0DEBC9A78563412 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++selgt 0xF0DEBC9A78563412 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++selgt 0xF0DEBC9A78563412 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selgt 0xF0DEBC9A78563412 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++selgt 0xF0DEBC9A78563412 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++selgt 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selgt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selgt 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selgt 0xF0DEBC9A78563412 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selgt 0xF0DEBC9A78563412 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++=== Running test on selle === ++selle 0x0000000000000000 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selle 0x0000000000000000 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selle 0x0000000000000000 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selle 0x0000000000000000 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selle 0x0000000000000000 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selle 0x0000000000000000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle 0x0000000000000000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle 0x0000000000000000 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle 0x0000000000000000 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selle 0x0000000000000000 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selle 0x0000000000000000 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++selle 0x0000000000000000 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++selle 0x0000000000000000 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle 0x0000000000000000 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++selle 0x0000000000000000 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selle 0x0000000000000000 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle 0x0000000000000000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle 0x0000000000000000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle 0x0000000000000000 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle 0x0000000000000000 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle 0x0000000000000000 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle 0x0000000000000001 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++selle 0x0000000000000001 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++selle 0x0000000000000001 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++selle 0x0000000000000001 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++selle 0x0000000000000001 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle 0x0000000000000001 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle 0x0000000000000001 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle 0x0000000000000001 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++selle 0x0000000000000001 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++selle 0x0000000000000001 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++selle 0x0000000000000001 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++selle 0x0000000000000001 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle 0x0000000000000001 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle 0x0000000000000001 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++selle 0x0000000000000001 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle 0x0000000000000001 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle 0x0000000000000001 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle 0x0000000000000001 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle 0x0000000000000001 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle 0x0000000000000001 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle 0x0000000000000001 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++selle 0x0000000000000002 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++selle 0x0000000000000002 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++selle 0x0000000000000002 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++selle 0x0000000000000002 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle 0x0000000000000002 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle 0x0000000000000002 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle 0x0000000000000002 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++selle 0x0000000000000002 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++selle 0x0000000000000002 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++selle 0x0000000000000002 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++selle 0x0000000000000002 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle 0x0000000000000002 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++selle 0x0000000000000002 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle 0x0000000000000002 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle 0x0000000000000002 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle 0x0000000000000002 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle 0x0000000000000002 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle 0x0000000000000002 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle 0x0000000000000002 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle 0x0000000000000002 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++selle 0x0000000000000002 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++selle 0x0000000000000003 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++selle 0x0000000000000003 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++selle 0x0000000000000003 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle 0x0000000000000003 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle 0x0000000000000003 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle 0x0000000000000003 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selle 0x0000000000000003 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++selle 0x0000000000000003 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++selle 0x0000000000000003 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++selle 0x0000000000000003 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle 0x0000000000000003 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++selle 0x0000000000000003 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++selle 0x0000000000000003 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle 0x0000000000000003 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle 0x0000000000000003 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle 0x0000000000000003 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle 0x0000000000000003 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle 0x0000000000000003 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle 0x0000000000000003 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle 0x0000000000000003 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++selle 0x0000000000000003 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++selle 0x000000000000000F 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++selle 0x000000000000000F 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle 0x000000000000000F 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle 0x000000000000000F 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle 0x000000000000000F 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++selle 0x000000000000000F 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle 0x000000000000000F 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++selle 0x000000000000000F 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++selle 0x000000000000000F 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle 0x000000000000000F 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++selle 0x000000000000000F 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++selle 0x000000000000000F 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle 0x000000000000000F 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle 0x000000000000000F 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle 0x000000000000000F 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle 0x000000000000000F 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle 0x000000000000000F 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle 0x000000000000000F 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++selle 0x000000000000000F 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle 0x000000000000000F 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++selle 0x000000000000000F 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++selle 0xFFFFFFFFFFFFFFFF 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selle 0xFFFFFFFFFFFFFFFF 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selle 0xFFFFFFFFFFFFFFFF 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selle 0xFFFFFFFFFFFFFFFF 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++selle 0xFFFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++selle 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++selle 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++selle 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFD ++selle 0xFFFFFFFFFFFFFFFF 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++selle 0xFFFFFFFFFFFFFFFF 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++selle 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++selle 0xFFFFFFFFFFFFFFFF 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++selle 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++selle 0xFFFFFFFFFFFFFFFF 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++selle 0xFFFFFFFFFFFFFFFF 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++selle 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++selle 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++selle 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF80 ++selle 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFFFFFF ++selle 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABCDEF0 ++selle 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A78563412 ++selle 0xFFFFFFFFFFFFFFFE 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selle 0xFFFFFFFFFFFFFFFE 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selle 0xFFFFFFFFFFFFFFFE 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++selle 0xFFFFFFFFFFFFFFFE 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++selle 0xFFFFFFFFFFFFFFFE 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++selle 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++selle 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++selle 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++selle 0xFFFFFFFFFFFFFFFE 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++selle 0xFFFFFFFFFFFFFFFE 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++selle 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++selle 0xFFFFFFFFFFFFFFFE 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++selle 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++selle 0xFFFFFFFFFFFFFFFE 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++selle 0xFFFFFFFFFFFFFFFE 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++selle 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++selle 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++selle 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF80 ++selle 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFFFFFF ++selle 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 0x000000000000000F = 0x123456789ABCDEF0 ++selle 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++selle 0xFFFFFFFFFFFFFFFD 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selle 0xFFFFFFFFFFFFFFFD 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++selle 0xFFFFFFFFFFFFFFFD 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++selle 0xFFFFFFFFFFFFFFFD 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++selle 0xFFFFFFFFFFFFFFFD 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++selle 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++selle 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++selle 0xFFFFFFFFFFFFFFFD 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++selle 0xFFFFFFFFFFFFFFFD 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selle 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++selle 0xFFFFFFFFFFFFFFFD 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++selle 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++selle 0xFFFFFFFFFFFFFFFD 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080000000 ++selle 0xFFFFFFFFFFFFFFFD 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++selle 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++selle 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF8000 ++selle 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF80 ++selle 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFFFFFFFFFF ++selle 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++selle 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563412 ++selle 0x000000000000007F 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++selle 0x000000000000007F 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++selle 0x000000000000007F 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++selle 0x000000000000007F 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++selle 0x000000000000007F 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle 0x000000000000007F 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++selle 0x000000000000007F 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++selle 0x000000000000007F 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle 0x000000000000007F 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle 0x000000000000007F 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle 0x000000000000007F 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle 0x000000000000007F 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle 0x000000000000007F 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle 0x000000000000007F 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++selle 0x000000000000007F 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++selle 0x000000000000007F 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++selle 0x000000000000007F 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++selle 0x000000000000007F 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++selle 0x000000000000007F 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle 0x000000000000007F 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle 0x000000000000007F 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle 0x0000000000000080 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++selle 0x0000000000000080 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++selle 0x0000000000000080 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++selle 0x0000000000000080 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle 0x0000000000000080 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++selle 0x0000000000000080 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++selle 0x0000000000000080 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle 0x0000000000000080 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle 0x0000000000000080 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle 0x0000000000000080 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle 0x0000000000000080 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle 0x0000000000000080 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle 0x0000000000000080 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++selle 0x0000000000000080 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++selle 0x0000000000000080 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++selle 0x0000000000000080 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++selle 0x0000000000000080 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++selle 0x0000000000000080 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle 0x0000000000000080 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle 0x0000000000000080 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle 0x0000000000000080 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++selle 0x0000000000007FFF 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++selle 0x0000000000007FFF 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++selle 0x0000000000007FFF 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle 0x0000000000007FFF 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++selle 0x0000000000007FFF 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++selle 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle 0x0000000000007FFF 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle 0x0000000000007FFF 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle 0x0000000000007FFF 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle 0x0000000000007FFF 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++selle 0x0000000000007FFF 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++selle 0x0000000000007FFF 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++selle 0x0000000000007FFF 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++selle 0x0000000000007FFF 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++selle 0x0000000000007FFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle 0x0000000000007FFF 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++selle 0x0000000000007FFF 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++selle 0x0000000000008000 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++selle 0x0000000000008000 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle 0x0000000000008000 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++selle 0x0000000000008000 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++selle 0x0000000000008000 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle 0x0000000000008000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle 0x0000000000008000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle 0x0000000000008000 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle 0x0000000000008000 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle 0x0000000000008000 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle 0x0000000000008000 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++selle 0x0000000000008000 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++selle 0x0000000000008000 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle 0x0000000000008000 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++selle 0x0000000000008000 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++selle 0x0000000000008000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle 0x0000000000008000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle 0x0000000000008000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle 0x0000000000008000 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++selle 0x0000000000008000 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++selle 0x0000000000008000 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++selle 0x000000007FFFFFFF 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle 0x000000007FFFFFFF 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++selle 0x000000007FFFFFFF 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++selle 0x000000007FFFFFFF 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle 0x000000007FFFFFFF 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle 0x000000007FFFFFFF 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle 0x000000007FFFFFFF 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++selle 0x000000007FFFFFFF 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++selle 0x000000007FFFFFFF 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++selle 0x000000007FFFFFFF 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle 0x000000007FFFFFFF 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++selle 0x000000007FFFFFFF 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle 0x000000007FFFFFFF 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++selle 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle 0x000000007FFFFFFF 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++selle 0x000000007FFFFFFF 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++selle 0x0000000080000000 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++selle 0x0000000080000000 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++selle 0x0000000080000000 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle 0x0000000080000000 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle 0x0000000080000000 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle 0x0000000080000000 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle 0x0000000080000000 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle 0x0000000080000000 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle 0x0000000080000000 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++selle 0x0000000080000000 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++selle 0x0000000080000000 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++selle 0x0000000080000000 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++selle 0x0000000080000000 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++selle 0x0000000080000000 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle 0x0000000080000000 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle 0x0000000080000000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle 0x0000000080000000 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++selle 0x0000000080000000 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++selle 0x0000000080000000 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle 0x0000000080000000 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++selle 0x0000000080000000 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle 0x8000000000000000 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++selle 0x8000000000000000 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++selle 0x8000000000000000 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selle 0x8000000000000000 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selle 0x8000000000000000 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selle 0x8000000000000000 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++selle 0x8000000000000000 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFE ++selle 0x8000000000000000 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++selle 0x8000000000000000 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++selle 0x8000000000000000 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++selle 0x8000000000000000 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFF ++selle 0x8000000000000000 0x0000000000008000 0x000000000000000F = 0x0000000000008000 ++selle 0x8000000000000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++selle 0x8000000000000000 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++selle 0x8000000000000000 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++selle 0x8000000000000000 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF80000000 ++selle 0x8000000000000000 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++selle 0x8000000000000000 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFFFF80 ++selle 0x8000000000000000 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++selle 0x8000000000000000 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x123456789ABCDEF0 ++selle 0x8000000000000000 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++selle 0xFFFFFFFF80000000 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selle 0xFFFFFFFF80000000 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selle 0xFFFFFFFF80000000 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selle 0xFFFFFFFF80000000 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selle 0xFFFFFFFF80000000 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++selle 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++selle 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++selle 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++selle 0xFFFFFFFF80000000 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++selle 0xFFFFFFFF80000000 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++selle 0xFFFFFFFF80000000 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FFF ++selle 0xFFFFFFFF80000000 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++selle 0xFFFFFFFF80000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++selle 0xFFFFFFFF80000000 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++selle 0xFFFFFFFF80000000 0x8000000000000000 0x000000000000007F = 0x8000000000000000 ++selle 0xFFFFFFFF80000000 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++selle 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++selle 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++selle 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle 0xFFFFFFFF80000000 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++selle 0xFFFFFFFF80000000 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++selle 0xFFFFFFFFFFFF8000 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selle 0xFFFFFFFFFFFF8000 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selle 0xFFFFFFFFFFFF8000 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selle 0xFFFFFFFFFFFF8000 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++selle 0xFFFFFFFFFFFF8000 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++selle 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++selle 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++selle 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++selle 0xFFFFFFFFFFFF8000 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++selle 0xFFFFFFFFFFFF8000 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++selle 0xFFFFFFFFFFFF8000 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++selle 0xFFFFFFFFFFFF8000 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++selle 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++selle 0xFFFFFFFFFFFF8000 0x0000000080000000 0x000000000000007F = 0x0000000080000000 ++selle 0xFFFFFFFFFFFF8000 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++selle 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80000000 ++selle 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++selle 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF80 ++selle 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++selle 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++selle 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++selle 0xFFFFFFFFFFFFFF80 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selle 0xFFFFFFFFFFFFFF80 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selle 0xFFFFFFFFFFFFFF80 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++selle 0xFFFFFFFFFFFFFF80 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++selle 0xFFFFFFFFFFFFFF80 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++selle 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++selle 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++selle 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++selle 0xFFFFFFFFFFFFFF80 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++selle 0xFFFFFFFFFFFFFF80 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selle 0xFFFFFFFFFFFFFF80 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++selle 0xFFFFFFFFFFFFFF80 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++selle 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFFFF ++selle 0xFFFFFFFFFFFFFF80 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++selle 0xFFFFFFFFFFFFFF80 0x8000000000000000 0x0000000000007FFF = 0x8000000000000000 ++selle 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++selle 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFFFF8000 ++selle 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++selle 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++selle 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++selle 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++selle 0x7FFFFFFFFFFFFFFF 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle 0x7FFFFFFFFFFFFFFF 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle 0x7FFFFFFFFFFFFFFF 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle 0x7FFFFFFFFFFFFFFF 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++selle 0x7FFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++selle 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++selle 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++selle 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++selle 0x7FFFFFFFFFFFFFFF 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle 0x7FFFFFFFFFFFFFFF 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle 0x7FFFFFFFFFFFFFFF 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++selle 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++selle 0x7FFFFFFFFFFFFFFF 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++selle 0x7FFFFFFFFFFFFFFF 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++selle 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++selle 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++selle 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle 0x123456789ABCDEF0 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selle 0x123456789ABCDEF0 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selle 0x123456789ABCDEF0 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++selle 0x123456789ABCDEF0 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++selle 0x123456789ABCDEF0 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++selle 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++selle 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++selle 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selle 0x123456789ABCDEF0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selle 0x123456789ABCDEF0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selle 0x123456789ABCDEF0 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++selle 0x123456789ABCDEF0 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++selle 0x123456789ABCDEF0 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++selle 0x123456789ABCDEF0 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++selle 0x123456789ABCDEF0 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selle 0x123456789ABCDEF0 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++selle 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++selle 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selle 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selle 0x123456789ABCDEF0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selle 0x123456789ABCDEF0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selle 0xF0DEBC9A78563412 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selle 0xF0DEBC9A78563412 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++selle 0xF0DEBC9A78563412 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++selle 0xF0DEBC9A78563412 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++selle 0xF0DEBC9A78563412 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++selle 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++selle 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++selle 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++selle 0xF0DEBC9A78563412 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selle 0xF0DEBC9A78563412 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++selle 0xF0DEBC9A78563412 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++selle 0xF0DEBC9A78563412 0x0000000000008000 0x0000000000007FFF = 0x0000000000008000 ++selle 0xF0DEBC9A78563412 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++selle 0xF0DEBC9A78563412 0x0000000080000000 0x000000007FFFFFFF = 0x0000000080000000 ++selle 0xF0DEBC9A78563412 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++selle 0xF0DEBC9A78563412 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++selle 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++selle 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++selle 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++selle 0xF0DEBC9A78563412 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++selle 0xF0DEBC9A78563412 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78563412 ++=== Running test on sellt === ++sellt 0x0000000000000000 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellt 0x0000000000000000 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellt 0x0000000000000000 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellt 0x0000000000000000 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellt 0x0000000000000000 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellt 0x0000000000000000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt 0x0000000000000000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt 0x0000000000000000 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt 0x0000000000000000 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellt 0x0000000000000000 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellt 0x0000000000000000 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt 0x0000000000000000 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellt 0x0000000000000000 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt 0x0000000000000000 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellt 0x0000000000000000 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellt 0x0000000000000000 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt 0x0000000000000000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt 0x0000000000000000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt 0x0000000000000000 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt 0x0000000000000000 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt 0x0000000000000000 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt 0x0000000000000001 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellt 0x0000000000000001 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellt 0x0000000000000001 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellt 0x0000000000000001 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellt 0x0000000000000001 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt 0x0000000000000001 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt 0x0000000000000001 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt 0x0000000000000001 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++sellt 0x0000000000000001 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellt 0x0000000000000001 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellt 0x0000000000000001 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellt 0x0000000000000001 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt 0x0000000000000001 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt 0x0000000000000001 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellt 0x0000000000000001 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt 0x0000000000000001 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt 0x0000000000000001 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt 0x0000000000000001 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt 0x0000000000000001 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt 0x0000000000000001 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt 0x0000000000000001 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++sellt 0x0000000000000002 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellt 0x0000000000000002 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellt 0x0000000000000002 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellt 0x0000000000000002 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt 0x0000000000000002 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt 0x0000000000000002 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt 0x0000000000000002 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++sellt 0x0000000000000002 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++sellt 0x0000000000000002 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellt 0x0000000000000002 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellt 0x0000000000000002 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt 0x0000000000000002 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellt 0x0000000000000002 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt 0x0000000000000002 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt 0x0000000000000002 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt 0x0000000000000002 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt 0x0000000000000002 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt 0x0000000000000002 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt 0x0000000000000002 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt 0x0000000000000002 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellt 0x0000000000000002 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++sellt 0x0000000000000003 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellt 0x0000000000000003 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellt 0x0000000000000003 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt 0x0000000000000003 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt 0x0000000000000003 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt 0x0000000000000003 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt 0x0000000000000003 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++sellt 0x0000000000000003 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++sellt 0x0000000000000003 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellt 0x0000000000000003 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt 0x0000000000000003 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellt 0x0000000000000003 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellt 0x0000000000000003 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt 0x0000000000000003 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt 0x0000000000000003 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt 0x0000000000000003 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt 0x0000000000000003 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt 0x0000000000000003 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt 0x0000000000000003 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt 0x0000000000000003 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellt 0x0000000000000003 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++sellt 0x000000000000000F 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellt 0x000000000000000F 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt 0x000000000000000F 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt 0x000000000000000F 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt 0x000000000000000F 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellt 0x000000000000000F 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt 0x000000000000000F 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++sellt 0x000000000000000F 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++sellt 0x000000000000000F 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt 0x000000000000000F 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellt 0x000000000000000F 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellt 0x000000000000000F 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt 0x000000000000000F 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt 0x000000000000000F 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt 0x000000000000000F 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt 0x000000000000000F 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt 0x000000000000000F 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt 0x000000000000000F 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++sellt 0x000000000000000F 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt 0x000000000000000F 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellt 0x000000000000000F 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++sellt 0xFFFFFFFFFFFFFFFF 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellt 0xFFFFFFFFFFFFFFFF 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellt 0xFFFFFFFFFFFFFFFF 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellt 0xFFFFFFFFFFFFFFFF 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++sellt 0xFFFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++sellt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sellt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++sellt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFD ++sellt 0xFFFFFFFFFFFFFFFF 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++sellt 0xFFFFFFFFFFFFFFFF 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++sellt 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++sellt 0xFFFFFFFFFFFFFFFF 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++sellt 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++sellt 0xFFFFFFFFFFFFFFFF 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++sellt 0xFFFFFFFFFFFFFFFF 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++sellt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++sellt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++sellt 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF80 ++sellt 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFFFFFF ++sellt 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABCDEF0 ++sellt 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A78563412 ++sellt 0xFFFFFFFFFFFFFFFE 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellt 0xFFFFFFFFFFFFFFFE 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellt 0xFFFFFFFFFFFFFFFE 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++sellt 0xFFFFFFFFFFFFFFFE 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++sellt 0xFFFFFFFFFFFFFFFE 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++sellt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++sellt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++sellt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++sellt 0xFFFFFFFFFFFFFFFE 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++sellt 0xFFFFFFFFFFFFFFFE 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellt 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++sellt 0xFFFFFFFFFFFFFFFE 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++sellt 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++sellt 0xFFFFFFFFFFFFFFFE 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++sellt 0xFFFFFFFFFFFFFFFE 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++sellt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++sellt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++sellt 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF80 ++sellt 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFFFFFF ++sellt 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 0x000000000000000F = 0x123456789ABCDEF0 ++sellt 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++sellt 0xFFFFFFFFFFFFFFFD 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellt 0xFFFFFFFFFFFFFFFD 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++sellt 0xFFFFFFFFFFFFFFFD 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++sellt 0xFFFFFFFFFFFFFFFD 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++sellt 0xFFFFFFFFFFFFFFFD 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++sellt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++sellt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++sellt 0xFFFFFFFFFFFFFFFD 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++sellt 0xFFFFFFFFFFFFFFFD 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellt 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++sellt 0xFFFFFFFFFFFFFFFD 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++sellt 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++sellt 0xFFFFFFFFFFFFFFFD 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080000000 ++sellt 0xFFFFFFFFFFFFFFFD 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++sellt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++sellt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF8000 ++sellt 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF80 ++sellt 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFFFFFFFFFF ++sellt 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++sellt 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563412 ++sellt 0x000000000000007F 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellt 0x000000000000007F 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellt 0x000000000000007F 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellt 0x000000000000007F 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellt 0x000000000000007F 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt 0x000000000000007F 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellt 0x000000000000007F 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++sellt 0x000000000000007F 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt 0x000000000000007F 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt 0x000000000000007F 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt 0x000000000000007F 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt 0x000000000000007F 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt 0x000000000000007F 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt 0x000000000000007F 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellt 0x000000000000007F 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellt 0x000000000000007F 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++sellt 0x000000000000007F 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++sellt 0x000000000000007F 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++sellt 0x000000000000007F 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt 0x000000000000007F 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt 0x000000000000007F 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt 0x0000000000000080 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellt 0x0000000000000080 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellt 0x0000000000000080 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellt 0x0000000000000080 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt 0x0000000000000080 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellt 0x0000000000000080 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellt 0x0000000000000080 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt 0x0000000000000080 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt 0x0000000000000080 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt 0x0000000000000080 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt 0x0000000000000080 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt 0x0000000000000080 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt 0x0000000000000080 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellt 0x0000000000000080 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellt 0x0000000000000080 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellt 0x0000000000000080 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++sellt 0x0000000000000080 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++sellt 0x0000000000000080 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt 0x0000000000000080 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt 0x0000000000000080 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt 0x0000000000000080 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++sellt 0x0000000000007FFF 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt 0x0000000000007FFF 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellt 0x0000000000007FFF 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt 0x0000000000007FFF 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellt 0x0000000000007FFF 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt 0x0000000000007FFF 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt 0x0000000000007FFF 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt 0x0000000000007FFF 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt 0x0000000000007FFF 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellt 0x0000000000007FFF 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellt 0x0000000000007FFF 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellt 0x0000000000007FFF 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellt 0x0000000000007FFF 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++sellt 0x0000000000007FFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt 0x0000000000007FFF 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellt 0x0000000000007FFF 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++sellt 0x0000000000008000 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellt 0x0000000000008000 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt 0x0000000000008000 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellt 0x0000000000008000 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellt 0x0000000000008000 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt 0x0000000000008000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt 0x0000000000008000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt 0x0000000000008000 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt 0x0000000000008000 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt 0x0000000000008000 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt 0x0000000000008000 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellt 0x0000000000008000 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellt 0x0000000000008000 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt 0x0000000000008000 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellt 0x0000000000008000 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++sellt 0x0000000000008000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt 0x0000000000008000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt 0x0000000000008000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt 0x0000000000008000 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellt 0x0000000000008000 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellt 0x0000000000008000 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++sellt 0x000000007FFFFFFF 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt 0x000000007FFFFFFF 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellt 0x000000007FFFFFFF 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellt 0x000000007FFFFFFF 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt 0x000000007FFFFFFF 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt 0x000000007FFFFFFF 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt 0x000000007FFFFFFF 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellt 0x000000007FFFFFFF 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellt 0x000000007FFFFFFF 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellt 0x000000007FFFFFFF 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt 0x000000007FFFFFFF 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellt 0x000000007FFFFFFF 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt 0x000000007FFFFFFF 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++sellt 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt 0x000000007FFFFFFF 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellt 0x000000007FFFFFFF 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++sellt 0x0000000080000000 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellt 0x0000000080000000 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellt 0x0000000080000000 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt 0x0000000080000000 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt 0x0000000080000000 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt 0x0000000080000000 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt 0x0000000080000000 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt 0x0000000080000000 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt 0x0000000080000000 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellt 0x0000000080000000 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellt 0x0000000080000000 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellt 0x0000000080000000 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellt 0x0000000080000000 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellt 0x0000000080000000 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt 0x0000000080000000 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt 0x0000000080000000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt 0x0000000080000000 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++sellt 0x0000000080000000 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++sellt 0x0000000080000000 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt 0x0000000080000000 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellt 0x0000000080000000 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt 0x8000000000000000 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++sellt 0x8000000000000000 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellt 0x8000000000000000 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellt 0x8000000000000000 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellt 0x8000000000000000 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellt 0x8000000000000000 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sellt 0x8000000000000000 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFE ++sellt 0x8000000000000000 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++sellt 0x8000000000000000 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++sellt 0x8000000000000000 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++sellt 0x8000000000000000 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFF ++sellt 0x8000000000000000 0x0000000000008000 0x000000000000000F = 0x0000000000008000 ++sellt 0x8000000000000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++sellt 0x8000000000000000 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++sellt 0x8000000000000000 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++sellt 0x8000000000000000 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF80000000 ++sellt 0x8000000000000000 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++sellt 0x8000000000000000 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFFFF80 ++sellt 0x8000000000000000 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++sellt 0x8000000000000000 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x123456789ABCDEF0 ++sellt 0x8000000000000000 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++sellt 0xFFFFFFFF80000000 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellt 0xFFFFFFFF80000000 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellt 0xFFFFFFFF80000000 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellt 0xFFFFFFFF80000000 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellt 0xFFFFFFFF80000000 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++sellt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++sellt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++sellt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++sellt 0xFFFFFFFF80000000 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++sellt 0xFFFFFFFF80000000 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++sellt 0xFFFFFFFF80000000 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FFF ++sellt 0xFFFFFFFF80000000 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++sellt 0xFFFFFFFF80000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++sellt 0xFFFFFFFF80000000 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++sellt 0xFFFFFFFF80000000 0x8000000000000000 0x000000000000007F = 0x8000000000000000 ++sellt 0xFFFFFFFF80000000 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++sellt 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++sellt 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++sellt 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt 0xFFFFFFFF80000000 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++sellt 0xFFFFFFFF80000000 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++sellt 0xFFFFFFFFFFFF8000 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellt 0xFFFFFFFFFFFF8000 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellt 0xFFFFFFFFFFFF8000 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellt 0xFFFFFFFFFFFF8000 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++sellt 0xFFFFFFFFFFFF8000 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++sellt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++sellt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++sellt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++sellt 0xFFFFFFFFFFFF8000 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++sellt 0xFFFFFFFFFFFF8000 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++sellt 0xFFFFFFFFFFFF8000 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++sellt 0xFFFFFFFFFFFF8000 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++sellt 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++sellt 0xFFFFFFFFFFFF8000 0x0000000080000000 0x000000000000007F = 0x0000000080000000 ++sellt 0xFFFFFFFFFFFF8000 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++sellt 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80000000 ++sellt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++sellt 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF80 ++sellt 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++sellt 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++sellt 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++sellt 0xFFFFFFFFFFFFFF80 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellt 0xFFFFFFFFFFFFFF80 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellt 0xFFFFFFFFFFFFFF80 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++sellt 0xFFFFFFFFFFFFFF80 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellt 0xFFFFFFFFFFFFFF80 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++sellt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++sellt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++sellt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++sellt 0xFFFFFFFFFFFFFF80 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++sellt 0xFFFFFFFFFFFFFF80 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellt 0xFFFFFFFFFFFFFF80 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++sellt 0xFFFFFFFFFFFFFF80 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++sellt 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFFFF ++sellt 0xFFFFFFFFFFFFFF80 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++sellt 0xFFFFFFFFFFFFFF80 0x8000000000000000 0x0000000000007FFF = 0x8000000000000000 ++sellt 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++sellt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFFFF8000 ++sellt 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++sellt 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++sellt 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++sellt 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++sellt 0x7FFFFFFFFFFFFFFF 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt 0x7FFFFFFFFFFFFFFF 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt 0x7FFFFFFFFFFFFFFF 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt 0x7FFFFFFFFFFFFFFF 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellt 0x7FFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++sellt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++sellt 0x7FFFFFFFFFFFFFFF 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt 0x7FFFFFFFFFFFFFFF 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt 0x7FFFFFFFFFFFFFFF 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellt 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellt 0x7FFFFFFFFFFFFFFF 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellt 0x7FFFFFFFFFFFFFFF 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++sellt 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++sellt 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt 0x123456789ABCDEF0 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellt 0x123456789ABCDEF0 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellt 0x123456789ABCDEF0 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellt 0x123456789ABCDEF0 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellt 0x123456789ABCDEF0 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++sellt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellt 0x123456789ABCDEF0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellt 0x123456789ABCDEF0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellt 0x123456789ABCDEF0 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellt 0x123456789ABCDEF0 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellt 0x123456789ABCDEF0 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellt 0x123456789ABCDEF0 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellt 0x123456789ABCDEF0 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellt 0x123456789ABCDEF0 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++sellt 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++sellt 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellt 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellt 0x123456789ABCDEF0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellt 0x123456789ABCDEF0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellt 0xF0DEBC9A78563412 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellt 0xF0DEBC9A78563412 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++sellt 0xF0DEBC9A78563412 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++sellt 0xF0DEBC9A78563412 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++sellt 0xF0DEBC9A78563412 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++sellt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++sellt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++sellt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++sellt 0xF0DEBC9A78563412 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellt 0xF0DEBC9A78563412 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++sellt 0xF0DEBC9A78563412 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++sellt 0xF0DEBC9A78563412 0x0000000000008000 0x0000000000007FFF = 0x0000000000008000 ++sellt 0xF0DEBC9A78563412 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++sellt 0xF0DEBC9A78563412 0x0000000080000000 0x000000007FFFFFFF = 0x0000000080000000 ++sellt 0xF0DEBC9A78563412 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++sellt 0xF0DEBC9A78563412 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++sellt 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++sellt 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++sellt 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++sellt 0xF0DEBC9A78563412 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++sellt 0xF0DEBC9A78563412 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78563412 ++=== Running test on selne === ++selne 0x0000000000000000 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++selne 0x0000000000000000 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++selne 0x0000000000000000 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++selne 0x0000000000000000 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++selne 0x0000000000000000 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++selne 0x0000000000000000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selne 0x0000000000000000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++selne 0x0000000000000000 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++selne 0x0000000000000000 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++selne 0x0000000000000000 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++selne 0x0000000000000000 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++selne 0x0000000000000000 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++selne 0x0000000000000000 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++selne 0x0000000000000000 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++selne 0x0000000000000000 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++selne 0x0000000000000000 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++selne 0x0000000000000000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++selne 0x0000000000000000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++selne 0x0000000000000000 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selne 0x0000000000000000 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++selne 0x0000000000000000 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++selne 0x0000000000000001 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++selne 0x0000000000000001 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++selne 0x0000000000000001 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++selne 0x0000000000000001 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++selne 0x0000000000000001 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++selne 0x0000000000000001 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++selne 0x0000000000000001 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++selne 0x0000000000000001 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFFFD ++selne 0x0000000000000001 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++selne 0x0000000000000001 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++selne 0x0000000000000001 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++selne 0x0000000000000001 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++selne 0x0000000000000001 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++selne 0x0000000000000001 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++selne 0x0000000000000001 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++selne 0x0000000000000001 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++selne 0x0000000000000001 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++selne 0x0000000000000001 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++selne 0x0000000000000001 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFFFFFF ++selne 0x0000000000000001 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123456789ABCDEF0 ++selne 0x0000000000000001 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++selne 0x0000000000000002 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++selne 0x0000000000000002 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++selne 0x0000000000000002 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++selne 0x0000000000000002 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++selne 0x0000000000000002 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++selne 0x0000000000000002 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++selne 0x0000000000000002 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFFFE ++selne 0x0000000000000002 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++selne 0x0000000000000002 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++selne 0x0000000000000002 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++selne 0x0000000000000002 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++selne 0x0000000000000002 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++selne 0x0000000000000002 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++selne 0x0000000000000002 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++selne 0x0000000000000002 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++selne 0x0000000000000002 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++selne 0x0000000000000002 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++selne 0x0000000000000002 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF80 ++selne 0x0000000000000002 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFFFFFFFFFFFF ++selne 0x0000000000000002 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++selne 0x0000000000000002 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563412 ++selne 0x0000000000000003 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++selne 0x0000000000000003 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++selne 0x0000000000000003 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++selne 0x0000000000000003 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++selne 0x0000000000000003 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++selne 0x0000000000000003 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++selne 0x0000000000000003 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++selne 0x0000000000000003 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFD ++selne 0x0000000000000003 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++selne 0x0000000000000003 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++selne 0x0000000000000003 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++selne 0x0000000000000003 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++selne 0x0000000000000003 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++selne 0x0000000000000003 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++selne 0x0000000000000003 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++selne 0x0000000000000003 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++selne 0x0000000000000003 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++selne 0x0000000000000003 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFF80 ++selne 0x0000000000000003 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++selne 0x0000000000000003 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF0 ++selne 0x0000000000000003 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78563412 ++selne 0x000000000000000F 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++selne 0x000000000000000F 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++selne 0x000000000000000F 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++selne 0x000000000000000F 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++selne 0x000000000000000F 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++selne 0x000000000000000F 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++selne 0x000000000000000F 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++selne 0x000000000000000F 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++selne 0x000000000000000F 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++selne 0x000000000000000F 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++selne 0x000000000000000F 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++selne 0x000000000000000F 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++selne 0x000000000000000F 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++selne 0x000000000000000F 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++selne 0x000000000000000F 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++selne 0x000000000000000F 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++selne 0x000000000000000F 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF8000 ++selne 0x000000000000000F 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++selne 0x000000000000000F 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++selne 0x000000000000000F 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABCDEF0 ++selne 0x000000000000000F 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A78563412 ++selne 0xFFFFFFFFFFFFFFFF 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++selne 0xFFFFFFFFFFFFFFFF 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++selne 0xFFFFFFFFFFFFFFFF 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++selne 0xFFFFFFFFFFFFFFFF 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++selne 0xFFFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++selne 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++selne 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++selne 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFD ++selne 0xFFFFFFFFFFFFFFFF 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++selne 0xFFFFFFFFFFFFFFFF 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++selne 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++selne 0xFFFFFFFFFFFFFFFF 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++selne 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++selne 0xFFFFFFFFFFFFFFFF 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++selne 0xFFFFFFFFFFFFFFFF 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++selne 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++selne 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++selne 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF80 ++selne 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFFFFFF ++selne 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABCDEF0 ++selne 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A78563412 ++selne 0xFFFFFFFFFFFFFFFE 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++selne 0xFFFFFFFFFFFFFFFE 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++selne 0xFFFFFFFFFFFFFFFE 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++selne 0xFFFFFFFFFFFFFFFE 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++selne 0xFFFFFFFFFFFFFFFE 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++selne 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++selne 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++selne 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++selne 0xFFFFFFFFFFFFFFFE 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++selne 0xFFFFFFFFFFFFFFFE 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++selne 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++selne 0xFFFFFFFFFFFFFFFE 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++selne 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++selne 0xFFFFFFFFFFFFFFFE 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++selne 0xFFFFFFFFFFFFFFFE 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++selne 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++selne 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++selne 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF80 ++selne 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFFFFFF ++selne 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 0x000000000000000F = 0x123456789ABCDEF0 ++selne 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++selne 0xFFFFFFFFFFFFFFFD 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++selne 0xFFFFFFFFFFFFFFFD 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++selne 0xFFFFFFFFFFFFFFFD 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++selne 0xFFFFFFFFFFFFFFFD 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++selne 0xFFFFFFFFFFFFFFFD 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++selne 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++selne 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++selne 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++selne 0xFFFFFFFFFFFFFFFD 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++selne 0xFFFFFFFFFFFFFFFD 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++selne 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++selne 0xFFFFFFFFFFFFFFFD 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++selne 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++selne 0xFFFFFFFFFFFFFFFD 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080000000 ++selne 0xFFFFFFFFFFFFFFFD 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++selne 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++selne 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF8000 ++selne 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF80 ++selne 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFFFFFFFFFF ++selne 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++selne 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563412 ++selne 0x000000000000007F 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++selne 0x000000000000007F 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++selne 0x000000000000007F 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++selne 0x000000000000007F 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++selne 0x000000000000007F 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++selne 0x000000000000007F 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++selne 0x000000000000007F 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++selne 0x000000000000007F 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++selne 0x000000000000007F 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++selne 0x000000000000007F 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++selne 0x000000000000007F 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++selne 0x000000000000007F 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++selne 0x000000000000007F 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007FFFFFFF ++selne 0x000000000000007F 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++selne 0x000000000000007F 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++selne 0x000000000000007F 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000000 ++selne 0x000000000000007F 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF8000 ++selne 0x000000000000007F 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFF80 ++selne 0x000000000000007F 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++selne 0x000000000000007F 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDEF0 ++selne 0x000000000000007F 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A78563412 ++selne 0x0000000000000080 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++selne 0x0000000000000080 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++selne 0x0000000000000080 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++selne 0x0000000000000080 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++selne 0x0000000000000080 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++selne 0x0000000000000080 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++selne 0x0000000000000080 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++selne 0x0000000000000080 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++selne 0x0000000000000080 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++selne 0x0000000000000080 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++selne 0x0000000000000080 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++selne 0x0000000000000080 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++selne 0x0000000000000080 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++selne 0x0000000000000080 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++selne 0x0000000000000080 0x8000000000000000 0x0000000000000002 = 0x8000000000000000 ++selne 0x0000000000000080 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000000 ++selne 0x0000000000000080 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF8000 ++selne 0x0000000000000080 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++selne 0x0000000000000080 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFF ++selne 0x0000000000000080 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDEF0 ++selne 0x0000000000000080 0xF0DEBC9A78563412 0x000000000000007F = 0xF0DEBC9A78563412 ++selne 0x0000000000007FFF 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++selne 0x0000000000007FFF 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++selne 0x0000000000007FFF 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++selne 0x0000000000007FFF 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++selne 0x0000000000007FFF 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++selne 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++selne 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++selne 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++selne 0x0000000000007FFF 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++selne 0x0000000000007FFF 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++selne 0x0000000000007FFF 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++selne 0x0000000000007FFF 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++selne 0x0000000000007FFF 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++selne 0x0000000000007FFF 0x0000000080000000 0x0000000000000002 = 0x0000000080000000 ++selne 0x0000000000007FFF 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++selne 0x0000000000007FFF 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF80000000 ++selne 0x0000000000007FFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++selne 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF80 ++selne 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFF ++selne 0x0000000000007FFF 0x123456789ABCDEF0 0x000000000000007F = 0x123456789ABCDEF0 ++selne 0x0000000000007FFF 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++selne 0x0000000000008000 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++selne 0x0000000000008000 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++selne 0x0000000000008000 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++selne 0x0000000000008000 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++selne 0x0000000000008000 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++selne 0x0000000000008000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++selne 0x0000000000008000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++selne 0x0000000000008000 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++selne 0x0000000000008000 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++selne 0x0000000000008000 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++selne 0x0000000000008000 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++selne 0x0000000000008000 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++selne 0x0000000000008000 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFFFFFF ++selne 0x0000000000008000 0x0000000080000000 0x0000000000000003 = 0x0000000080000000 ++selne 0x0000000000008000 0x8000000000000000 0x000000000000000F = 0x8000000000000000 ++selne 0x0000000000008000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++selne 0x0000000000008000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8000 ++selne 0x0000000000008000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF80 ++selne 0x0000000000008000 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7FFFFFFFFFFFFFFF ++selne 0x0000000000008000 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++selne 0x0000000000008000 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF0DEBC9A78563412 ++selne 0x000000007FFFFFFF 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++selne 0x000000007FFFFFFF 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++selne 0x000000007FFFFFFF 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++selne 0x000000007FFFFFFF 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++selne 0x000000007FFFFFFF 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++selne 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++selne 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++selne 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++selne 0x000000007FFFFFFF 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++selne 0x000000007FFFFFFF 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++selne 0x000000007FFFFFFF 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++selne 0x000000007FFFFFFF 0x0000000000008000 0x0000000000000002 = 0x0000000000008000 ++selne 0x000000007FFFFFFF 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFFF ++selne 0x000000007FFFFFFF 0x0000000080000000 0x000000000000000F = 0x0000000080000000 ++selne 0x000000007FFFFFFF 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++selne 0x000000007FFFFFFF 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++selne 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8000 ++selne 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++selne 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++selne 0x000000007FFFFFFF 0x123456789ABCDEF0 0x0000000000007FFF = 0x123456789ABCDEF0 ++selne 0x000000007FFFFFFF 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++selne 0x0000000080000000 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++selne 0x0000000080000000 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++selne 0x0000000080000000 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++selne 0x0000000080000000 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++selne 0x0000000080000000 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++selne 0x0000000080000000 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++selne 0x0000000080000000 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++selne 0x0000000080000000 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFD ++selne 0x0000000080000000 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++selne 0x0000000080000000 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++selne 0x0000000080000000 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFF ++selne 0x0000000080000000 0x0000000000008000 0x0000000000000003 = 0x0000000000008000 ++selne 0x0000000080000000 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFFF ++selne 0x0000000080000000 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++selne 0x0000000080000000 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++selne 0x0000000080000000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++selne 0x0000000080000000 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFF8000 ++selne 0x0000000080000000 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++selne 0x0000000080000000 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFFFFFFFF ++selne 0x0000000080000000 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++selne 0x0000000080000000 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF0DEBC9A78563412 ++selne 0x8000000000000000 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++selne 0x8000000000000000 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++selne 0x8000000000000000 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++selne 0x8000000000000000 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++selne 0x8000000000000000 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++selne 0x8000000000000000 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++selne 0x8000000000000000 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFE ++selne 0x8000000000000000 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++selne 0x8000000000000000 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++selne 0x8000000000000000 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++selne 0x8000000000000000 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFF ++selne 0x8000000000000000 0x0000000000008000 0x000000000000000F = 0x0000000000008000 ++selne 0x8000000000000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++selne 0x8000000000000000 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++selne 0x8000000000000000 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++selne 0x8000000000000000 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF80000000 ++selne 0x8000000000000000 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++selne 0x8000000000000000 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFFFF80 ++selne 0x8000000000000000 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++selne 0x8000000000000000 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x123456789ABCDEF0 ++selne 0x8000000000000000 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++selne 0xFFFFFFFF80000000 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++selne 0xFFFFFFFF80000000 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++selne 0xFFFFFFFF80000000 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++selne 0xFFFFFFFF80000000 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++selne 0xFFFFFFFF80000000 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++selne 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++selne 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++selne 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++selne 0xFFFFFFFF80000000 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++selne 0xFFFFFFFF80000000 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++selne 0xFFFFFFFF80000000 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FFF ++selne 0xFFFFFFFF80000000 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++selne 0xFFFFFFFF80000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++selne 0xFFFFFFFF80000000 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++selne 0xFFFFFFFF80000000 0x8000000000000000 0x000000000000007F = 0x8000000000000000 ++selne 0xFFFFFFFF80000000 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++selne 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++selne 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++selne 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFFFF ++selne 0xFFFFFFFF80000000 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++selne 0xFFFFFFFF80000000 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++selne 0xFFFFFFFFFFFF8000 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++selne 0xFFFFFFFFFFFF8000 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++selne 0xFFFFFFFFFFFF8000 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++selne 0xFFFFFFFFFFFF8000 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++selne 0xFFFFFFFFFFFF8000 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++selne 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++selne 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++selne 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++selne 0xFFFFFFFFFFFF8000 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++selne 0xFFFFFFFFFFFF8000 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++selne 0xFFFFFFFFFFFF8000 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++selne 0xFFFFFFFFFFFF8000 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++selne 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++selne 0xFFFFFFFFFFFF8000 0x0000000080000000 0x000000000000007F = 0x0000000080000000 ++selne 0xFFFFFFFFFFFF8000 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++selne 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80000000 ++selne 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++selne 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF80 ++selne 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++selne 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++selne 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++selne 0xFFFFFFFFFFFFFF80 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++selne 0xFFFFFFFFFFFFFF80 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++selne 0xFFFFFFFFFFFFFF80 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++selne 0xFFFFFFFFFFFFFF80 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++selne 0xFFFFFFFFFFFFFF80 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++selne 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++selne 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++selne 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++selne 0xFFFFFFFFFFFFFF80 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++selne 0xFFFFFFFFFFFFFF80 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++selne 0xFFFFFFFFFFFFFF80 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++selne 0xFFFFFFFFFFFFFF80 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++selne 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFFFF ++selne 0xFFFFFFFFFFFFFF80 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++selne 0xFFFFFFFFFFFFFF80 0x8000000000000000 0x0000000000007FFF = 0x8000000000000000 ++selne 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++selne 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFFFF8000 ++selne 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++selne 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++selne 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++selne 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++selne 0x7FFFFFFFFFFFFFFF 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++selne 0x7FFFFFFFFFFFFFFF 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++selne 0x7FFFFFFFFFFFFFFF 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++selne 0x7FFFFFFFFFFFFFFF 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++selne 0x7FFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++selne 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++selne 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++selne 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFFD ++selne 0x7FFFFFFFFFFFFFFF 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++selne 0x7FFFFFFFFFFFFFFF 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++selne 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++selne 0x7FFFFFFFFFFFFFFF 0x0000000000008000 0x000000000000007F = 0x0000000000008000 ++selne 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++selne 0x7FFFFFFFFFFFFFFF 0x0000000080000000 0x0000000000007FFF = 0x0000000080000000 ++selne 0x7FFFFFFFFFFFFFFF 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++selne 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++selne 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++selne 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++selne 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++selne 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++selne 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++selne 0x123456789ABCDEF0 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++selne 0x123456789ABCDEF0 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++selne 0x123456789ABCDEF0 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++selne 0x123456789ABCDEF0 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++selne 0x123456789ABCDEF0 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++selne 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++selne 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFFE ++selne 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++selne 0x123456789ABCDEF0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++selne 0x123456789ABCDEF0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++selne 0x123456789ABCDEF0 0x0000000000007FFF 0x000000000000007F = 0x0000000000007FFF ++selne 0x123456789ABCDEF0 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++selne 0x123456789ABCDEF0 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFFFFFF ++selne 0x123456789ABCDEF0 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++selne 0x123456789ABCDEF0 0x8000000000000000 0x000000007FFFFFFF = 0x8000000000000000 ++selne 0x123456789ABCDEF0 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++selne 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++selne 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++selne 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++selne 0x123456789ABCDEF0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++selne 0x123456789ABCDEF0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++selne 0xF0DEBC9A78563412 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++selne 0xF0DEBC9A78563412 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++selne 0xF0DEBC9A78563412 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++selne 0xF0DEBC9A78563412 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++selne 0xF0DEBC9A78563412 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++selne 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++selne 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++selne 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++selne 0xF0DEBC9A78563412 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++selne 0xF0DEBC9A78563412 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++selne 0xF0DEBC9A78563412 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++selne 0xF0DEBC9A78563412 0x0000000000008000 0x0000000000007FFF = 0x0000000000008000 ++selne 0xF0DEBC9A78563412 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++selne 0xF0DEBC9A78563412 0x0000000080000000 0x000000007FFFFFFF = 0x0000000080000000 ++selne 0xF0DEBC9A78563412 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++selne 0xF0DEBC9A78563412 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++selne 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++selne 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++selne 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++selne 0xF0DEBC9A78563412 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++selne 0xF0DEBC9A78563412 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78563412 ++=== Running test on sellbc === ++sellbc 0x0000000000000000 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbc 0x0000000000000000 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellbc 0x0000000000000000 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellbc 0x0000000000000000 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellbc 0x0000000000000000 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellbc 0x0000000000000000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc 0x0000000000000000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc 0x0000000000000000 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc 0x0000000000000000 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellbc 0x0000000000000000 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellbc 0x0000000000000000 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc 0x0000000000000000 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellbc 0x0000000000000000 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc 0x0000000000000000 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellbc 0x0000000000000000 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbc 0x0000000000000000 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc 0x0000000000000000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc 0x0000000000000000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc 0x0000000000000000 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc 0x0000000000000000 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc 0x0000000000000000 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc 0x0000000000000001 0x0000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbc 0x0000000000000001 0x0000000000000001 0x0000000000000002 = 0x0000000000000002 ++sellbc 0x0000000000000001 0x0000000000000002 0x0000000000000003 = 0x0000000000000003 ++sellbc 0x0000000000000001 0x0000000000000003 0x000000000000000F = 0x000000000000000F ++sellbc 0x0000000000000001 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc 0x0000000000000001 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc 0x0000000000000001 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc 0x0000000000000001 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0x000000000000007F ++sellbc 0x0000000000000001 0x000000000000007F 0x0000000000000080 = 0x0000000000000080 ++sellbc 0x0000000000000001 0x0000000000000080 0x0000000000007FFF = 0x0000000000007FFF ++sellbc 0x0000000000000001 0x0000000000007FFF 0x0000000000008000 = 0x0000000000008000 ++sellbc 0x0000000000000001 0x0000000000008000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc 0x0000000000000001 0x000000007FFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc 0x0000000000000001 0x0000000080000000 0x8000000000000000 = 0x8000000000000000 ++sellbc 0x0000000000000001 0x8000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc 0x0000000000000001 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc 0x0000000000000001 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc 0x0000000000000001 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc 0x0000000000000001 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc 0x0000000000000001 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc 0x0000000000000001 0xF0DEBC9A78563412 0x0000000000000000 = 0x0000000000000000 ++sellbc 0x0000000000000002 0x0000000000000000 0x0000000000000002 = 0x0000000000000000 ++sellbc 0x0000000000000002 0x0000000000000001 0x0000000000000003 = 0x0000000000000001 ++sellbc 0x0000000000000002 0x0000000000000002 0x000000000000000F = 0x0000000000000002 ++sellbc 0x0000000000000002 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc 0x0000000000000002 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0x000000000000000F ++sellbc 0x0000000000000002 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFF ++sellbc 0x0000000000000002 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0xFFFFFFFFFFFFFFFE ++sellbc 0x0000000000000002 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0xFFFFFFFFFFFFFFFD ++sellbc 0x0000000000000002 0x000000000000007F 0x0000000000007FFF = 0x000000000000007F ++sellbc 0x0000000000000002 0x0000000000000080 0x0000000000008000 = 0x0000000000000080 ++sellbc 0x0000000000000002 0x0000000000007FFF 0x000000007FFFFFFF = 0x0000000000007FFF ++sellbc 0x0000000000000002 0x0000000000008000 0x0000000080000000 = 0x0000000000008000 ++sellbc 0x0000000000000002 0x000000007FFFFFFF 0x8000000000000000 = 0x000000007FFFFFFF ++sellbc 0x0000000000000002 0x0000000080000000 0xFFFFFFFF80000000 = 0x0000000080000000 ++sellbc 0x0000000000000002 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0x8000000000000000 ++sellbc 0x0000000000000002 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFF80000000 ++sellbc 0x0000000000000002 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++sellbc 0x0000000000000002 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFF80 ++sellbc 0x0000000000000002 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0x7FFFFFFFFFFFFFFF ++sellbc 0x0000000000000002 0x123456789ABCDEF0 0x0000000000000000 = 0x123456789ABCDEF0 ++sellbc 0x0000000000000002 0xF0DEBC9A78563412 0x0000000000000001 = 0xF0DEBC9A78563412 ++sellbc 0x0000000000000003 0x0000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbc 0x0000000000000003 0x0000000000000001 0x000000000000000F = 0x000000000000000F ++sellbc 0x0000000000000003 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc 0x0000000000000003 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc 0x0000000000000003 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc 0x0000000000000003 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbc 0x0000000000000003 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0x0000000000000080 ++sellbc 0x0000000000000003 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0x0000000000007FFF ++sellbc 0x0000000000000003 0x000000000000007F 0x0000000000008000 = 0x0000000000008000 ++sellbc 0x0000000000000003 0x0000000000000080 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc 0x0000000000000003 0x0000000000007FFF 0x0000000080000000 = 0x0000000080000000 ++sellbc 0x0000000000000003 0x0000000000008000 0x8000000000000000 = 0x8000000000000000 ++sellbc 0x0000000000000003 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc 0x0000000000000003 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc 0x0000000000000003 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc 0x0000000000000003 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc 0x0000000000000003 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc 0x0000000000000003 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc 0x0000000000000003 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbc 0x0000000000000003 0x123456789ABCDEF0 0x0000000000000001 = 0x0000000000000001 ++sellbc 0x0000000000000003 0xF0DEBC9A78563412 0x0000000000000002 = 0x0000000000000002 ++sellbc 0x000000000000000F 0x0000000000000000 0x000000000000000F = 0x000000000000000F ++sellbc 0x000000000000000F 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc 0x000000000000000F 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc 0x000000000000000F 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc 0x000000000000000F 0x000000000000000F 0x000000000000007F = 0x000000000000007F ++sellbc 0x000000000000000F 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc 0x000000000000000F 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0x0000000000007FFF ++sellbc 0x000000000000000F 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0x0000000000008000 ++sellbc 0x000000000000000F 0x000000000000007F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc 0x000000000000000F 0x0000000000000080 0x0000000080000000 = 0x0000000080000000 ++sellbc 0x000000000000000F 0x0000000000007FFF 0x8000000000000000 = 0x8000000000000000 ++sellbc 0x000000000000000F 0x0000000000008000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc 0x000000000000000F 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc 0x000000000000000F 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc 0x000000000000000F 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc 0x000000000000000F 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc 0x000000000000000F 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc 0x000000000000000F 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0x0000000000000000 ++sellbc 0x000000000000000F 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc 0x000000000000000F 0x123456789ABCDEF0 0x0000000000000002 = 0x0000000000000002 ++sellbc 0x000000000000000F 0xF0DEBC9A78563412 0x0000000000000003 = 0x0000000000000003 ++sellbc 0xFFFFFFFFFFFFFFFF 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc 0xFFFFFFFFFFFFFFFF 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc 0xFFFFFFFFFFFFFFFF 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc 0xFFFFFFFFFFFFFFFF 0x0000000000000003 0x000000000000007F = 0x000000000000007F ++sellbc 0xFFFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000080 = 0x0000000000000080 ++sellbc 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbc 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0x0000000000008000 ++sellbc 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc 0xFFFFFFFFFFFFFFFF 0x000000000000007F 0x0000000080000000 = 0x0000000080000000 ++sellbc 0xFFFFFFFFFFFFFFFF 0x0000000000000080 0x8000000000000000 = 0x8000000000000000 ++sellbc 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc 0xFFFFFFFFFFFFFFFF 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc 0xFFFFFFFFFFFFFFFF 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc 0xFFFFFFFFFFFFFFFF 0x8000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0x0000000000000000 ++sellbc 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0x0000000000000001 ++sellbc 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 0x0000000000000003 = 0x0000000000000003 ++sellbc 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0x000000000000000F = 0x000000000000000F ++sellbc 0xFFFFFFFFFFFFFFFE 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0x0000000000000000 ++sellbc 0xFFFFFFFFFFFFFFFE 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0x0000000000000001 ++sellbc 0xFFFFFFFFFFFFFFFE 0x0000000000000002 0x000000000000007F = 0x0000000000000002 ++sellbc 0xFFFFFFFFFFFFFFFE 0x0000000000000003 0x0000000000000080 = 0x0000000000000003 ++sellbc 0xFFFFFFFFFFFFFFFE 0x000000000000000F 0x0000000000007FFF = 0x000000000000000F ++sellbc 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0xFFFFFFFFFFFFFFFF ++sellbc 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFE ++sellbc 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0xFFFFFFFFFFFFFFFD ++sellbc 0xFFFFFFFFFFFFFFFE 0x000000000000007F 0x8000000000000000 = 0x000000000000007F ++sellbc 0xFFFFFFFFFFFFFFFE 0x0000000000000080 0xFFFFFFFF80000000 = 0x0000000000000080 ++sellbc 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0x0000000000007FFF ++sellbc 0xFFFFFFFFFFFFFFFE 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0x0000000000008000 ++sellbc 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++sellbc 0xFFFFFFFFFFFFFFFE 0x0000000080000000 0x123456789ABCDEF0 = 0x0000000080000000 ++sellbc 0xFFFFFFFFFFFFFFFE 0x8000000000000000 0xF0DEBC9A78563412 = 0x8000000000000000 ++sellbc 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 0x0000000000000000 = 0xFFFFFFFF80000000 ++sellbc 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0xFFFFFFFFFFFF8000 ++sellbc 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0xFFFFFFFFFFFFFF80 ++sellbc 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x7FFFFFFFFFFFFFFF ++sellbc 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 0x000000000000000F = 0x123456789ABCDEF0 ++sellbc 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++sellbc 0xFFFFFFFFFFFFFFFD 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc 0xFFFFFFFFFFFFFFFD 0x0000000000000001 0x000000000000007F = 0x000000000000007F ++sellbc 0xFFFFFFFFFFFFFFFD 0x0000000000000002 0x0000000000000080 = 0x0000000000000080 ++sellbc 0xFFFFFFFFFFFFFFFD 0x0000000000000003 0x0000000000007FFF = 0x0000000000007FFF ++sellbc 0xFFFFFFFFFFFFFFFD 0x000000000000000F 0x0000000000008000 = 0x0000000000008000 ++sellbc 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0x0000000080000000 ++sellbc 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0x8000000000000000 ++sellbc 0xFFFFFFFFFFFFFFFD 0x000000000000007F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc 0xFFFFFFFFFFFFFFFD 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc 0xFFFFFFFFFFFFFFFD 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc 0xFFFFFFFFFFFFFFFD 0x0000000080000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc 0xFFFFFFFFFFFFFFFD 0x8000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbc 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 0x0000000000000001 = 0x0000000000000001 ++sellbc 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0x0000000000000002 ++sellbc 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0x0000000000000003 ++sellbc 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbc 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc 0x000000000000007F 0x0000000000000000 0x000000000000007F = 0x000000000000007F ++sellbc 0x000000000000007F 0x0000000000000001 0x0000000000000080 = 0x0000000000000080 ++sellbc 0x000000000000007F 0x0000000000000002 0x0000000000007FFF = 0x0000000000007FFF ++sellbc 0x000000000000007F 0x0000000000000003 0x0000000000008000 = 0x0000000000008000 ++sellbc 0x000000000000007F 0x000000000000000F 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc 0x000000000000007F 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbc 0x000000000000007F 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0x8000000000000000 ++sellbc 0x000000000000007F 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc 0x000000000000007F 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc 0x000000000000007F 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc 0x000000000000007F 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc 0x000000000000007F 0x0000000000008000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc 0x000000000000007F 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc 0x000000000000007F 0x0000000080000000 0x0000000000000000 = 0x0000000000000000 ++sellbc 0x000000000000007F 0x8000000000000000 0x0000000000000001 = 0x0000000000000001 ++sellbc 0x000000000000007F 0xFFFFFFFF80000000 0x0000000000000002 = 0x0000000000000002 ++sellbc 0x000000000000007F 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0x0000000000000003 ++sellbc 0x000000000000007F 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0x000000000000000F ++sellbc 0x000000000000007F 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc 0x000000000000007F 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc 0x000000000000007F 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc 0x0000000000000080 0x0000000000000000 0x0000000000000080 = 0x0000000000000000 ++sellbc 0x0000000000000080 0x0000000000000001 0x0000000000007FFF = 0x0000000000000001 ++sellbc 0x0000000000000080 0x0000000000000002 0x0000000000008000 = 0x0000000000000002 ++sellbc 0x0000000000000080 0x0000000000000003 0x000000007FFFFFFF = 0x0000000000000003 ++sellbc 0x0000000000000080 0x000000000000000F 0x0000000080000000 = 0x000000000000000F ++sellbc 0x0000000000000080 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0xFFFFFFFFFFFFFFFF ++sellbc 0x0000000000000080 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFE ++sellbc 0x0000000000000080 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFD ++sellbc 0x0000000000000080 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0x000000000000007F ++sellbc 0x0000000000000080 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc 0x0000000000000080 0x0000000000007FFF 0x123456789ABCDEF0 = 0x0000000000007FFF ++sellbc 0x0000000000000080 0x0000000000008000 0xF0DEBC9A78563412 = 0x0000000000008000 ++sellbc 0x0000000000000080 0x000000007FFFFFFF 0x0000000000000000 = 0x000000007FFFFFFF ++sellbc 0x0000000000000080 0x0000000080000000 0x0000000000000001 = 0x0000000080000000 ++sellbc 0x0000000000000080 0x8000000000000000 0x0000000000000002 = 0x8000000000000000 ++sellbc 0x0000000000000080 0xFFFFFFFF80000000 0x0000000000000003 = 0xFFFFFFFF80000000 ++sellbc 0x0000000000000080 0xFFFFFFFFFFFF8000 0x000000000000000F = 0xFFFFFFFFFFFF8000 ++sellbc 0x0000000000000080 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++sellbc 0x0000000000000080 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0x7FFFFFFFFFFFFFFF ++sellbc 0x0000000000000080 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0x123456789ABCDEF0 ++sellbc 0x0000000000000080 0xF0DEBC9A78563412 0x000000000000007F = 0xF0DEBC9A78563412 ++sellbc 0x0000000000007FFF 0x0000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbc 0x0000000000007FFF 0x0000000000000001 0x0000000000008000 = 0x0000000000008000 ++sellbc 0x0000000000007FFF 0x0000000000000002 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc 0x0000000000007FFF 0x0000000000000003 0x0000000080000000 = 0x0000000080000000 ++sellbc 0x0000000000007FFF 0x000000000000000F 0x8000000000000000 = 0x8000000000000000 ++sellbc 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc 0x0000000000007FFF 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc 0x0000000000007FFF 0x0000000000000080 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc 0x0000000000007FFF 0x0000000000007FFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc 0x0000000000007FFF 0x0000000000008000 0x0000000000000000 = 0x0000000000000000 ++sellbc 0x0000000000007FFF 0x000000007FFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbc 0x0000000000007FFF 0x0000000080000000 0x0000000000000002 = 0x0000000000000002 ++sellbc 0x0000000000007FFF 0x8000000000000000 0x0000000000000003 = 0x0000000000000003 ++sellbc 0x0000000000007FFF 0xFFFFFFFF80000000 0x000000000000000F = 0x000000000000000F ++sellbc 0x0000000000007FFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc 0x0000000000007FFF 0x123456789ABCDEF0 0x000000000000007F = 0x000000000000007F ++sellbc 0x0000000000007FFF 0xF0DEBC9A78563412 0x0000000000000080 = 0x0000000000000080 ++sellbc 0x0000000000008000 0x0000000000000000 0x0000000000008000 = 0x0000000000000000 ++sellbc 0x0000000000008000 0x0000000000000001 0x000000007FFFFFFF = 0x0000000000000001 ++sellbc 0x0000000000008000 0x0000000000000002 0x0000000080000000 = 0x0000000000000002 ++sellbc 0x0000000000008000 0x0000000000000003 0x8000000000000000 = 0x0000000000000003 ++sellbc 0x0000000000008000 0x000000000000000F 0xFFFFFFFF80000000 = 0x000000000000000F ++sellbc 0x0000000000008000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFF ++sellbc 0x0000000000008000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFE ++sellbc 0x0000000000008000 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++sellbc 0x0000000000008000 0x000000000000007F 0x123456789ABCDEF0 = 0x000000000000007F ++sellbc 0x0000000000008000 0x0000000000000080 0xF0DEBC9A78563412 = 0x0000000000000080 ++sellbc 0x0000000000008000 0x0000000000007FFF 0x0000000000000000 = 0x0000000000007FFF ++sellbc 0x0000000000008000 0x0000000000008000 0x0000000000000001 = 0x0000000000008000 ++sellbc 0x0000000000008000 0x000000007FFFFFFF 0x0000000000000002 = 0x000000007FFFFFFF ++sellbc 0x0000000000008000 0x0000000080000000 0x0000000000000003 = 0x0000000080000000 ++sellbc 0x0000000000008000 0x8000000000000000 0x000000000000000F = 0x8000000000000000 ++sellbc 0x0000000000008000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sellbc 0x0000000000008000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFF8000 ++sellbc 0x0000000000008000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFF80 ++sellbc 0x0000000000008000 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x7FFFFFFFFFFFFFFF ++sellbc 0x0000000000008000 0x123456789ABCDEF0 0x0000000000000080 = 0x123456789ABCDEF0 ++sellbc 0x0000000000008000 0xF0DEBC9A78563412 0x0000000000007FFF = 0xF0DEBC9A78563412 ++sellbc 0x000000007FFFFFFF 0x0000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc 0x000000007FFFFFFF 0x0000000000000001 0x0000000080000000 = 0x0000000080000000 ++sellbc 0x000000007FFFFFFF 0x0000000000000002 0x8000000000000000 = 0x8000000000000000 ++sellbc 0x000000007FFFFFFF 0x0000000000000003 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc 0x000000007FFFFFFF 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc 0x000000007FFFFFFF 0x000000000000007F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc 0x000000007FFFFFFF 0x0000000000000080 0x0000000000000000 = 0x0000000000000000 ++sellbc 0x000000007FFFFFFF 0x0000000000007FFF 0x0000000000000001 = 0x0000000000000001 ++sellbc 0x000000007FFFFFFF 0x0000000000008000 0x0000000000000002 = 0x0000000000000002 ++sellbc 0x000000007FFFFFFF 0x000000007FFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbc 0x000000007FFFFFFF 0x0000000080000000 0x000000000000000F = 0x000000000000000F ++sellbc 0x000000007FFFFFFF 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc 0x000000007FFFFFFF 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0x000000000000007F ++sellbc 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc 0x000000007FFFFFFF 0x123456789ABCDEF0 0x0000000000007FFF = 0x0000000000007FFF ++sellbc 0x000000007FFFFFFF 0xF0DEBC9A78563412 0x0000000000008000 = 0x0000000000008000 ++sellbc 0x0000000080000000 0x0000000000000000 0x0000000080000000 = 0x0000000000000000 ++sellbc 0x0000000080000000 0x0000000000000001 0x8000000000000000 = 0x0000000000000001 ++sellbc 0x0000000080000000 0x0000000000000002 0xFFFFFFFF80000000 = 0x0000000000000002 ++sellbc 0x0000000080000000 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0x0000000000000003 ++sellbc 0x0000000080000000 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0x000000000000000F ++sellbc 0x0000000080000000 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc 0x0000000080000000 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFE ++sellbc 0x0000000080000000 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFD ++sellbc 0x0000000080000000 0x000000000000007F 0x0000000000000000 = 0x000000000000007F ++sellbc 0x0000000080000000 0x0000000000000080 0x0000000000000001 = 0x0000000000000080 ++sellbc 0x0000000080000000 0x0000000000007FFF 0x0000000000000002 = 0x0000000000007FFF ++sellbc 0x0000000080000000 0x0000000000008000 0x0000000000000003 = 0x0000000000008000 ++sellbc 0x0000000080000000 0x000000007FFFFFFF 0x000000000000000F = 0x000000007FFFFFFF ++sellbc 0x0000000080000000 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0x0000000080000000 ++sellbc 0x0000000080000000 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0x8000000000000000 ++sellbc 0x0000000080000000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFF80000000 ++sellbc 0x0000000080000000 0xFFFFFFFFFFFF8000 0x000000000000007F = 0xFFFFFFFFFFFF8000 ++sellbc 0x0000000080000000 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0xFFFFFFFFFFFFFF80 ++sellbc 0x0000000080000000 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x7FFFFFFFFFFFFFFF ++sellbc 0x0000000080000000 0x123456789ABCDEF0 0x0000000000008000 = 0x123456789ABCDEF0 ++sellbc 0x0000000080000000 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0xF0DEBC9A78563412 ++sellbc 0x8000000000000000 0x0000000000000000 0x8000000000000000 = 0x0000000000000000 ++sellbc 0x8000000000000000 0x0000000000000001 0xFFFFFFFF80000000 = 0x0000000000000001 ++sellbc 0x8000000000000000 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0x0000000000000002 ++sellbc 0x8000000000000000 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0x0000000000000003 ++sellbc 0x8000000000000000 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x000000000000000F ++sellbc 0x8000000000000000 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFF ++sellbc 0x8000000000000000 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFE ++sellbc 0x8000000000000000 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0xFFFFFFFFFFFFFFFD ++sellbc 0x8000000000000000 0x000000000000007F 0x0000000000000001 = 0x000000000000007F ++sellbc 0x8000000000000000 0x0000000000000080 0x0000000000000002 = 0x0000000000000080 ++sellbc 0x8000000000000000 0x0000000000007FFF 0x0000000000000003 = 0x0000000000007FFF ++sellbc 0x8000000000000000 0x0000000000008000 0x000000000000000F = 0x0000000000008000 ++sellbc 0x8000000000000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0x000000007FFFFFFF ++sellbc 0x8000000000000000 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0x0000000080000000 ++sellbc 0x8000000000000000 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0x8000000000000000 ++sellbc 0x8000000000000000 0xFFFFFFFF80000000 0x000000000000007F = 0xFFFFFFFF80000000 ++sellbc 0x8000000000000000 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0xFFFFFFFFFFFF8000 ++sellbc 0x8000000000000000 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0xFFFFFFFFFFFFFF80 ++sellbc 0x8000000000000000 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x7FFFFFFFFFFFFFFF ++sellbc 0x8000000000000000 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x123456789ABCDEF0 ++sellbc 0x8000000000000000 0xF0DEBC9A78563412 0x0000000080000000 = 0xF0DEBC9A78563412 ++sellbc 0xFFFFFFFF80000000 0x0000000000000000 0xFFFFFFFF80000000 = 0x0000000000000000 ++sellbc 0xFFFFFFFF80000000 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0x0000000000000001 ++sellbc 0xFFFFFFFF80000000 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0x0000000000000002 ++sellbc 0xFFFFFFFF80000000 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x0000000000000003 ++sellbc 0xFFFFFFFF80000000 0x000000000000000F 0x123456789ABCDEF0 = 0x000000000000000F ++sellbc 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFFFF ++sellbc 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0xFFFFFFFFFFFFFFFE ++sellbc 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0xFFFFFFFFFFFFFFFD ++sellbc 0xFFFFFFFF80000000 0x000000000000007F 0x0000000000000002 = 0x000000000000007F ++sellbc 0xFFFFFFFF80000000 0x0000000000000080 0x0000000000000003 = 0x0000000000000080 ++sellbc 0xFFFFFFFF80000000 0x0000000000007FFF 0x000000000000000F = 0x0000000000007FFF ++sellbc 0xFFFFFFFF80000000 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0x0000000000008000 ++sellbc 0xFFFFFFFF80000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0x000000007FFFFFFF ++sellbc 0xFFFFFFFF80000000 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0x0000000080000000 ++sellbc 0xFFFFFFFF80000000 0x8000000000000000 0x000000000000007F = 0x8000000000000000 ++sellbc 0xFFFFFFFF80000000 0xFFFFFFFF80000000 0x0000000000000080 = 0xFFFFFFFF80000000 ++sellbc 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0xFFFFFFFFFFFF8000 ++sellbc 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0xFFFFFFFFFFFFFF80 ++sellbc 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc 0xFFFFFFFF80000000 0x123456789ABCDEF0 0x0000000080000000 = 0x123456789ABCDEF0 ++sellbc 0xFFFFFFFF80000000 0xF0DEBC9A78563412 0x8000000000000000 = 0xF0DEBC9A78563412 ++sellbc 0xFFFFFFFFFFFF8000 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0x0000000000000000 ++sellbc 0xFFFFFFFFFFFF8000 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0x0000000000000001 ++sellbc 0xFFFFFFFFFFFF8000 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbc 0xFFFFFFFFFFFF8000 0x0000000000000003 0x123456789ABCDEF0 = 0x0000000000000003 ++sellbc 0xFFFFFFFFFFFF8000 0x000000000000000F 0xF0DEBC9A78563412 = 0x000000000000000F ++sellbc 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0xFFFFFFFFFFFFFFFF ++sellbc 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0xFFFFFFFFFFFFFFFE ++sellbc 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0xFFFFFFFFFFFFFFFD ++sellbc 0xFFFFFFFFFFFF8000 0x000000000000007F 0x0000000000000003 = 0x000000000000007F ++sellbc 0xFFFFFFFFFFFF8000 0x0000000000000080 0x000000000000000F = 0x0000000000000080 ++sellbc 0xFFFFFFFFFFFF8000 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0x0000000000007FFF ++sellbc 0xFFFFFFFFFFFF8000 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0x0000000000008000 ++sellbc 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0x000000007FFFFFFF ++sellbc 0xFFFFFFFFFFFF8000 0x0000000080000000 0x000000000000007F = 0x0000000080000000 ++sellbc 0xFFFFFFFFFFFF8000 0x8000000000000000 0x0000000000000080 = 0x8000000000000000 ++sellbc 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 0x0000000000007FFF = 0xFFFFFFFF80000000 ++sellbc 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0xFFFFFFFFFFFF8000 ++sellbc 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFF80 ++sellbc 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x7FFFFFFFFFFFFFFF ++sellbc 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 0x8000000000000000 = 0x123456789ABCDEF0 ++sellbc 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xF0DEBC9A78563412 ++sellbc 0xFFFFFFFFFFFFFF80 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0x0000000000000000 ++sellbc 0xFFFFFFFFFFFFFF80 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbc 0xFFFFFFFFFFFFFF80 0x0000000000000002 0x123456789ABCDEF0 = 0x0000000000000002 ++sellbc 0xFFFFFFFFFFFFFF80 0x0000000000000003 0xF0DEBC9A78563412 = 0x0000000000000003 ++sellbc 0xFFFFFFFFFFFFFF80 0x000000000000000F 0x0000000000000000 = 0x000000000000000F ++sellbc 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0xFFFFFFFFFFFFFFFF ++sellbc 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0xFFFFFFFFFFFFFFFE ++sellbc 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0xFFFFFFFFFFFFFFFD ++sellbc 0xFFFFFFFFFFFFFF80 0x000000000000007F 0x000000000000000F = 0x000000000000007F ++sellbc 0xFFFFFFFFFFFFFF80 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0x0000000000000080 ++sellbc 0xFFFFFFFFFFFFFF80 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0x0000000000007FFF ++sellbc 0xFFFFFFFFFFFFFF80 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0x0000000000008000 ++sellbc 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF 0x000000000000007F = 0x000000007FFFFFFF ++sellbc 0xFFFFFFFFFFFFFF80 0x0000000080000000 0x0000000000000080 = 0x0000000080000000 ++sellbc 0xFFFFFFFFFFFFFF80 0x8000000000000000 0x0000000000007FFF = 0x8000000000000000 ++sellbc 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 0x0000000000008000 = 0xFFFFFFFF80000000 ++sellbc 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0xFFFFFFFFFFFF8000 ++sellbc 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0xFFFFFFFFFFFFFF80 ++sellbc 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x7FFFFFFFFFFFFFFF ++sellbc 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0x123456789ABCDEF0 ++sellbc 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xF0DEBC9A78563412 ++sellbc 0x7FFFFFFFFFFFFFFF 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbc 0x7FFFFFFFFFFFFFFF 0x0000000000000001 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbc 0x7FFFFFFFFFFFFFFF 0x0000000000000002 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbc 0x7FFFFFFFFFFFFFFF 0x0000000000000003 0x0000000000000000 = 0x0000000000000000 ++sellbc 0x7FFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000001 = 0x0000000000000001 ++sellbc 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbc 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0x0000000000000003 ++sellbc 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0x000000000000000F ++sellbc 0x7FFFFFFFFFFFFFFF 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbc 0x7FFFFFFFFFFFFFFF 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbc 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbc 0x7FFFFFFFFFFFFFFF 0x0000000000008000 0x000000000000007F = 0x000000000000007F ++sellbc 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF 0x0000000000000080 = 0x0000000000000080 ++sellbc 0x7FFFFFFFFFFFFFFF 0x0000000080000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbc 0x7FFFFFFFFFFFFFFF 0x8000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbc 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbc 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0x0000000080000000 ++sellbc 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0x8000000000000000 ++sellbc 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbc 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbc 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbc 0x123456789ABCDEF0 0x0000000000000000 0x123456789ABCDEF0 = 0x0000000000000000 ++sellbc 0x123456789ABCDEF0 0x0000000000000001 0xF0DEBC9A78563412 = 0x0000000000000001 ++sellbc 0x123456789ABCDEF0 0x0000000000000002 0x0000000000000000 = 0x0000000000000002 ++sellbc 0x123456789ABCDEF0 0x0000000000000003 0x0000000000000001 = 0x0000000000000003 ++sellbc 0x123456789ABCDEF0 0x000000000000000F 0x0000000000000002 = 0x000000000000000F ++sellbc 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0xFFFFFFFFFFFFFFFF ++sellbc 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0xFFFFFFFFFFFFFFFE ++sellbc 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFD ++sellbc 0x123456789ABCDEF0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0x000000000000007F ++sellbc 0x123456789ABCDEF0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0x0000000000000080 ++sellbc 0x123456789ABCDEF0 0x0000000000007FFF 0x000000000000007F = 0x0000000000007FFF ++sellbc 0x123456789ABCDEF0 0x0000000000008000 0x0000000000000080 = 0x0000000000008000 ++sellbc 0x123456789ABCDEF0 0x000000007FFFFFFF 0x0000000000007FFF = 0x000000007FFFFFFF ++sellbc 0x123456789ABCDEF0 0x0000000080000000 0x0000000000008000 = 0x0000000080000000 ++sellbc 0x123456789ABCDEF0 0x8000000000000000 0x000000007FFFFFFF = 0x8000000000000000 ++sellbc 0x123456789ABCDEF0 0xFFFFFFFF80000000 0x0000000080000000 = 0xFFFFFFFF80000000 ++sellbc 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0xFFFFFFFFFFFF8000 ++sellbc 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFF80 ++sellbc 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0x7FFFFFFFFFFFFFFF ++sellbc 0x123456789ABCDEF0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0x123456789ABCDEF0 ++sellbc 0x123456789ABCDEF0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0xF0DEBC9A78563412 ++sellbc 0xF0DEBC9A78563412 0x0000000000000000 0xF0DEBC9A78563412 = 0x0000000000000000 ++sellbc 0xF0DEBC9A78563412 0x0000000000000001 0x0000000000000000 = 0x0000000000000001 ++sellbc 0xF0DEBC9A78563412 0x0000000000000002 0x0000000000000001 = 0x0000000000000002 ++sellbc 0xF0DEBC9A78563412 0x0000000000000003 0x0000000000000002 = 0x0000000000000003 ++sellbc 0xF0DEBC9A78563412 0x000000000000000F 0x0000000000000003 = 0x000000000000000F ++sellbc 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0xFFFFFFFFFFFFFFFF ++sellbc 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++sellbc 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFD ++sellbc 0xF0DEBC9A78563412 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0x000000000000007F ++sellbc 0xF0DEBC9A78563412 0x0000000000000080 0x000000000000007F = 0x0000000000000080 ++sellbc 0xF0DEBC9A78563412 0x0000000000007FFF 0x0000000000000080 = 0x0000000000007FFF ++sellbc 0xF0DEBC9A78563412 0x0000000000008000 0x0000000000007FFF = 0x0000000000008000 ++sellbc 0xF0DEBC9A78563412 0x000000007FFFFFFF 0x0000000000008000 = 0x000000007FFFFFFF ++sellbc 0xF0DEBC9A78563412 0x0000000080000000 0x000000007FFFFFFF = 0x0000000080000000 ++sellbc 0xF0DEBC9A78563412 0x8000000000000000 0x0000000080000000 = 0x8000000000000000 ++sellbc 0xF0DEBC9A78563412 0xFFFFFFFF80000000 0x8000000000000000 = 0xFFFFFFFF80000000 ++sellbc 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFF8000 ++sellbc 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFF80 ++sellbc 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0x7FFFFFFFFFFFFFFF ++sellbc 0xF0DEBC9A78563412 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++sellbc 0xF0DEBC9A78563412 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0xF0DEBC9A78563412 ++=== Running test on sellbs === ++sellbs 0x0000000000000000 0x0000000000000000 0x0000000000000000 = 0x0000000000000000 ++sellbs 0x0000000000000000 0x0000000000000001 0x0000000000000001 = 0x0000000000000001 ++sellbs 0x0000000000000000 0x0000000000000002 0x0000000000000002 = 0x0000000000000002 ++sellbs 0x0000000000000000 0x0000000000000003 0x0000000000000003 = 0x0000000000000003 ++sellbs 0x0000000000000000 0x000000000000000F 0x000000000000000F = 0x000000000000000F ++sellbs 0x0000000000000000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs 0x0000000000000000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs 0x0000000000000000 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs 0x0000000000000000 0x000000000000007F 0x000000000000007F = 0x000000000000007F ++sellbs 0x0000000000000000 0x0000000000000080 0x0000000000000080 = 0x0000000000000080 ++sellbs 0x0000000000000000 0x0000000000007FFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbs 0x0000000000000000 0x0000000000008000 0x0000000000008000 = 0x0000000000008000 ++sellbs 0x0000000000000000 0x000000007FFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs 0x0000000000000000 0x0000000080000000 0x0000000080000000 = 0x0000000080000000 ++sellbs 0x0000000000000000 0x8000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs 0x0000000000000000 0xFFFFFFFF80000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs 0x0000000000000000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs 0x0000000000000000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs 0x0000000000000000 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs 0x0000000000000000 0x123456789ABCDEF0 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs 0x0000000000000000 0xF0DEBC9A78563412 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs 0x0000000000000001 0x0000000000000000 0x0000000000000001 = 0x0000000000000000 ++sellbs 0x0000000000000001 0x0000000000000001 0x0000000000000002 = 0x0000000000000001 ++sellbs 0x0000000000000001 0x0000000000000002 0x0000000000000003 = 0x0000000000000002 ++sellbs 0x0000000000000001 0x0000000000000003 0x000000000000000F = 0x0000000000000003 ++sellbs 0x0000000000000001 0x000000000000000F 0xFFFFFFFFFFFFFFFF = 0x000000000000000F ++sellbs 0x0000000000000001 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFF ++sellbs 0x0000000000000001 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFE ++sellbs 0x0000000000000001 0xFFFFFFFFFFFFFFFD 0x000000000000007F = 0xFFFFFFFFFFFFFFFD ++sellbs 0x0000000000000001 0x000000000000007F 0x0000000000000080 = 0x000000000000007F ++sellbs 0x0000000000000001 0x0000000000000080 0x0000000000007FFF = 0x0000000000000080 ++sellbs 0x0000000000000001 0x0000000000007FFF 0x0000000000008000 = 0x0000000000007FFF ++sellbs 0x0000000000000001 0x0000000000008000 0x000000007FFFFFFF = 0x0000000000008000 ++sellbs 0x0000000000000001 0x000000007FFFFFFF 0x0000000080000000 = 0x000000007FFFFFFF ++sellbs 0x0000000000000001 0x0000000080000000 0x8000000000000000 = 0x0000000080000000 ++sellbs 0x0000000000000001 0x8000000000000000 0xFFFFFFFF80000000 = 0x8000000000000000 ++sellbs 0x0000000000000001 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFF80000000 ++sellbs 0x0000000000000001 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFF8000 ++sellbs 0x0000000000000001 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFF80 ++sellbs 0x0000000000000001 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x7FFFFFFFFFFFFFFF ++sellbs 0x0000000000000001 0x123456789ABCDEF0 0xF0DEBC9A78563412 = 0x123456789ABCDEF0 ++sellbs 0x0000000000000001 0xF0DEBC9A78563412 0x0000000000000000 = 0xF0DEBC9A78563412 ++sellbs 0x0000000000000002 0x0000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs 0x0000000000000002 0x0000000000000001 0x0000000000000003 = 0x0000000000000003 ++sellbs 0x0000000000000002 0x0000000000000002 0x000000000000000F = 0x000000000000000F ++sellbs 0x0000000000000002 0x0000000000000003 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs 0x0000000000000002 0x000000000000000F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs 0x0000000000000002 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs 0x0000000000000002 0xFFFFFFFFFFFFFFFE 0x000000000000007F = 0x000000000000007F ++sellbs 0x0000000000000002 0xFFFFFFFFFFFFFFFD 0x0000000000000080 = 0x0000000000000080 ++sellbs 0x0000000000000002 0x000000000000007F 0x0000000000007FFF = 0x0000000000007FFF ++sellbs 0x0000000000000002 0x0000000000000080 0x0000000000008000 = 0x0000000000008000 ++sellbs 0x0000000000000002 0x0000000000007FFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs 0x0000000000000002 0x0000000000008000 0x0000000080000000 = 0x0000000080000000 ++sellbs 0x0000000000000002 0x000000007FFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbs 0x0000000000000002 0x0000000080000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs 0x0000000000000002 0x8000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs 0x0000000000000002 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs 0x0000000000000002 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs 0x0000000000000002 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs 0x0000000000000002 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs 0x0000000000000002 0x123456789ABCDEF0 0x0000000000000000 = 0x0000000000000000 ++sellbs 0x0000000000000002 0xF0DEBC9A78563412 0x0000000000000001 = 0x0000000000000001 ++sellbs 0x0000000000000003 0x0000000000000000 0x0000000000000003 = 0x0000000000000000 ++sellbs 0x0000000000000003 0x0000000000000001 0x000000000000000F = 0x0000000000000001 ++sellbs 0x0000000000000003 0x0000000000000002 0xFFFFFFFFFFFFFFFF = 0x0000000000000002 ++sellbs 0x0000000000000003 0x0000000000000003 0xFFFFFFFFFFFFFFFE = 0x0000000000000003 ++sellbs 0x0000000000000003 0x000000000000000F 0xFFFFFFFFFFFFFFFD = 0x000000000000000F ++sellbs 0x0000000000000003 0xFFFFFFFFFFFFFFFF 0x000000000000007F = 0xFFFFFFFFFFFFFFFF ++sellbs 0x0000000000000003 0xFFFFFFFFFFFFFFFE 0x0000000000000080 = 0xFFFFFFFFFFFFFFFE ++sellbs 0x0000000000000003 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFD ++sellbs 0x0000000000000003 0x000000000000007F 0x0000000000008000 = 0x000000000000007F ++sellbs 0x0000000000000003 0x0000000000000080 0x000000007FFFFFFF = 0x0000000000000080 ++sellbs 0x0000000000000003 0x0000000000007FFF 0x0000000080000000 = 0x0000000000007FFF ++sellbs 0x0000000000000003 0x0000000000008000 0x8000000000000000 = 0x0000000000008000 ++sellbs 0x0000000000000003 0x000000007FFFFFFF 0xFFFFFFFF80000000 = 0x000000007FFFFFFF ++sellbs 0x0000000000000003 0x0000000080000000 0xFFFFFFFFFFFF8000 = 0x0000000080000000 ++sellbs 0x0000000000000003 0x8000000000000000 0xFFFFFFFFFFFFFF80 = 0x8000000000000000 ++sellbs 0x0000000000000003 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFF80000000 ++sellbs 0x0000000000000003 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 = 0xFFFFFFFFFFFF8000 ++sellbs 0x0000000000000003 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFFFF80 ++sellbs 0x0000000000000003 0x7FFFFFFFFFFFFFFF 0x0000000000000000 = 0x7FFFFFFFFFFFFFFF ++sellbs 0x0000000000000003 0x123456789ABCDEF0 0x0000000000000001 = 0x123456789ABCDEF0 ++sellbs 0x0000000000000003 0xF0DEBC9A78563412 0x0000000000000002 = 0xF0DEBC9A78563412 ++sellbs 0x000000000000000F 0x0000000000000000 0x000000000000000F = 0x0000000000000000 ++sellbs 0x000000000000000F 0x0000000000000001 0xFFFFFFFFFFFFFFFF = 0x0000000000000001 ++sellbs 0x000000000000000F 0x0000000000000002 0xFFFFFFFFFFFFFFFE = 0x0000000000000002 ++sellbs 0x000000000000000F 0x0000000000000003 0xFFFFFFFFFFFFFFFD = 0x0000000000000003 ++sellbs 0x000000000000000F 0x000000000000000F 0x000000000000007F = 0x000000000000000F ++sellbs 0x000000000000000F 0xFFFFFFFFFFFFFFFF 0x0000000000000080 = 0xFFFFFFFFFFFFFFFF ++sellbs 0x000000000000000F 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFE ++sellbs 0x000000000000000F 0xFFFFFFFFFFFFFFFD 0x0000000000008000 = 0xFFFFFFFFFFFFFFFD ++sellbs 0x000000000000000F 0x000000000000007F 0x000000007FFFFFFF = 0x000000000000007F ++sellbs 0x000000000000000F 0x0000000000000080 0x0000000080000000 = 0x0000000000000080 ++sellbs 0x000000000000000F 0x0000000000007FFF 0x8000000000000000 = 0x0000000000007FFF ++sellbs 0x000000000000000F 0x0000000000008000 0xFFFFFFFF80000000 = 0x0000000000008000 ++sellbs 0x000000000000000F 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 = 0x000000007FFFFFFF ++sellbs 0x000000000000000F 0x0000000080000000 0xFFFFFFFFFFFFFF80 = 0x0000000080000000 ++sellbs 0x000000000000000F 0x8000000000000000 0x7FFFFFFFFFFFFFFF = 0x8000000000000000 ++sellbs 0x000000000000000F 0xFFFFFFFF80000000 0x123456789ABCDEF0 = 0xFFFFFFFF80000000 ++sellbs 0x000000000000000F 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 = 0xFFFFFFFFFFFF8000 ++sellbs 0x000000000000000F 0xFFFFFFFFFFFFFF80 0x0000000000000000 = 0xFFFFFFFFFFFFFF80 ++sellbs 0x000000000000000F 0x7FFFFFFFFFFFFFFF 0x0000000000000001 = 0x7FFFFFFFFFFFFFFF ++sellbs 0x000000000000000F 0x123456789ABCDEF0 0x0000000000000002 = 0x123456789ABCDEF0 ++sellbs 0x000000000000000F 0xF0DEBC9A78563412 0x0000000000000003 = 0xF0DEBC9A78563412 ++sellbs 0xFFFFFFFFFFFFFFFF 0x0000000000000000 0xFFFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs 0xFFFFFFFFFFFFFFFF 0x0000000000000001 0xFFFFFFFFFFFFFFFE = 0x0000000000000001 ++sellbs 0xFFFFFFFFFFFFFFFF 0x0000000000000002 0xFFFFFFFFFFFFFFFD = 0x0000000000000002 ++sellbs 0xFFFFFFFFFFFFFFFF 0x0000000000000003 0x000000000000007F = 0x0000000000000003 ++sellbs 0xFFFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000080 = 0x000000000000000F ++sellbs 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF = 0xFFFFFFFFFFFFFFFF ++sellbs 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000008000 = 0xFFFFFFFFFFFFFFFE ++sellbs 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFD ++sellbs 0xFFFFFFFFFFFFFFFF 0x000000000000007F 0x0000000080000000 = 0x000000000000007F ++sellbs 0xFFFFFFFFFFFFFFFF 0x0000000000000080 0x8000000000000000 = 0x0000000000000080 ++sellbs 0xFFFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFF80000000 = 0x0000000000007FFF ++sellbs 0xFFFFFFFFFFFFFFFF 0x0000000000008000 0xFFFFFFFFFFFF8000 = 0x0000000000008000 ++sellbs 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 = 0x000000007FFFFFFF ++sellbs 0xFFFFFFFFFFFFFFFF 0x0000000080000000 0x7FFFFFFFFFFFFFFF = 0x0000000080000000 ++sellbs 0xFFFFFFFFFFFFFFFF 0x8000000000000000 0x123456789ABCDEF0 = 0x8000000000000000 ++sellbs 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0xF0DEBC9A78563412 = 0xFFFFFFFF80000000 ++sellbs 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000000000000 = 0xFFFFFFFFFFFF8000 ++sellbs 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x0000000000000001 = 0xFFFFFFFFFFFFFF80 ++sellbs 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000002 = 0x7FFFFFFFFFFFFFFF ++sellbs 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 0x0000000000000003 = 0x123456789ABCDEF0 ++sellbs 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0x000000000000000F = 0xF0DEBC9A78563412 ++sellbs 0xFFFFFFFFFFFFFFFE 0x0000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs 0xFFFFFFFFFFFFFFFE 0x0000000000000001 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs 0xFFFFFFFFFFFFFFFE 0x0000000000000002 0x000000000000007F = 0x000000000000007F ++sellbs 0xFFFFFFFFFFFFFFFE 0x0000000000000003 0x0000000000000080 = 0x0000000000000080 ++sellbs 0xFFFFFFFFFFFFFFFE 0x000000000000000F 0x0000000000007FFF = 0x0000000000007FFF ++sellbs 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbs 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFD 0x0000000080000000 = 0x0000000080000000 ++sellbs 0xFFFFFFFFFFFFFFFE 0x000000000000007F 0x8000000000000000 = 0x8000000000000000 ++sellbs 0xFFFFFFFFFFFFFFFE 0x0000000000000080 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs 0xFFFFFFFFFFFFFFFE 0x0000000000007FFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs 0xFFFFFFFFFFFFFFFE 0x0000000000008000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs 0xFFFFFFFFFFFFFFFE 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs 0xFFFFFFFFFFFFFFFE 0x0000000080000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs 0xFFFFFFFFFFFFFFFE 0x8000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 0x0000000000000000 = 0x0000000000000000 ++sellbs 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 0x0000000000000001 = 0x0000000000000001 ++sellbs 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 0x0000000000000002 = 0x0000000000000002 ++sellbs 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbs 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 0x000000000000000F = 0x000000000000000F ++sellbs 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs 0xFFFFFFFFFFFFFFFD 0x0000000000000000 0xFFFFFFFFFFFFFFFD = 0x0000000000000000 ++sellbs 0xFFFFFFFFFFFFFFFD 0x0000000000000001 0x000000000000007F = 0x0000000000000001 ++sellbs 0xFFFFFFFFFFFFFFFD 0x0000000000000002 0x0000000000000080 = 0x0000000000000002 ++sellbs 0xFFFFFFFFFFFFFFFD 0x0000000000000003 0x0000000000007FFF = 0x0000000000000003 ++sellbs 0xFFFFFFFFFFFFFFFD 0x000000000000000F 0x0000000000008000 = 0x000000000000000F ++sellbs 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE 0x0000000080000000 = 0xFFFFFFFFFFFFFFFE ++sellbs 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFD 0x8000000000000000 = 0xFFFFFFFFFFFFFFFD ++sellbs 0xFFFFFFFFFFFFFFFD 0x000000000000007F 0xFFFFFFFF80000000 = 0x000000000000007F ++sellbs 0xFFFFFFFFFFFFFFFD 0x0000000000000080 0xFFFFFFFFFFFF8000 = 0x0000000000000080 ++sellbs 0xFFFFFFFFFFFFFFFD 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 = 0x0000000000007FFF ++sellbs 0xFFFFFFFFFFFFFFFD 0x0000000000008000 0x7FFFFFFFFFFFFFFF = 0x0000000000008000 ++sellbs 0xFFFFFFFFFFFFFFFD 0x000000007FFFFFFF 0x123456789ABCDEF0 = 0x000000007FFFFFFF ++sellbs 0xFFFFFFFFFFFFFFFD 0x0000000080000000 0xF0DEBC9A78563412 = 0x0000000080000000 ++sellbs 0xFFFFFFFFFFFFFFFD 0x8000000000000000 0x0000000000000000 = 0x8000000000000000 ++sellbs 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 0x0000000000000001 = 0xFFFFFFFF80000000 ++sellbs 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 0x0000000000000002 = 0xFFFFFFFFFFFF8000 ++sellbs 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 0x0000000000000003 = 0xFFFFFFFFFFFFFF80 ++sellbs 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF 0x000000000000000F = 0x7FFFFFFFFFFFFFFF ++sellbs 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF = 0x123456789ABCDEF0 ++sellbs 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE = 0xF0DEBC9A78563412 ++sellbs 0x000000000000007F 0x0000000000000000 0x000000000000007F = 0x0000000000000000 ++sellbs 0x000000000000007F 0x0000000000000001 0x0000000000000080 = 0x0000000000000001 ++sellbs 0x000000000000007F 0x0000000000000002 0x0000000000007FFF = 0x0000000000000002 ++sellbs 0x000000000000007F 0x0000000000000003 0x0000000000008000 = 0x0000000000000003 ++sellbs 0x000000000000007F 0x000000000000000F 0x000000007FFFFFFF = 0x000000000000000F ++sellbs 0x000000000000007F 0xFFFFFFFFFFFFFFFF 0x0000000080000000 = 0xFFFFFFFFFFFFFFFF ++sellbs 0x000000000000007F 0xFFFFFFFFFFFFFFFE 0x8000000000000000 = 0xFFFFFFFFFFFFFFFE ++sellbs 0x000000000000007F 0xFFFFFFFFFFFFFFFD 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFD ++sellbs 0x000000000000007F 0x000000000000007F 0xFFFFFFFFFFFF8000 = 0x000000000000007F ++sellbs 0x000000000000007F 0x0000000000000080 0xFFFFFFFFFFFFFF80 = 0x0000000000000080 ++sellbs 0x000000000000007F 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF = 0x0000000000007FFF ++sellbs 0x000000000000007F 0x0000000000008000 0x123456789ABCDEF0 = 0x0000000000008000 ++sellbs 0x000000000000007F 0x000000007FFFFFFF 0xF0DEBC9A78563412 = 0x000000007FFFFFFF ++sellbs 0x000000000000007F 0x0000000080000000 0x0000000000000000 = 0x0000000080000000 ++sellbs 0x000000000000007F 0x8000000000000000 0x0000000000000001 = 0x8000000000000000 ++sellbs 0x000000000000007F 0xFFFFFFFF80000000 0x0000000000000002 = 0xFFFFFFFF80000000 ++sellbs 0x000000000000007F 0xFFFFFFFFFFFF8000 0x0000000000000003 = 0xFFFFFFFFFFFF8000 ++sellbs 0x000000000000007F 0xFFFFFFFFFFFFFF80 0x000000000000000F = 0xFFFFFFFFFFFFFF80 ++sellbs 0x000000000000007F 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs 0x000000000000007F 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE = 0x123456789ABCDEF0 ++sellbs 0x000000000000007F 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD = 0xF0DEBC9A78563412 ++sellbs 0x0000000000000080 0x0000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs 0x0000000000000080 0x0000000000000001 0x0000000000007FFF = 0x0000000000007FFF ++sellbs 0x0000000000000080 0x0000000000000002 0x0000000000008000 = 0x0000000000008000 ++sellbs 0x0000000000000080 0x0000000000000003 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs 0x0000000000000080 0x000000000000000F 0x0000000080000000 = 0x0000000080000000 ++sellbs 0x0000000000000080 0xFFFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbs 0x0000000000000080 0xFFFFFFFFFFFFFFFE 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs 0x0000000000000080 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs 0x0000000000000080 0x000000000000007F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs 0x0000000000000080 0x0000000000000080 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs 0x0000000000000080 0x0000000000007FFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs 0x0000000000000080 0x0000000000008000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs 0x0000000000000080 0x000000007FFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbs 0x0000000000000080 0x0000000080000000 0x0000000000000001 = 0x0000000000000001 ++sellbs 0x0000000000000080 0x8000000000000000 0x0000000000000002 = 0x0000000000000002 ++sellbs 0x0000000000000080 0xFFFFFFFF80000000 0x0000000000000003 = 0x0000000000000003 ++sellbs 0x0000000000000080 0xFFFFFFFFFFFF8000 0x000000000000000F = 0x000000000000000F ++sellbs 0x0000000000000080 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs 0x0000000000000080 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs 0x0000000000000080 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs 0x0000000000000080 0xF0DEBC9A78563412 0x000000000000007F = 0x000000000000007F ++sellbs 0x0000000000007FFF 0x0000000000000000 0x0000000000007FFF = 0x0000000000000000 ++sellbs 0x0000000000007FFF 0x0000000000000001 0x0000000000008000 = 0x0000000000000001 ++sellbs 0x0000000000007FFF 0x0000000000000002 0x000000007FFFFFFF = 0x0000000000000002 ++sellbs 0x0000000000007FFF 0x0000000000000003 0x0000000080000000 = 0x0000000000000003 ++sellbs 0x0000000000007FFF 0x000000000000000F 0x8000000000000000 = 0x000000000000000F ++sellbs 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0xFFFFFFFFFFFFFFFF ++sellbs 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFFFFFE ++sellbs 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFD ++sellbs 0x0000000000007FFF 0x000000000000007F 0x7FFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs 0x0000000000007FFF 0x0000000000000080 0x123456789ABCDEF0 = 0x0000000000000080 ++sellbs 0x0000000000007FFF 0x0000000000007FFF 0xF0DEBC9A78563412 = 0x0000000000007FFF ++sellbs 0x0000000000007FFF 0x0000000000008000 0x0000000000000000 = 0x0000000000008000 ++sellbs 0x0000000000007FFF 0x000000007FFFFFFF 0x0000000000000001 = 0x000000007FFFFFFF ++sellbs 0x0000000000007FFF 0x0000000080000000 0x0000000000000002 = 0x0000000080000000 ++sellbs 0x0000000000007FFF 0x8000000000000000 0x0000000000000003 = 0x8000000000000000 ++sellbs 0x0000000000007FFF 0xFFFFFFFF80000000 0x000000000000000F = 0xFFFFFFFF80000000 ++sellbs 0x0000000000007FFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFF8000 ++sellbs 0x0000000000007FFF 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFF80 ++sellbs 0x0000000000007FFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD = 0x7FFFFFFFFFFFFFFF ++sellbs 0x0000000000007FFF 0x123456789ABCDEF0 0x000000000000007F = 0x123456789ABCDEF0 ++sellbs 0x0000000000007FFF 0xF0DEBC9A78563412 0x0000000000000080 = 0xF0DEBC9A78563412 ++sellbs 0x0000000000008000 0x0000000000000000 0x0000000000008000 = 0x0000000000008000 ++sellbs 0x0000000000008000 0x0000000000000001 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs 0x0000000000008000 0x0000000000000002 0x0000000080000000 = 0x0000000080000000 ++sellbs 0x0000000000008000 0x0000000000000003 0x8000000000000000 = 0x8000000000000000 ++sellbs 0x0000000000008000 0x000000000000000F 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs 0x0000000000008000 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs 0x0000000000008000 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs 0x0000000000008000 0xFFFFFFFFFFFFFFFD 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs 0x0000000000008000 0x000000000000007F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs 0x0000000000008000 0x0000000000000080 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs 0x0000000000008000 0x0000000000007FFF 0x0000000000000000 = 0x0000000000000000 ++sellbs 0x0000000000008000 0x0000000000008000 0x0000000000000001 = 0x0000000000000001 ++sellbs 0x0000000000008000 0x000000007FFFFFFF 0x0000000000000002 = 0x0000000000000002 ++sellbs 0x0000000000008000 0x0000000080000000 0x0000000000000003 = 0x0000000000000003 ++sellbs 0x0000000000008000 0x8000000000000000 0x000000000000000F = 0x000000000000000F ++sellbs 0x0000000000008000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs 0x0000000000008000 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs 0x0000000000008000 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs 0x0000000000008000 0x7FFFFFFFFFFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbs 0x0000000000008000 0x123456789ABCDEF0 0x0000000000000080 = 0x0000000000000080 ++sellbs 0x0000000000008000 0xF0DEBC9A78563412 0x0000000000007FFF = 0x0000000000007FFF ++sellbs 0x000000007FFFFFFF 0x0000000000000000 0x000000007FFFFFFF = 0x0000000000000000 ++sellbs 0x000000007FFFFFFF 0x0000000000000001 0x0000000080000000 = 0x0000000000000001 ++sellbs 0x000000007FFFFFFF 0x0000000000000002 0x8000000000000000 = 0x0000000000000002 ++sellbs 0x000000007FFFFFFF 0x0000000000000003 0xFFFFFFFF80000000 = 0x0000000000000003 ++sellbs 0x000000007FFFFFFF 0x000000000000000F 0xFFFFFFFFFFFF8000 = 0x000000000000000F ++sellbs 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFFFF ++sellbs 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE 0x7FFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFE ++sellbs 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD 0x123456789ABCDEF0 = 0xFFFFFFFFFFFFFFFD ++sellbs 0x000000007FFFFFFF 0x000000000000007F 0xF0DEBC9A78563412 = 0x000000000000007F ++sellbs 0x000000007FFFFFFF 0x0000000000000080 0x0000000000000000 = 0x0000000000000080 ++sellbs 0x000000007FFFFFFF 0x0000000000007FFF 0x0000000000000001 = 0x0000000000007FFF ++sellbs 0x000000007FFFFFFF 0x0000000000008000 0x0000000000000002 = 0x0000000000008000 ++sellbs 0x000000007FFFFFFF 0x000000007FFFFFFF 0x0000000000000003 = 0x000000007FFFFFFF ++sellbs 0x000000007FFFFFFF 0x0000000080000000 0x000000000000000F = 0x0000000080000000 ++sellbs 0x000000007FFFFFFF 0x8000000000000000 0xFFFFFFFFFFFFFFFF = 0x8000000000000000 ++sellbs 0x000000007FFFFFFF 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFF80000000 ++sellbs 0x000000007FFFFFFF 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFF8000 ++sellbs 0x000000007FFFFFFF 0xFFFFFFFFFFFFFF80 0x000000000000007F = 0xFFFFFFFFFFFFFF80 ++sellbs 0x000000007FFFFFFF 0x7FFFFFFFFFFFFFFF 0x0000000000000080 = 0x7FFFFFFFFFFFFFFF ++sellbs 0x000000007FFFFFFF 0x123456789ABCDEF0 0x0000000000007FFF = 0x123456789ABCDEF0 ++sellbs 0x000000007FFFFFFF 0xF0DEBC9A78563412 0x0000000000008000 = 0xF0DEBC9A78563412 ++sellbs 0x0000000080000000 0x0000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs 0x0000000080000000 0x0000000000000001 0x8000000000000000 = 0x8000000000000000 ++sellbs 0x0000000080000000 0x0000000000000002 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs 0x0000000080000000 0x0000000000000003 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs 0x0000000080000000 0x000000000000000F 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs 0x0000000080000000 0xFFFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs 0x0000000080000000 0xFFFFFFFFFFFFFFFE 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs 0x0000000080000000 0xFFFFFFFFFFFFFFFD 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs 0x0000000080000000 0x000000000000007F 0x0000000000000000 = 0x0000000000000000 ++sellbs 0x0000000080000000 0x0000000000000080 0x0000000000000001 = 0x0000000000000001 ++sellbs 0x0000000080000000 0x0000000000007FFF 0x0000000000000002 = 0x0000000000000002 ++sellbs 0x0000000080000000 0x0000000000008000 0x0000000000000003 = 0x0000000000000003 ++sellbs 0x0000000080000000 0x000000007FFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbs 0x0000000080000000 0x0000000080000000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs 0x0000000080000000 0x8000000000000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs 0x0000000080000000 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs 0x0000000080000000 0xFFFFFFFFFFFF8000 0x000000000000007F = 0x000000000000007F ++sellbs 0x0000000080000000 0xFFFFFFFFFFFFFF80 0x0000000000000080 = 0x0000000000000080 ++sellbs 0x0000000080000000 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbs 0x0000000080000000 0x123456789ABCDEF0 0x0000000000008000 = 0x0000000000008000 ++sellbs 0x0000000080000000 0xF0DEBC9A78563412 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs 0x8000000000000000 0x0000000000000000 0x8000000000000000 = 0x8000000000000000 ++sellbs 0x8000000000000000 0x0000000000000001 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs 0x8000000000000000 0x0000000000000002 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs 0x8000000000000000 0x0000000000000003 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs 0x8000000000000000 0x000000000000000F 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs 0x8000000000000000 0xFFFFFFFFFFFFFFFF 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs 0x8000000000000000 0xFFFFFFFFFFFFFFFE 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs 0x8000000000000000 0xFFFFFFFFFFFFFFFD 0x0000000000000000 = 0x0000000000000000 ++sellbs 0x8000000000000000 0x000000000000007F 0x0000000000000001 = 0x0000000000000001 ++sellbs 0x8000000000000000 0x0000000000000080 0x0000000000000002 = 0x0000000000000002 ++sellbs 0x8000000000000000 0x0000000000007FFF 0x0000000000000003 = 0x0000000000000003 ++sellbs 0x8000000000000000 0x0000000000008000 0x000000000000000F = 0x000000000000000F ++sellbs 0x8000000000000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs 0x8000000000000000 0x0000000080000000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs 0x8000000000000000 0x8000000000000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs 0x8000000000000000 0xFFFFFFFF80000000 0x000000000000007F = 0x000000000000007F ++sellbs 0x8000000000000000 0xFFFFFFFFFFFF8000 0x0000000000000080 = 0x0000000000000080 ++sellbs 0x8000000000000000 0xFFFFFFFFFFFFFF80 0x0000000000007FFF = 0x0000000000007FFF ++sellbs 0x8000000000000000 0x7FFFFFFFFFFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbs 0x8000000000000000 0x123456789ABCDEF0 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs 0x8000000000000000 0xF0DEBC9A78563412 0x0000000080000000 = 0x0000000080000000 ++sellbs 0xFFFFFFFF80000000 0x0000000000000000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs 0xFFFFFFFF80000000 0x0000000000000001 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs 0xFFFFFFFF80000000 0x0000000000000002 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs 0xFFFFFFFF80000000 0x0000000000000003 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs 0xFFFFFFFF80000000 0x000000000000000F 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFF 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFE 0x0000000000000000 = 0x0000000000000000 ++sellbs 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFFFD 0x0000000000000001 = 0x0000000000000001 ++sellbs 0xFFFFFFFF80000000 0x000000000000007F 0x0000000000000002 = 0x0000000000000002 ++sellbs 0xFFFFFFFF80000000 0x0000000000000080 0x0000000000000003 = 0x0000000000000003 ++sellbs 0xFFFFFFFF80000000 0x0000000000007FFF 0x000000000000000F = 0x000000000000000F ++sellbs 0xFFFFFFFF80000000 0x0000000000008000 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs 0xFFFFFFFF80000000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs 0xFFFFFFFF80000000 0x0000000080000000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs 0xFFFFFFFF80000000 0x8000000000000000 0x000000000000007F = 0x000000000000007F ++sellbs 0xFFFFFFFF80000000 0xFFFFFFFF80000000 0x0000000000000080 = 0x0000000000000080 ++sellbs 0xFFFFFFFF80000000 0xFFFFFFFFFFFF8000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs 0xFFFFFFFF80000000 0xFFFFFFFFFFFFFF80 0x0000000000008000 = 0x0000000000008000 ++sellbs 0xFFFFFFFF80000000 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs 0xFFFFFFFF80000000 0x123456789ABCDEF0 0x0000000080000000 = 0x0000000080000000 ++sellbs 0xFFFFFFFF80000000 0xF0DEBC9A78563412 0x8000000000000000 = 0x8000000000000000 ++sellbs 0xFFFFFFFFFFFF8000 0x0000000000000000 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs 0xFFFFFFFFFFFF8000 0x0000000000000001 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs 0xFFFFFFFFFFFF8000 0x0000000000000002 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs 0xFFFFFFFFFFFF8000 0x0000000000000003 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs 0xFFFFFFFFFFFF8000 0x000000000000000F 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFF 0x0000000000000000 = 0x0000000000000000 ++sellbs 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFE 0x0000000000000001 = 0x0000000000000001 ++sellbs 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFFFD 0x0000000000000002 = 0x0000000000000002 ++sellbs 0xFFFFFFFFFFFF8000 0x000000000000007F 0x0000000000000003 = 0x0000000000000003 ++sellbs 0xFFFFFFFFFFFF8000 0x0000000000000080 0x000000000000000F = 0x000000000000000F ++sellbs 0xFFFFFFFFFFFF8000 0x0000000000007FFF 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs 0xFFFFFFFFFFFF8000 0x0000000000008000 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs 0xFFFFFFFFFFFF8000 0x0000000080000000 0x000000000000007F = 0x000000000000007F ++sellbs 0xFFFFFFFFFFFF8000 0x8000000000000000 0x0000000000000080 = 0x0000000000000080 ++sellbs 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFF8000 0x0000000000008000 = 0x0000000000008000 ++sellbs 0xFFFFFFFFFFFF8000 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs 0xFFFFFFFFFFFF8000 0x7FFFFFFFFFFFFFFF 0x0000000080000000 = 0x0000000080000000 ++sellbs 0xFFFFFFFFFFFF8000 0x123456789ABCDEF0 0x8000000000000000 = 0x8000000000000000 ++sellbs 0xFFFFFFFFFFFF8000 0xF0DEBC9A78563412 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs 0xFFFFFFFFFFFFFF80 0x0000000000000000 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs 0xFFFFFFFFFFFFFF80 0x0000000000000001 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs 0xFFFFFFFFFFFFFF80 0x0000000000000002 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs 0xFFFFFFFFFFFFFF80 0x0000000000000003 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs 0xFFFFFFFFFFFFFF80 0x000000000000000F 0x0000000000000000 = 0x0000000000000000 ++sellbs 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFF 0x0000000000000001 = 0x0000000000000001 ++sellbs 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFE 0x0000000000000002 = 0x0000000000000002 ++sellbs 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFFFD 0x0000000000000003 = 0x0000000000000003 ++sellbs 0xFFFFFFFFFFFFFF80 0x000000000000007F 0x000000000000000F = 0x000000000000000F ++sellbs 0xFFFFFFFFFFFFFF80 0x0000000000000080 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs 0xFFFFFFFFFFFFFF80 0x0000000000007FFF 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs 0xFFFFFFFFFFFFFF80 0x0000000000008000 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs 0xFFFFFFFFFFFFFF80 0x000000007FFFFFFF 0x000000000000007F = 0x000000000000007F ++sellbs 0xFFFFFFFFFFFFFF80 0x0000000080000000 0x0000000000000080 = 0x0000000000000080 ++sellbs 0xFFFFFFFFFFFFFF80 0x8000000000000000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 0x0000000000008000 = 0x0000000000008000 ++sellbs 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFFFF80 0x0000000080000000 = 0x0000000080000000 ++sellbs 0xFFFFFFFFFFFFFF80 0x7FFFFFFFFFFFFFFF 0x8000000000000000 = 0x8000000000000000 ++sellbs 0xFFFFFFFFFFFFFF80 0x123456789ABCDEF0 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs 0xFFFFFFFFFFFFFF80 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs 0x7FFFFFFFFFFFFFFF 0x0000000000000000 0x7FFFFFFFFFFFFFFF = 0x0000000000000000 ++sellbs 0x7FFFFFFFFFFFFFFF 0x0000000000000001 0x123456789ABCDEF0 = 0x0000000000000001 ++sellbs 0x7FFFFFFFFFFFFFFF 0x0000000000000002 0xF0DEBC9A78563412 = 0x0000000000000002 ++sellbs 0x7FFFFFFFFFFFFFFF 0x0000000000000003 0x0000000000000000 = 0x0000000000000003 ++sellbs 0x7FFFFFFFFFFFFFFF 0x000000000000000F 0x0000000000000001 = 0x000000000000000F ++sellbs 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFF 0x0000000000000002 = 0xFFFFFFFFFFFFFFFF ++sellbs 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFE 0x0000000000000003 = 0xFFFFFFFFFFFFFFFE ++sellbs 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFFFD 0x000000000000000F = 0xFFFFFFFFFFFFFFFD ++sellbs 0x7FFFFFFFFFFFFFFF 0x000000000000007F 0xFFFFFFFFFFFFFFFF = 0x000000000000007F ++sellbs 0x7FFFFFFFFFFFFFFF 0x0000000000000080 0xFFFFFFFFFFFFFFFE = 0x0000000000000080 ++sellbs 0x7FFFFFFFFFFFFFFF 0x0000000000007FFF 0xFFFFFFFFFFFFFFFD = 0x0000000000007FFF ++sellbs 0x7FFFFFFFFFFFFFFF 0x0000000000008000 0x000000000000007F = 0x0000000000008000 ++sellbs 0x7FFFFFFFFFFFFFFF 0x000000007FFFFFFF 0x0000000000000080 = 0x000000007FFFFFFF ++sellbs 0x7FFFFFFFFFFFFFFF 0x0000000080000000 0x0000000000007FFF = 0x0000000080000000 ++sellbs 0x7FFFFFFFFFFFFFFF 0x8000000000000000 0x0000000000008000 = 0x8000000000000000 ++sellbs 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 0x000000007FFFFFFF = 0xFFFFFFFF80000000 ++sellbs 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 0x0000000080000000 = 0xFFFFFFFFFFFF8000 ++sellbs 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 0x8000000000000000 = 0xFFFFFFFFFFFFFF80 ++sellbs 0x7FFFFFFFFFFFFFFF 0x7FFFFFFFFFFFFFFF 0xFFFFFFFF80000000 = 0x7FFFFFFFFFFFFFFF ++sellbs 0x7FFFFFFFFFFFFFFF 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 = 0x123456789ABCDEF0 ++sellbs 0x7FFFFFFFFFFFFFFF 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 = 0xF0DEBC9A78563412 ++sellbs 0x123456789ABCDEF0 0x0000000000000000 0x123456789ABCDEF0 = 0x123456789ABCDEF0 ++sellbs 0x123456789ABCDEF0 0x0000000000000001 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs 0x123456789ABCDEF0 0x0000000000000002 0x0000000000000000 = 0x0000000000000000 ++sellbs 0x123456789ABCDEF0 0x0000000000000003 0x0000000000000001 = 0x0000000000000001 ++sellbs 0x123456789ABCDEF0 0x000000000000000F 0x0000000000000002 = 0x0000000000000002 ++sellbs 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFF 0x0000000000000003 = 0x0000000000000003 ++sellbs 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFE 0x000000000000000F = 0x000000000000000F ++sellbs 0x123456789ABCDEF0 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs 0x123456789ABCDEF0 0x000000000000007F 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs 0x123456789ABCDEF0 0x0000000000000080 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs 0x123456789ABCDEF0 0x0000000000007FFF 0x000000000000007F = 0x000000000000007F ++sellbs 0x123456789ABCDEF0 0x0000000000008000 0x0000000000000080 = 0x0000000000000080 ++sellbs 0x123456789ABCDEF0 0x000000007FFFFFFF 0x0000000000007FFF = 0x0000000000007FFF ++sellbs 0x123456789ABCDEF0 0x0000000080000000 0x0000000000008000 = 0x0000000000008000 ++sellbs 0x123456789ABCDEF0 0x8000000000000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs 0x123456789ABCDEF0 0xFFFFFFFF80000000 0x0000000080000000 = 0x0000000080000000 ++sellbs 0x123456789ABCDEF0 0xFFFFFFFFFFFF8000 0x8000000000000000 = 0x8000000000000000 ++sellbs 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs 0x123456789ABCDEF0 0x123456789ABCDEF0 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs 0x123456789ABCDEF0 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs 0xF0DEBC9A78563412 0x0000000000000000 0xF0DEBC9A78563412 = 0xF0DEBC9A78563412 ++sellbs 0xF0DEBC9A78563412 0x0000000000000001 0x0000000000000000 = 0x0000000000000000 ++sellbs 0xF0DEBC9A78563412 0x0000000000000002 0x0000000000000001 = 0x0000000000000001 ++sellbs 0xF0DEBC9A78563412 0x0000000000000003 0x0000000000000002 = 0x0000000000000002 ++sellbs 0xF0DEBC9A78563412 0x000000000000000F 0x0000000000000003 = 0x0000000000000003 ++sellbs 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFF 0x000000000000000F = 0x000000000000000F ++sellbs 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFE 0xFFFFFFFFFFFFFFFF = 0xFFFFFFFFFFFFFFFF ++sellbs 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFFFD 0xFFFFFFFFFFFFFFFE = 0xFFFFFFFFFFFFFFFE ++sellbs 0xF0DEBC9A78563412 0x000000000000007F 0xFFFFFFFFFFFFFFFD = 0xFFFFFFFFFFFFFFFD ++sellbs 0xF0DEBC9A78563412 0x0000000000000080 0x000000000000007F = 0x000000000000007F ++sellbs 0xF0DEBC9A78563412 0x0000000000007FFF 0x0000000000000080 = 0x0000000000000080 ++sellbs 0xF0DEBC9A78563412 0x0000000000008000 0x0000000000007FFF = 0x0000000000007FFF ++sellbs 0xF0DEBC9A78563412 0x000000007FFFFFFF 0x0000000000008000 = 0x0000000000008000 ++sellbs 0xF0DEBC9A78563412 0x0000000080000000 0x000000007FFFFFFF = 0x000000007FFFFFFF ++sellbs 0xF0DEBC9A78563412 0x8000000000000000 0x0000000080000000 = 0x0000000080000000 ++sellbs 0xF0DEBC9A78563412 0xFFFFFFFF80000000 0x8000000000000000 = 0x8000000000000000 ++sellbs 0xF0DEBC9A78563412 0xFFFFFFFFFFFF8000 0xFFFFFFFF80000000 = 0xFFFFFFFF80000000 ++sellbs 0xF0DEBC9A78563412 0xFFFFFFFFFFFFFF80 0xFFFFFFFFFFFF8000 = 0xFFFFFFFFFFFF8000 ++sellbs 0xF0DEBC9A78563412 0x7FFFFFFFFFFFFFFF 0xFFFFFFFFFFFFFF80 = 0xFFFFFFFFFFFFFF80 ++sellbs 0xF0DEBC9A78563412 0x123456789ABCDEF0 0x7FFFFFFFFFFFFFFF = 0x7FFFFFFFFFFFFFFF ++sellbs 0xF0DEBC9A78563412 0xF0DEBC9A78563412 0x123456789ABCDEF0 = 0x123456789ABCDEF0 +diff --git a/none/tests/sw64/arith-int-reg.vgtest b/none/tests/sw64/arith-int-reg.vgtest +new file mode 100644 +index 000000000..2a365601a +--- /dev/null ++++ b/none/tests/sw64/arith-int-reg.vgtest +@@ -0,0 +1,2 @@ ++prog: arith-int-reg ++vgopts: -q +diff --git a/none/tests/sw64/branch.c b/none/tests/sw64/branch.c +new file mode 100644 +index 000000000..75e256fa7 +--- /dev/null ++++ b/none/tests/sw64/branch.c +@@ -0,0 +1,204 @@ ++#include ++#include ++ ++const long intcases[] = { ++ 0, ++ 1, ++ 2, ++ 3, ++ 15, ++ 16, ++ 100, ++ 10000, ++ -1, ++ -2, ++ -3, ++ -15, ++ -16, ++ -100, ++ -10000, ++ INT32_MAX, ++ INT32_MIN, ++ UINT32_MAX, ++ UINT32_MAX + 1UL, ++ 0x123456789abcdef0ULL, ++ 0xf0debc9a78563412ULL, ++ 0xffffffffffffffffULL ++}; ++const int nintcases = sizeof(intcases) / sizeof(*intcases); ++ ++typedef union { ++ long l; ++ float f; ++ double d; ++} un; ++ ++const un fpcases[] = { ++ (un){.l = 0}, ++ (un){.l = 0x8000000000000000ULL }, ++ (un){.l = 0xf0debc9a78563412ULL }, ++ (un){.l = 0x123456789abcdef0ULL }, ++ (un){.f = 1}, ++ (un){.f = -1}, ++ (un){.f = 0.1}, ++ (un){.f = -0.1}, ++ (un){.f = 0.2}, ++ (un){.f = -0.2}, ++ (un){.f = 3}, ++ (un){.f = -3}, ++ (un){.f = 5}, ++ (un){.f = -5}, ++ (un){.f = 100000000}, ++ (un){.f = -100000000}, ++ (un){.d = 1}, ++ (un){.d = -1}, ++ (un){.d = 0.1}, ++ (un){.d = -0.1}, ++ (un){.d = 0.2}, ++ (un){.d = -0.2}, ++ (un){.d = 3}, ++ (un){.d = -3}, ++ (un){.d = 5}, ++ (un){.d = -5}, ++ (un){.d = 100000000}, ++ (un){.d = -100000000}, ++}; ++const int nfpcases = sizeof(fpcases) / sizeof(*fpcases); ++ ++#define STRINGIFY(x) STRINGIFY2(x) ++#define STRINGIFY2(x) #x ++ ++#define CREATE_ONE_UNCOND_TEST(ins, imm) \ ++ void test_##ins##imm() { \ ++ register long ctr asm ("$2") = 0; \ ++ long pc; \ ++ __asm__ volatile ( \ ++ ".set noreorder\n" \ ++ STRINGIFY(ins) " %0, " STRINGIFY(imm) "\n" \ ++ ".rept 1024\n" \ ++ "addl $2, 1, $2\n" \ ++ ".endr\n" \ ++ : "=&r"(pc), "+r"(ctr) \ ++ ); \ ++ printf(STRINGIFY(ins) STRINGIFY(imm) " = 0x%lx\n", ctr); \ ++ } ++ ++#define CREATE_MORE_UNCOND_TEST(ins) \ ++ CREATE_ONE_UNCOND_TEST(ins, 0) \ ++ CREATE_ONE_UNCOND_TEST(ins, 4) \ ++ CREATE_ONE_UNCOND_TEST(ins, 8) \ ++ CREATE_ONE_UNCOND_TEST(ins, 12) ++ ++#define CREATE_ONE_INTCOND_TEST(ins, imm) \ ++ void test_##ins##imm(long cond) { \ ++ register long ctr asm ("$2") = 0; \ ++ __asm__ volatile ( \ ++ ".set noreorder\n" \ ++ STRINGIFY(ins) " %1, " STRINGIFY(imm) "\n" \ ++ ".rept 1024\n" \ ++ "addl $2, 1, $2\n" \ ++ ".endr\n" \ ++ : "+r"(ctr) \ ++ : "r"(cond) \ ++ ); \ ++ printf(STRINGIFY(ins) STRINGIFY(imm) " = 0x%lx, cond = 0x%lx\n", ctr, cond);\ ++ } ++ ++#define CREATE_MORE_INTCOND_TEST(ins) \ ++ CREATE_ONE_INTCOND_TEST(ins, 0) \ ++ CREATE_ONE_INTCOND_TEST(ins, 4) \ ++ CREATE_ONE_INTCOND_TEST(ins, 8) \ ++ CREATE_ONE_INTCOND_TEST(ins, 12) ++ ++#define CREATE_ONE_FPCOND_TEST(ins, imm) \ ++ void test_##ins##imm(long cond) { \ ++ register long ctr asm ("$2") = 0; \ ++ __asm__ volatile ( \ ++ ".set noreorder\n" \ ++ "ifmovd %1, $f10\n" \ ++ STRINGIFY(ins) " $f10, " STRINGIFY(imm) "\n" \ ++ ".rept 1024\n" \ ++ "addl $2, 1, $2\n" \ ++ ".endr\n" \ ++ : "+r"(ctr) \ ++ : "r"(cond) \ ++ : "$f10" \ ++ ); \ ++ printf(STRINGIFY(ins) STRINGIFY(imm) " = 0x%lx, cond = 0x%lx\n", ctr, cond);\ ++ } ++ ++#define CREATE_MORE_FPCOND_TEST(ins) \ ++ CREATE_ONE_FPCOND_TEST(ins, 0) \ ++ CREATE_ONE_FPCOND_TEST(ins, 4) \ ++ CREATE_ONE_FPCOND_TEST(ins, 8) \ ++ CREATE_ONE_FPCOND_TEST(ins, 12) ++ ++#define RUN_UNCOND_TEST(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ test_##ins##0(); \ ++ test_##ins##4(); \ ++ test_##ins##8(); \ ++ test_##ins##12(); ++ ++#define RUN_INTCOND_TEST(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < nintcases; i++) { \ ++ long a = intcases[i]; \ ++ test_##ins##0(a); \ ++ test_##ins##4(a); \ ++ test_##ins##8(a); \ ++ test_##ins##12(a); \ ++ } ++ ++#define RUN_FPCOND_TEST(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < nintcases; i++) { \ ++ long a = fpcases[i].l; \ ++ test_##ins##0(a); \ ++ test_##ins##4(a); \ ++ test_##ins##8(a); \ ++ test_##ins##12(a); \ ++ } ++ ++CREATE_MORE_UNCOND_TEST(br) ++CREATE_MORE_UNCOND_TEST(bsr) ++ ++CREATE_MORE_INTCOND_TEST(beq) ++CREATE_MORE_INTCOND_TEST(bne) ++CREATE_MORE_INTCOND_TEST(blt) ++CREATE_MORE_INTCOND_TEST(ble) ++CREATE_MORE_INTCOND_TEST(bgt) ++CREATE_MORE_INTCOND_TEST(bge) ++CREATE_MORE_INTCOND_TEST(blbc) ++CREATE_MORE_INTCOND_TEST(blbs) ++ ++CREATE_MORE_FPCOND_TEST(fbeq) ++CREATE_MORE_FPCOND_TEST(fbne) ++CREATE_MORE_FPCOND_TEST(fblt) ++CREATE_MORE_FPCOND_TEST(fble) ++CREATE_MORE_FPCOND_TEST(fbgt) ++CREATE_MORE_FPCOND_TEST(fbge) ++ ++int main(void) ++{ ++ RUN_UNCOND_TEST(br); ++ RUN_UNCOND_TEST(bsr); ++ ++ RUN_INTCOND_TEST(beq); ++ RUN_INTCOND_TEST(bne); ++ RUN_INTCOND_TEST(blt); ++ RUN_INTCOND_TEST(ble); ++ RUN_INTCOND_TEST(bgt); ++ RUN_INTCOND_TEST(bge); ++ RUN_INTCOND_TEST(blbc); ++ RUN_INTCOND_TEST(blbs); ++ ++ RUN_FPCOND_TEST(fbeq); ++ RUN_FPCOND_TEST(fbne); ++ RUN_FPCOND_TEST(fblt); ++ RUN_FPCOND_TEST(fble); ++ RUN_FPCOND_TEST(fbgt); ++ RUN_FPCOND_TEST(fbge); ++ ++ return 0; ++} +diff --git a/none/tests/sw64/branch.stderr.exp b/none/tests/sw64/branch.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/branch.stdout.exp b/none/tests/sw64/branch.stdout.exp +new file mode 100644 +index 000000000..c1a49f1fd +--- /dev/null ++++ b/none/tests/sw64/branch.stdout.exp +@@ -0,0 +1,1256 @@ ++=== Running test on br=== ++br0 = 0x400 ++br4 = 0x3ff ++br8 = 0x3fe ++br12 = 0x3fd ++=== Running test on bsr=== ++bsr0 = 0x400 ++bsr4 = 0x3ff ++bsr8 = 0x3fe ++bsr12 = 0x3fd ++=== Running test on beq=== ++beq0 = 0x400, cond = 0x0 ++beq4 = 0x3ff, cond = 0x0 ++beq8 = 0x3fe, cond = 0x0 ++beq12 = 0x3fd, cond = 0x0 ++beq0 = 0x400, cond = 0x1 ++beq4 = 0x400, cond = 0x1 ++beq8 = 0x400, cond = 0x1 ++beq12 = 0x400, cond = 0x1 ++beq0 = 0x400, cond = 0x2 ++beq4 = 0x400, cond = 0x2 ++beq8 = 0x400, cond = 0x2 ++beq12 = 0x400, cond = 0x2 ++beq0 = 0x400, cond = 0x3 ++beq4 = 0x400, cond = 0x3 ++beq8 = 0x400, cond = 0x3 ++beq12 = 0x400, cond = 0x3 ++beq0 = 0x400, cond = 0xf ++beq4 = 0x400, cond = 0xf ++beq8 = 0x400, cond = 0xf ++beq12 = 0x400, cond = 0xf ++beq0 = 0x400, cond = 0x10 ++beq4 = 0x400, cond = 0x10 ++beq8 = 0x400, cond = 0x10 ++beq12 = 0x400, cond = 0x10 ++beq0 = 0x400, cond = 0x64 ++beq4 = 0x400, cond = 0x64 ++beq8 = 0x400, cond = 0x64 ++beq12 = 0x400, cond = 0x64 ++beq0 = 0x400, cond = 0x2710 ++beq4 = 0x400, cond = 0x2710 ++beq8 = 0x400, cond = 0x2710 ++beq12 = 0x400, cond = 0x2710 ++beq0 = 0x400, cond = 0xffffffffffffffff ++beq4 = 0x400, cond = 0xffffffffffffffff ++beq8 = 0x400, cond = 0xffffffffffffffff ++beq12 = 0x400, cond = 0xffffffffffffffff ++beq0 = 0x400, cond = 0xfffffffffffffffe ++beq4 = 0x400, cond = 0xfffffffffffffffe ++beq8 = 0x400, cond = 0xfffffffffffffffe ++beq12 = 0x400, cond = 0xfffffffffffffffe ++beq0 = 0x400, cond = 0xfffffffffffffffd ++beq4 = 0x400, cond = 0xfffffffffffffffd ++beq8 = 0x400, cond = 0xfffffffffffffffd ++beq12 = 0x400, cond = 0xfffffffffffffffd ++beq0 = 0x400, cond = 0xfffffffffffffff1 ++beq4 = 0x400, cond = 0xfffffffffffffff1 ++beq8 = 0x400, cond = 0xfffffffffffffff1 ++beq12 = 0x400, cond = 0xfffffffffffffff1 ++beq0 = 0x400, cond = 0xfffffffffffffff0 ++beq4 = 0x400, cond = 0xfffffffffffffff0 ++beq8 = 0x400, cond = 0xfffffffffffffff0 ++beq12 = 0x400, cond = 0xfffffffffffffff0 ++beq0 = 0x400, cond = 0xffffffffffffff9c ++beq4 = 0x400, cond = 0xffffffffffffff9c ++beq8 = 0x400, cond = 0xffffffffffffff9c ++beq12 = 0x400, cond = 0xffffffffffffff9c ++beq0 = 0x400, cond = 0xffffffffffffd8f0 ++beq4 = 0x400, cond = 0xffffffffffffd8f0 ++beq8 = 0x400, cond = 0xffffffffffffd8f0 ++beq12 = 0x400, cond = 0xffffffffffffd8f0 ++beq0 = 0x400, cond = 0x7fffffff ++beq4 = 0x400, cond = 0x7fffffff ++beq8 = 0x400, cond = 0x7fffffff ++beq12 = 0x400, cond = 0x7fffffff ++beq0 = 0x400, cond = 0xffffffff80000000 ++beq4 = 0x400, cond = 0xffffffff80000000 ++beq8 = 0x400, cond = 0xffffffff80000000 ++beq12 = 0x400, cond = 0xffffffff80000000 ++beq0 = 0x400, cond = 0xffffffff ++beq4 = 0x400, cond = 0xffffffff ++beq8 = 0x400, cond = 0xffffffff ++beq12 = 0x400, cond = 0xffffffff ++beq0 = 0x400, cond = 0x100000000 ++beq4 = 0x400, cond = 0x100000000 ++beq8 = 0x400, cond = 0x100000000 ++beq12 = 0x400, cond = 0x100000000 ++beq0 = 0x400, cond = 0x123456789abcdef0 ++beq4 = 0x400, cond = 0x123456789abcdef0 ++beq8 = 0x400, cond = 0x123456789abcdef0 ++beq12 = 0x400, cond = 0x123456789abcdef0 ++beq0 = 0x400, cond = 0xf0debc9a78563412 ++beq4 = 0x400, cond = 0xf0debc9a78563412 ++beq8 = 0x400, cond = 0xf0debc9a78563412 ++beq12 = 0x400, cond = 0xf0debc9a78563412 ++beq0 = 0x400, cond = 0xffffffffffffffff ++beq4 = 0x400, cond = 0xffffffffffffffff ++beq8 = 0x400, cond = 0xffffffffffffffff ++beq12 = 0x400, cond = 0xffffffffffffffff ++=== Running test on bne=== ++bne0 = 0x400, cond = 0x0 ++bne4 = 0x400, cond = 0x0 ++bne8 = 0x400, cond = 0x0 ++bne12 = 0x400, cond = 0x0 ++bne0 = 0x400, cond = 0x1 ++bne4 = 0x3ff, cond = 0x1 ++bne8 = 0x3fe, cond = 0x1 ++bne12 = 0x3fd, cond = 0x1 ++bne0 = 0x400, cond = 0x2 ++bne4 = 0x3ff, cond = 0x2 ++bne8 = 0x3fe, cond = 0x2 ++bne12 = 0x3fd, cond = 0x2 ++bne0 = 0x400, cond = 0x3 ++bne4 = 0x3ff, cond = 0x3 ++bne8 = 0x3fe, cond = 0x3 ++bne12 = 0x3fd, cond = 0x3 ++bne0 = 0x400, cond = 0xf ++bne4 = 0x3ff, cond = 0xf ++bne8 = 0x3fe, cond = 0xf ++bne12 = 0x3fd, cond = 0xf ++bne0 = 0x400, cond = 0x10 ++bne4 = 0x3ff, cond = 0x10 ++bne8 = 0x3fe, cond = 0x10 ++bne12 = 0x3fd, cond = 0x10 ++bne0 = 0x400, cond = 0x64 ++bne4 = 0x3ff, cond = 0x64 ++bne8 = 0x3fe, cond = 0x64 ++bne12 = 0x3fd, cond = 0x64 ++bne0 = 0x400, cond = 0x2710 ++bne4 = 0x3ff, cond = 0x2710 ++bne8 = 0x3fe, cond = 0x2710 ++bne12 = 0x3fd, cond = 0x2710 ++bne0 = 0x400, cond = 0xffffffffffffffff ++bne4 = 0x3ff, cond = 0xffffffffffffffff ++bne8 = 0x3fe, cond = 0xffffffffffffffff ++bne12 = 0x3fd, cond = 0xffffffffffffffff ++bne0 = 0x400, cond = 0xfffffffffffffffe ++bne4 = 0x3ff, cond = 0xfffffffffffffffe ++bne8 = 0x3fe, cond = 0xfffffffffffffffe ++bne12 = 0x3fd, cond = 0xfffffffffffffffe ++bne0 = 0x400, cond = 0xfffffffffffffffd ++bne4 = 0x3ff, cond = 0xfffffffffffffffd ++bne8 = 0x3fe, cond = 0xfffffffffffffffd ++bne12 = 0x3fd, cond = 0xfffffffffffffffd ++bne0 = 0x400, cond = 0xfffffffffffffff1 ++bne4 = 0x3ff, cond = 0xfffffffffffffff1 ++bne8 = 0x3fe, cond = 0xfffffffffffffff1 ++bne12 = 0x3fd, cond = 0xfffffffffffffff1 ++bne0 = 0x400, cond = 0xfffffffffffffff0 ++bne4 = 0x3ff, cond = 0xfffffffffffffff0 ++bne8 = 0x3fe, cond = 0xfffffffffffffff0 ++bne12 = 0x3fd, cond = 0xfffffffffffffff0 ++bne0 = 0x400, cond = 0xffffffffffffff9c ++bne4 = 0x3ff, cond = 0xffffffffffffff9c ++bne8 = 0x3fe, cond = 0xffffffffffffff9c ++bne12 = 0x3fd, cond = 0xffffffffffffff9c ++bne0 = 0x400, cond = 0xffffffffffffd8f0 ++bne4 = 0x3ff, cond = 0xffffffffffffd8f0 ++bne8 = 0x3fe, cond = 0xffffffffffffd8f0 ++bne12 = 0x3fd, cond = 0xffffffffffffd8f0 ++bne0 = 0x400, cond = 0x7fffffff ++bne4 = 0x3ff, cond = 0x7fffffff ++bne8 = 0x3fe, cond = 0x7fffffff ++bne12 = 0x3fd, cond = 0x7fffffff ++bne0 = 0x400, cond = 0xffffffff80000000 ++bne4 = 0x3ff, cond = 0xffffffff80000000 ++bne8 = 0x3fe, cond = 0xffffffff80000000 ++bne12 = 0x3fd, cond = 0xffffffff80000000 ++bne0 = 0x400, cond = 0xffffffff ++bne4 = 0x3ff, cond = 0xffffffff ++bne8 = 0x3fe, cond = 0xffffffff ++bne12 = 0x3fd, cond = 0xffffffff ++bne0 = 0x400, cond = 0x100000000 ++bne4 = 0x3ff, cond = 0x100000000 ++bne8 = 0x3fe, cond = 0x100000000 ++bne12 = 0x3fd, cond = 0x100000000 ++bne0 = 0x400, cond = 0x123456789abcdef0 ++bne4 = 0x3ff, cond = 0x123456789abcdef0 ++bne8 = 0x3fe, cond = 0x123456789abcdef0 ++bne12 = 0x3fd, cond = 0x123456789abcdef0 ++bne0 = 0x400, cond = 0xf0debc9a78563412 ++bne4 = 0x3ff, cond = 0xf0debc9a78563412 ++bne8 = 0x3fe, cond = 0xf0debc9a78563412 ++bne12 = 0x3fd, cond = 0xf0debc9a78563412 ++bne0 = 0x400, cond = 0xffffffffffffffff ++bne4 = 0x3ff, cond = 0xffffffffffffffff ++bne8 = 0x3fe, cond = 0xffffffffffffffff ++bne12 = 0x3fd, cond = 0xffffffffffffffff ++=== Running test on blt=== ++blt0 = 0x400, cond = 0x0 ++blt4 = 0x400, cond = 0x0 ++blt8 = 0x400, cond = 0x0 ++blt12 = 0x400, cond = 0x0 ++blt0 = 0x400, cond = 0x1 ++blt4 = 0x400, cond = 0x1 ++blt8 = 0x400, cond = 0x1 ++blt12 = 0x400, cond = 0x1 ++blt0 = 0x400, cond = 0x2 ++blt4 = 0x400, cond = 0x2 ++blt8 = 0x400, cond = 0x2 ++blt12 = 0x400, cond = 0x2 ++blt0 = 0x400, cond = 0x3 ++blt4 = 0x400, cond = 0x3 ++blt8 = 0x400, cond = 0x3 ++blt12 = 0x400, cond = 0x3 ++blt0 = 0x400, cond = 0xf ++blt4 = 0x400, cond = 0xf ++blt8 = 0x400, cond = 0xf ++blt12 = 0x400, cond = 0xf ++blt0 = 0x400, cond = 0x10 ++blt4 = 0x400, cond = 0x10 ++blt8 = 0x400, cond = 0x10 ++blt12 = 0x400, cond = 0x10 ++blt0 = 0x400, cond = 0x64 ++blt4 = 0x400, cond = 0x64 ++blt8 = 0x400, cond = 0x64 ++blt12 = 0x400, cond = 0x64 ++blt0 = 0x400, cond = 0x2710 ++blt4 = 0x400, cond = 0x2710 ++blt8 = 0x400, cond = 0x2710 ++blt12 = 0x400, cond = 0x2710 ++blt0 = 0x400, cond = 0xffffffffffffffff ++blt4 = 0x3ff, cond = 0xffffffffffffffff ++blt8 = 0x3fe, cond = 0xffffffffffffffff ++blt12 = 0x3fd, cond = 0xffffffffffffffff ++blt0 = 0x400, cond = 0xfffffffffffffffe ++blt4 = 0x3ff, cond = 0xfffffffffffffffe ++blt8 = 0x3fe, cond = 0xfffffffffffffffe ++blt12 = 0x3fd, cond = 0xfffffffffffffffe ++blt0 = 0x400, cond = 0xfffffffffffffffd ++blt4 = 0x3ff, cond = 0xfffffffffffffffd ++blt8 = 0x3fe, cond = 0xfffffffffffffffd ++blt12 = 0x3fd, cond = 0xfffffffffffffffd ++blt0 = 0x400, cond = 0xfffffffffffffff1 ++blt4 = 0x3ff, cond = 0xfffffffffffffff1 ++blt8 = 0x3fe, cond = 0xfffffffffffffff1 ++blt12 = 0x3fd, cond = 0xfffffffffffffff1 ++blt0 = 0x400, cond = 0xfffffffffffffff0 ++blt4 = 0x3ff, cond = 0xfffffffffffffff0 ++blt8 = 0x3fe, cond = 0xfffffffffffffff0 ++blt12 = 0x3fd, cond = 0xfffffffffffffff0 ++blt0 = 0x400, cond = 0xffffffffffffff9c ++blt4 = 0x3ff, cond = 0xffffffffffffff9c ++blt8 = 0x3fe, cond = 0xffffffffffffff9c ++blt12 = 0x3fd, cond = 0xffffffffffffff9c ++blt0 = 0x400, cond = 0xffffffffffffd8f0 ++blt4 = 0x3ff, cond = 0xffffffffffffd8f0 ++blt8 = 0x3fe, cond = 0xffffffffffffd8f0 ++blt12 = 0x3fd, cond = 0xffffffffffffd8f0 ++blt0 = 0x400, cond = 0x7fffffff ++blt4 = 0x400, cond = 0x7fffffff ++blt8 = 0x400, cond = 0x7fffffff ++blt12 = 0x400, cond = 0x7fffffff ++blt0 = 0x400, cond = 0xffffffff80000000 ++blt4 = 0x3ff, cond = 0xffffffff80000000 ++blt8 = 0x3fe, cond = 0xffffffff80000000 ++blt12 = 0x3fd, cond = 0xffffffff80000000 ++blt0 = 0x400, cond = 0xffffffff ++blt4 = 0x400, cond = 0xffffffff ++blt8 = 0x400, cond = 0xffffffff ++blt12 = 0x400, cond = 0xffffffff ++blt0 = 0x400, cond = 0x100000000 ++blt4 = 0x400, cond = 0x100000000 ++blt8 = 0x400, cond = 0x100000000 ++blt12 = 0x400, cond = 0x100000000 ++blt0 = 0x400, cond = 0x123456789abcdef0 ++blt4 = 0x400, cond = 0x123456789abcdef0 ++blt8 = 0x400, cond = 0x123456789abcdef0 ++blt12 = 0x400, cond = 0x123456789abcdef0 ++blt0 = 0x400, cond = 0xf0debc9a78563412 ++blt4 = 0x3ff, cond = 0xf0debc9a78563412 ++blt8 = 0x3fe, cond = 0xf0debc9a78563412 ++blt12 = 0x3fd, cond = 0xf0debc9a78563412 ++blt0 = 0x400, cond = 0xffffffffffffffff ++blt4 = 0x3ff, cond = 0xffffffffffffffff ++blt8 = 0x3fe, cond = 0xffffffffffffffff ++blt12 = 0x3fd, cond = 0xffffffffffffffff ++=== Running test on ble=== ++ble0 = 0x400, cond = 0x0 ++ble4 = 0x3ff, cond = 0x0 ++ble8 = 0x3fe, cond = 0x0 ++ble12 = 0x3fd, cond = 0x0 ++ble0 = 0x400, cond = 0x1 ++ble4 = 0x400, cond = 0x1 ++ble8 = 0x400, cond = 0x1 ++ble12 = 0x400, cond = 0x1 ++ble0 = 0x400, cond = 0x2 ++ble4 = 0x400, cond = 0x2 ++ble8 = 0x400, cond = 0x2 ++ble12 = 0x400, cond = 0x2 ++ble0 = 0x400, cond = 0x3 ++ble4 = 0x400, cond = 0x3 ++ble8 = 0x400, cond = 0x3 ++ble12 = 0x400, cond = 0x3 ++ble0 = 0x400, cond = 0xf ++ble4 = 0x400, cond = 0xf ++ble8 = 0x400, cond = 0xf ++ble12 = 0x400, cond = 0xf ++ble0 = 0x400, cond = 0x10 ++ble4 = 0x400, cond = 0x10 ++ble8 = 0x400, cond = 0x10 ++ble12 = 0x400, cond = 0x10 ++ble0 = 0x400, cond = 0x64 ++ble4 = 0x400, cond = 0x64 ++ble8 = 0x400, cond = 0x64 ++ble12 = 0x400, cond = 0x64 ++ble0 = 0x400, cond = 0x2710 ++ble4 = 0x400, cond = 0x2710 ++ble8 = 0x400, cond = 0x2710 ++ble12 = 0x400, cond = 0x2710 ++ble0 = 0x400, cond = 0xffffffffffffffff ++ble4 = 0x3ff, cond = 0xffffffffffffffff ++ble8 = 0x3fe, cond = 0xffffffffffffffff ++ble12 = 0x3fd, cond = 0xffffffffffffffff ++ble0 = 0x400, cond = 0xfffffffffffffffe ++ble4 = 0x3ff, cond = 0xfffffffffffffffe ++ble8 = 0x3fe, cond = 0xfffffffffffffffe ++ble12 = 0x3fd, cond = 0xfffffffffffffffe ++ble0 = 0x400, cond = 0xfffffffffffffffd ++ble4 = 0x3ff, cond = 0xfffffffffffffffd ++ble8 = 0x3fe, cond = 0xfffffffffffffffd ++ble12 = 0x3fd, cond = 0xfffffffffffffffd ++ble0 = 0x400, cond = 0xfffffffffffffff1 ++ble4 = 0x3ff, cond = 0xfffffffffffffff1 ++ble8 = 0x3fe, cond = 0xfffffffffffffff1 ++ble12 = 0x3fd, cond = 0xfffffffffffffff1 ++ble0 = 0x400, cond = 0xfffffffffffffff0 ++ble4 = 0x3ff, cond = 0xfffffffffffffff0 ++ble8 = 0x3fe, cond = 0xfffffffffffffff0 ++ble12 = 0x3fd, cond = 0xfffffffffffffff0 ++ble0 = 0x400, cond = 0xffffffffffffff9c ++ble4 = 0x3ff, cond = 0xffffffffffffff9c ++ble8 = 0x3fe, cond = 0xffffffffffffff9c ++ble12 = 0x3fd, cond = 0xffffffffffffff9c ++ble0 = 0x400, cond = 0xffffffffffffd8f0 ++ble4 = 0x3ff, cond = 0xffffffffffffd8f0 ++ble8 = 0x3fe, cond = 0xffffffffffffd8f0 ++ble12 = 0x3fd, cond = 0xffffffffffffd8f0 ++ble0 = 0x400, cond = 0x7fffffff ++ble4 = 0x400, cond = 0x7fffffff ++ble8 = 0x400, cond = 0x7fffffff ++ble12 = 0x400, cond = 0x7fffffff ++ble0 = 0x400, cond = 0xffffffff80000000 ++ble4 = 0x3ff, cond = 0xffffffff80000000 ++ble8 = 0x3fe, cond = 0xffffffff80000000 ++ble12 = 0x3fd, cond = 0xffffffff80000000 ++ble0 = 0x400, cond = 0xffffffff ++ble4 = 0x400, cond = 0xffffffff ++ble8 = 0x400, cond = 0xffffffff ++ble12 = 0x400, cond = 0xffffffff ++ble0 = 0x400, cond = 0x100000000 ++ble4 = 0x400, cond = 0x100000000 ++ble8 = 0x400, cond = 0x100000000 ++ble12 = 0x400, cond = 0x100000000 ++ble0 = 0x400, cond = 0x123456789abcdef0 ++ble4 = 0x400, cond = 0x123456789abcdef0 ++ble8 = 0x400, cond = 0x123456789abcdef0 ++ble12 = 0x400, cond = 0x123456789abcdef0 ++ble0 = 0x400, cond = 0xf0debc9a78563412 ++ble4 = 0x3ff, cond = 0xf0debc9a78563412 ++ble8 = 0x3fe, cond = 0xf0debc9a78563412 ++ble12 = 0x3fd, cond = 0xf0debc9a78563412 ++ble0 = 0x400, cond = 0xffffffffffffffff ++ble4 = 0x3ff, cond = 0xffffffffffffffff ++ble8 = 0x3fe, cond = 0xffffffffffffffff ++ble12 = 0x3fd, cond = 0xffffffffffffffff ++=== Running test on bgt=== ++bgt0 = 0x400, cond = 0x0 ++bgt4 = 0x400, cond = 0x0 ++bgt8 = 0x400, cond = 0x0 ++bgt12 = 0x400, cond = 0x0 ++bgt0 = 0x400, cond = 0x1 ++bgt4 = 0x3ff, cond = 0x1 ++bgt8 = 0x3fe, cond = 0x1 ++bgt12 = 0x3fd, cond = 0x1 ++bgt0 = 0x400, cond = 0x2 ++bgt4 = 0x3ff, cond = 0x2 ++bgt8 = 0x3fe, cond = 0x2 ++bgt12 = 0x3fd, cond = 0x2 ++bgt0 = 0x400, cond = 0x3 ++bgt4 = 0x3ff, cond = 0x3 ++bgt8 = 0x3fe, cond = 0x3 ++bgt12 = 0x3fd, cond = 0x3 ++bgt0 = 0x400, cond = 0xf ++bgt4 = 0x3ff, cond = 0xf ++bgt8 = 0x3fe, cond = 0xf ++bgt12 = 0x3fd, cond = 0xf ++bgt0 = 0x400, cond = 0x10 ++bgt4 = 0x3ff, cond = 0x10 ++bgt8 = 0x3fe, cond = 0x10 ++bgt12 = 0x3fd, cond = 0x10 ++bgt0 = 0x400, cond = 0x64 ++bgt4 = 0x3ff, cond = 0x64 ++bgt8 = 0x3fe, cond = 0x64 ++bgt12 = 0x3fd, cond = 0x64 ++bgt0 = 0x400, cond = 0x2710 ++bgt4 = 0x3ff, cond = 0x2710 ++bgt8 = 0x3fe, cond = 0x2710 ++bgt12 = 0x3fd, cond = 0x2710 ++bgt0 = 0x400, cond = 0xffffffffffffffff ++bgt4 = 0x400, cond = 0xffffffffffffffff ++bgt8 = 0x400, cond = 0xffffffffffffffff ++bgt12 = 0x400, cond = 0xffffffffffffffff ++bgt0 = 0x400, cond = 0xfffffffffffffffe ++bgt4 = 0x400, cond = 0xfffffffffffffffe ++bgt8 = 0x400, cond = 0xfffffffffffffffe ++bgt12 = 0x400, cond = 0xfffffffffffffffe ++bgt0 = 0x400, cond = 0xfffffffffffffffd ++bgt4 = 0x400, cond = 0xfffffffffffffffd ++bgt8 = 0x400, cond = 0xfffffffffffffffd ++bgt12 = 0x400, cond = 0xfffffffffffffffd ++bgt0 = 0x400, cond = 0xfffffffffffffff1 ++bgt4 = 0x400, cond = 0xfffffffffffffff1 ++bgt8 = 0x400, cond = 0xfffffffffffffff1 ++bgt12 = 0x400, cond = 0xfffffffffffffff1 ++bgt0 = 0x400, cond = 0xfffffffffffffff0 ++bgt4 = 0x400, cond = 0xfffffffffffffff0 ++bgt8 = 0x400, cond = 0xfffffffffffffff0 ++bgt12 = 0x400, cond = 0xfffffffffffffff0 ++bgt0 = 0x400, cond = 0xffffffffffffff9c ++bgt4 = 0x400, cond = 0xffffffffffffff9c ++bgt8 = 0x400, cond = 0xffffffffffffff9c ++bgt12 = 0x400, cond = 0xffffffffffffff9c ++bgt0 = 0x400, cond = 0xffffffffffffd8f0 ++bgt4 = 0x400, cond = 0xffffffffffffd8f0 ++bgt8 = 0x400, cond = 0xffffffffffffd8f0 ++bgt12 = 0x400, cond = 0xffffffffffffd8f0 ++bgt0 = 0x400, cond = 0x7fffffff ++bgt4 = 0x3ff, cond = 0x7fffffff ++bgt8 = 0x3fe, cond = 0x7fffffff ++bgt12 = 0x3fd, cond = 0x7fffffff ++bgt0 = 0x400, cond = 0xffffffff80000000 ++bgt4 = 0x400, cond = 0xffffffff80000000 ++bgt8 = 0x400, cond = 0xffffffff80000000 ++bgt12 = 0x400, cond = 0xffffffff80000000 ++bgt0 = 0x400, cond = 0xffffffff ++bgt4 = 0x3ff, cond = 0xffffffff ++bgt8 = 0x3fe, cond = 0xffffffff ++bgt12 = 0x3fd, cond = 0xffffffff ++bgt0 = 0x400, cond = 0x100000000 ++bgt4 = 0x3ff, cond = 0x100000000 ++bgt8 = 0x3fe, cond = 0x100000000 ++bgt12 = 0x3fd, cond = 0x100000000 ++bgt0 = 0x400, cond = 0x123456789abcdef0 ++bgt4 = 0x3ff, cond = 0x123456789abcdef0 ++bgt8 = 0x3fe, cond = 0x123456789abcdef0 ++bgt12 = 0x3fd, cond = 0x123456789abcdef0 ++bgt0 = 0x400, cond = 0xf0debc9a78563412 ++bgt4 = 0x400, cond = 0xf0debc9a78563412 ++bgt8 = 0x400, cond = 0xf0debc9a78563412 ++bgt12 = 0x400, cond = 0xf0debc9a78563412 ++bgt0 = 0x400, cond = 0xffffffffffffffff ++bgt4 = 0x400, cond = 0xffffffffffffffff ++bgt8 = 0x400, cond = 0xffffffffffffffff ++bgt12 = 0x400, cond = 0xffffffffffffffff ++=== Running test on bge=== ++bge0 = 0x400, cond = 0x0 ++bge4 = 0x3ff, cond = 0x0 ++bge8 = 0x3fe, cond = 0x0 ++bge12 = 0x3fd, cond = 0x0 ++bge0 = 0x400, cond = 0x1 ++bge4 = 0x3ff, cond = 0x1 ++bge8 = 0x3fe, cond = 0x1 ++bge12 = 0x3fd, cond = 0x1 ++bge0 = 0x400, cond = 0x2 ++bge4 = 0x3ff, cond = 0x2 ++bge8 = 0x3fe, cond = 0x2 ++bge12 = 0x3fd, cond = 0x2 ++bge0 = 0x400, cond = 0x3 ++bge4 = 0x3ff, cond = 0x3 ++bge8 = 0x3fe, cond = 0x3 ++bge12 = 0x3fd, cond = 0x3 ++bge0 = 0x400, cond = 0xf ++bge4 = 0x3ff, cond = 0xf ++bge8 = 0x3fe, cond = 0xf ++bge12 = 0x3fd, cond = 0xf ++bge0 = 0x400, cond = 0x10 ++bge4 = 0x3ff, cond = 0x10 ++bge8 = 0x3fe, cond = 0x10 ++bge12 = 0x3fd, cond = 0x10 ++bge0 = 0x400, cond = 0x64 ++bge4 = 0x3ff, cond = 0x64 ++bge8 = 0x3fe, cond = 0x64 ++bge12 = 0x3fd, cond = 0x64 ++bge0 = 0x400, cond = 0x2710 ++bge4 = 0x3ff, cond = 0x2710 ++bge8 = 0x3fe, cond = 0x2710 ++bge12 = 0x3fd, cond = 0x2710 ++bge0 = 0x400, cond = 0xffffffffffffffff ++bge4 = 0x400, cond = 0xffffffffffffffff ++bge8 = 0x400, cond = 0xffffffffffffffff ++bge12 = 0x400, cond = 0xffffffffffffffff ++bge0 = 0x400, cond = 0xfffffffffffffffe ++bge4 = 0x400, cond = 0xfffffffffffffffe ++bge8 = 0x400, cond = 0xfffffffffffffffe ++bge12 = 0x400, cond = 0xfffffffffffffffe ++bge0 = 0x400, cond = 0xfffffffffffffffd ++bge4 = 0x400, cond = 0xfffffffffffffffd ++bge8 = 0x400, cond = 0xfffffffffffffffd ++bge12 = 0x400, cond = 0xfffffffffffffffd ++bge0 = 0x400, cond = 0xfffffffffffffff1 ++bge4 = 0x400, cond = 0xfffffffffffffff1 ++bge8 = 0x400, cond = 0xfffffffffffffff1 ++bge12 = 0x400, cond = 0xfffffffffffffff1 ++bge0 = 0x400, cond = 0xfffffffffffffff0 ++bge4 = 0x400, cond = 0xfffffffffffffff0 ++bge8 = 0x400, cond = 0xfffffffffffffff0 ++bge12 = 0x400, cond = 0xfffffffffffffff0 ++bge0 = 0x400, cond = 0xffffffffffffff9c ++bge4 = 0x400, cond = 0xffffffffffffff9c ++bge8 = 0x400, cond = 0xffffffffffffff9c ++bge12 = 0x400, cond = 0xffffffffffffff9c ++bge0 = 0x400, cond = 0xffffffffffffd8f0 ++bge4 = 0x400, cond = 0xffffffffffffd8f0 ++bge8 = 0x400, cond = 0xffffffffffffd8f0 ++bge12 = 0x400, cond = 0xffffffffffffd8f0 ++bge0 = 0x400, cond = 0x7fffffff ++bge4 = 0x3ff, cond = 0x7fffffff ++bge8 = 0x3fe, cond = 0x7fffffff ++bge12 = 0x3fd, cond = 0x7fffffff ++bge0 = 0x400, cond = 0xffffffff80000000 ++bge4 = 0x400, cond = 0xffffffff80000000 ++bge8 = 0x400, cond = 0xffffffff80000000 ++bge12 = 0x400, cond = 0xffffffff80000000 ++bge0 = 0x400, cond = 0xffffffff ++bge4 = 0x3ff, cond = 0xffffffff ++bge8 = 0x3fe, cond = 0xffffffff ++bge12 = 0x3fd, cond = 0xffffffff ++bge0 = 0x400, cond = 0x100000000 ++bge4 = 0x3ff, cond = 0x100000000 ++bge8 = 0x3fe, cond = 0x100000000 ++bge12 = 0x3fd, cond = 0x100000000 ++bge0 = 0x400, cond = 0x123456789abcdef0 ++bge4 = 0x3ff, cond = 0x123456789abcdef0 ++bge8 = 0x3fe, cond = 0x123456789abcdef0 ++bge12 = 0x3fd, cond = 0x123456789abcdef0 ++bge0 = 0x400, cond = 0xf0debc9a78563412 ++bge4 = 0x400, cond = 0xf0debc9a78563412 ++bge8 = 0x400, cond = 0xf0debc9a78563412 ++bge12 = 0x400, cond = 0xf0debc9a78563412 ++bge0 = 0x400, cond = 0xffffffffffffffff ++bge4 = 0x400, cond = 0xffffffffffffffff ++bge8 = 0x400, cond = 0xffffffffffffffff ++bge12 = 0x400, cond = 0xffffffffffffffff ++=== Running test on blbc=== ++blbc0 = 0x400, cond = 0x0 ++blbc4 = 0x3ff, cond = 0x0 ++blbc8 = 0x3fe, cond = 0x0 ++blbc12 = 0x3fd, cond = 0x0 ++blbc0 = 0x400, cond = 0x1 ++blbc4 = 0x400, cond = 0x1 ++blbc8 = 0x400, cond = 0x1 ++blbc12 = 0x400, cond = 0x1 ++blbc0 = 0x400, cond = 0x2 ++blbc4 = 0x3ff, cond = 0x2 ++blbc8 = 0x3fe, cond = 0x2 ++blbc12 = 0x3fd, cond = 0x2 ++blbc0 = 0x400, cond = 0x3 ++blbc4 = 0x400, cond = 0x3 ++blbc8 = 0x400, cond = 0x3 ++blbc12 = 0x400, cond = 0x3 ++blbc0 = 0x400, cond = 0xf ++blbc4 = 0x400, cond = 0xf ++blbc8 = 0x400, cond = 0xf ++blbc12 = 0x400, cond = 0xf ++blbc0 = 0x400, cond = 0x10 ++blbc4 = 0x3ff, cond = 0x10 ++blbc8 = 0x3fe, cond = 0x10 ++blbc12 = 0x3fd, cond = 0x10 ++blbc0 = 0x400, cond = 0x64 ++blbc4 = 0x3ff, cond = 0x64 ++blbc8 = 0x3fe, cond = 0x64 ++blbc12 = 0x3fd, cond = 0x64 ++blbc0 = 0x400, cond = 0x2710 ++blbc4 = 0x3ff, cond = 0x2710 ++blbc8 = 0x3fe, cond = 0x2710 ++blbc12 = 0x3fd, cond = 0x2710 ++blbc0 = 0x400, cond = 0xffffffffffffffff ++blbc4 = 0x400, cond = 0xffffffffffffffff ++blbc8 = 0x400, cond = 0xffffffffffffffff ++blbc12 = 0x400, cond = 0xffffffffffffffff ++blbc0 = 0x400, cond = 0xfffffffffffffffe ++blbc4 = 0x3ff, cond = 0xfffffffffffffffe ++blbc8 = 0x3fe, cond = 0xfffffffffffffffe ++blbc12 = 0x3fd, cond = 0xfffffffffffffffe ++blbc0 = 0x400, cond = 0xfffffffffffffffd ++blbc4 = 0x400, cond = 0xfffffffffffffffd ++blbc8 = 0x400, cond = 0xfffffffffffffffd ++blbc12 = 0x400, cond = 0xfffffffffffffffd ++blbc0 = 0x400, cond = 0xfffffffffffffff1 ++blbc4 = 0x400, cond = 0xfffffffffffffff1 ++blbc8 = 0x400, cond = 0xfffffffffffffff1 ++blbc12 = 0x400, cond = 0xfffffffffffffff1 ++blbc0 = 0x400, cond = 0xfffffffffffffff0 ++blbc4 = 0x3ff, cond = 0xfffffffffffffff0 ++blbc8 = 0x3fe, cond = 0xfffffffffffffff0 ++blbc12 = 0x3fd, cond = 0xfffffffffffffff0 ++blbc0 = 0x400, cond = 0xffffffffffffff9c ++blbc4 = 0x3ff, cond = 0xffffffffffffff9c ++blbc8 = 0x3fe, cond = 0xffffffffffffff9c ++blbc12 = 0x3fd, cond = 0xffffffffffffff9c ++blbc0 = 0x400, cond = 0xffffffffffffd8f0 ++blbc4 = 0x3ff, cond = 0xffffffffffffd8f0 ++blbc8 = 0x3fe, cond = 0xffffffffffffd8f0 ++blbc12 = 0x3fd, cond = 0xffffffffffffd8f0 ++blbc0 = 0x400, cond = 0x7fffffff ++blbc4 = 0x400, cond = 0x7fffffff ++blbc8 = 0x400, cond = 0x7fffffff ++blbc12 = 0x400, cond = 0x7fffffff ++blbc0 = 0x400, cond = 0xffffffff80000000 ++blbc4 = 0x3ff, cond = 0xffffffff80000000 ++blbc8 = 0x3fe, cond = 0xffffffff80000000 ++blbc12 = 0x3fd, cond = 0xffffffff80000000 ++blbc0 = 0x400, cond = 0xffffffff ++blbc4 = 0x400, cond = 0xffffffff ++blbc8 = 0x400, cond = 0xffffffff ++blbc12 = 0x400, cond = 0xffffffff ++blbc0 = 0x400, cond = 0x100000000 ++blbc4 = 0x3ff, cond = 0x100000000 ++blbc8 = 0x3fe, cond = 0x100000000 ++blbc12 = 0x3fd, cond = 0x100000000 ++blbc0 = 0x400, cond = 0x123456789abcdef0 ++blbc4 = 0x3ff, cond = 0x123456789abcdef0 ++blbc8 = 0x3fe, cond = 0x123456789abcdef0 ++blbc12 = 0x3fd, cond = 0x123456789abcdef0 ++blbc0 = 0x400, cond = 0xf0debc9a78563412 ++blbc4 = 0x3ff, cond = 0xf0debc9a78563412 ++blbc8 = 0x3fe, cond = 0xf0debc9a78563412 ++blbc12 = 0x3fd, cond = 0xf0debc9a78563412 ++blbc0 = 0x400, cond = 0xffffffffffffffff ++blbc4 = 0x400, cond = 0xffffffffffffffff ++blbc8 = 0x400, cond = 0xffffffffffffffff ++blbc12 = 0x400, cond = 0xffffffffffffffff ++=== Running test on blbs=== ++blbs0 = 0x400, cond = 0x0 ++blbs4 = 0x400, cond = 0x0 ++blbs8 = 0x400, cond = 0x0 ++blbs12 = 0x400, cond = 0x0 ++blbs0 = 0x400, cond = 0x1 ++blbs4 = 0x3ff, cond = 0x1 ++blbs8 = 0x3fe, cond = 0x1 ++blbs12 = 0x3fd, cond = 0x1 ++blbs0 = 0x400, cond = 0x2 ++blbs4 = 0x400, cond = 0x2 ++blbs8 = 0x400, cond = 0x2 ++blbs12 = 0x400, cond = 0x2 ++blbs0 = 0x400, cond = 0x3 ++blbs4 = 0x3ff, cond = 0x3 ++blbs8 = 0x3fe, cond = 0x3 ++blbs12 = 0x3fd, cond = 0x3 ++blbs0 = 0x400, cond = 0xf ++blbs4 = 0x3ff, cond = 0xf ++blbs8 = 0x3fe, cond = 0xf ++blbs12 = 0x3fd, cond = 0xf ++blbs0 = 0x400, cond = 0x10 ++blbs4 = 0x400, cond = 0x10 ++blbs8 = 0x400, cond = 0x10 ++blbs12 = 0x400, cond = 0x10 ++blbs0 = 0x400, cond = 0x64 ++blbs4 = 0x400, cond = 0x64 ++blbs8 = 0x400, cond = 0x64 ++blbs12 = 0x400, cond = 0x64 ++blbs0 = 0x400, cond = 0x2710 ++blbs4 = 0x400, cond = 0x2710 ++blbs8 = 0x400, cond = 0x2710 ++blbs12 = 0x400, cond = 0x2710 ++blbs0 = 0x400, cond = 0xffffffffffffffff ++blbs4 = 0x3ff, cond = 0xffffffffffffffff ++blbs8 = 0x3fe, cond = 0xffffffffffffffff ++blbs12 = 0x3fd, cond = 0xffffffffffffffff ++blbs0 = 0x400, cond = 0xfffffffffffffffe ++blbs4 = 0x400, cond = 0xfffffffffffffffe ++blbs8 = 0x400, cond = 0xfffffffffffffffe ++blbs12 = 0x400, cond = 0xfffffffffffffffe ++blbs0 = 0x400, cond = 0xfffffffffffffffd ++blbs4 = 0x3ff, cond = 0xfffffffffffffffd ++blbs8 = 0x3fe, cond = 0xfffffffffffffffd ++blbs12 = 0x3fd, cond = 0xfffffffffffffffd ++blbs0 = 0x400, cond = 0xfffffffffffffff1 ++blbs4 = 0x3ff, cond = 0xfffffffffffffff1 ++blbs8 = 0x3fe, cond = 0xfffffffffffffff1 ++blbs12 = 0x3fd, cond = 0xfffffffffffffff1 ++blbs0 = 0x400, cond = 0xfffffffffffffff0 ++blbs4 = 0x400, cond = 0xfffffffffffffff0 ++blbs8 = 0x400, cond = 0xfffffffffffffff0 ++blbs12 = 0x400, cond = 0xfffffffffffffff0 ++blbs0 = 0x400, cond = 0xffffffffffffff9c ++blbs4 = 0x400, cond = 0xffffffffffffff9c ++blbs8 = 0x400, cond = 0xffffffffffffff9c ++blbs12 = 0x400, cond = 0xffffffffffffff9c ++blbs0 = 0x400, cond = 0xffffffffffffd8f0 ++blbs4 = 0x400, cond = 0xffffffffffffd8f0 ++blbs8 = 0x400, cond = 0xffffffffffffd8f0 ++blbs12 = 0x400, cond = 0xffffffffffffd8f0 ++blbs0 = 0x400, cond = 0x7fffffff ++blbs4 = 0x3ff, cond = 0x7fffffff ++blbs8 = 0x3fe, cond = 0x7fffffff ++blbs12 = 0x3fd, cond = 0x7fffffff ++blbs0 = 0x400, cond = 0xffffffff80000000 ++blbs4 = 0x400, cond = 0xffffffff80000000 ++blbs8 = 0x400, cond = 0xffffffff80000000 ++blbs12 = 0x400, cond = 0xffffffff80000000 ++blbs0 = 0x400, cond = 0xffffffff ++blbs4 = 0x3ff, cond = 0xffffffff ++blbs8 = 0x3fe, cond = 0xffffffff ++blbs12 = 0x3fd, cond = 0xffffffff ++blbs0 = 0x400, cond = 0x100000000 ++blbs4 = 0x400, cond = 0x100000000 ++blbs8 = 0x400, cond = 0x100000000 ++blbs12 = 0x400, cond = 0x100000000 ++blbs0 = 0x400, cond = 0x123456789abcdef0 ++blbs4 = 0x400, cond = 0x123456789abcdef0 ++blbs8 = 0x400, cond = 0x123456789abcdef0 ++blbs12 = 0x400, cond = 0x123456789abcdef0 ++blbs0 = 0x400, cond = 0xf0debc9a78563412 ++blbs4 = 0x400, cond = 0xf0debc9a78563412 ++blbs8 = 0x400, cond = 0xf0debc9a78563412 ++blbs12 = 0x400, cond = 0xf0debc9a78563412 ++blbs0 = 0x400, cond = 0xffffffffffffffff ++blbs4 = 0x3ff, cond = 0xffffffffffffffff ++blbs8 = 0x3fe, cond = 0xffffffffffffffff ++blbs12 = 0x3fd, cond = 0xffffffffffffffff ++=== Running test on fbeq=== ++fbeq0 = 0x400, cond = 0x0 ++fbeq4 = 0x3ff, cond = 0x0 ++fbeq8 = 0x3fe, cond = 0x0 ++fbeq12 = 0x3fd, cond = 0x0 ++fbeq0 = 0x400, cond = 0x8000000000000000 ++fbeq4 = 0x3ff, cond = 0x8000000000000000 ++fbeq8 = 0x3fe, cond = 0x8000000000000000 ++fbeq12 = 0x3fd, cond = 0x8000000000000000 ++fbeq0 = 0x400, cond = 0xf0debc9a78563412 ++fbeq4 = 0x400, cond = 0xf0debc9a78563412 ++fbeq8 = 0x400, cond = 0xf0debc9a78563412 ++fbeq12 = 0x400, cond = 0xf0debc9a78563412 ++fbeq0 = 0x400, cond = 0x123456789abcdef0 ++fbeq4 = 0x400, cond = 0x123456789abcdef0 ++fbeq8 = 0x400, cond = 0x123456789abcdef0 ++fbeq12 = 0x400, cond = 0x123456789abcdef0 ++fbeq0 = 0x400, cond = 0x3f800000 ++fbeq4 = 0x400, cond = 0x3f800000 ++fbeq8 = 0x400, cond = 0x3f800000 ++fbeq12 = 0x400, cond = 0x3f800000 ++fbeq0 = 0x400, cond = 0xbf800000 ++fbeq4 = 0x400, cond = 0xbf800000 ++fbeq8 = 0x400, cond = 0xbf800000 ++fbeq12 = 0x400, cond = 0xbf800000 ++fbeq0 = 0x400, cond = 0x3dcccccd ++fbeq4 = 0x400, cond = 0x3dcccccd ++fbeq8 = 0x400, cond = 0x3dcccccd ++fbeq12 = 0x400, cond = 0x3dcccccd ++fbeq0 = 0x400, cond = 0xbdcccccd ++fbeq4 = 0x400, cond = 0xbdcccccd ++fbeq8 = 0x400, cond = 0xbdcccccd ++fbeq12 = 0x400, cond = 0xbdcccccd ++fbeq0 = 0x400, cond = 0x3e4ccccd ++fbeq4 = 0x400, cond = 0x3e4ccccd ++fbeq8 = 0x400, cond = 0x3e4ccccd ++fbeq12 = 0x400, cond = 0x3e4ccccd ++fbeq0 = 0x400, cond = 0xbe4ccccd ++fbeq4 = 0x400, cond = 0xbe4ccccd ++fbeq8 = 0x400, cond = 0xbe4ccccd ++fbeq12 = 0x400, cond = 0xbe4ccccd ++fbeq0 = 0x400, cond = 0x40400000 ++fbeq4 = 0x400, cond = 0x40400000 ++fbeq8 = 0x400, cond = 0x40400000 ++fbeq12 = 0x400, cond = 0x40400000 ++fbeq0 = 0x400, cond = 0xc0400000 ++fbeq4 = 0x400, cond = 0xc0400000 ++fbeq8 = 0x400, cond = 0xc0400000 ++fbeq12 = 0x400, cond = 0xc0400000 ++fbeq0 = 0x400, cond = 0x40a00000 ++fbeq4 = 0x400, cond = 0x40a00000 ++fbeq8 = 0x400, cond = 0x40a00000 ++fbeq12 = 0x400, cond = 0x40a00000 ++fbeq0 = 0x400, cond = 0xc0a00000 ++fbeq4 = 0x400, cond = 0xc0a00000 ++fbeq8 = 0x400, cond = 0xc0a00000 ++fbeq12 = 0x400, cond = 0xc0a00000 ++fbeq0 = 0x400, cond = 0x4cbebc20 ++fbeq4 = 0x400, cond = 0x4cbebc20 ++fbeq8 = 0x400, cond = 0x4cbebc20 ++fbeq12 = 0x400, cond = 0x4cbebc20 ++fbeq0 = 0x400, cond = 0xccbebc20 ++fbeq4 = 0x400, cond = 0xccbebc20 ++fbeq8 = 0x400, cond = 0xccbebc20 ++fbeq12 = 0x400, cond = 0xccbebc20 ++fbeq0 = 0x400, cond = 0x3ff0000000000000 ++fbeq4 = 0x400, cond = 0x3ff0000000000000 ++fbeq8 = 0x400, cond = 0x3ff0000000000000 ++fbeq12 = 0x400, cond = 0x3ff0000000000000 ++fbeq0 = 0x400, cond = 0xbff0000000000000 ++fbeq4 = 0x400, cond = 0xbff0000000000000 ++fbeq8 = 0x400, cond = 0xbff0000000000000 ++fbeq12 = 0x400, cond = 0xbff0000000000000 ++fbeq0 = 0x400, cond = 0x3fb999999999999a ++fbeq4 = 0x400, cond = 0x3fb999999999999a ++fbeq8 = 0x400, cond = 0x3fb999999999999a ++fbeq12 = 0x400, cond = 0x3fb999999999999a ++fbeq0 = 0x400, cond = 0xbfb999999999999a ++fbeq4 = 0x400, cond = 0xbfb999999999999a ++fbeq8 = 0x400, cond = 0xbfb999999999999a ++fbeq12 = 0x400, cond = 0xbfb999999999999a ++fbeq0 = 0x400, cond = 0x3fc999999999999a ++fbeq4 = 0x400, cond = 0x3fc999999999999a ++fbeq8 = 0x400, cond = 0x3fc999999999999a ++fbeq12 = 0x400, cond = 0x3fc999999999999a ++fbeq0 = 0x400, cond = 0xbfc999999999999a ++fbeq4 = 0x400, cond = 0xbfc999999999999a ++fbeq8 = 0x400, cond = 0xbfc999999999999a ++fbeq12 = 0x400, cond = 0xbfc999999999999a ++=== Running test on fbne=== ++fbne0 = 0x400, cond = 0x0 ++fbne4 = 0x400, cond = 0x0 ++fbne8 = 0x400, cond = 0x0 ++fbne12 = 0x400, cond = 0x0 ++fbne0 = 0x400, cond = 0x8000000000000000 ++fbne4 = 0x400, cond = 0x8000000000000000 ++fbne8 = 0x400, cond = 0x8000000000000000 ++fbne12 = 0x400, cond = 0x8000000000000000 ++fbne0 = 0x400, cond = 0xf0debc9a78563412 ++fbne4 = 0x3ff, cond = 0xf0debc9a78563412 ++fbne8 = 0x3fe, cond = 0xf0debc9a78563412 ++fbne12 = 0x3fd, cond = 0xf0debc9a78563412 ++fbne0 = 0x400, cond = 0x123456789abcdef0 ++fbne4 = 0x3ff, cond = 0x123456789abcdef0 ++fbne8 = 0x3fe, cond = 0x123456789abcdef0 ++fbne12 = 0x3fd, cond = 0x123456789abcdef0 ++fbne0 = 0x400, cond = 0x3f800000 ++fbne4 = 0x3ff, cond = 0x3f800000 ++fbne8 = 0x3fe, cond = 0x3f800000 ++fbne12 = 0x3fd, cond = 0x3f800000 ++fbne0 = 0x400, cond = 0xbf800000 ++fbne4 = 0x3ff, cond = 0xbf800000 ++fbne8 = 0x3fe, cond = 0xbf800000 ++fbne12 = 0x3fd, cond = 0xbf800000 ++fbne0 = 0x400, cond = 0x3dcccccd ++fbne4 = 0x3ff, cond = 0x3dcccccd ++fbne8 = 0x3fe, cond = 0x3dcccccd ++fbne12 = 0x3fd, cond = 0x3dcccccd ++fbne0 = 0x400, cond = 0xbdcccccd ++fbne4 = 0x3ff, cond = 0xbdcccccd ++fbne8 = 0x3fe, cond = 0xbdcccccd ++fbne12 = 0x3fd, cond = 0xbdcccccd ++fbne0 = 0x400, cond = 0x3e4ccccd ++fbne4 = 0x3ff, cond = 0x3e4ccccd ++fbne8 = 0x3fe, cond = 0x3e4ccccd ++fbne12 = 0x3fd, cond = 0x3e4ccccd ++fbne0 = 0x400, cond = 0xbe4ccccd ++fbne4 = 0x3ff, cond = 0xbe4ccccd ++fbne8 = 0x3fe, cond = 0xbe4ccccd ++fbne12 = 0x3fd, cond = 0xbe4ccccd ++fbne0 = 0x400, cond = 0x40400000 ++fbne4 = 0x3ff, cond = 0x40400000 ++fbne8 = 0x3fe, cond = 0x40400000 ++fbne12 = 0x3fd, cond = 0x40400000 ++fbne0 = 0x400, cond = 0xc0400000 ++fbne4 = 0x3ff, cond = 0xc0400000 ++fbne8 = 0x3fe, cond = 0xc0400000 ++fbne12 = 0x3fd, cond = 0xc0400000 ++fbne0 = 0x400, cond = 0x40a00000 ++fbne4 = 0x3ff, cond = 0x40a00000 ++fbne8 = 0x3fe, cond = 0x40a00000 ++fbne12 = 0x3fd, cond = 0x40a00000 ++fbne0 = 0x400, cond = 0xc0a00000 ++fbne4 = 0x3ff, cond = 0xc0a00000 ++fbne8 = 0x3fe, cond = 0xc0a00000 ++fbne12 = 0x3fd, cond = 0xc0a00000 ++fbne0 = 0x400, cond = 0x4cbebc20 ++fbne4 = 0x3ff, cond = 0x4cbebc20 ++fbne8 = 0x3fe, cond = 0x4cbebc20 ++fbne12 = 0x3fd, cond = 0x4cbebc20 ++fbne0 = 0x400, cond = 0xccbebc20 ++fbne4 = 0x3ff, cond = 0xccbebc20 ++fbne8 = 0x3fe, cond = 0xccbebc20 ++fbne12 = 0x3fd, cond = 0xccbebc20 ++fbne0 = 0x400, cond = 0x3ff0000000000000 ++fbne4 = 0x3ff, cond = 0x3ff0000000000000 ++fbne8 = 0x3fe, cond = 0x3ff0000000000000 ++fbne12 = 0x3fd, cond = 0x3ff0000000000000 ++fbne0 = 0x400, cond = 0xbff0000000000000 ++fbne4 = 0x3ff, cond = 0xbff0000000000000 ++fbne8 = 0x3fe, cond = 0xbff0000000000000 ++fbne12 = 0x3fd, cond = 0xbff0000000000000 ++fbne0 = 0x400, cond = 0x3fb999999999999a ++fbne4 = 0x3ff, cond = 0x3fb999999999999a ++fbne8 = 0x3fe, cond = 0x3fb999999999999a ++fbne12 = 0x3fd, cond = 0x3fb999999999999a ++fbne0 = 0x400, cond = 0xbfb999999999999a ++fbne4 = 0x3ff, cond = 0xbfb999999999999a ++fbne8 = 0x3fe, cond = 0xbfb999999999999a ++fbne12 = 0x3fd, cond = 0xbfb999999999999a ++fbne0 = 0x400, cond = 0x3fc999999999999a ++fbne4 = 0x3ff, cond = 0x3fc999999999999a ++fbne8 = 0x3fe, cond = 0x3fc999999999999a ++fbne12 = 0x3fd, cond = 0x3fc999999999999a ++fbne0 = 0x400, cond = 0xbfc999999999999a ++fbne4 = 0x3ff, cond = 0xbfc999999999999a ++fbne8 = 0x3fe, cond = 0xbfc999999999999a ++fbne12 = 0x3fd, cond = 0xbfc999999999999a ++=== Running test on fblt=== ++fblt0 = 0x400, cond = 0x0 ++fblt4 = 0x400, cond = 0x0 ++fblt8 = 0x400, cond = 0x0 ++fblt12 = 0x400, cond = 0x0 ++fblt0 = 0x400, cond = 0x8000000000000000 ++fblt4 = 0x400, cond = 0x8000000000000000 ++fblt8 = 0x400, cond = 0x8000000000000000 ++fblt12 = 0x400, cond = 0x8000000000000000 ++fblt0 = 0x400, cond = 0xf0debc9a78563412 ++fblt4 = 0x3ff, cond = 0xf0debc9a78563412 ++fblt8 = 0x3fe, cond = 0xf0debc9a78563412 ++fblt12 = 0x3fd, cond = 0xf0debc9a78563412 ++fblt0 = 0x400, cond = 0x123456789abcdef0 ++fblt4 = 0x400, cond = 0x123456789abcdef0 ++fblt8 = 0x400, cond = 0x123456789abcdef0 ++fblt12 = 0x400, cond = 0x123456789abcdef0 ++fblt0 = 0x400, cond = 0x3f800000 ++fblt4 = 0x400, cond = 0x3f800000 ++fblt8 = 0x400, cond = 0x3f800000 ++fblt12 = 0x400, cond = 0x3f800000 ++fblt0 = 0x400, cond = 0xbf800000 ++fblt4 = 0x400, cond = 0xbf800000 ++fblt8 = 0x400, cond = 0xbf800000 ++fblt12 = 0x400, cond = 0xbf800000 ++fblt0 = 0x400, cond = 0x3dcccccd ++fblt4 = 0x400, cond = 0x3dcccccd ++fblt8 = 0x400, cond = 0x3dcccccd ++fblt12 = 0x400, cond = 0x3dcccccd ++fblt0 = 0x400, cond = 0xbdcccccd ++fblt4 = 0x400, cond = 0xbdcccccd ++fblt8 = 0x400, cond = 0xbdcccccd ++fblt12 = 0x400, cond = 0xbdcccccd ++fblt0 = 0x400, cond = 0x3e4ccccd ++fblt4 = 0x400, cond = 0x3e4ccccd ++fblt8 = 0x400, cond = 0x3e4ccccd ++fblt12 = 0x400, cond = 0x3e4ccccd ++fblt0 = 0x400, cond = 0xbe4ccccd ++fblt4 = 0x400, cond = 0xbe4ccccd ++fblt8 = 0x400, cond = 0xbe4ccccd ++fblt12 = 0x400, cond = 0xbe4ccccd ++fblt0 = 0x400, cond = 0x40400000 ++fblt4 = 0x400, cond = 0x40400000 ++fblt8 = 0x400, cond = 0x40400000 ++fblt12 = 0x400, cond = 0x40400000 ++fblt0 = 0x400, cond = 0xc0400000 ++fblt4 = 0x400, cond = 0xc0400000 ++fblt8 = 0x400, cond = 0xc0400000 ++fblt12 = 0x400, cond = 0xc0400000 ++fblt0 = 0x400, cond = 0x40a00000 ++fblt4 = 0x400, cond = 0x40a00000 ++fblt8 = 0x400, cond = 0x40a00000 ++fblt12 = 0x400, cond = 0x40a00000 ++fblt0 = 0x400, cond = 0xc0a00000 ++fblt4 = 0x400, cond = 0xc0a00000 ++fblt8 = 0x400, cond = 0xc0a00000 ++fblt12 = 0x400, cond = 0xc0a00000 ++fblt0 = 0x400, cond = 0x4cbebc20 ++fblt4 = 0x400, cond = 0x4cbebc20 ++fblt8 = 0x400, cond = 0x4cbebc20 ++fblt12 = 0x400, cond = 0x4cbebc20 ++fblt0 = 0x400, cond = 0xccbebc20 ++fblt4 = 0x400, cond = 0xccbebc20 ++fblt8 = 0x400, cond = 0xccbebc20 ++fblt12 = 0x400, cond = 0xccbebc20 ++fblt0 = 0x400, cond = 0x3ff0000000000000 ++fblt4 = 0x400, cond = 0x3ff0000000000000 ++fblt8 = 0x400, cond = 0x3ff0000000000000 ++fblt12 = 0x400, cond = 0x3ff0000000000000 ++fblt0 = 0x400, cond = 0xbff0000000000000 ++fblt4 = 0x3ff, cond = 0xbff0000000000000 ++fblt8 = 0x3fe, cond = 0xbff0000000000000 ++fblt12 = 0x3fd, cond = 0xbff0000000000000 ++fblt0 = 0x400, cond = 0x3fb999999999999a ++fblt4 = 0x400, cond = 0x3fb999999999999a ++fblt8 = 0x400, cond = 0x3fb999999999999a ++fblt12 = 0x400, cond = 0x3fb999999999999a ++fblt0 = 0x400, cond = 0xbfb999999999999a ++fblt4 = 0x3ff, cond = 0xbfb999999999999a ++fblt8 = 0x3fe, cond = 0xbfb999999999999a ++fblt12 = 0x3fd, cond = 0xbfb999999999999a ++fblt0 = 0x400, cond = 0x3fc999999999999a ++fblt4 = 0x400, cond = 0x3fc999999999999a ++fblt8 = 0x400, cond = 0x3fc999999999999a ++fblt12 = 0x400, cond = 0x3fc999999999999a ++fblt0 = 0x400, cond = 0xbfc999999999999a ++fblt4 = 0x3ff, cond = 0xbfc999999999999a ++fblt8 = 0x3fe, cond = 0xbfc999999999999a ++fblt12 = 0x3fd, cond = 0xbfc999999999999a ++=== Running test on fble=== ++fble0 = 0x400, cond = 0x0 ++fble4 = 0x3ff, cond = 0x0 ++fble8 = 0x3fe, cond = 0x0 ++fble12 = 0x3fd, cond = 0x0 ++fble0 = 0x400, cond = 0x8000000000000000 ++fble4 = 0x3ff, cond = 0x8000000000000000 ++fble8 = 0x3fe, cond = 0x8000000000000000 ++fble12 = 0x3fd, cond = 0x8000000000000000 ++fble0 = 0x400, cond = 0xf0debc9a78563412 ++fble4 = 0x3ff, cond = 0xf0debc9a78563412 ++fble8 = 0x3fe, cond = 0xf0debc9a78563412 ++fble12 = 0x3fd, cond = 0xf0debc9a78563412 ++fble0 = 0x400, cond = 0x123456789abcdef0 ++fble4 = 0x400, cond = 0x123456789abcdef0 ++fble8 = 0x400, cond = 0x123456789abcdef0 ++fble12 = 0x400, cond = 0x123456789abcdef0 ++fble0 = 0x400, cond = 0x3f800000 ++fble4 = 0x400, cond = 0x3f800000 ++fble8 = 0x400, cond = 0x3f800000 ++fble12 = 0x400, cond = 0x3f800000 ++fble0 = 0x400, cond = 0xbf800000 ++fble4 = 0x400, cond = 0xbf800000 ++fble8 = 0x400, cond = 0xbf800000 ++fble12 = 0x400, cond = 0xbf800000 ++fble0 = 0x400, cond = 0x3dcccccd ++fble4 = 0x400, cond = 0x3dcccccd ++fble8 = 0x400, cond = 0x3dcccccd ++fble12 = 0x400, cond = 0x3dcccccd ++fble0 = 0x400, cond = 0xbdcccccd ++fble4 = 0x400, cond = 0xbdcccccd ++fble8 = 0x400, cond = 0xbdcccccd ++fble12 = 0x400, cond = 0xbdcccccd ++fble0 = 0x400, cond = 0x3e4ccccd ++fble4 = 0x400, cond = 0x3e4ccccd ++fble8 = 0x400, cond = 0x3e4ccccd ++fble12 = 0x400, cond = 0x3e4ccccd ++fble0 = 0x400, cond = 0xbe4ccccd ++fble4 = 0x400, cond = 0xbe4ccccd ++fble8 = 0x400, cond = 0xbe4ccccd ++fble12 = 0x400, cond = 0xbe4ccccd ++fble0 = 0x400, cond = 0x40400000 ++fble4 = 0x400, cond = 0x40400000 ++fble8 = 0x400, cond = 0x40400000 ++fble12 = 0x400, cond = 0x40400000 ++fble0 = 0x400, cond = 0xc0400000 ++fble4 = 0x400, cond = 0xc0400000 ++fble8 = 0x400, cond = 0xc0400000 ++fble12 = 0x400, cond = 0xc0400000 ++fble0 = 0x400, cond = 0x40a00000 ++fble4 = 0x400, cond = 0x40a00000 ++fble8 = 0x400, cond = 0x40a00000 ++fble12 = 0x400, cond = 0x40a00000 ++fble0 = 0x400, cond = 0xc0a00000 ++fble4 = 0x400, cond = 0xc0a00000 ++fble8 = 0x400, cond = 0xc0a00000 ++fble12 = 0x400, cond = 0xc0a00000 ++fble0 = 0x400, cond = 0x4cbebc20 ++fble4 = 0x400, cond = 0x4cbebc20 ++fble8 = 0x400, cond = 0x4cbebc20 ++fble12 = 0x400, cond = 0x4cbebc20 ++fble0 = 0x400, cond = 0xccbebc20 ++fble4 = 0x400, cond = 0xccbebc20 ++fble8 = 0x400, cond = 0xccbebc20 ++fble12 = 0x400, cond = 0xccbebc20 ++fble0 = 0x400, cond = 0x3ff0000000000000 ++fble4 = 0x400, cond = 0x3ff0000000000000 ++fble8 = 0x400, cond = 0x3ff0000000000000 ++fble12 = 0x400, cond = 0x3ff0000000000000 ++fble0 = 0x400, cond = 0xbff0000000000000 ++fble4 = 0x3ff, cond = 0xbff0000000000000 ++fble8 = 0x3fe, cond = 0xbff0000000000000 ++fble12 = 0x3fd, cond = 0xbff0000000000000 ++fble0 = 0x400, cond = 0x3fb999999999999a ++fble4 = 0x400, cond = 0x3fb999999999999a ++fble8 = 0x400, cond = 0x3fb999999999999a ++fble12 = 0x400, cond = 0x3fb999999999999a ++fble0 = 0x400, cond = 0xbfb999999999999a ++fble4 = 0x3ff, cond = 0xbfb999999999999a ++fble8 = 0x3fe, cond = 0xbfb999999999999a ++fble12 = 0x3fd, cond = 0xbfb999999999999a ++fble0 = 0x400, cond = 0x3fc999999999999a ++fble4 = 0x400, cond = 0x3fc999999999999a ++fble8 = 0x400, cond = 0x3fc999999999999a ++fble12 = 0x400, cond = 0x3fc999999999999a ++fble0 = 0x400, cond = 0xbfc999999999999a ++fble4 = 0x3ff, cond = 0xbfc999999999999a ++fble8 = 0x3fe, cond = 0xbfc999999999999a ++fble12 = 0x3fd, cond = 0xbfc999999999999a ++=== Running test on fbgt=== ++fbgt0 = 0x400, cond = 0x0 ++fbgt4 = 0x400, cond = 0x0 ++fbgt8 = 0x400, cond = 0x0 ++fbgt12 = 0x400, cond = 0x0 ++fbgt0 = 0x400, cond = 0x8000000000000000 ++fbgt4 = 0x400, cond = 0x8000000000000000 ++fbgt8 = 0x400, cond = 0x8000000000000000 ++fbgt12 = 0x400, cond = 0x8000000000000000 ++fbgt0 = 0x400, cond = 0xf0debc9a78563412 ++fbgt4 = 0x400, cond = 0xf0debc9a78563412 ++fbgt8 = 0x400, cond = 0xf0debc9a78563412 ++fbgt12 = 0x400, cond = 0xf0debc9a78563412 ++fbgt0 = 0x400, cond = 0x123456789abcdef0 ++fbgt4 = 0x3ff, cond = 0x123456789abcdef0 ++fbgt8 = 0x3fe, cond = 0x123456789abcdef0 ++fbgt12 = 0x3fd, cond = 0x123456789abcdef0 ++fbgt0 = 0x400, cond = 0x3f800000 ++fbgt4 = 0x3ff, cond = 0x3f800000 ++fbgt8 = 0x3fe, cond = 0x3f800000 ++fbgt12 = 0x3fd, cond = 0x3f800000 ++fbgt0 = 0x400, cond = 0xbf800000 ++fbgt4 = 0x3ff, cond = 0xbf800000 ++fbgt8 = 0x3fe, cond = 0xbf800000 ++fbgt12 = 0x3fd, cond = 0xbf800000 ++fbgt0 = 0x400, cond = 0x3dcccccd ++fbgt4 = 0x3ff, cond = 0x3dcccccd ++fbgt8 = 0x3fe, cond = 0x3dcccccd ++fbgt12 = 0x3fd, cond = 0x3dcccccd ++fbgt0 = 0x400, cond = 0xbdcccccd ++fbgt4 = 0x3ff, cond = 0xbdcccccd ++fbgt8 = 0x3fe, cond = 0xbdcccccd ++fbgt12 = 0x3fd, cond = 0xbdcccccd ++fbgt0 = 0x400, cond = 0x3e4ccccd ++fbgt4 = 0x3ff, cond = 0x3e4ccccd ++fbgt8 = 0x3fe, cond = 0x3e4ccccd ++fbgt12 = 0x3fd, cond = 0x3e4ccccd ++fbgt0 = 0x400, cond = 0xbe4ccccd ++fbgt4 = 0x3ff, cond = 0xbe4ccccd ++fbgt8 = 0x3fe, cond = 0xbe4ccccd ++fbgt12 = 0x3fd, cond = 0xbe4ccccd ++fbgt0 = 0x400, cond = 0x40400000 ++fbgt4 = 0x3ff, cond = 0x40400000 ++fbgt8 = 0x3fe, cond = 0x40400000 ++fbgt12 = 0x3fd, cond = 0x40400000 ++fbgt0 = 0x400, cond = 0xc0400000 ++fbgt4 = 0x3ff, cond = 0xc0400000 ++fbgt8 = 0x3fe, cond = 0xc0400000 ++fbgt12 = 0x3fd, cond = 0xc0400000 ++fbgt0 = 0x400, cond = 0x40a00000 ++fbgt4 = 0x3ff, cond = 0x40a00000 ++fbgt8 = 0x3fe, cond = 0x40a00000 ++fbgt12 = 0x3fd, cond = 0x40a00000 ++fbgt0 = 0x400, cond = 0xc0a00000 ++fbgt4 = 0x3ff, cond = 0xc0a00000 ++fbgt8 = 0x3fe, cond = 0xc0a00000 ++fbgt12 = 0x3fd, cond = 0xc0a00000 ++fbgt0 = 0x400, cond = 0x4cbebc20 ++fbgt4 = 0x3ff, cond = 0x4cbebc20 ++fbgt8 = 0x3fe, cond = 0x4cbebc20 ++fbgt12 = 0x3fd, cond = 0x4cbebc20 ++fbgt0 = 0x400, cond = 0xccbebc20 ++fbgt4 = 0x3ff, cond = 0xccbebc20 ++fbgt8 = 0x3fe, cond = 0xccbebc20 ++fbgt12 = 0x3fd, cond = 0xccbebc20 ++fbgt0 = 0x400, cond = 0x3ff0000000000000 ++fbgt4 = 0x3ff, cond = 0x3ff0000000000000 ++fbgt8 = 0x3fe, cond = 0x3ff0000000000000 ++fbgt12 = 0x3fd, cond = 0x3ff0000000000000 ++fbgt0 = 0x400, cond = 0xbff0000000000000 ++fbgt4 = 0x400, cond = 0xbff0000000000000 ++fbgt8 = 0x400, cond = 0xbff0000000000000 ++fbgt12 = 0x400, cond = 0xbff0000000000000 ++fbgt0 = 0x400, cond = 0x3fb999999999999a ++fbgt4 = 0x3ff, cond = 0x3fb999999999999a ++fbgt8 = 0x3fe, cond = 0x3fb999999999999a ++fbgt12 = 0x3fd, cond = 0x3fb999999999999a ++fbgt0 = 0x400, cond = 0xbfb999999999999a ++fbgt4 = 0x400, cond = 0xbfb999999999999a ++fbgt8 = 0x400, cond = 0xbfb999999999999a ++fbgt12 = 0x400, cond = 0xbfb999999999999a ++fbgt0 = 0x400, cond = 0x3fc999999999999a ++fbgt4 = 0x3ff, cond = 0x3fc999999999999a ++fbgt8 = 0x3fe, cond = 0x3fc999999999999a ++fbgt12 = 0x3fd, cond = 0x3fc999999999999a ++fbgt0 = 0x400, cond = 0xbfc999999999999a ++fbgt4 = 0x400, cond = 0xbfc999999999999a ++fbgt8 = 0x400, cond = 0xbfc999999999999a ++fbgt12 = 0x400, cond = 0xbfc999999999999a ++=== Running test on fbge=== ++fbge0 = 0x400, cond = 0x0 ++fbge4 = 0x3ff, cond = 0x0 ++fbge8 = 0x3fe, cond = 0x0 ++fbge12 = 0x3fd, cond = 0x0 ++fbge0 = 0x400, cond = 0x8000000000000000 ++fbge4 = 0x3ff, cond = 0x8000000000000000 ++fbge8 = 0x3fe, cond = 0x8000000000000000 ++fbge12 = 0x3fd, cond = 0x8000000000000000 ++fbge0 = 0x400, cond = 0xf0debc9a78563412 ++fbge4 = 0x400, cond = 0xf0debc9a78563412 ++fbge8 = 0x400, cond = 0xf0debc9a78563412 ++fbge12 = 0x400, cond = 0xf0debc9a78563412 ++fbge0 = 0x400, cond = 0x123456789abcdef0 ++fbge4 = 0x3ff, cond = 0x123456789abcdef0 ++fbge8 = 0x3fe, cond = 0x123456789abcdef0 ++fbge12 = 0x3fd, cond = 0x123456789abcdef0 ++fbge0 = 0x400, cond = 0x3f800000 ++fbge4 = 0x3ff, cond = 0x3f800000 ++fbge8 = 0x3fe, cond = 0x3f800000 ++fbge12 = 0x3fd, cond = 0x3f800000 ++fbge0 = 0x400, cond = 0xbf800000 ++fbge4 = 0x3ff, cond = 0xbf800000 ++fbge8 = 0x3fe, cond = 0xbf800000 ++fbge12 = 0x3fd, cond = 0xbf800000 ++fbge0 = 0x400, cond = 0x3dcccccd ++fbge4 = 0x3ff, cond = 0x3dcccccd ++fbge8 = 0x3fe, cond = 0x3dcccccd ++fbge12 = 0x3fd, cond = 0x3dcccccd ++fbge0 = 0x400, cond = 0xbdcccccd ++fbge4 = 0x3ff, cond = 0xbdcccccd ++fbge8 = 0x3fe, cond = 0xbdcccccd ++fbge12 = 0x3fd, cond = 0xbdcccccd ++fbge0 = 0x400, cond = 0x3e4ccccd ++fbge4 = 0x3ff, cond = 0x3e4ccccd ++fbge8 = 0x3fe, cond = 0x3e4ccccd ++fbge12 = 0x3fd, cond = 0x3e4ccccd ++fbge0 = 0x400, cond = 0xbe4ccccd ++fbge4 = 0x3ff, cond = 0xbe4ccccd ++fbge8 = 0x3fe, cond = 0xbe4ccccd ++fbge12 = 0x3fd, cond = 0xbe4ccccd ++fbge0 = 0x400, cond = 0x40400000 ++fbge4 = 0x3ff, cond = 0x40400000 ++fbge8 = 0x3fe, cond = 0x40400000 ++fbge12 = 0x3fd, cond = 0x40400000 ++fbge0 = 0x400, cond = 0xc0400000 ++fbge4 = 0x3ff, cond = 0xc0400000 ++fbge8 = 0x3fe, cond = 0xc0400000 ++fbge12 = 0x3fd, cond = 0xc0400000 ++fbge0 = 0x400, cond = 0x40a00000 ++fbge4 = 0x3ff, cond = 0x40a00000 ++fbge8 = 0x3fe, cond = 0x40a00000 ++fbge12 = 0x3fd, cond = 0x40a00000 ++fbge0 = 0x400, cond = 0xc0a00000 ++fbge4 = 0x3ff, cond = 0xc0a00000 ++fbge8 = 0x3fe, cond = 0xc0a00000 ++fbge12 = 0x3fd, cond = 0xc0a00000 ++fbge0 = 0x400, cond = 0x4cbebc20 ++fbge4 = 0x3ff, cond = 0x4cbebc20 ++fbge8 = 0x3fe, cond = 0x4cbebc20 ++fbge12 = 0x3fd, cond = 0x4cbebc20 ++fbge0 = 0x400, cond = 0xccbebc20 ++fbge4 = 0x3ff, cond = 0xccbebc20 ++fbge8 = 0x3fe, cond = 0xccbebc20 ++fbge12 = 0x3fd, cond = 0xccbebc20 ++fbge0 = 0x400, cond = 0x3ff0000000000000 ++fbge4 = 0x3ff, cond = 0x3ff0000000000000 ++fbge8 = 0x3fe, cond = 0x3ff0000000000000 ++fbge12 = 0x3fd, cond = 0x3ff0000000000000 ++fbge0 = 0x400, cond = 0xbff0000000000000 ++fbge4 = 0x400, cond = 0xbff0000000000000 ++fbge8 = 0x400, cond = 0xbff0000000000000 ++fbge12 = 0x400, cond = 0xbff0000000000000 ++fbge0 = 0x400, cond = 0x3fb999999999999a ++fbge4 = 0x3ff, cond = 0x3fb999999999999a ++fbge8 = 0x3fe, cond = 0x3fb999999999999a ++fbge12 = 0x3fd, cond = 0x3fb999999999999a ++fbge0 = 0x400, cond = 0xbfb999999999999a ++fbge4 = 0x400, cond = 0xbfb999999999999a ++fbge8 = 0x400, cond = 0xbfb999999999999a ++fbge12 = 0x400, cond = 0xbfb999999999999a ++fbge0 = 0x400, cond = 0x3fc999999999999a ++fbge4 = 0x3ff, cond = 0x3fc999999999999a ++fbge8 = 0x3fe, cond = 0x3fc999999999999a ++fbge12 = 0x3fd, cond = 0x3fc999999999999a ++fbge0 = 0x400, cond = 0xbfc999999999999a ++fbge4 = 0x400, cond = 0xbfc999999999999a ++fbge8 = 0x400, cond = 0xbfc999999999999a ++fbge12 = 0x400, cond = 0xbfc999999999999a +diff --git a/none/tests/sw64/branch.vgtest b/none/tests/sw64/branch.vgtest +new file mode 100644 +index 000000000..535c05590 +--- /dev/null ++++ b/none/tests/sw64/branch.vgtest +@@ -0,0 +1,2 @@ ++prog: branch ++vgopts: -q +diff --git a/none/tests/sw64/common-sw64-standalone.h b/none/tests/sw64/common-sw64-standalone.h +new file mode 100644 +index 000000000..6ffc2890e +--- /dev/null ++++ b/none/tests/sw64/common-sw64-standalone.h +@@ -0,0 +1,165 @@ ++typedef union { ++ unsigned long hex; ++ long l; ++ double d; ++} un; ++ ++static const un case_f64[] = { ++ (un){.hex = 0}, /* +0 */ ++ (un){.hex = 0x8000000000000000ULL }, /* -0 */ ++ (un){.hex = 0xf0debc9a78563412ULL }, ++ (un){.hex = 0x123456789abcdef0ULL }, ++ (un){.d = 1.45 }, ++ (un){.d = 1.50 }, ++ (un){.d = 1.55 }, ++ (un){.d = 2.45 }, ++ (un){.d = 2.50 }, ++ (un){.d = 2.55 }, ++ (un){.d = -1.50 }, ++ (un){.d = -2.50 }, ++ (un){.d = 1}, ++ (un){.d = -1}, ++ (un){.d = 0.1}, ++ (un){.d = -0.1}, ++ (un){.d = 0.2}, ++ (un){.d = -0.2}, ++ (un){.d = 3}, ++ (un){.d = -3}, ++ (un){.d = 5}, ++ (un){.d = -5}, ++ (un){.d = 100000000}, ++ (un){.d = -100000000}, ++}; ++static const int num_f64 = sizeof(case_f64) / sizeof(*case_f64); ++ ++static const un case_f32[] = { ++ (un){.hex = 0}, /* +0 */ ++ (un){.hex = 0x8000000000000000ULL }, /* -0 */ ++ (un){.d = (float)1.45 }, ++ (un){.d = (float)1.50 }, ++ (un){.d = (float)1.55 }, ++ (un){.d = (float)2.45 }, ++ (un){.d = (float)2.50 }, ++ (un){.d = (float)2.55 }, ++ (un){.d = (float)-1.50 }, ++ (un){.d = (float)-2.50 }, ++ (un){.d = (float)1}, ++ (un){.d = (float)-1}, ++ (un){.d = (float)0.1}, ++ (un){.d = (float)-0.1}, ++ (un){.d = (float)0.2}, ++ (un){.d = (float)-0.2}, ++ (un){.d = (float)3}, ++ (un){.d = (float)-3}, ++ (un){.d = (float)5}, ++ (un){.d = (float)-5}, ++ (un){.d = (float)100000000}, ++ (un){.d = (float)-100000000}, ++}; ++static const int num_f32 = sizeof(case_f32) / sizeof(*case_f32); ++ ++static const un case_i64[] = { ++ (un){ .hex = 0 }, ++ (un){ .hex = 1 }, ++ (un){ .hex = 2 }, ++ (un){ .hex = 3 }, ++ (un){ .hex = 15 }, ++ (un){ .hex = -1 }, ++ (un){ .hex = -2 }, ++ (un){ .hex = -3 }, ++ (un){ .hex = 0x7f }, ++ (un){ .hex = 0x80 }, ++ (un){ .hex = 0x7fff }, ++ (un){ .hex = 0x8000 }, ++ (un){ .hex = 0x7fffffffULL }, ++ (un){ .hex = 0x80000000ULL }, ++ (un){ .hex = 0x8000000000000000ULL }, ++ (un){ .hex = 0xffffffff80000000ULL }, ++ (un){ .hex = 0xffffffffffff8000ULL }, ++ (un){ .hex = 0xffffffffffffff80ULL }, ++ (un){ .hex = 0x7fffffffffffffffULL }, ++ (un){ .hex = 0x123456789abcdef0ULL }, ++ (un){ .hex = 0xf0debc9a78563412ULL }, ++}; ++static const int num_i64 = sizeof(case_i64) / sizeof(*case_i64); ++ ++static long fmt_hex(char *dst, unsigned long x) ++{ ++ unsigned long t; ++ t = (x ) & 0xF; dst[15] = t + (t >= 10 ? 55: 48); ++ t = (x >> 4) & 0xF; dst[14] = t + (t >= 10 ? 55: 48); ++ t = (x >> 8) & 0xF; dst[13] = t + (t >= 10 ? 55: 48); ++ t = (x >> 12) & 0xF; dst[12] = t + (t >= 10 ? 55: 48); ++ t = (x >> 16) & 0xF; dst[11] = t + (t >= 10 ? 55: 48); ++ t = (x >> 20) & 0xF; dst[10] = t + (t >= 10 ? 55: 48); ++ t = (x >> 24) & 0xF; dst[ 9] = t + (t >= 10 ? 55: 48); ++ t = (x >> 28) & 0xF; dst[ 8] = t + (t >= 10 ? 55: 48); ++ t = (x >> 32) & 0xF; dst[ 7] = t + (t >= 10 ? 55: 48); ++ t = (x >> 36) & 0xF; dst[ 6] = t + (t >= 10 ? 55: 48); ++ t = (x >> 40) & 0xF; dst[ 5] = t + (t >= 10 ? 55: 48); ++ t = (x >> 44) & 0xF; dst[ 4] = t + (t >= 10 ? 55: 48); ++ t = (x >> 48) & 0xF; dst[ 3] = t + (t >= 10 ? 55: 48); ++ t = (x >> 52) & 0xF; dst[ 2] = t + (t >= 10 ? 55: 48); ++ t = (x >> 56) & 0xF; dst[ 1] = t + (t >= 10 ? 55: 48); ++ t = (x >> 60) & 0xF; dst[ 0] = t + (t >= 10 ? 55: 48); ++ return 16; ++} ++ ++/* don't print strings larger than 2048 bytes */ ++/* only support %x, %s */ ++static void my_printf(const char *fmt, void const * const args[]) ++{ ++ char buffer[2048]; ++ unsigned long len = 0; ++ ++ for (; *fmt; fmt++) { ++ if (*fmt == '%') { ++ fmt++; ++ if (*fmt == 's') { ++ const char *s = (char const *)(*args); ++ args++; ++ for (; *s; s++) ++ buffer[len++] = *s; ++ continue; ++ } else if (*fmt == 'x') { ++ const volatile long *v = (long const volatile *)(*args); ++ args++; ++ len += fmt_hex(buffer + len, *v); ++ continue; ++ } ++ } ++ buffer[len++] = *fmt; ++ } ++ ++ __asm__ __volatile__ ( ++ " ldi $16, 1\n" ++ " ldi $17, 0(%0)\n" ++ " ldi $18, 0(%1)\n" ++ " ldi $0, 4\n" ++ " sys_call 0x83\n" ++ : ++ : "r"(buffer), "r"(len) ++ : "$16", "$17", "$18", "$0", "memory" ++ ); ++} ++ ++__asm__ ( ++ "\n" ++ ".text\n" ++ ".ent _start\n" ++ ".global _start\n" ++ "_start:\n" ++ " br $gp, 0f\n" ++ "0: ldgp $gp, 0($gp)\n" ++ " ldi $27, main\n" ++ " call $26, ($27), 0\n" ++ " ldi $16, 0($0)\n" ++ " ldi $0, 1\n" ++ " sys_call 0x83\n" ++ "1: halt\n" ++ " br 1b\n" ++ ".end _start\n" ++); ++ ++#define STRINGIFY(x) STRINGIFY2(x) ++#define STRINGIFY2(x) #x +diff --git a/none/tests/sw64/div-by-zero.c b/none/tests/sw64/div-by-zero.c +new file mode 100644 +index 000000000..85e50229e +--- /dev/null ++++ b/none/tests/sw64/div-by-zero.c +@@ -0,0 +1,26 @@ ++#include ++#include ++#include ++ ++static volatile int s_zero = 0; ++ ++void handle_sigfpe(int signo) ++{ ++ signal(SIGFPE, SIG_DFL); ++ puts("OK"); ++ exit(0); ++} ++ ++__attribute__ ((noinline)) static int zero(void) ++{ ++ return s_zero; ++} ++ ++int main(void) { ++ signal(SIGFPE, &handle_sigfpe); ++ ++ volatile int v = 42 / zero(); ++ printf("42 / 0 = %d ???\n", v); ++ puts("FAILED"); ++ return 0; ++} +diff --git a/none/tests/sw64/div-by-zero.stderr.exp b/none/tests/sw64/div-by-zero.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/div-by-zero.stdout.exp b/none/tests/sw64/div-by-zero.stdout.exp +new file mode 100644 +index 000000000..d86bac9de +--- /dev/null ++++ b/none/tests/sw64/div-by-zero.stdout.exp +@@ -0,0 +1 @@ ++OK +diff --git a/none/tests/sw64/div-by-zero.vgtest b/none/tests/sw64/div-by-zero.vgtest +new file mode 100644 +index 000000000..004c8255e +--- /dev/null ++++ b/none/tests/sw64/div-by-zero.vgtest +@@ -0,0 +1,2 @@ ++prog: div-by-zero ++vgopts: -q +diff --git a/none/tests/sw64/filter_stderr b/none/tests/sw64/filter_stderr +new file mode 100755 +index 000000000..616ce05e1 +--- /dev/null ++++ b/none/tests/sw64/filter_stderr +@@ -0,0 +1,4 @@ ++#! /bin/sh ++ ++../filter_stderr ++ +diff --git a/none/tests/sw64/loadstore-fp.c b/none/tests/sw64/loadstore-fp.c +new file mode 100644 +index 000000000..531843d5f +--- /dev/null ++++ b/none/tests/sw64/loadstore-fp.c +@@ -0,0 +1,119 @@ ++#include ++#include ++ ++typedef union { ++ long l; ++ float f; ++ double d; ++} un; ++ ++un cases[] = { ++ (un){.l = 0}, ++ (un){.l = 0x8000000000000000ULL }, ++ (un){.l = 0xf0debc9a78563412ULL }, ++ (un){.l = 0x123456789abcdef0ULL }, ++ (un){.f = 1}, ++ (un){.f = -1}, ++ (un){.f = 0.1}, ++ (un){.f = -0.1}, ++ (un){.f = 0.2}, ++ (un){.f = -0.2}, ++ (un){.f = 3}, ++ (un){.f = -3}, ++ (un){.f = 5}, ++ (un){.f = -5}, ++ (un){.f = 100000000}, ++ (un){.f = -100000000}, ++ (un){.d = 1}, ++ (un){.d = -1}, ++ (un){.d = 0.1}, ++ (un){.d = -0.1}, ++ (un){.d = 0.2}, ++ (un){.d = -0.2}, ++ (un){.d = 3}, ++ (un){.d = -3}, ++ (un){.d = 5}, ++ (un){.d = -5}, ++ (un){.d = 100000000}, ++ (un){.d = -100000000}, ++}; ++const int ncases = sizeof(cases) / sizeof(*cases); ++ ++long test_fp_fldd(long *src) { ++ long ret; ++ __asm__ volatile ( ++ ".set noreorder\n" ++ "fldd $f10, 0(%1)\n" ++ "fimovd $f10, %0\n" ++ : "=r"(ret) ++ : "r"(src) ++ : "$f10", "memory" ++ ); ++ return ret; ++} ++ ++long test_fp_flds(long *src) { ++ long ret; ++ __asm__ volatile ( ++ ".set noreorder\n" ++ "flds $f10, 0(%1)\n" ++ "fimovd $f10, %0\n" ++ : "=r"(ret) ++ : "r"(src) ++ : "$f10", "memory" ++ ); ++ return ret; ++} ++ ++void test_fp_fstd(long *dst, long val) { ++ __asm__ volatile ( ++ ".set noreorder\n" ++ "ifmovd %1, $f10\n" ++ "fstd $f10, 0(%0)\n" ++ : ++ : "r"(dst), "r"(val) ++ : "$f10", "memory" ++ ); ++} ++ ++void test_fp_fsts(long *dst, long val) { ++ __asm__ volatile ( ++ ".set noreorder\n" ++ "ifmovd %1, $f10\n" ++ "fsts $f10, 0(%0)\n" ++ : ++ : "r"(dst), "r"(val) ++ : "$f10", "memory" ++ ); ++} ++ ++int main(void) ++{ ++ puts("=== Running test on fldd==="); ++ for (int i = 0; i < ncases; i++) { ++ long r = test_fp_fldd(&cases[i].l); ++ printf("fldd 0x%lx = 0x%lx\n", cases[i].l, r); ++ } ++ ++ puts("=== Running test on flds==="); ++ for (int i = 0; i < ncases; i++) { ++ long r = test_fp_flds(&cases[i].l); ++ printf("flds 0x%lx = 0x%lx\n", cases[i].l, r); ++ } ++ ++ puts("=== Running test on fstd==="); ++ for (int i = 0; i < ncases; i++) { ++ long dst = 0; ++ test_fp_fstd(&dst, cases[i].l); ++ printf("fstd 0x%lx = 0x%lx\n", cases[i].l, dst); ++ } ++ ++ puts("=== Running test on fsts==="); ++ for (int i = 0; i < ncases; i++) { ++ long dst = 0; ++ test_fp_fsts(&dst, cases[i].l); ++ printf("fsts 0x%lx = 0x%lx\n", cases[i].l, dst); ++ } ++ ++ return 0; ++} +diff --git a/none/tests/sw64/loadstore-fp.stderr.exp b/none/tests/sw64/loadstore-fp.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/loadstore-fp.stdout.exp b/none/tests/sw64/loadstore-fp.stdout.exp +new file mode 100644 +index 000000000..563ce078a +--- /dev/null ++++ b/none/tests/sw64/loadstore-fp.stdout.exp +@@ -0,0 +1,116 @@ ++=== Running test on fldd=== ++fldd 0x0 = 0x0 ++fldd 0x8000000000000000 = 0x8000000000000000 ++fldd 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fldd 0x123456789abcdef0 = 0x123456789abcdef0 ++fldd 0x3f800000 = 0x3f800000 ++fldd 0xbf800000 = 0xbf800000 ++fldd 0x3dcccccd = 0x3dcccccd ++fldd 0xbdcccccd = 0xbdcccccd ++fldd 0x3e4ccccd = 0x3e4ccccd ++fldd 0xbe4ccccd = 0xbe4ccccd ++fldd 0x40400000 = 0x40400000 ++fldd 0xc0400000 = 0xc0400000 ++fldd 0x40a00000 = 0x40a00000 ++fldd 0xc0a00000 = 0xc0a00000 ++fldd 0x4cbebc20 = 0x4cbebc20 ++fldd 0xccbebc20 = 0xccbebc20 ++fldd 0x3ff0000000000000 = 0x3ff0000000000000 ++fldd 0xbff0000000000000 = 0xbff0000000000000 ++fldd 0x3fb999999999999a = 0x3fb999999999999a ++fldd 0xbfb999999999999a = 0xbfb999999999999a ++fldd 0x3fc999999999999a = 0x3fc999999999999a ++fldd 0xbfc999999999999a = 0xbfc999999999999a ++fldd 0x4008000000000000 = 0x4008000000000000 ++fldd 0xc008000000000000 = 0xc008000000000000 ++fldd 0x4014000000000000 = 0x4014000000000000 ++fldd 0xc014000000000000 = 0xc014000000000000 ++fldd 0x4197d78400000000 = 0x4197d78400000000 ++fldd 0xc197d78400000000 = 0xc197d78400000000 ++=== Running test on flds=== ++flds 0x0 = 0x0 ++flds 0x8000000000000000 = 0x0 ++flds 0xf0debc9a78563412 = 0x470ac68240000000 ++flds 0x123456789abcdef0 = 0xbb579bde00000000 ++flds 0x3f800000 = 0x3ff0000000000000 ++flds 0xbf800000 = 0xbff0000000000000 ++flds 0x3dcccccd = 0x3fb99999a0000000 ++flds 0xbdcccccd = 0xbfb99999a0000000 ++flds 0x3e4ccccd = 0x3fc99999a0000000 ++flds 0xbe4ccccd = 0xbfc99999a0000000 ++flds 0x40400000 = 0x4008000000000000 ++flds 0xc0400000 = 0xc008000000000000 ++flds 0x40a00000 = 0x4014000000000000 ++flds 0xc0a00000 = 0xc014000000000000 ++flds 0x4cbebc20 = 0x4197d78400000000 ++flds 0xccbebc20 = 0xc197d78400000000 ++flds 0x3ff0000000000000 = 0x0 ++flds 0xbff0000000000000 = 0x0 ++flds 0x3fb999999999999a = 0xbb33333340000000 ++flds 0xbfb999999999999a = 0xbb33333340000000 ++flds 0x3fc999999999999a = 0xbb33333340000000 ++flds 0xbfc999999999999a = 0xbb33333340000000 ++flds 0x4008000000000000 = 0x0 ++flds 0xc008000000000000 = 0x0 ++flds 0x4014000000000000 = 0x0 ++flds 0xc014000000000000 = 0x0 ++flds 0x4197d78400000000 = 0x0 ++flds 0xc197d78400000000 = 0x0 ++=== Running test on fstd=== ++fstd 0x0 = 0x0 ++fstd 0x8000000000000000 = 0x8000000000000000 ++fstd 0xf0debc9a78563412 = 0xf0debc9a78563412 ++fstd 0x123456789abcdef0 = 0x123456789abcdef0 ++fstd 0x3f800000 = 0x3f800000 ++fstd 0xbf800000 = 0xbf800000 ++fstd 0x3dcccccd = 0x3dcccccd ++fstd 0xbdcccccd = 0xbdcccccd ++fstd 0x3e4ccccd = 0x3e4ccccd ++fstd 0xbe4ccccd = 0xbe4ccccd ++fstd 0x40400000 = 0x40400000 ++fstd 0xc0400000 = 0xc0400000 ++fstd 0x40a00000 = 0x40a00000 ++fstd 0xc0a00000 = 0xc0a00000 ++fstd 0x4cbebc20 = 0x4cbebc20 ++fstd 0xccbebc20 = 0xccbebc20 ++fstd 0x3ff0000000000000 = 0x3ff0000000000000 ++fstd 0xbff0000000000000 = 0xbff0000000000000 ++fstd 0x3fb999999999999a = 0x3fb999999999999a ++fstd 0xbfb999999999999a = 0xbfb999999999999a ++fstd 0x3fc999999999999a = 0x3fc999999999999a ++fstd 0xbfc999999999999a = 0xbfc999999999999a ++fstd 0x4008000000000000 = 0x4008000000000000 ++fstd 0xc008000000000000 = 0xc008000000000000 ++fstd 0x4014000000000000 = 0x4014000000000000 ++fstd 0xc014000000000000 = 0xc014000000000000 ++fstd 0x4197d78400000000 = 0x4197d78400000000 ++fstd 0xc197d78400000000 = 0xc197d78400000000 ++=== Running test on fsts=== ++fsts 0x0 = 0x0 ++fsts 0x8000000000000000 = 0x80000000 ++fsts 0xf0debc9a78563412 = 0xc6f5e4d3 ++fsts 0x123456789abcdef0 = 0x11a2b3c4 ++fsts 0x3f800000 = 0x1 ++fsts 0xbf800000 = 0x5 ++fsts 0x3dcccccd = 0x1 ++fsts 0xbdcccccd = 0x5 ++fsts 0x3e4ccccd = 0x1 ++fsts 0xbe4ccccd = 0x5 ++fsts 0x40400000 = 0x2 ++fsts 0xc0400000 = 0x6 ++fsts 0x40a00000 = 0x2 ++fsts 0xc0a00000 = 0x6 ++fsts 0x4cbebc20 = 0x2 ++fsts 0xccbebc20 = 0x6 ++fsts 0x3ff0000000000000 = 0x3f800000 ++fsts 0xbff0000000000000 = 0xbf800000 ++fsts 0x3fb999999999999a = 0x3dcccccc ++fsts 0xbfb999999999999a = 0xbdcccccc ++fsts 0x3fc999999999999a = 0x3e4ccccc ++fsts 0xbfc999999999999a = 0xbe4ccccc ++fsts 0x4008000000000000 = 0x40400000 ++fsts 0xc008000000000000 = 0xc0400000 ++fsts 0x4014000000000000 = 0x40a00000 ++fsts 0xc014000000000000 = 0xc0a00000 ++fsts 0x4197d78400000000 = 0x4cbebc20 ++fsts 0xc197d78400000000 = 0xccbebc20 +diff --git a/none/tests/sw64/loadstore-fp.vgtest b/none/tests/sw64/loadstore-fp.vgtest +new file mode 100644 +index 000000000..1511efad6 +--- /dev/null ++++ b/none/tests/sw64/loadstore-fp.vgtest +@@ -0,0 +1,2 @@ ++prog: loadstore-fp ++vgopts: -q +diff --git a/none/tests/sw64/loadstore-lock.c b/none/tests/sw64/loadstore-lock.c +new file mode 100644 +index 000000000..c45229c0b +--- /dev/null ++++ b/none/tests/sw64/loadstore-lock.c +@@ -0,0 +1,126 @@ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++__attribute__((noinline)) int test1(int *val, int *start) ++{ ++ while (__atomic_load_n(start, __ATOMIC_SEQ_CST) == 0); ++ for (int i = 0; i < 1000000; i++) { ++ __asm__ __volatile__ ( ++ "0: \n" ++ " lldw $1, 0(%0) \n" ++ " ldi $2, 1 \n" ++ " wr_f $2 \n" ++ " addw $1, 1, $1 \n" ++ " lstw $1, 0(%0) \n" ++ " rd_f $1 \n" ++ " beq $1, 0b \n" ++ : ++ : "r"(val) ++ : "$1", "$2", "memory" ++ ); ++ } ++ return 0; ++} ++ ++__attribute__((noinline)) int test2_odd(int *val, int *start) ++{ ++ while (__atomic_load_n(start, __ATOMIC_SEQ_CST) == 0); ++ for (int i = 0; i < 1000000; i++) { ++ __asm__ __volatile__ ( ++ "0: \n" ++ " lldw $1, 0(%0) \n" ++ " sellbc $1, 1, $31, $2 \n" ++ " wr_f $2 \n" ++ " addw $1, 1, $1 \n" ++ " lstw $1, 0(%0) \n" ++ " rd_f $1 \n" ++ " beq $1, 0b \n" ++ : ++ : "r"(val) ++ : "$1", "$2", "memory" ++ ); ++ } ++ return 0; ++} ++ ++int test2_even(int *val, int *start) ++{ ++ while (__atomic_load_n(start, __ATOMIC_SEQ_CST) == 0); ++ for (int i = 0; i < 1000000; i++) { ++ __asm__ __volatile__ ( ++ "0: \n" ++ " lldw $1, 0(%0) \n" ++ " sellbs $1, 1, $31, $2 \n" ++ " wr_f $2 \n" ++ " addw $1, 1, $1 \n" ++ " lstw $1, 0(%0) \n" ++ " rd_f $1 \n" ++ " beq $1, 0b \n" ++ : ++ : "r"(val) ++ : "$1", "$2", "memory" ++ ); ++ } ++ return 0; ++} ++ ++void* getshm(size_t size) ++{ ++ int prot = PROT_READ | PROT_WRITE; ++ int flags = MAP_SHARED | MAP_ANONYMOUS; ++ void *ret = mmap(NULL, size, prot, flags, -1, 0); ++ if (ret == MAP_FAILED) ++ abort(); ++ return ret; ++} ++ ++int main(void) { ++ int *shm = getshm(2 * sizeof(unsigned)); ++ int *val = shm + 0; ++ int *start = shm + 1; ++ ++ *val = 0; ++ *start = 0; ++ for (int i = 0; i < 4; i++) { ++ fflush(NULL); ++ pid_t pid = fork(); ++ if (pid == 0) { ++ return test1(val, start); ++ } else if (pid > 0) { ++ puts("Process created"); ++ } else { ++ abort(); ++ } ++ } ++ ++ __atomic_store_n(start, 1, __ATOMIC_SEQ_CST); ++ while (wait(NULL) > 0); ++ ++ printf("test 1 value: %d\n", *val); ++ ++ ++ *val = 0; ++ *start = 0; ++ for (int i = 0; i < 4; i++) { ++ fflush(NULL); ++ pid_t pid = fork(); ++ if (pid == 0) { ++ return (i & 1) ? test2_odd(val, start) : test2_even(val, start); ++ } else if (pid > 0) { ++ puts("Process created"); ++ } else { ++ abort(); ++ } ++ } ++ ++ __atomic_store_n(start, 1, __ATOMIC_SEQ_CST); ++ while (wait(NULL) > 0); ++ ++ printf("test 2 value: %d\n", *val); ++ ++ return 0; ++} +diff --git a/none/tests/sw64/loadstore-lock.stderr.exp b/none/tests/sw64/loadstore-lock.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/loadstore-lock.stdout.exp b/none/tests/sw64/loadstore-lock.stdout.exp +new file mode 100644 +index 000000000..9ffa2b67d +--- /dev/null ++++ b/none/tests/sw64/loadstore-lock.stdout.exp +@@ -0,0 +1,10 @@ ++Process created ++Process created ++Process created ++Process created ++test 1 value: 4000000 ++Process created ++Process created ++Process created ++Process created ++test 2 value: 4000000 +diff --git a/none/tests/sw64/loadstore-lock.vgtest b/none/tests/sw64/loadstore-lock.vgtest +new file mode 100644 +index 000000000..322877e94 +--- /dev/null ++++ b/none/tests/sw64/loadstore-lock.vgtest +@@ -0,0 +1,2 @@ ++prog: loadstore-lock ++vgopts: -q --trace-children=yes +diff --git a/none/tests/sw64/py-hash-double.c b/none/tests/sw64/py-hash-double.c +new file mode 100644 +index 000000000..6e24fa9c7 +--- /dev/null ++++ b/none/tests/sw64/py-hash-double.c +@@ -0,0 +1,95 @@ ++ ++#include ++#include ++ ++#include ++#include ++#include ++ ++#define Py_IS_NAN isnan ++#define Py_IS_INFINITY(X) (!finite(X) && !isnan(X)) ++#define Py_IS_FINITE(X) finite(X) ++#define copysign _copysign ++ ++/* Prime multiplier used in string and various other hashes. */ ++#define _PyHASH_MULTIPLIER 1000003UL /* 0xf4243 */ ++ ++/* Parameters used for the numeric hash implementation. See notes for ++ _Py_HashDouble in Python/pyhash.c. Numeric hashes are based on ++ reduction modulo the prime 2**_PyHASH_BITS - 1. */ ++ ++typedef ssize_t Py_ssize_t; ++ ++/* Py_hash_t is the same size as a pointer. */ ++#define SIZEOF_PY_HASH_T SIZEOF_SIZE_T ++typedef Py_ssize_t Py_hash_t; ++/* Py_uhash_t is the unsigned equivalent needed to calculate numeric hash. */ ++#define SIZEOF_PY_UHASH_T SIZEOF_SIZE_T ++typedef size_t Py_uhash_t; ++ ++#define _PyHASH_BITS 61 ++ ++#define _PyHASH_MODULUS (((size_t)1 << _PyHASH_BITS) - 1) ++#define _PyHASH_INF 314159 ++#define _PyHASH_NAN 0 ++#define _PyHASH_IMAG _PyHASH_MULTIPLIER ++ ++static ++Py_hash_t _Py_HashDouble(double v) ++{ ++ printf("[%s] v: %f\n", __func__, v); ++ int e, sign; ++ double m; ++ Py_uhash_t x, y; ++ ++ if (!Py_IS_FINITE(v)) { ++ if (Py_IS_INFINITY(v)) ++ return v > 0 ? _PyHASH_INF : -_PyHASH_INF; ++ else ++ return _PyHASH_NAN; ++ } ++ ++ m = frexp(v, &e); ++ printf("[%s] v: %f, mod: %f, exp: %d\n", __func__, v, m, e); ++ ++ sign = 1; ++ if (m < 0) { ++ sign = -1; ++ m = -m; ++ } ++ ++ /* process 28 bits at a time; this should work well both for binary ++ and hexadecimal floating point. */ ++ x = 0; ++ while (m) { ++ x = ((x << 28) & _PyHASH_MODULUS) | x >> (_PyHASH_BITS - 28); ++ m *= 268435456.0; /* 2**28 */ ++ e -= 28; ++ y = (Py_uhash_t)m; /* pull out integer part */ ++ m -= y; ++ x += y; ++ if (x >= _PyHASH_MODULUS) ++ x -= _PyHASH_MODULUS; ++ printf("[%s.loop] v: %f, mod: %f, exp: %d, x: %ld, y: %ld\n", ++ __func__, v, m, e, x, y); ++ } ++ ++ /* adjust for the exponent; first reduce it modulo _PyHASH_BITS */ ++ e = e >= 0 ? e % _PyHASH_BITS : _PyHASH_BITS-1-((-1-e) % _PyHASH_BITS); ++ x = ((x << e) & _PyHASH_MODULUS) | x >> (_PyHASH_BITS - e); ++ printf("[%s.shift] v: %f, mod: %f, exp: %d, x: %ld\n", __func__, v, m, e, x); ++ ++ x = x * sign; ++ if (x == (Py_uhash_t)-1) ++ x = (Py_uhash_t)-2; ++ printf("[%s.ret] v: %f, x: %ld\n", __func__, v, x); ++ return (Py_hash_t)x; ++} ++ ++int main(void) { ++ const double v = 0.200; ++ const Py_hash_t x = _Py_HashDouble(v); ++ printf("[%s] v: %f, x: %ld\n", __func__, v, x); ++ assert(x == 461168601842738816); ++ return 0; ++} +diff --git a/none/tests/sw64/py-hash-double.stderr.exp b/none/tests/sw64/py-hash-double.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/py-hash-double.stdout.exp b/none/tests/sw64/py-hash-double.stdout.exp +new file mode 100644 +index 000000000..3e8a32755 +--- /dev/null ++++ b/none/tests/sw64/py-hash-double.stdout.exp +@@ -0,0 +1,7 @@ ++[_Py_HashDouble] v: 0.200000 ++[_Py_HashDouble] v: 0.200000, mod: 0.800000, exp: -2 ++[_Py_HashDouble.loop] v: 0.200000, mod: 0.800000, exp: -30, x: 214748364, y: 214748364 ++[_Py_HashDouble.loop] v: 0.200000, mod: 0.000000, exp: -58, x: 57646075230342352, y: 214748368 ++[_Py_HashDouble.shift] v: 0.200000, mod: 0.000000, exp: 3, x: 461168601842738816 ++[_Py_HashDouble.ret] v: 0.200000, x: 461168601842738816 ++[main] v: 0.200000, x: 461168601842738816 +diff --git a/none/tests/sw64/py-hash-double.vgtest b/none/tests/sw64/py-hash-double.vgtest +new file mode 100644 +index 000000000..9e64ad082 +--- /dev/null ++++ b/none/tests/sw64/py-hash-double.vgtest +@@ -0,0 +1,3 @@ ++prog: py-hash-double ++# test _Py_HashDouble() used in python2 and python3 ++vgopts: -q +diff --git a/none/tests/sw64/rcid.c b/none/tests/sw64/rcid.c +new file mode 100644 +index 000000000..e1ded6b8c +--- /dev/null ++++ b/none/tests/sw64/rcid.c +@@ -0,0 +1,18 @@ ++ ++#include ++ ++int main(void) { ++ unsigned long cid = 0; ++ __asm__ volatile ( ++ ".set noreorder \n\t" ++ "rcid $0 \n\t" ++ "mov $0, %0 \n\t" ++ : "=r" (cid) ++ ); ++ if (cid == 0) { ++ fprintf(stderr, "RCID failed\n"); ++ } else { ++ fprintf(stderr, "RCID ok\n"); ++ } ++ return 0; ++} +diff --git a/none/tests/sw64/rcid.stderr.exp b/none/tests/sw64/rcid.stderr.exp +new file mode 100644 +index 000000000..a1fa77328 +--- /dev/null ++++ b/none/tests/sw64/rcid.stderr.exp +@@ -0,0 +1,3 @@ ++ ++RCID ok ++ +diff --git a/none/tests/sw64/rcid.vgtest b/none/tests/sw64/rcid.vgtest +new file mode 100644 +index 000000000..6dcd80a00 +--- /dev/null ++++ b/none/tests/sw64/rcid.vgtest +@@ -0,0 +1,4 @@ ++prog: rcid ++# test RCID insn ++vgopts: ++stderr_filter: filter_stderr +diff --git a/none/tests/sw64/rounding.c b/none/tests/sw64/rounding.c +new file mode 100644 +index 000000000..371d12eb5 +--- /dev/null ++++ b/none/tests/sw64/rounding.c +@@ -0,0 +1,70 @@ ++#include ++#include ++#include ++ ++volatile double p_11_5 = +11.5; ++volatile double p_12_5 = +12.5; ++volatile double n_11_5 = -11.5; ++volatile double n_12_5 = -12.5; ++ ++double __attribute__ ((noinline)) get_p_11_5(void) ++{ ++ return p_11_5; ++} ++ ++double __attribute__ ((noinline)) get_p_12_5(void) ++{ ++ return p_12_5; ++} ++ ++double __attribute__ ((noinline)) get_n_11_5(void) ++{ ++ return n_11_5; ++} ++ ++double __attribute__ ((noinline)) get_n_12_5(void) ++{ ++ return n_12_5; ++} ++ ++static void show_result(void) ++{ ++ printf("rint(+11.5) = %+4.1f\n", rint(get_p_11_5())); ++ printf("rint(+12.5) = %+4.1f\n", rint(get_p_12_5())); ++ printf("rint(-11.5) = %+4.1f\n", rint(get_n_11_5())); ++ printf("rint(-12.5) = %+4.1f\n", rint(get_n_12_5())); ++} ++ ++static const char *get_current_name(void) ++{ ++ switch (fegetround()) { ++ case FE_TONEAREST: return "FE_TONEAREST"; ++ case FE_DOWNWARD: return "FE_DOWNWARD"; ++ case FE_UPWARD: return "FE_UPWARD"; ++ case FE_TOWARDZERO: return "FE_TOWARDZERO"; ++ default: return "unknown"; ++ } ++} ++ ++int main(void) ++{ ++ printf("default rounding method: %s\n", get_current_name()); ++ ++ fesetround(FE_TONEAREST); ++ printf("\nswitched to: %s\n", get_current_name()); ++ show_result(); ++ ++ fesetround(FE_DOWNWARD); ++ printf("\nswitched to: %s\n", get_current_name()); ++ show_result(); ++ ++ fesetround(FE_UPWARD); ++ printf("\nswitched to: %s\n", get_current_name()); ++ show_result(); ++ ++ fesetround(FE_TOWARDZERO); ++ printf("\nswitched to: %s\n", get_current_name()); ++ show_result(); ++ ++ return 0; ++} +diff --git a/none/tests/sw64/rounding.stderr.exp b/none/tests/sw64/rounding.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/rounding.stdout.exp b/none/tests/sw64/rounding.stdout.exp +new file mode 100644 +index 000000000..e8dc2a5e2 +--- /dev/null ++++ b/none/tests/sw64/rounding.stdout.exp +@@ -0,0 +1,25 @@ ++default rounding method: FE_TONEAREST ++ ++switched to: FE_TONEAREST ++rint(+11.5) = +12.0 ++rint(+12.5) = +12.0 ++rint(-11.5) = -12.0 ++rint(-12.5) = -12.0 ++ ++switched to: FE_DOWNWARD ++rint(+11.5) = +11.0 ++rint(+12.5) = +12.0 ++rint(-11.5) = -12.0 ++rint(-12.5) = -13.0 ++ ++switched to: FE_UPWARD ++rint(+11.5) = +12.0 ++rint(+12.5) = +13.0 ++rint(-11.5) = -11.0 ++rint(-12.5) = -12.0 ++ ++switched to: FE_TOWARDZERO ++rint(+11.5) = +11.0 ++rint(+12.5) = +12.0 ++rint(-11.5) = -11.0 ++rint(-12.5) = -12.0 +diff --git a/none/tests/sw64/rounding.vgtest b/none/tests/sw64/rounding.vgtest +new file mode 100644 +index 000000000..1064ef81e +--- /dev/null ++++ b/none/tests/sw64/rounding.vgtest +@@ -0,0 +1,2 @@ ++prog: rounding ++vgopts: -q +diff --git a/none/tests/sw64/rtc.c b/none/tests/sw64/rtc.c +new file mode 100644 +index 000000000..526bf289b +--- /dev/null ++++ b/none/tests/sw64/rtc.c +@@ -0,0 +1,18 @@ ++ ++#include ++ ++int main(void) { ++ unsigned long tc = 0; ++ __asm__ volatile ( ++ ".set noreorder \n\t" ++ "rtc $0 \n\t" ++ "mov $0, %0 \n\t" ++ : "=r" (tc) ++ ); ++ if (tc == 0) { ++ fprintf(stderr, "RTC failed\n"); ++ } else { ++ fprintf(stderr, "RTC ok\n"); ++ } ++ return 0; ++} +diff --git a/none/tests/sw64/rtc.stderr.exp b/none/tests/sw64/rtc.stderr.exp +new file mode 100644 +index 000000000..30e1d64b8 +--- /dev/null ++++ b/none/tests/sw64/rtc.stderr.exp +@@ -0,0 +1,3 @@ ++ ++RTC ok ++ +diff --git a/none/tests/sw64/rtc.vgtest b/none/tests/sw64/rtc.vgtest +new file mode 100644 +index 000000000..71f2c6bf9 +--- /dev/null ++++ b/none/tests/sw64/rtc.vgtest +@@ -0,0 +1,4 @@ ++prog: rtc ++# test RTC insn ++vgopts: ++stderr_filter: filter_stderr +diff --git a/none/tests/sw64/simd-fp.c b/none/tests/sw64/simd-fp.c +new file mode 100644 +index 000000000..201de7df8 +--- /dev/null ++++ b/none/tests/sw64/simd-fp.c +@@ -0,0 +1,231 @@ ++#include ++#include ++#include ++ ++typedef union { ++ long l; ++ float f; ++ double d; ++} un; ++ ++const un cases[] = { ++ (un){.l = 0}, ++ (un){.l = 0x8000000000000000ULL }, ++ (un){.l = 0xf0debc9a78563412ULL }, ++ (un){.l = 0x123456789abcdef0ULL }, ++ (un){.f = 1}, ++ (un){.f = -1}, ++ (un){.f = 0.1}, ++ (un){.f = -0.1}, ++ (un){.f = 0.2}, ++ (un){.f = -0.2}, ++ (un){.f = 3}, ++ (un){.f = -3}, ++ (un){.f = 5}, ++ (un){.f = -5}, ++ (un){.f = 100000000}, ++ (un){.f = -100000000}, ++ (un){.d = 1}, ++ (un){.d = -1}, ++ (un){.d = 0.1}, ++ (un){.d = -0.1}, ++ (un){.d = 0.2}, ++ (un){.d = -0.2}, ++ (un){.d = 3}, ++ (un){.d = -3}, ++ (un){.d = 5}, ++ (un){.d = -5}, ++ (un){.d = 100000000}, ++ (un){.d = -100000000}, ++ (un){.l = 0}, ++ (un){.l = 0x8000000000000000ULL }, ++ (un){.l = 0xf0debc9a78563412ULL }, ++ (un){.l = 0x123456789abcdef0ULL }, ++ (un){.f = 1}, ++ (un){.f = -1}, ++ (un){.f = 0.1}, ++ (un){.f = -0.1}, ++ (un){.f = 0.2}, ++ (un){.f = -0.2}, ++ (un){.f = 3}, ++ (un){.f = -3}, ++ (un){.f = 5}, ++ (un){.f = -5}, ++ (un){.f = 100000000}, ++ (un){.f = -100000000}, ++ (un){.d = 1}, ++ (un){.d = -1}, ++ (un){.d = 0.1}, ++ (un){.d = -0.1}, ++ (un){.d = 0.2}, ++ (un){.d = -0.2}, ++ (un){.d = 3}, ++ (un){.d = -3}, ++ (un){.d = 5}, ++ (un){.d = -5}, ++ (un){.d = 100000000}, ++ (un){.d = -100000000}, ++}; ++const int ncases = sizeof(cases) / sizeof(*cases) / 2; ++ ++#define STRINGIFY(x) STRINGIFY2(x) ++#define STRINGIFY2(x) #x ++ ++#define CREATE_4_OP_TEST(ins) \ ++ void test_4_op_##ins(void *a, void *b, void *c, void *r) { \ ++ __asm__ volatile ( \ ++ ".set noreorder\n" \ ++ "vldd $f10, 0(%0)\n" \ ++ "vldd $f11, 0(%1)\n" \ ++ "vldd $f12, 0(%2)\n" \ ++ STRINGIFY(ins) " $f10, $f11, $f12, $f13\n" \ ++ "vstd $f13, 0(%3)\n" \ ++ : \ ++ : "r"(a), "r"(b), "r"(c), "r"(r) \ ++ : "memory", "$f10", "$f11", "$f12", "$f13" \ ++ ); \ ++ } ++ ++#define CREATE_3_OP_TEST(ins) \ ++ void test_3_op_##ins(void *a, void *b, void *r) { \ ++ __asm__ volatile ( \ ++ ".set noreorder\n" \ ++ "vldd $f10, 0(%0)\n" \ ++ "vldd $f11, 0(%1)\n" \ ++ STRINGIFY(ins) " $f10, $f11, $f12\n" \ ++ "vstd $f12, 0(%2)\n" \ ++ : \ ++ : "r"(a), "r"(b), "r"(r) \ ++ : "memory", "$f10", "$f11", "$f12" \ ++ ); \ ++ } ++ ++#define CREATE_2_OP_TEST(ins) \ ++ void test_2_op_##ins(void *a, void *r) { \ ++ __asm__ volatile ( \ ++ ".set noreorder\n" \ ++ "vldd $f10, 0(%0)\n" \ ++ STRINGIFY(ins) " $f10, $f11\n" \ ++ "vstd $f11, 0(%1)\n" \ ++ : \ ++ : "r"(a), "r"(r) \ ++ : "memory", "$f10", "$f11" \ ++ ); \ ++ } ++ ++#define RUN_4_OP_TEST(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < ncases; i++) { \ ++ for (int j = 0; j < ncases; j++) { \ ++ memset(r, 0, sizeof(r)); \ ++ memcpy(a, cases + i, sizeof(a)); \ ++ memcpy(b, cases + j, sizeof(b)); \ ++ memcpy(c, cases + (i + j) % ncases, sizeof(c)); \ ++ test_4_op_##ins(a, b, c, r); \ ++ printf(STRINGIFY(ins) \ ++ " 0x%lx.0x%lx.0x%lx.0x%lx" \ ++ " | 0x%lx.0x%lx.0x%lx.0x%lx" \ ++ " | 0x%lx.0x%lx.0x%lx.0x%lx" \ ++ " = 0x%lx.0x%lx.0x%lx.0x%lx\n", \ ++ a[0].l, a[1].l, a[2].l, a[3].l, \ ++ b[0].l, b[1].l, b[2].l, b[3].l, \ ++ c[0].l, c[1].l, c[2].l, c[3].l, \ ++ r[0].l, r[1].l, r[2].l, r[3].l); \ ++ } \ ++ } ++ ++#define RUN_3_OP_TEST(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < ncases; i++) { \ ++ for (int j = 0; j < ncases; j++) { \ ++ memset(r, 0, sizeof(r)); \ ++ memcpy(a, cases + i, sizeof(a)); \ ++ memcpy(b, cases + j, sizeof(b)); \ ++ test_3_op_##ins(a, b, r); \ ++ printf(STRINGIFY(ins) \ ++ " 0x%lx.0x%lx.0x%lx.0x%lx" \ ++ " | 0x%lx.0x%lx.0x%lx.0x%lx" \ ++ " = 0x%lx.0x%lx.0x%lx.0x%lx\n", \ ++ a[0].l, a[1].l, a[2].l, a[3].l, \ ++ b[0].l, b[1].l, b[2].l, b[3].l, \ ++ r[0].l, r[1].l, r[2].l, r[3].l); \ ++ } \ ++ } ++ ++#define RUN_2_OP_TEST(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < ncases; i++) { \ ++ memset(r, 0, sizeof(r)); \ ++ memcpy(a, cases + i, sizeof(a)); \ ++ test_2_op_##ins(a, r); \ ++ printf(STRINGIFY(ins) \ ++ " 0x%lx.0x%lx.0x%lx.0x%lx" \ ++ " = 0x%lx.0x%lx.0x%lx.0x%lx\n", \ ++ a[0].l, a[1].l, a[2].l, a[3].l, \ ++ r[0].l, r[1].l, r[2].l, r[3].l); \ ++ } ++ ++CREATE_3_OP_TEST(vadds) ++CREATE_3_OP_TEST(vaddd) ++CREATE_3_OP_TEST(vsubs) ++CREATE_3_OP_TEST(vsubd) ++CREATE_3_OP_TEST(vmuls) ++CREATE_3_OP_TEST(vmuld) ++CREATE_3_OP_TEST(vdivs) ++CREATE_3_OP_TEST(vdivd) ++CREATE_2_OP_TEST(vsqrts) ++CREATE_2_OP_TEST(vsqrtd) ++CREATE_3_OP_TEST(vfcmpeq) ++CREATE_3_OP_TEST(vfcmple) ++CREATE_3_OP_TEST(vfcmplt) ++CREATE_3_OP_TEST(vfcmpun) ++CREATE_3_OP_TEST(vcpys) ++CREATE_3_OP_TEST(vcpyse) ++CREATE_3_OP_TEST(vcpysn) ++CREATE_4_OP_TEST(vmas) ++CREATE_4_OP_TEST(vmad) ++CREATE_4_OP_TEST(vmss) ++CREATE_4_OP_TEST(vmsd) ++CREATE_4_OP_TEST(vnmas) ++CREATE_4_OP_TEST(vnmad) ++CREATE_4_OP_TEST(vnmss) ++CREATE_4_OP_TEST(vnmsd) ++CREATE_4_OP_TEST(vfseleq) ++CREATE_4_OP_TEST(vfsellt) ++CREATE_4_OP_TEST(vfselle) ++ ++int main(void) { ++ un a[4] __attribute__ ((aligned (32))); ++ un b[4] __attribute__ ((aligned (32))); ++ un c[4] __attribute__ ((aligned (32))); ++ un r[4] __attribute__ ((aligned (32))); ++ ++ RUN_3_OP_TEST(vadds) ++ RUN_3_OP_TEST(vaddd) ++ RUN_3_OP_TEST(vsubs) ++ RUN_3_OP_TEST(vsubd) ++ RUN_3_OP_TEST(vmuls) ++ RUN_3_OP_TEST(vmuld) ++ RUN_3_OP_TEST(vdivs) ++ RUN_3_OP_TEST(vdivd) ++ RUN_2_OP_TEST(vsqrts) ++ RUN_2_OP_TEST(vsqrtd) ++ RUN_3_OP_TEST(vfcmpeq) ++ RUN_3_OP_TEST(vfcmple) ++ RUN_3_OP_TEST(vfcmplt) ++ RUN_3_OP_TEST(vfcmpun) ++ RUN_3_OP_TEST(vcpys) ++ RUN_3_OP_TEST(vcpyse) ++ RUN_3_OP_TEST(vcpysn) ++ RUN_4_OP_TEST(vmas) ++ RUN_4_OP_TEST(vmad) ++ RUN_4_OP_TEST(vmss) ++ RUN_4_OP_TEST(vmsd) ++ RUN_4_OP_TEST(vnmas) ++ RUN_4_OP_TEST(vnmad) ++ RUN_4_OP_TEST(vnmss) ++ RUN_4_OP_TEST(vnmsd) ++ RUN_4_OP_TEST(vfseleq) ++ RUN_4_OP_TEST(vfsellt) ++ RUN_4_OP_TEST(vfselle) ++} +diff --git a/none/tests/sw64/simd-fp.stderr.exp b/none/tests/sw64/simd-fp.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/simd-fp.stdout.exp b/none/tests/sw64/simd-fp.stdout.exp +new file mode 100644 +index 000000000..e5b86a6a2 +--- /dev/null ++++ b/none/tests/sw64/simd-fp.stdout.exp +@@ -0,0 +1,20468 @@ ++=== Running test on vadds=== ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xfff0000000000000.0x0 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xfff0000000000000.0xfff0000000000000.0x0 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0xfff0000000000000.0x0 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0xa0000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x20000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0xa0000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x20000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0xa0000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x40000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0debc9a60000000.0x3ff0000000000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0xc0debc5a60000000.0xbff0000000000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xc0debcda60000000.0x3fb9999980000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0xfff0000000000000.0xbfb99999a0000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb99999a0000000.0xfff0000000000000.0x3fc99999a0000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb99999a0000000.0xbfb99999a0000000.0xfff0000000000000.0xbfc99999a0000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0x3fc99999a0000000.0xfff0000000000000.0x4008000000000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0xbfc99999a0000000.0xfff0000000000000.0xc008000000000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0x4008000000000000.0xfff0000000000000.0x4014000000000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0xfff0000000000000.0xc014000000000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xfff0000000000000.0x4197d78400000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0xfff0000000000000.0xc197d78400000000 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xfff0000000000000.0x0 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xfff0000000000000.0x0 ++vadds 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0xfff0000000000000.0xfff0000000000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0xfff0000000000000.0xfff0000000000000.0x0 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xfff0000000000000.0x0.0x0 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0xfff0000000000000.0x0.0x0 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xc0debc9a60000000.0x3a34567880000000.0x40000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0xc0debc9a60000000.0x3a34567880000000.0xc0000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0xc0debc9a60000000.0x3a34567880000000.0x40000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0xc0debc9a60000000.0x3a34567880000000.0xc0000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0xc0debc9a60000000.0x3a34567880000000.0x60000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0xc0debc9a60000000.0x3a34567880000000.0xe0000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0xc0debc9a60000000.0x3a34567880000000.0x60000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0debc9a60000000.0x3a34567880000000.0xe0000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0xc0debc9a60000000.0x3a34567880000000.0x60000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0debc9a60000000.0x3a34567880000000.0xe0000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0xc0debc9a60000000.0x3a34567880000000.0x3ff0000000000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0debc9a60000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0xc0debc5a60000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xfff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xfff0000000000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb99999a0000000.0xfff0000000000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0xfff0000000000000.0xbfc99999a0000000.0x4008000000000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0xfff0000000000000.0x4008000000000000.0xc008000000000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0xfff0000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xfff0000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xfff0000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xfff0000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xfff0000000000000.0xc197d78400000000.0x0 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xfff0000000000000.0x0.0x0 ++vadds 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xfff0000000000000.0x0.0xfff0000000000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0x0.0xfff0000000000000.0x0 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0xfff0000000000000.0x0.0x0 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x0 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xfff0000000000000.0x0.0x0.0x0 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc0debc9a60000000.0x3a34567880000000.0x40000000.0x140000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc0debc9a60000000.0x3a34567880000000.0xc0000000.0xc0000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc0debc9a60000000.0x3a34567880000000.0x40000000.0x140000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc0debc9a60000000.0x3a34567880000000.0xc0000000.0xe0000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc0debc9a60000000.0x3a34567880000000.0x60000000.0x160000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc0debc9a60000000.0x3a34567880000000.0xe0000000.0xe0000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc0debc9a60000000.0x3a34567880000000.0x60000000.0x160000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0debc9a60000000.0x3a34567880000000.0xe0000000.0xe0000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc0debc9a60000000.0x3a34567880000000.0x60000000.0x160000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0debc9a60000000.0x3a34567880000000.0xe0000000.0x3ff0000000000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc0debc9a60000000.0x3a34567880000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0debc9a60000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xfff0000000000000.0xbff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xfff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xfff0000000000000.0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xfff0000000000000.0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xfff0000000000000.0xbfc99999a0000000.0x4008000000000000.0xc008000000000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xfff0000000000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xfff0000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xfff0000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xfff0000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xfff0000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xfff0000000000000.0xc197d78400000000.0x0.0x0 ++vadds 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xfff0000000000000.0x0.0x0.0xfff0000000000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3a34567880000000.0x20000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3a34567880000000.0xc0debc9a60000000.0x3a34567880000000.0x40000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x0 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a44567880000000.0x40000000.0x140000000.0x40000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3a34567880000000.0xc0000000.0xc0000000.0xc0000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3a34567880000000.0x40000000.0x140000000.0x40000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3a34567880000000.0xc0000000.0xc0000000.0xc0000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3a34567880000000.0x40000000.0x140000000.0x60000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3a34567880000000.0xc0000000.0xe0000000.0xe0000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3a34567880000000.0x60000000.0x160000000.0x60000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3a34567880000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3a34567880000000.0x60000000.0x160000000.0x60000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3a34567880000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3a34567880000000.0x60000000.0x160000000.0x3ff0000000000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3a34567880000000.0xe0000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3a34567880000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb99999a0000000.0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000.0xc008000000000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x0 ++vadds 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x0.0xfff0000000000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x20000000.0xa0000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x20000000.0xc0debc9a60000000.0x3a34567880000000.0xc0000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x40000000.0x140000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xc0000000.0xc0000000.0xc0000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x40000000.0x140000000.0x40000000.0x140000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc0000000.0xc0000000.0xc0000000.0xc0000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x40000000.0x140000000.0x40000000.0x140000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc0000000.0xc0000000.0xc0000000.0xe0000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x40000000.0x140000000.0x60000000.0x160000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc0000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x60000000.0x160000000.0x60000000.0x160000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xe0000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x60000000.0x160000000.0x60000000.0x160000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xe0000000.0xe0000000.0xe0000000.0x3ff0000000000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x60000000.0x160000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xe0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xa0000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x20000000.0xa0000000 ++vadds 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xa0000000.0x20000000.0xc0debc9a60000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xa0000000.0x20000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xa0000000.0xc0debc9a60000000.0x3a34567880000000.0x40000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0xc0000000.0xc0000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x40000000.0x140000000.0x40000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc0000000.0xc0000000.0xc0000000.0xc0000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x140000000.0x40000000.0x140000000.0x40000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc0000000.0xc0000000.0xc0000000.0xc0000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x140000000.0x40000000.0x140000000.0x60000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc0000000.0xc0000000.0xe0000000.0xe0000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x140000000.0x60000000.0x160000000.0x60000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xe0000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x160000000.0x60000000.0x160000000.0x60000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xe0000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x160000000.0x60000000.0x160000000.0x3ff0000000000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xe0000000.0xe0000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x160000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x20000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xa0000000.0x20000000 ++vadds 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x20000000.0xa0000000.0xc0debc9a60000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x20000000.0xa0000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x20000000.0xc0debc9a60000000.0x3a34567880000000.0xc0000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x40000000.0x140000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xc0000000.0xc0000000.0xc0000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x40000000.0x140000000.0x40000000.0x140000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc0000000.0xc0000000.0xc0000000.0xc0000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x40000000.0x140000000.0x40000000.0x140000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc0000000.0xc0000000.0xc0000000.0xe0000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x40000000.0x140000000.0x60000000.0x160000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc0000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x60000000.0x160000000.0x60000000.0x160000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xe0000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x60000000.0x160000000.0x60000000.0x160000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xe0000000.0xe0000000.0xe0000000.0x3ff0000000000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x60000000.0x160000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xe0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xa0000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x20000000.0xa0000000 ++vadds 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xa0000000.0x20000000.0xc0debc9a60000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xa0000000.0x20000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xa0000000.0xc0debc9a60000000.0x3a34567880000000.0x60000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0xc0000000.0xe0000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x40000000.0x140000000.0x60000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc0000000.0xc0000000.0xc0000000.0xe0000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x140000000.0x40000000.0x140000000.0x60000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc0000000.0xc0000000.0xc0000000.0xe0000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x140000000.0x40000000.0x140000000.0x80000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc0000000.0xc0000000.0xe0000000.0x100000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x140000000.0x60000000.0x160000000.0x80000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xe0000000.0xe0000000.0xe0000000.0x100000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x160000000.0x60000000.0x160000000.0x80000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xe0000000.0xe0000000.0xe0000000.0x100000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x160000000.0x60000000.0x160000000.0x3ff0000000000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xe0000000.0xe0000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x160000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x40000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xa0000000.0x40000000 ++vadds 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x20000000.0xa0000000.0xc0debc9a60000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x20000000.0xa0000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x20000000.0xc0debc9a60000000.0x3a34567880000000.0xe0000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x60000000.0x160000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xc0000000.0xe0000000.0xe0000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x40000000.0x140000000.0x60000000.0x160000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc0000000.0xc0000000.0xe0000000.0xe0000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x40000000.0x140000000.0x60000000.0x160000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc0000000.0xc0000000.0xe0000000.0x100000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x40000000.0x140000000.0x80000000.0x180000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc0000000.0xe0000000.0x100000000.0x100000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x60000000.0x160000000.0x80000000.0x180000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xe0000000.0xe0000000.0x100000000.0x100000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x60000000.0x160000000.0x80000000.0x180000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xe0000000.0xe0000000.0x100000000.0x3ff0000000000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x60000000.0x160000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xe0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xc0000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x40000000.0xc0000000 ++vadds 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xa0000000.0x40000000.0xc0debc9a60000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xa0000000.0x40000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xa0000000.0xc0debc9a60000000.0x3a34567880000000.0x60000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0xe0000000.0xe0000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x60000000.0x160000000.0x60000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc0000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x140000000.0x60000000.0x160000000.0x60000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc0000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x140000000.0x60000000.0x160000000.0x80000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc0000000.0xe0000000.0x100000000.0x100000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x140000000.0x80000000.0x180000000.0x80000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xe0000000.0x100000000.0x100000000.0x100000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x160000000.0x80000000.0x180000000.0x80000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xe0000000.0x100000000.0x100000000.0x100000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x160000000.0x80000000.0x180000000.0x3ff0000000000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xe0000000.0x100000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x160000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x40000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc0000000.0x40000000 ++vadds 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x40000000.0xc0000000.0xc0debc9a60000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40000000.0xc0000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40000000.0xc0debc9a60000000.0x3a34567880000000.0xe0000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x60000000.0x160000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x60000000.0x160000000.0x60000000.0x160000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xe0000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x60000000.0x160000000.0x60000000.0x160000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xe0000000.0xe0000000.0xe0000000.0x100000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x60000000.0x160000000.0x80000000.0x180000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xe0000000.0x100000000.0x100000000.0x100000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000000.0x180000000.0x80000000.0x180000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x100000000.0x100000000.0x100000000.0x100000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80000000.0x180000000.0x80000000.0x180000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x100000000.0x100000000.0x100000000.0x3ff0000000000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80000000.0x180000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x100000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xc0000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x40000000.0xc0000000 ++vadds 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xc0000000.0x40000000.0xc0debc9a60000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0000000.0x40000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0000000.0xc0debc9a60000000.0x3a34567880000000.0x60000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0xe0000000.0xe0000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x60000000.0x160000000.0x60000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xe0000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x160000000.0x60000000.0x160000000.0x60000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xe0000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x160000000.0x60000000.0x160000000.0x80000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xe0000000.0xe0000000.0x100000000.0x100000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x160000000.0x80000000.0x180000000.0x80000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x100000000.0x100000000.0x100000000.0x100000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x180000000.0x80000000.0x180000000.0x80000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x100000000.0x100000000.0x100000000.0x100000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x180000000.0x80000000.0x180000000.0x3ff0000000000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x100000000.0x100000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x180000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x40000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc0000000.0x40000000 ++vadds 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x40000000.0xc0000000.0xc0debc9a60000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40000000.0xc0000000.0xc0debc9a60000000.0x3a34567880000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40000000.0xc0debc9a60000000.0x3a34567880000000.0xe0000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x60000000.0x160000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x60000000.0x160000000.0x60000000.0x160000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xe0000000.0xe0000000.0xe0000000.0xe0000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x60000000.0x160000000.0x60000000.0x160000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xe0000000.0xe0000000.0xe0000000.0x100000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x60000000.0x160000000.0x80000000.0x180000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xe0000000.0x100000000.0x100000000.0x100000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000000.0x180000000.0x80000000.0x180000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x100000000.0x100000000.0x100000000.0x100000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80000000.0x180000000.0x80000000.0x180000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x100000000.0x100000000.0x100000000.0x3ff0000000000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80000000.0x180000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x100000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xc0000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x40000000.0xc0000000 ++vadds 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xc0000000.0x40000000.0xc0debc9a60000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0000000.0x40000000.0xc0debc9a60000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0000000.0xc0debc9a60000000.0x3a34567880000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0xe0000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x60000000.0x160000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xe0000000.0xe0000000.0xe0000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x160000000.0x60000000.0x160000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xe0000000.0xe0000000.0xe0000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x160000000.0x60000000.0x160000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xe0000000.0xe0000000.0x100000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x160000000.0x80000000.0x180000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x100000000.0x100000000.0x100000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x180000000.0x80000000.0x180000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x100000000.0x100000000.0x100000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x180000000.0x80000000.0x180000000.0x4000000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x100000000.0x100000000.0x3ff0000000000000.0x0 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x180000000.0x3ff0000000000000.0xbff0000000000000.0x3ff19999a0000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0x3fecccccc0000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3ff3333340000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0x3fe99999a0000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4010000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc000000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4018000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc010000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc0000000.0x3ff0000000000000 ++vadds 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x40000000.0xc0000000.0xc0debc5a60000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40000000.0xc0000000.0xc0debc5a60000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40000000.0xc0debc9a60000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xe0000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x60000000.0x160000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xe0000000.0xe0000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x60000000.0x160000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xe0000000.0xe0000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x60000000.0x160000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xe0000000.0x100000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000000.0x180000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x100000000.0x100000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80000000.0x180000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x100000000.0x100000000.0x3ff0000000000000.0x0 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80000000.0x180000000.0x4000000000000000.0xc000000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x100000000.0x3ff0000000000000.0x0.0xbfecccccc0000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3ff19999a0000000.0xbff19999a0000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0x3fecccccc0000000.0xbfe99999a0000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3ff3333340000000.0xbff3333340000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0x3fe99999a0000000.0x4000000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4010000000000000.0xc010000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc000000000000000.0x4010000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4018000000000000.0xc018000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc010000000000000.0x4197d78400000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xc0000000.0x3ff0000000000000.0xc0debcda60000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0000000.0x3ff0000000000000.0xc0debcda60000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0000000.0xc0debc5a60000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xe0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x160000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xe0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x160000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xe0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x160000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x100000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x180000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x100000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x180000000.0x3ff0000000000000.0xbff0000000000000.0x3ff19999a0000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x100000000.0x3ff0000000000000.0x0.0xbfecccccc0000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x180000000.0x4000000000000000.0xc000000000000000.0x3fc9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x0.0xbfecccccc0000000.0x0 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3ff19999a0000000.0xbff19999a0000000.0x3fd3333320000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0x3fecccccc0000000.0xbfe99999a0000000.0xbfb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3ff3333340000000.0xbff3333340000000.0x4008ccccc0000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0x3fe99999a0000000.0x4000000000000000.0xc007333340000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4010000000000000.0xc010000000000000.0x4014666660000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc000000000000000.0x4010000000000000.0xc0139999a0000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4018000000000000.0xc018000000000000.0x4197d78400000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc010000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000.0xc0debc9400000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3ff0000000000000.0xbff0000000000000.0xfff0000000000000.0xbfb99999a0000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3ff0000000000000.0xfff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0xbff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0x3fecccccc0000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3ff0000000000000.0xbff0000000000000.0x3ff19999a0000000.0xbff19999a0000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3ff0000000000000.0x0.0xbfecccccc0000000.0x0 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0xc000000000000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0xbfecccccc0000000.0x0.0x3fb99999a0000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3ff19999a0000000.0xbff19999a0000000.0x3fd3333340000000.0xbfd3333340000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fecccccc0000000.0xbfe99999a0000000.0xbfb99999a0000000.0x4007333340000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3ff3333340000000.0xbff3333340000000.0x4008ccccc0000000.0xc008ccccc0000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fe99999a0000000.0x4000000000000000.0xc007333340000000.0x40139999a0000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4010000000000000.0xc010000000000000.0x4014666660000000.0xc014666660000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc000000000000000.0x4010000000000000.0xc0139999a0000000.0x4197d78400000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4018000000000000.0xc018000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc010000000000000.0x4197d78400000000.0xc197d78400000000.0xbfb99999a0000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vadds 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xbff0000000000000.0x3fb99999a0000000.0xfff0000000000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbff0000000000000.0x3fb99999a0000000.0xfff0000000000000.0x3fc99999a0000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbff0000000000000.0xfff0000000000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3ff3333340000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbff0000000000000.0x3fb9999980000000.0x3fecccccc0000000.0xbfe99999a0000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbff0000000000000.0x3ff19999a0000000.0xbff19999a0000000.0x3fd3333320000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0xbfecccccc0000000.0x0.0x3fb99999a0000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc000000000000000.0x3fc99999a0000000.0xbfc99999a0000000.0x3fd99999a0000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfecccccc0000000.0x0.0x3fb99999a0000000.0x0 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbff19999a0000000.0x3fd3333340000000.0xbfd3333340000000.0x40099999a0000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfe99999a0000000.0xbfb99999a0000000.0x4007333340000000.0xc006666660000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbff3333340000000.0x4008ccccc0000000.0xc008ccccc0000000.0x4014ccccc0000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0xc007333340000000.0x40139999a0000000.0xc013333340000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc010000000000000.0x4014666660000000.0xc014666660000000.0x4197d78400000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4010000000000000.0xc0139999a0000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc018000000000000.0x4197d78400000000.0xc197d78400000000.0x3fc99999a0000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vadds 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x3fb99999a0000000.0xbfb99999a0000000.0xfff0000000000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3fb99999a0000000.0xbfb99999a0000000.0xfff0000000000000.0xbfc99999a0000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3fb99999a0000000.0xfff0000000000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3fb99999a0000000.0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0x3fe99999a0000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fb9999980000000.0xbfb9999980000000.0x3ff3333340000000.0xbff3333340000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fb9999980000000.0x3fecccccc0000000.0xbfe99999a0000000.0xbfb9999980000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff19999a0000000.0xbff19999a0000000.0x3fd3333340000000.0xbfd3333340000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbfecccccc0000000.0x0.0x3fb99999a0000000.0x0 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fc99999a0000000.0xbfc99999a0000000.0x3fd99999a0000000.0xbfd99999a0000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x3fb99999a0000000.0x0.0x4006666660000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fd3333340000000.0xbfd3333340000000.0x40099999a0000000.0xc0099999a0000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfb99999a0000000.0x4007333340000000.0xc006666660000000.0x4013333340000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008ccccc0000000.0xc008ccccc0000000.0x4014ccccc0000000.0xc014ccccc0000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc007333340000000.0x40139999a0000000.0xc013333340000000.0x4197d78400000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014666660000000.0xc014666660000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc0139999a0000000.0x4197d78400000000.0xc197d78400000000.0xbfc99999a0000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vadds 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xbfb99999a0000000.0x3fc99999a0000000.0xfff0000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbfb99999a0000000.0x3fc99999a0000000.0xfff0000000000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbfb99999a0000000.0xfff0000000000000.0xbfc99999a0000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4010000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0x3fe99999a0000000.0x4000000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfb9999980000000.0x3ff3333340000000.0xbff3333340000000.0x4008ccccc0000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fecccccc0000000.0xbfe99999a0000000.0xbfb99999a0000000.0x4007333340000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff19999a0000000.0x3fd3333340000000.0xbfd3333340000000.0x40099999a0000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x3fb99999a0000000.0x0.0x4006666660000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfc99999a0000000.0x3fd99999a0000000.0xbfd99999a0000000.0x4018000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fb99999a0000000.0x0.0x4006666660000000.0x0 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfd3333340000000.0x40099999a0000000.0xc0099999a0000000.0x4020000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4007333340000000.0xc006666660000000.0x4013333340000000.0xc000000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008ccccc0000000.0x4014ccccc0000000.0xc014ccccc0000000.0x4197d78400000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x40139999a0000000.0xc013333340000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014666660000000.0x4197d78400000000.0xc197d78400000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xbfc99999a0000000.0x4008000000000000 ++vadds 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x3fc99999a0000000.0xbfc99999a0000000.0xfff0000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3fc99999a0000000.0xbfc99999a0000000.0xfff0000000000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3fc99999a0000000.0xfff0000000000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0xbfc99999a0000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc000000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4010000000000000.0xc010000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fc9999980000000.0x3fe99999a0000000.0x4000000000000000.0xc007333340000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff3333340000000.0xbff3333340000000.0x4008ccccc0000000.0xc008ccccc0000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbfe99999a0000000.0xbfb99999a0000000.0x4007333340000000.0xc006666660000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fd3333340000000.0xbfd3333340000000.0x40099999a0000000.0xc0099999a0000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0x0.0x4006666660000000.0x0 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fd99999a0000000.0xbfd99999a0000000.0x4018000000000000.0xc018000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4006666660000000.0x0.0x4000000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x40099999a0000000.0xc0099999a0000000.0x4020000000000000.0xc020000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc006666660000000.0x4013333340000000.0xc000000000000000.0x4197d78400000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014ccccc0000000.0xc014ccccc0000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc013333340000000.0x4197d78400000000.0xc197d78400000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x4008000000000000.0xc008000000000000 ++vadds 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xbfc99999a0000000.0x4008000000000000.0xfff0000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbfc99999a0000000.0x4008000000000000.0xfff0000000000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbfc99999a0000000.0xfff0000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbfc99999a0000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4018000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc000000000000000.0x4010000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfc9999980000000.0x4010000000000000.0xc010000000000000.0x4014666660000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fe99999a0000000.0x4000000000000000.0xc007333340000000.0x40139999a0000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff3333340000000.0x4008ccccc0000000.0xc008ccccc0000000.0x4014ccccc0000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb99999a0000000.0x4007333340000000.0xc006666660000000.0x4013333340000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfd3333340000000.0x40099999a0000000.0xc0099999a0000000.0x4020000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x4006666660000000.0x0.0x4000000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfd99999a0000000.0x4018000000000000.0xc018000000000000.0x4024000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4006666660000000.0x0.0x4000000000000000.0x0 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc0099999a0000000.0x4020000000000000.0xc020000000000000.0x4197d78420000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4013333340000000.0xc000000000000000.0x4197d78400000000.0xc197d783e0000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014ccccc0000000.0x4197d78400000000.0xc197d78400000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc008000000000000.0x4014000000000000 ++vadds 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x4008000000000000.0xc008000000000000.0xfff0000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4008000000000000.0xc008000000000000.0xfff0000000000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4008000000000000.0xfff0000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc010000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4008000000000000.0xc008000000000000.0x4018000000000000.0xc018000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4008000000000000.0xc000000000000000.0x4010000000000000.0xc0139999a0000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4010000000000000.0xc010000000000000.0x4014666660000000.0xc014666660000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0xc007333340000000.0x40139999a0000000.0xc013333340000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4008ccccc0000000.0xc008ccccc0000000.0x4014ccccc0000000.0xc014ccccc0000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4007333340000000.0xc006666660000000.0x4013333340000000.0xc000000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x40099999a0000000.0xc0099999a0000000.0x4020000000000000.0xc020000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4006666660000000.0x0.0x4000000000000000.0x0 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4018000000000000.0xc018000000000000.0x4024000000000000.0xc024000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4197d783e0000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4020000000000000.0xc020000000000000.0x4197d78420000000.0xc197d78420000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc000000000000000.0x4197d78400000000.0xc197d783e0000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x4014000000000000.0xc014000000000000 ++vadds 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xc008000000000000.0x4014000000000000.0xfff0000000000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc008000000000000.0x4014000000000000.0xfff0000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc008000000000000.0xfff0000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc008000000000000.0x4014000000000000.0xc010000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc008000000000000.0x4018000000000000.0xc018000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc000000000000000.0x4010000000000000.0xc0139999a0000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc010000000000000.0x4014666660000000.0xc014666660000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc007333340000000.0x40139999a0000000.0xc013333340000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc008ccccc0000000.0x4014ccccc0000000.0xc014ccccc0000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc006666660000000.0x4013333340000000.0xc000000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc0099999a0000000.0x4020000000000000.0xc020000000000000.0x4197d78420000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x4000000000000000.0x0.0x4197d783e0000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc018000000000000.0x4024000000000000.0xc024000000000000.0x41a7d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4197d783e0000000.0x0 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc020000000000000.0x4197d78420000000.0xc197d78420000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d783e0000000.0xc014000000000000.0x4197d78400000000 ++vadds 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x4014000000000000.0xc014000000000000.0xfff0000000000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4014000000000000.0xc014000000000000.0xfff0000000000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4014000000000000.0xfff0000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4014000000000000.0xc010000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4018000000000000.0xc018000000000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4010000000000000.0xc0139999a0000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4014666660000000.0xc014666660000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x40139999a0000000.0xc013333340000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4014ccccc0000000.0xc014ccccc0000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4013333340000000.0xc000000000000000.0x4197d78400000000.0xc197d783e0000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4020000000000000.0xc020000000000000.0x4197d78420000000.0xc197d78420000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4000000000000000.0x0.0x4197d783e0000000.0x0 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4024000000000000.0xc024000000000000.0x41a7d78400000000.0xc1a7d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4197d783e0000000.0x0.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78420000000.0xc197d78420000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d783e0000000.0xc014000000000000.0x4197d78400000000.0xfff0000000000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc014000000000000.0x4197d78400000000.0xfff0000000000000.0x0 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc014000000000000.0xfff0000000000000.0xc197d78400000000.0x0 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xa0000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x20000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xa0000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x40000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xc0000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x40000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xc0000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x40000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xc0000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x3ff0000000000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xbff0000000000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x3fb9999980000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc010000000000000.0x4197d78400000000.0xc197d78400000000.0xbfb99999a0000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc018000000000000.0x4197d78400000000.0xc197d78400000000.0x3fc99999a0000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc0139999a0000000.0x4197d78400000000.0xc197d78400000000.0xbfc99999a0000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc014666660000000.0x4197d78400000000.0xc197d78400000000.0x4008000000000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc013333340000000.0x4197d78400000000.0xc197d78400000000.0xc008000000000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc014ccccc0000000.0x4197d78400000000.0xc197d78400000000.0x4014000000000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc000000000000000.0x4197d78400000000.0xc197d783e0000000.0xc014000000000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc020000000000000.0x4197d78420000000.0xc197d78420000000.0x4197d78400000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x4197d783e0000000.0x0.0xc197d78400000000 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc024000000000000.0x41a7d78400000000.0xc1a7d78400000000.0x0 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d783e0000000.0x0.0xc197d78400000000.0x0 ++vadds 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78420000000.0x4197d78400000000.0xc197d78400000000.0xfff0000000000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4197d78400000000.0xc197d78400000000.0xfff0000000000000.0x0 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4197d78400000000.0xfff0000000000000.0x0.0x0 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0xc197d78400000000.0x0.0x0 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4197d78400000000.0xc197d78400000000.0x0.0x0 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4197d78400000000.0xc197d78400000000.0x20000000.0xa0000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4197d78400000000.0xc197d78400000000.0xa0000000.0x20000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4197d78400000000.0xc197d78400000000.0x20000000.0xa0000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4197d78400000000.0xc197d78400000000.0xa0000000.0x40000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4197d78400000000.0xc197d78400000000.0x40000000.0xc0000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4197d78400000000.0xc197d78400000000.0xc0000000.0x40000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4197d78400000000.0xc197d78400000000.0x40000000.0xc0000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4197d78400000000.0xc197d78400000000.0xc0000000.0x40000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4197d78400000000.0xc197d78400000000.0x40000000.0xc0000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc0000000.0x3ff0000000000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4197d78400000000.0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0xc197d78400000000.0xbff0000000000000.0x3fb9999980000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d78400000000.0xc197d78400000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4197d78400000000.0xc197d78400000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4197d78400000000.0xc197d78400000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4197d78400000000.0xc197d78400000000.0xbfc99999a0000000.0x4008000000000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4197d78400000000.0xc197d78400000000.0x4008000000000000.0xc008000000000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc008000000000000.0x4014000000000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4197d78400000000.0xc197d78400000000.0x4014000000000000.0xc014000000000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4197d78400000000.0xc197d783e0000000.0xc014000000000000.0x4197d78400000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4197d78420000000.0xc197d78420000000.0x4197d78400000000.0xc197d78400000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4197d783e0000000.0x0.0xc197d78400000000.0x0 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x41a7d78400000000.0xc1a7d78400000000.0x0.0x8000000000000000 ++vadds 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0xc197d78400000000.0x0.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc197d78400000000.0x0.0xfff0000000000000.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc197d78400000000.0xfff0000000000000.0x0.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc197d78400000000.0x0.0x0.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc197d78400000000.0xa0000000.0x20000000.0xc0debc9a60000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc197d78400000000.0x20000000.0xa0000000.0xc0debc9a60000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc197d78400000000.0xa0000000.0x20000000.0xc0debc9a60000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc197d78400000000.0x20000000.0xa0000000.0xc0debc9a60000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc197d78400000000.0xa0000000.0x40000000.0xc0debc9a60000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc197d78400000000.0x40000000.0xc0000000.0xc0debc9a60000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc197d78400000000.0xc0000000.0x40000000.0xc0debc9a60000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc197d78400000000.0x40000000.0xc0000000.0xc0debc9a60000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc197d78400000000.0xc0000000.0x40000000.0xc0debc9a60000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc197d78400000000.0x40000000.0xc0000000.0xc0debc5a60000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc197d78400000000.0xc0000000.0x3ff0000000000000.0xc0debcda60000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000.0xc0debc9400000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78400000000.0xbff0000000000000.0x3fb99999a0000000.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc197d78400000000.0x3fb99999a0000000.0xbfb99999a0000000.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc197d78400000000.0xbfb99999a0000000.0x3fc99999a0000000.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc197d78400000000.0x3fc99999a0000000.0xbfc99999a0000000.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc197d78400000000.0xbfc99999a0000000.0x4008000000000000.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc197d78400000000.0x4008000000000000.0xc008000000000000.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc197d78400000000.0xc008000000000000.0x4014000000000000.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc197d78400000000.0x4014000000000000.0xc014000000000000.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc197d783e0000000.0xc014000000000000.0x4197d78400000000.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc197d78420000000.0x4197d78400000000.0xc197d78400000000.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0xc197d78400000000.0x0.0xfff0000000000000 ++vadds 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc1a7d78400000000.0x0.0x8000000000000000.0xfff0000000000000 ++=== Running test on vaddd=== ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0eebc9a78563412.0x124456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xf0debc9a78563412.0x3ff0000000000000 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0xf0debc9a78563412.0xbff0000000000000 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xf0debc9a78563412.0x3fb999999999999a ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0xf0debc9a78563412.0xbfb999999999999a ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xf0debc9a78563412.0x3fc999999999999a ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0xf0debc9a78563412.0xbfc999999999999a ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xf0debc9a78563412.0x4008000000000000 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0xf0debc9a78563412.0xc008000000000000 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xf0debc9a78563412.0x4014000000000000 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0xf0debc9a78563412.0xc014000000000000 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xf0debc9a78563412.0x4197d78400000000 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0xf0debc9a78563412.0xc197d78400000000 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0xf0debc9a78563412.0xf0debc9a78563412 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0xf0debc9a78563412.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0eebc9a78563412.0x124456789abcdef0.0x0 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xf0debc9a78563412.0x123456789abcdef0.0xfd4ccccd ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0xf0debc9a78563412.0x123456789abcdef0.0x7dcccccd ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xf0debc9a78563412.0x123456789abcdef0.0xfdcccccd ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0xf0debc9a78563412.0x123456789abcdef0.0x7fc00000 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xf0debc9a78563412.0x123456789abcdef0.0xffc00000 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0xf0debc9a78563412.0x123456789abcdef0.0x80200000 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xf0debc9a78563412.0x123456789abcdef0.0x100200000 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0xf0debc9a78563412.0x123456789abcdef0.0x8c3ebc20 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xf0debc9a78563412.0x123456789abcdef0.0x10c3ebc20 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0xf0debc9a78563412.0x123456789abcdef0.0x3ff0000000000000 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xf0debc9a78563412.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xf0debc9a78563412.0xbff0000000000000.0x3fb999999999999a ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xf0debc9a78563412.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xf0debc9a78563412.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xf0debc9a78563412.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xf0debc9a78563412.0xbfc999999999999a.0x4008000000000000 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xf0debc9a78563412.0x4008000000000000.0xc008000000000000 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xf0debc9a78563412.0xc008000000000000.0x4014000000000000 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xf0debc9a78563412.0x4014000000000000.0xc014000000000000 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xf0debc9a78563412.0xc014000000000000.0x4197d78400000000 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xf0debc9a78563412.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xf0debc9a78563412.0xc197d78400000000.0x0 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vaddd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xf0debc9a78563412.0x123456789abcdef0.0xf0debc9a78563412 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xf0debc9a78563412.0x123456789abcdef0.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xf0debc9a78563412.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0eebc9a78563412.0x124456789abcdef0.0x0.0x0 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xf0debc9a78563412.0x123456789abcdef0.0x0.0x0 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xf0debc9a78563412.0x123456789abcdef0.0x7d4ccccd.0x17d4ccccd ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xf0debc9a78563412.0x123456789abcdef0.0xfd4ccccd.0xfdcccccd ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xf0debc9a78563412.0x123456789abcdef0.0x7dcccccd.0x17dcccccd ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xf0debc9a78563412.0x123456789abcdef0.0xfdcccccd.0xffc00000 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xf0debc9a78563412.0x123456789abcdef0.0x7fc00000.0x17fc00000 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xf0debc9a78563412.0x123456789abcdef0.0xffc00000.0x100200000 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xf0debc9a78563412.0x123456789abcdef0.0x80200000.0x180200000 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xf0debc9a78563412.0x123456789abcdef0.0x100200000.0x10c3ebc20 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xf0debc9a78563412.0x123456789abcdef0.0x8c3ebc20.0x18c3ebc20 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xf0debc9a78563412.0x123456789abcdef0.0x10c3ebc20.0x3ff0000000000000 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xf0debc9a78563412.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xf0debc9a78563412.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xf0debc9a78563412.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xf0debc9a78563412.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xf0debc9a78563412.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xf0debc9a78563412.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xf0debc9a78563412.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xf0debc9a78563412.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xf0debc9a78563412.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xf0debc9a78563412.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xf0debc9a78563412.0x4197d78400000000.0xc197d78400000000.0x0 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xf0debc9a78563412.0xc197d78400000000.0x0.0x0 ++vaddd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xf0debc9a78563412.0x123456789abcdef0.0x0.0xf0debc9a78563412 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x123456789abcdef0.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x123456789abcdef0.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x0.0x0 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x124456789abcdef0.0x0.0x0.0x0 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x123456789abcdef0.0xff000000.0xfd4ccccd.0xfb99999a ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x123456789abcdef0.0x7d4ccccd.0x17d4ccccd.0x7c19999a ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x123456789abcdef0.0xfd4ccccd.0xfdcccccd.0xfc19999a ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x123456789abcdef0.0x7dcccccd.0x17dcccccd.0x7e0ccccd ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x123456789abcdef0.0xfdcccccd.0xffc00000.0xfe0ccccd ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x123456789abcdef0.0x7fc00000.0x17fc00000.0x7e6ccccd ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x123456789abcdef0.0xffc00000.0x100200000.0xfe6ccccd ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x123456789abcdef0.0x80200000.0x180200000.0x8a8b88ed ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x123456789abcdef0.0x100200000.0x10c3ebc20.0x10a8b88ed ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x123456789abcdef0.0x8c3ebc20.0x18c3ebc20.0x3ff0000000000000 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x123456789abcdef0.0x10c3ebc20.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x123456789abcdef0.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x0 ++vaddd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x0.0xf0debc9a78563412 ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3f800000.0xbf800000.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3f800000.0xf0debc9a78563412.0x123456789abcdef0.0xfd4ccccd ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x7d4ccccd.0x17d4ccccd ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0xff000000.0xfd4ccccd.0xfb99999a ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7f000000.0x17f000000.0x7b99999a.0x17b99999a ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xff000000.0xfd4ccccd.0xfb99999a.0xfc19999a ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7d4ccccd.0x17d4ccccd.0x7c19999a.0x17c19999a ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfd4ccccd.0xfdcccccd.0xfc19999a.0xfe0ccccd ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7dcccccd.0x17dcccccd.0x7e0ccccd.0x17e0ccccd ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfdcccccd.0xffc00000.0xfe0ccccd.0xfe6ccccd ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7fc00000.0x17fc00000.0x7e6ccccd.0x17e6ccccd ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xffc00000.0x100200000.0xfe6ccccd.0x10a8b88ed ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80200000.0x180200000.0x8a8b88ed.0x18a8b88ed ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x100200000.0x10c3ebc20.0x10a8b88ed.0x3ff0000000000000 ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8c3ebc20.0x18c3ebc20.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x10c3ebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xbdcccccd ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x3dcccccd.0xbdcccccd ++vaddd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xbf800000.0x3dcccccd.0xf0debc9a78563412 ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbf800000.0x3dcccccd.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbf800000.0xf0debc9a78563412.0x123456789abcdef0.0x7dcccccd ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0xfd4ccccd.0xfdcccccd ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x7d4ccccd.0x17d4ccccd.0x7c19999a ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xff000000.0xfd4ccccd.0xfb99999a.0xfc19999a ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x17f000000.0x7b99999a.0x17b99999a.0x7c99999a ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfd4ccccd.0xfb99999a.0xfc19999a.0xfc99999a ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x17d4ccccd.0x7c19999a.0x17c19999a.0x7e8ccccd ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfdcccccd.0xfc19999a.0xfe0ccccd.0xfe8ccccd ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x17dcccccd.0x7e0ccccd.0x17e0ccccd.0x7eeccccd ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xffc00000.0xfe0ccccd.0xfe6ccccd.0xfeeccccd ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x17fc00000.0x7e6ccccd.0x17e6ccccd.0x8b0b88ed ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x100200000.0xfe6ccccd.0x10a8b88ed.0x10b0b88ed ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x180200000.0x8a8b88ed.0x18a8b88ed.0x3ff0000000000000 ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x10c3ebc20.0x10a8b88ed.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x18c3ebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x3e4ccccd ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xbdcccccd.0x3e4ccccd ++vaddd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x3dcccccd.0xbdcccccd.0xf0debc9a78563412 ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3dcccccd.0xbdcccccd.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3dcccccd.0xf0debc9a78563412.0x123456789abcdef0.0xfdcccccd ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x7dcccccd.0x17dcccccd ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0xfd4ccccd.0xfdcccccd.0xfc19999a ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7d4ccccd.0x17d4ccccd.0x7c19999a.0x17c19999a ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfd4ccccd.0xfb99999a.0xfc19999a.0xfc99999a ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7b99999a.0x17b99999a.0x7c99999a.0x17c99999a ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfb99999a.0xfc19999a.0xfc99999a.0xfe8ccccd ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7c19999a.0x17c19999a.0x7e8ccccd.0x17e8ccccd ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfc19999a.0xfe0ccccd.0xfe8ccccd.0xfeeccccd ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7e0ccccd.0x17e0ccccd.0x7eeccccd.0x17eeccccd ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfe0ccccd.0xfe6ccccd.0xfeeccccd.0x10b0b88ed ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7e6ccccd.0x17e6ccccd.0x8b0b88ed.0x18b0b88ed ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfe6ccccd.0x10a8b88ed.0x10b0b88ed.0x3ff0000000000000 ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8a8b88ed.0x18a8b88ed.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x10a8b88ed.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xbe4ccccd ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x3e4ccccd.0xbe4ccccd ++vaddd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xbdcccccd.0x3e4ccccd.0xf0debc9a78563412 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbdcccccd.0x3e4ccccd.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbdcccccd.0xf0debc9a78563412.0x123456789abcdef0.0x7fc00000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0xfdcccccd.0xffc00000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x7dcccccd.0x17dcccccd.0x7e0ccccd ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfd4ccccd.0xfdcccccd.0xfc19999a.0xfe0ccccd ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x17d4ccccd.0x7c19999a.0x17c19999a.0x7e8ccccd ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfb99999a.0xfc19999a.0xfc99999a.0xfe8ccccd ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x17b99999a.0x7c99999a.0x17c99999a.0x80800000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfc19999a.0xfc99999a.0xfe8ccccd.0x100800000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x17c19999a.0x7e8ccccd.0x17e8ccccd.0x80e00000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfe0ccccd.0xfe8ccccd.0xfeeccccd.0x100e00000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x17e0ccccd.0x7eeccccd.0x17eeccccd.0x8cfebc20 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfe6ccccd.0xfeeccccd.0x10b0b88ed.0x10cfebc20 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x17e6ccccd.0x8b0b88ed.0x18b0b88ed.0x3ff0000000000000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x10a8b88ed.0x10b0b88ed.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x18a8b88ed.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x40400000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xbe4ccccd.0x40400000 ++vaddd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x3e4ccccd.0xbe4ccccd.0xf0debc9a78563412 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3e4ccccd.0xbe4ccccd.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3e4ccccd.0xf0debc9a78563412.0x123456789abcdef0.0xffc00000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x7fc00000.0x17fc00000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0xfdcccccd.0xffc00000.0xfe0ccccd ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7dcccccd.0x17dcccccd.0x7e0ccccd.0x17e0ccccd ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfdcccccd.0xfc19999a.0xfe0ccccd.0xfe8ccccd ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7c19999a.0x17c19999a.0x7e8ccccd.0x17e8ccccd ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfc19999a.0xfc99999a.0xfe8ccccd.0x100800000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7c99999a.0x17c99999a.0x80800000.0x180800000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfc99999a.0xfe8ccccd.0x100800000.0x100e00000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7e8ccccd.0x17e8ccccd.0x80e00000.0x180e00000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfe8ccccd.0xfeeccccd.0x100e00000.0x10cfebc20 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7eeccccd.0x17eeccccd.0x8cfebc20.0x18cfebc20 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfeeccccd.0x10b0b88ed.0x10cfebc20.0x3ff0000000000000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8b0b88ed.0x18b0b88ed.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x10b0b88ed.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xc0400000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x40400000.0xc0400000 ++vaddd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xbe4ccccd.0x40400000.0xf0debc9a78563412 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbe4ccccd.0x40400000.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbe4ccccd.0xf0debc9a78563412.0x123456789abcdef0.0x80200000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0xffc00000.0x100200000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x7fc00000.0x17fc00000.0x7e6ccccd ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfdcccccd.0xffc00000.0xfe0ccccd.0xfe6ccccd ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x17dcccccd.0x7e0ccccd.0x17e0ccccd.0x7eeccccd ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfc19999a.0xfe0ccccd.0xfe8ccccd.0xfeeccccd ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x17c19999a.0x7e8ccccd.0x17e8ccccd.0x80e00000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfc99999a.0xfe8ccccd.0x100800000.0x100e00000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x17c99999a.0x80800000.0x180800000.0x81400000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfe8ccccd.0x100800000.0x100e00000.0x101400000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x17e8ccccd.0x80e00000.0x180e00000.0x8d5ebc20 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfeeccccd.0x100e00000.0x10cfebc20.0x10d5ebc20 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x17eeccccd.0x8cfebc20.0x18cfebc20.0x3ff0000000000000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x10b0b88ed.0x10cfebc20.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x18b0b88ed.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x40a00000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc0400000.0x40a00000 ++vaddd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x40400000.0xc0400000.0xf0debc9a78563412 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40400000.0xc0400000.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40400000.0xf0debc9a78563412.0x123456789abcdef0.0x100200000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x80200000.0x180200000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0xffc00000.0x100200000.0xfe6ccccd ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7fc00000.0x17fc00000.0x7e6ccccd.0x17e6ccccd ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xffc00000.0xfe0ccccd.0xfe6ccccd.0xfeeccccd ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7e0ccccd.0x17e0ccccd.0x7eeccccd.0x17eeccccd ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfe0ccccd.0xfe8ccccd.0xfeeccccd.0x100e00000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7e8ccccd.0x17e8ccccd.0x80e00000.0x180e00000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfe8ccccd.0x100800000.0x100e00000.0x101400000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80800000.0x180800000.0x81400000.0x181400000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x100800000.0x100e00000.0x101400000.0x10d5ebc20 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80e00000.0x180e00000.0x8d5ebc20.0x18d5ebc20 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x100e00000.0x10cfebc20.0x10d5ebc20.0x3ff0000000000000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8cfebc20.0x18cfebc20.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x10cfebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xc0a00000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x40a00000.0xc0a00000 ++vaddd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xc0400000.0x40a00000.0xf0debc9a78563412 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0400000.0x40a00000.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0400000.0xf0debc9a78563412.0x123456789abcdef0.0x8c3ebc20 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x100200000.0x10c3ebc20 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x80200000.0x180200000.0x8a8b88ed ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xffc00000.0x100200000.0xfe6ccccd.0x10a8b88ed ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x17fc00000.0x7e6ccccd.0x17e6ccccd.0x8b0b88ed ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfe0ccccd.0xfe6ccccd.0xfeeccccd.0x10b0b88ed ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x17e0ccccd.0x7eeccccd.0x17eeccccd.0x8cfebc20 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfe8ccccd.0xfeeccccd.0x100e00000.0x10cfebc20 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x17e8ccccd.0x80e00000.0x180e00000.0x8d5ebc20 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x100800000.0x100e00000.0x101400000.0x10d5ebc20 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x180800000.0x81400000.0x181400000.0x997d7840 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x100e00000.0x101400000.0x10d5ebc20.0x1197d7840 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x180e00000.0x8d5ebc20.0x18d5ebc20.0x3ff0000000000000 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x10cfebc20.0x10d5ebc20.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x18cfebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x4cbebc20 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc0a00000.0x4cbebc20 ++vaddd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x40a00000.0xc0a00000.0xf0debc9a78563412 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40a00000.0xc0a00000.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40a00000.0xf0debc9a78563412.0x123456789abcdef0.0x10c3ebc20 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x8c3ebc20.0x18c3ebc20 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x100200000.0x10c3ebc20.0x10a8b88ed ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80200000.0x180200000.0x8a8b88ed.0x18a8b88ed ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x100200000.0xfe6ccccd.0x10a8b88ed.0x10b0b88ed ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7e6ccccd.0x17e6ccccd.0x8b0b88ed.0x18b0b88ed ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfe6ccccd.0xfeeccccd.0x10b0b88ed.0x10cfebc20 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7eeccccd.0x17eeccccd.0x8cfebc20.0x18cfebc20 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfeeccccd.0x100e00000.0x10cfebc20.0x10d5ebc20 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80e00000.0x180e00000.0x8d5ebc20.0x18d5ebc20 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x100e00000.0x101400000.0x10d5ebc20.0x1197d7840 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x81400000.0x181400000.0x997d7840.0x1997d7840 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x101400000.0x10d5ebc20.0x1197d7840.0x3ff0000000000000 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8d5ebc20.0x18d5ebc20.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x10d5ebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xccbebc20 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x4cbebc20.0xccbebc20 ++vaddd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xc0a00000.0x4cbebc20.0xf0debc9a78563412 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0a00000.0x4cbebc20.0xf0debc9a78563412.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0a00000.0xf0debc9a78563412.0x123456789abcdef0.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x10c3ebc20.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x8c3ebc20.0x18c3ebc20.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x100200000.0x10c3ebc20.0x10a8b88ed.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x180200000.0x8a8b88ed.0x18a8b88ed.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfe6ccccd.0x10a8b88ed.0x10b0b88ed.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x17e6ccccd.0x8b0b88ed.0x18b0b88ed.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfeeccccd.0x10b0b88ed.0x10cfebc20.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x17eeccccd.0x8cfebc20.0x18cfebc20.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x100e00000.0x10cfebc20.0x10d5ebc20.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x180e00000.0x8d5ebc20.0x18d5ebc20.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x101400000.0x10d5ebc20.0x1197d7840.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x181400000.0x997d7840.0x1997d7840.0x4000000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x10d5ebc20.0x1197d7840.0x3ff0000000000000.0x0 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x18d5ebc20.0x3ff0000000000000.0xbff0000000000000.0x3ff199999999999a ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0x3feccccccccccccd ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3ff3333333333333 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0x3fe999999999999a ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4010000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc000000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4018000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc010000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78404000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d783fc000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xccbebc20.0x3ff0000000000000 ++vaddd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x4cbebc20.0xccbebc20.0xf0debc9a78563412 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4cbebc20.0xccbebc20.0xf0debc9a78563412.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4cbebc20.0xf0debc9a78563412.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x10c3ebc20.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8c3ebc20.0x18c3ebc20.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x10c3ebc20.0x10a8b88ed.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8a8b88ed.0x18a8b88ed.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x10a8b88ed.0x10b0b88ed.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8b0b88ed.0x18b0b88ed.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x10b0b88ed.0x10cfebc20.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8cfebc20.0x18cfebc20.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x10cfebc20.0x10d5ebc20.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8d5ebc20.0x18d5ebc20.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x10d5ebc20.0x1197d7840.0x3ff0000000000000.0x0 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x997d7840.0x1997d7840.0x4000000000000000.0xc000000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x1197d7840.0x3ff0000000000000.0x0.0xbfeccccccccccccd ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3ff199999999999a.0xbff199999999999a ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0x3feccccccccccccd.0xbfe999999999999a ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3ff3333333333333.0xbff3333333333333 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0x3fe999999999999a.0x4000000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4010000000000000.0xc010000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc000000000000000.0x4010000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4018000000000000.0xc018000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc010000000000000.0x4197d783fc000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78404000000.0xc197d78404000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d783fc000000.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xccbebc20.0x3ff0000000000000.0xf0debc9a78563412 ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xccbebc20.0x3ff0000000000000.0xf0debc9a78563412.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xccbebc20.0xf0debc9a78563412.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x10c3ebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x18c3ebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x10a8b88ed.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x18a8b88ed.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x10b0b88ed.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x18b0b88ed.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x10cfebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x18cfebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x10d5ebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x18d5ebc20.0x3ff0000000000000.0xbff0000000000000.0x3ff199999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x1197d7840.0x3ff0000000000000.0x0.0xbfeccccccccccccd ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x1997d7840.0x4000000000000000.0xc000000000000000.0x3fc999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x0.0xbfeccccccccccccd.0x0 ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3ff199999999999a.0xbff199999999999a.0x3fd3333333333334 ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3feccccccccccccd.0xbfe999999999999a.0xbfb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3ff3333333333333.0xbff3333333333333.0x4008cccccccccccd ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fe999999999999a.0x4000000000000000.0xc007333333333333 ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4010000000000000.0xc010000000000000.0x4014666666666666 ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc000000000000000.0x4010000000000000.0xc01399999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4018000000000000.0xc018000000000000.0x4197d78400666666 ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc010000000000000.0x4197d783fc000000.0xc197d783ff99999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78404000000.0xc197d78404000000.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d783fc000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000.0xf0debc9a78563412 ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3ff0000000000000.0xbff0000000000000.0xf0debc9a78563412.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3ff0000000000000.0xf0debc9a78563412.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0x3feccccccccccccd ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3ff0000000000000.0xbff0000000000000.0x3ff199999999999a.0xbff199999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3ff0000000000000.0x0.0xbfeccccccccccccd.0x0 ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0xc000000000000000.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0xbfeccccccccccccd.0x0.0x3fb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3ff199999999999a.0xbff199999999999a.0x3fd3333333333334.0xbfd3333333333334 ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3feccccccccccccd.0xbfe999999999999a.0xbfb999999999999a.0x4007333333333333 ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3ff3333333333333.0xbff3333333333333.0x4008cccccccccccd.0xc008cccccccccccd ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fe999999999999a.0x4000000000000000.0xc007333333333333.0x401399999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4010000000000000.0xc010000000000000.0x4014666666666666.0xc014666666666666 ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc000000000000000.0x4010000000000000.0xc01399999999999a.0x4197d783ff99999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4018000000000000.0xc018000000000000.0x4197d78400666666.0xc197d78400666666 ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc010000000000000.0x4197d783fc000000.0xc197d783ff99999a.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78404000000.0xc197d78404000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d783fc000000.0xbff0000000000000.0x3fb999999999999a.0xf0debc9a78563412 ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbff0000000000000.0x3fb999999999999a.0xf0debc9a78563412.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbff0000000000000.0xf0debc9a78563412.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3ff3333333333333 ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbff0000000000000.0x3fb999999999999a.0x3feccccccccccccd.0xbfe999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbff0000000000000.0x3ff199999999999a.0xbff199999999999a.0x3fd3333333333334 ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0xbfeccccccccccccd.0x0.0x3fb999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc000000000000000.0x3fc999999999999a.0xbfc999999999999a.0x3fd999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfeccccccccccccd.0x0.0x3fb999999999999a.0x0 ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbff199999999999a.0x3fd3333333333334.0xbfd3333333333334.0x400999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfe999999999999a.0xbfb999999999999a.0x4007333333333333.0xc006666666666666 ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbff3333333333333.0x4008cccccccccccd.0xc008cccccccccccd.0x4014cccccccccccd ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0xc007333333333333.0x401399999999999a.0xc013333333333333 ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc010000000000000.0x4014666666666666.0xc014666666666666.0x4197d78400cccccd ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4010000000000000.0xc01399999999999a.0x4197d783ff99999a.0xc197d783ff333333 ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc018000000000000.0x4197d78400666666.0xc197d78400666666.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d783fc000000.0xc197d783ff99999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78404000000.0x3fb999999999999a.0xbfb999999999999a.0xf0debc9a78563412 ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3fb999999999999a.0xbfb999999999999a.0xf0debc9a78563412.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3fb999999999999a.0xf0debc9a78563412.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0x3fe999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fb999999999999a.0xbfb999999999999a.0x3ff3333333333333.0xbff3333333333333 ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fb999999999999a.0x3feccccccccccccd.0xbfe999999999999a.0xbfb999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff199999999999a.0xbff199999999999a.0x3fd3333333333334.0xbfd3333333333334 ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbfeccccccccccccd.0x0.0x3fb999999999999a.0x0 ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fc999999999999a.0xbfc999999999999a.0x3fd999999999999a.0xbfd999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x3fb999999999999a.0x0.0x4006666666666666 ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fd3333333333334.0xbfd3333333333334.0x400999999999999a.0xc00999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfb999999999999a.0x4007333333333333.0xc006666666666666.0x4013333333333333 ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008cccccccccccd.0xc008cccccccccccd.0x4014cccccccccccd.0xc014cccccccccccd ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc007333333333333.0x401399999999999a.0xc013333333333333.0x4197d783ff333333 ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014666666666666.0xc014666666666666.0x4197d78400cccccd.0xc197d78400cccccd ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc01399999999999a.0x4197d783ff99999a.0xc197d783ff333333.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400666666.0xc197d78400666666.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d783ff99999a.0xbfb999999999999a.0x3fc999999999999a.0xf0debc9a78563412 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbfb999999999999a.0x3fc999999999999a.0xf0debc9a78563412.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbfb999999999999a.0xf0debc9a78563412.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4010000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0x3fe999999999999a.0x4000000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfb999999999999a.0x3ff3333333333333.0xbff3333333333333.0x4008cccccccccccd ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3feccccccccccccd.0xbfe999999999999a.0xbfb999999999999a.0x4007333333333333 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff199999999999a.0x3fd3333333333334.0xbfd3333333333334.0x400999999999999a ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x3fb999999999999a.0x0.0x4006666666666666 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfc999999999999a.0x3fd999999999999a.0xbfd999999999999a.0x4018000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fb999999999999a.0x0.0x4006666666666666.0x0 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfd3333333333334.0x400999999999999a.0xc00999999999999a.0x4020000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4007333333333333.0xc006666666666666.0x4013333333333333.0xc000000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008cccccccccccd.0x4014cccccccccccd.0xc014cccccccccccd.0x4197d7840c000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x401399999999999a.0xc013333333333333.0x4197d783ff333333.0xc197d783f4000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014666666666666.0x4197d78400cccccd.0xc197d78400cccccd.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d783ff99999a.0xc197d783ff333333.0xbfc999999999999a.0x4008000000000000 ++vaddd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400666666.0x3fc999999999999a.0xbfc999999999999a.0xf0debc9a78563412 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3fc999999999999a.0xbfc999999999999a.0xf0debc9a78563412.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3fc999999999999a.0xf0debc9a78563412.0x4008000000000000.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc000000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4010000000000000.0xc010000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fc999999999999a.0x3fe999999999999a.0x4000000000000000.0xc007333333333333 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff3333333333333.0xbff3333333333333.0x4008cccccccccccd.0xc008cccccccccccd ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbfe999999999999a.0xbfb999999999999a.0x4007333333333333.0xc006666666666666 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fd3333333333334.0xbfd3333333333334.0x400999999999999a.0xc00999999999999a ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x0.0x4006666666666666.0x0 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fd999999999999a.0xbfd999999999999a.0x4018000000000000.0xc018000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4006666666666666.0x0.0x4000000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x400999999999999a.0xc00999999999999a.0x4020000000000000.0xc020000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc006666666666666.0x4013333333333333.0xc000000000000000.0x4197d783f4000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014cccccccccccd.0xc014cccccccccccd.0x4197d7840c000000.0xc197d7840c000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc013333333333333.0x4197d783ff333333.0xc197d783f4000000.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400cccccd.0xc197d78400cccccd.0x4008000000000000.0xc008000000000000 ++vaddd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d783ff333333.0xbfc999999999999a.0x4008000000000000.0xf0debc9a78563412 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbfc999999999999a.0x4008000000000000.0xf0debc9a78563412.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbfc999999999999a.0xf0debc9a78563412.0xc008000000000000.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4018000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc000000000000000.0x4010000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfc999999999999a.0x4010000000000000.0xc010000000000000.0x4014666666666666 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fe999999999999a.0x4000000000000000.0xc007333333333333.0x401399999999999a ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff3333333333333.0x4008cccccccccccd.0xc008cccccccccccd.0x4014cccccccccccd ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x4007333333333333.0xc006666666666666.0x4013333333333333 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfd3333333333334.0x400999999999999a.0xc00999999999999a.0x4020000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x4006666666666666.0x0.0x4000000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfd999999999999a.0x4018000000000000.0xc018000000000000.0x4024000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4006666666666666.0x0.0x4000000000000000.0x0 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc00999999999999a.0x4020000000000000.0xc020000000000000.0x4197d78414000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4013333333333333.0xc000000000000000.0x4197d783f4000000.0xc197d783ec000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014cccccccccccd.0x4197d7840c000000.0xc197d7840c000000.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d783ff333333.0xc197d783f4000000.0xc008000000000000.0x4014000000000000 ++vaddd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400cccccd.0x4008000000000000.0xc008000000000000.0xf0debc9a78563412 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4008000000000000.0xc008000000000000.0xf0debc9a78563412.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4008000000000000.0xf0debc9a78563412.0x4014000000000000.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc010000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4008000000000000.0xc008000000000000.0x4018000000000000.0xc018000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4008000000000000.0xc000000000000000.0x4010000000000000.0xc01399999999999a ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4010000000000000.0xc010000000000000.0x4014666666666666.0xc014666666666666 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0xc007333333333333.0x401399999999999a.0xc013333333333333 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4008cccccccccccd.0xc008cccccccccccd.0x4014cccccccccccd.0xc014cccccccccccd ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4007333333333333.0xc006666666666666.0x4013333333333333.0xc000000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x400999999999999a.0xc00999999999999a.0x4020000000000000.0xc020000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4006666666666666.0x0.0x4000000000000000.0x0 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4018000000000000.0xc018000000000000.0x4024000000000000.0xc024000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4197d783ec000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4020000000000000.0xc020000000000000.0x4197d78414000000.0xc197d78414000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc000000000000000.0x4197d783f4000000.0xc197d783ec000000.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d7840c000000.0xc197d7840c000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d783f4000000.0xc008000000000000.0x4014000000000000.0xf0debc9a78563412 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc008000000000000.0x4014000000000000.0xf0debc9a78563412.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc008000000000000.0xf0debc9a78563412.0xc014000000000000.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78404000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc008000000000000.0x4014000000000000.0xc010000000000000.0x4197d783fc000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc008000000000000.0x4018000000000000.0xc018000000000000.0x4197d78400666666 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc000000000000000.0x4010000000000000.0xc01399999999999a.0x4197d783ff99999a ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc010000000000000.0x4014666666666666.0xc014666666666666.0x4197d78400cccccd ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc007333333333333.0x401399999999999a.0xc013333333333333.0x4197d783ff333333 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc008cccccccccccd.0x4014cccccccccccd.0xc014cccccccccccd.0x4197d7840c000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc006666666666666.0x4013333333333333.0xc000000000000000.0x4197d783f4000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc00999999999999a.0x4020000000000000.0xc020000000000000.0x4197d78414000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x4000000000000000.0x0.0x4197d783ec000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc018000000000000.0x4024000000000000.0xc024000000000000.0x41a7d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4197d783ec000000.0x0 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc020000000000000.0x4197d78414000000.0xc197d78414000000.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d783f4000000.0xc197d783ec000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d7840c000000.0x4014000000000000.0xc014000000000000.0xf0debc9a78563412 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4014000000000000.0xc014000000000000.0xf0debc9a78563412.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4014000000000000.0xf0debc9a78563412.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d783fc000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4014000000000000.0xc014000000000000.0x4197d78404000000.0xc197d78404000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4014000000000000.0xc010000000000000.0x4197d783fc000000.0xc197d783ff99999a ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4018000000000000.0xc018000000000000.0x4197d78400666666.0xc197d78400666666 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4010000000000000.0xc01399999999999a.0x4197d783ff99999a.0xc197d783ff333333 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4014666666666666.0xc014666666666666.0x4197d78400cccccd.0xc197d78400cccccd ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x401399999999999a.0xc013333333333333.0x4197d783ff333333.0xc197d783f4000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4014cccccccccccd.0xc014cccccccccccd.0x4197d7840c000000.0xc197d7840c000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4013333333333333.0xc000000000000000.0x4197d783f4000000.0xc197d783ec000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4020000000000000.0xc020000000000000.0x4197d78414000000.0xc197d78414000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4000000000000000.0x0.0x4197d783ec000000.0x0 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4024000000000000.0xc024000000000000.0x41a7d78400000000.0xc1a7d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4197d783ec000000.0x0.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78414000000.0xc197d78414000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d783ec000000.0xc014000000000000.0x4197d78400000000.0xf0debc9a78563412 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc014000000000000.0x4197d78400000000.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc014000000000000.0xf0debc9a78563412.0xc197d78400000000.0x0 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x4197d78400000000.0xc197d78400000000.0x0 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xbdcccccd ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x3e4ccccd ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xbe4ccccd ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x40400000 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xc0400000 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x40a00000 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xc0a00000 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x4cbebc20 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xccbebc20 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x3ff0000000000000 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc014000000000000.0x4197d78400000000.0xc197d783fc000000.0xbff0000000000000 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc014000000000000.0x4197d78404000000.0xc197d78404000000.0x3fb999999999999a ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc010000000000000.0x4197d783fc000000.0xc197d783ff99999a.0xbfb999999999999a ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc018000000000000.0x4197d78400666666.0xc197d78400666666.0x3fc999999999999a ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc01399999999999a.0x4197d783ff99999a.0xc197d783ff333333.0xbfc999999999999a ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc014666666666666.0x4197d78400cccccd.0xc197d78400cccccd.0x4008000000000000 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc013333333333333.0x4197d783ff333333.0xc197d783f4000000.0xc008000000000000 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc014cccccccccccd.0x4197d7840c000000.0xc197d7840c000000.0x4014000000000000 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc000000000000000.0x4197d783f4000000.0xc197d783ec000000.0xc014000000000000 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc020000000000000.0x4197d78414000000.0xc197d78414000000.0x4197d78400000000 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x4197d783ec000000.0x0.0xc197d78400000000 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc024000000000000.0x41a7d78400000000.0xc1a7d78400000000.0x0 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d783ec000000.0x0.0xc197d78400000000.0x0 ++vaddd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78414000000.0x4197d78400000000.0xc197d78400000000.0xf0debc9a78563412 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4197d78400000000.0xc197d78400000000.0xf0debc9a78563412.0x123456789abcdef0 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4197d78400000000.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xc197d78400000000.0x0.0x0 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4197d78400000000.0xc197d78400000000.0x0.0x0 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4197d78400000000.0xc197d78400000000.0x3dcccccd.0xbdcccccd ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4197d78400000000.0xc197d78400000000.0xbdcccccd.0x3e4ccccd ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4197d78400000000.0xc197d78400000000.0x3e4ccccd.0xbe4ccccd ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4197d78400000000.0xc197d78400000000.0xbe4ccccd.0x40400000 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4197d78400000000.0xc197d78400000000.0x40400000.0xc0400000 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4197d78400000000.0xc197d78400000000.0xc0400000.0x40a00000 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4197d78400000000.0xc197d78400000000.0x40a00000.0xc0a00000 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4197d78400000000.0xc197d78400000000.0xc0a00000.0x4cbebc20 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4197d78400000000.0xc197d78400000000.0x4cbebc20.0xccbebc20 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4197d78400000000.0xc197d78400000000.0xccbebc20.0x3ff0000000000000 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4197d78400000000.0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0xc197d783fc000000.0xbff0000000000000.0x3fb999999999999a ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d78404000000.0xc197d78404000000.0x3fb999999999999a.0xbfb999999999999a ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4197d783fc000000.0xc197d783ff99999a.0xbfb999999999999a.0x3fc999999999999a ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4197d78400666666.0xc197d78400666666.0x3fc999999999999a.0xbfc999999999999a ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4197d783ff99999a.0xc197d783ff333333.0xbfc999999999999a.0x4008000000000000 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4197d78400cccccd.0xc197d78400cccccd.0x4008000000000000.0xc008000000000000 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4197d783ff333333.0xc197d783f4000000.0xc008000000000000.0x4014000000000000 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4197d7840c000000.0xc197d7840c000000.0x4014000000000000.0xc014000000000000 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4197d783f4000000.0xc197d783ec000000.0xc014000000000000.0x4197d78400000000 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4197d78414000000.0xc197d78414000000.0x4197d78400000000.0xc197d78400000000 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4197d783ec000000.0x0.0xc197d78400000000.0x0 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x41a7d78400000000.0xc1a7d78400000000.0x0.0x8000000000000000 ++vaddd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0xc197d78400000000.0x0.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc197d78400000000.0x0.0xf0debc9a78563412.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc197d78400000000.0xf0debc9a78563412.0x123456789abcdef0.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x0.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc197d78400000000.0x0.0x0.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc197d78400000000.0xbf800000.0x3dcccccd.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc197d78400000000.0x3dcccccd.0xbdcccccd.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc197d78400000000.0xbdcccccd.0x3e4ccccd.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc197d78400000000.0x3e4ccccd.0xbe4ccccd.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc197d78400000000.0xbe4ccccd.0x40400000.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc197d78400000000.0x40400000.0xc0400000.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc197d78400000000.0xc0400000.0x40a00000.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc197d78400000000.0x40a00000.0xc0a00000.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc197d78400000000.0xc0a00000.0x4cbebc20.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc197d78400000000.0x4cbebc20.0xccbebc20.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc197d78400000000.0xccbebc20.0x3ff0000000000000.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d783fc000000.0xbff0000000000000.0x3fb999999999999a.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc197d78404000000.0x3fb999999999999a.0xbfb999999999999a.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc197d783ff99999a.0xbfb999999999999a.0x3fc999999999999a.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc197d78400666666.0x3fc999999999999a.0xbfc999999999999a.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc197d783ff333333.0xbfc999999999999a.0x4008000000000000.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc197d78400cccccd.0x4008000000000000.0xc008000000000000.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc197d783f4000000.0xc008000000000000.0x4014000000000000.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc197d7840c000000.0x4014000000000000.0xc014000000000000.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc197d783ec000000.0xc014000000000000.0x4197d78400000000.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc197d78414000000.0x4197d78400000000.0xc197d78400000000.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0xc197d78400000000.0x0.0xf0debc9a78563412 ++vaddd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc1a7d78400000000.0x0.0x8000000000000000.0xf0eebc9a78563412 ++=== Running test on vsubs=== ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x7ff0000000000000.0xfff0000000000000.0x0 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0xfff0000000000000.0x0 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0xc0debc9a60000000.0x3a34567880000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x80000000a0000000.0xc0debc9a60000000.0x3a34567880000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x8000000020000000.0xc0debc9a60000000.0x3a34567880000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0x80000000a0000000.0xc0debc9a60000000.0x3a34567880000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x8000000020000000.0xc0debc9a60000000.0x3a34567880000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0x80000000a0000000.0xc0debc9a60000000.0x3a34567880000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x8000000040000000.0xc0debc9a60000000.0x3a34567880000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0xc0debc9a60000000.0x3a34567880000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0xc0debc9a60000000.0x3a34567880000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0xc0debc9a60000000.0x3a34567880000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0xc0debc9a60000000.0xbff0000000000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xc0debcda60000000.0x3ff0000000000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0xc0debc5a60000000.0xbfb9999980000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xfff0000000000000.0x3fb99999a0000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb99999a0000000.0xfff0000000000000.0xbfc99999a0000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb99999a0000000.0x3fb99999a0000000.0xfff0000000000000.0x3fc99999a0000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0xbfc99999a0000000.0xfff0000000000000.0xc008000000000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0x3fc99999a0000000.0xfff0000000000000.0x4008000000000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0xc008000000000000.0xfff0000000000000.0xc014000000000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xfff0000000000000.0x4014000000000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0xfff0000000000000.0xc197d78400000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xfff0000000000000.0x4197d78400000000 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0xfff0000000000000.0x0 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xfff0000000000000.0x0 ++vsubs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0xfff0000000000000.0x7ff0000000000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0xfff0000000000000.0x7ff0000000000000.0x0 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x0 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0xc0debc9a60000000.0x3a34567880000000.0x0 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0xc0debc9a60000000.0x3a34567880000000.0x8000000080000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0xc0debc9a60000000.0x3a34567880000000.0x0 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0xc0debc9a60000000.0x3a34567880000000.0x8000000080000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0xc0debc9a60000000.0x3a34567880000000.0x8000000020000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0xc0debc9a60000000.0x3a34567880000000.0x80000000a0000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0xc0debc9a60000000.0x3a34567880000000.0x8000000020000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0xc0debc9a60000000.0x3a34567880000000.0x80000000a0000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0xc0debc9a60000000.0x3a34567880000000.0x8000000020000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0xc0debc9a60000000.0x3a34567880000000.0x80000000a0000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0xc0debc9a60000000.0x3a34567880000000.0xbff0000000000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0xc0debc9a60000000.0xbff0000000000000.0x3ff0000000000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xc0debcda60000000.0x3ff0000000000000.0xbfb9999980000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xfff0000000000000.0xbfb99999a0000000.0x3fb99999a0000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xfff0000000000000.0x3fb99999a0000000.0xbfc99999a0000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb99999a0000000.0xfff0000000000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0xfff0000000000000.0x3fc99999a0000000.0xc008000000000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0xfff0000000000000.0xc008000000000000.0x4008000000000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0xfff0000000000000.0x4008000000000000.0xc014000000000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xfff0000000000000.0xc014000000000000.0x4014000000000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xfff0000000000000.0x4014000000000000.0xc197d78400000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xfff0000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xfff0000000000000.0x4197d78400000000.0x0 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xfff0000000000000.0x0.0x0 ++vsubs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xfff0000000000000.0x0.0x7ff0000000000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0x0.0x7ff0000000000000.0x0 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x7ff0000000000000.0x0.0x0 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xfff0000000000000.0x0.0x0.0x0 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc0debc9a60000000.0x3a34567880000000.0x0.0x0 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc0debc9a60000000.0x3a34567880000000.0x8000000080000000.0x80000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc0debc9a60000000.0x3a34567880000000.0x0.0x0 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc0debc9a60000000.0x3a34567880000000.0x8000000080000000.0x60000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc0debc9a60000000.0x3a34567880000000.0x8000000020000000.0x8000000020000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc0debc9a60000000.0x3a34567880000000.0x80000000a0000000.0x60000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc0debc9a60000000.0x3a34567880000000.0x8000000020000000.0x8000000020000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0debc9a60000000.0x3a34567880000000.0x80000000a0000000.0x60000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc0debc9a60000000.0x3a34567880000000.0x8000000020000000.0x8000000020000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0debc9a60000000.0x3a34567880000000.0x80000000a0000000.0xbff0000000000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc0debc9a60000000.0x3a34567880000000.0xbff0000000000000.0x3ff0000000000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0debc9a60000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xfff0000000000000.0x3ff0000000000000.0xbfb99999a0000000.0x3fb99999a0000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xfff0000000000000.0xbfb99999a0000000.0x3fb99999a0000000.0xbfc99999a0000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xfff0000000000000.0x3fb99999a0000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xfff0000000000000.0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xfff0000000000000.0x3fc99999a0000000.0xc008000000000000.0x4008000000000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xfff0000000000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xfff0000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xfff0000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xfff0000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xfff0000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xfff0000000000000.0x4197d78400000000.0x0.0x0 ++vsubs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xfff0000000000000.0x0.0x0.0x7ff0000000000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3a34567880000000.0x20000000.0x40debc9a60000000.0xba34567880000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3a34567880000000.0x40debc9a60000000.0xba34567880000000.0x0 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x0.0x0 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3a34567880000000.0x8000000080000000.0x80000000.0x8000000080000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3a34567880000000.0x0.0x0.0x0 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3a34567880000000.0x8000000080000000.0x80000000.0x8000000080000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3a34567880000000.0x0.0x0.0x8000000020000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3a34567880000000.0x8000000080000000.0x60000000.0x80000000a0000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3a34567880000000.0x8000000020000000.0x8000000020000000.0x8000000020000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3a34567880000000.0x80000000a0000000.0x60000000.0x80000000a0000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3a34567880000000.0x8000000020000000.0x8000000020000000.0x8000000020000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3a34567880000000.0x80000000a0000000.0x60000000.0x80000000a0000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3a34567880000000.0x8000000020000000.0x8000000020000000.0xbff0000000000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3a34567880000000.0x80000000a0000000.0xbff0000000000000.0x3ff0000000000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3a34567880000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb99999a0000000.0x3fb99999a0000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb99999a0000000.0x3fb99999a0000000.0xbfc99999a0000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb99999a0000000.0x3fb99999a0000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000.0x4008000000000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x0 ++vsubs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x7ff0000000000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x20000000.0xa0000000.0x40debc9a60000000.0xba34567880000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x20000000.0x40debc9a60000000.0xba34567880000000.0x80000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x0.0x0 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x80000000.0x8000000080000000.0x80000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000080000000.0x80000000.0x8000000080000000.0x80000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000080000000.0x80000000.0x8000000080000000.0x60000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x8000000020000000.0x8000000020000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000080000000.0x60000000.0x80000000a0000000.0x60000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000020000000.0x8000000020000000.0x8000000020000000.0x8000000020000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000a0000000.0x60000000.0x80000000a0000000.0x60000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000020000000.0x8000000020000000.0x8000000020000000.0x8000000020000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000a0000000.0x60000000.0x80000000a0000000.0xbff0000000000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000020000000.0x8000000020000000.0xbff0000000000000.0x3ff0000000000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000a0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xa0000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x20000000.0xa0000000 ++vsubs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xa0000000.0x20000000.0x40debc9a60000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xa0000000.0x20000000.0x40debc9a60000000.0xba34567880000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xa0000000.0x40debc9a60000000.0xba34567880000000.0x0 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x80000000.0x8000000080000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x0.0x0.0x0 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000.0x8000000080000000.0x80000000.0x8000000080000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000000.0x8000000080000000.0x80000000.0x8000000080000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x8000000020000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000.0x8000000080000000.0x60000000.0x80000000a0000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x8000000020000000.0x8000000020000000.0x8000000020000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x60000000.0x80000000a0000000.0x60000000.0x80000000a0000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000020000000.0x8000000020000000.0x8000000020000000.0x8000000020000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x60000000.0x80000000a0000000.0x60000000.0x80000000a0000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000020000000.0x8000000020000000.0x8000000020000000.0xbff0000000000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x60000000.0x80000000a0000000.0xbff0000000000000.0x3ff0000000000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000020000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x20000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xa0000000.0x20000000 ++vsubs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x20000000.0xa0000000.0x40debc9a60000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x20000000.0xa0000000.0x40debc9a60000000.0xba34567880000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x20000000.0x40debc9a60000000.0xba34567880000000.0x80000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x0.0x0 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x80000000.0x8000000080000000.0x80000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000080000000.0x80000000.0x8000000080000000.0x80000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000080000000.0x80000000.0x8000000080000000.0x60000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x8000000020000000.0x8000000020000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000080000000.0x60000000.0x80000000a0000000.0x60000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000020000000.0x8000000020000000.0x8000000020000000.0x8000000020000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000a0000000.0x60000000.0x80000000a0000000.0x60000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000020000000.0x8000000020000000.0x8000000020000000.0x8000000020000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000a0000000.0x60000000.0x80000000a0000000.0xbff0000000000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000020000000.0x8000000020000000.0xbff0000000000000.0x3ff0000000000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000a0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xa0000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x20000000.0xa0000000 ++vsubs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xa0000000.0x20000000.0x40debc9a60000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xa0000000.0x20000000.0x40debc9a60000000.0xba34567880000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xa0000000.0x40debc9a60000000.0xba34567880000000.0x20000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x80000000.0x8000000060000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x0.0x0.0x20000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000.0x8000000080000000.0x80000000.0x8000000060000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x20000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000000.0x8000000080000000.0x80000000.0x8000000060000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000.0x8000000080000000.0x60000000.0x8000000080000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x8000000020000000.0x8000000020000000.0x0 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x60000000.0x80000000a0000000.0x60000000.0x8000000080000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000020000000.0x8000000020000000.0x8000000020000000.0x0 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x60000000.0x80000000a0000000.0x60000000.0x8000000080000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000020000000.0x8000000020000000.0x8000000020000000.0xbff0000000000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x60000000.0x80000000a0000000.0xbff0000000000000.0x3ff0000000000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000020000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x40000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xa0000000.0x40000000 ++vsubs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x20000000.0xa0000000.0x40debc9a60000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x20000000.0xa0000000.0x40debc9a60000000.0xba34567880000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x20000000.0x40debc9a60000000.0xba34567880000000.0xa0000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x20000000.0x20000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x80000000.0x8000000060000000.0xa0000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x20000000.0x20000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000080000000.0x80000000.0x8000000060000000.0xa0000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x20000000.0x20000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000080000000.0x80000000.0x8000000060000000.0x80000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000080000000.0x60000000.0x8000000080000000.0x80000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000020000000.0x8000000020000000.0x0.0x0 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000a0000000.0x60000000.0x8000000080000000.0x80000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000020000000.0x8000000020000000.0x0.0x0 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000a0000000.0x60000000.0x8000000080000000.0xbff0000000000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000020000000.0x8000000020000000.0xbff0000000000000.0x3ff0000000000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000a0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xc0000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x40000000.0xc0000000 ++vsubs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xa0000000.0x40000000.0x40debc9a60000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xa0000000.0x40000000.0x40debc9a60000000.0xba34567880000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xa0000000.0x40debc9a60000000.0xba34567880000000.0x20000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0xa0000000.0x8000000060000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x20000000.0x20000000.0x20000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000.0x8000000060000000.0xa0000000.0x8000000060000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x20000000.0x20000000.0x20000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000000.0x8000000060000000.0xa0000000.0x8000000060000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x20000000.0x20000000.0x0 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000.0x8000000060000000.0x80000000.0x8000000080000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x60000000.0x8000000080000000.0x80000000.0x8000000080000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000020000000.0x0.0x0.0x0 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x60000000.0x8000000080000000.0x80000000.0x8000000080000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000020000000.0x0.0x0.0xbff0000000000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x60000000.0x8000000080000000.0xbff0000000000000.0x3ff0000000000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000020000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x40000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xc0000000.0x40000000 ++vsubs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x40000000.0xc0000000.0x40debc9a60000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40000000.0xc0000000.0x40debc9a60000000.0xba34567880000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40000000.0x40debc9a60000000.0xba34567880000000.0xa0000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x20000000.0x20000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0xa0000000.0x8000000060000000.0xa0000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0x20000000.0x20000000.0x20000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000060000000.0xa0000000.0x8000000060000000.0xa0000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0x20000000.0x20000000.0x20000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000060000000.0xa0000000.0x8000000060000000.0x80000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0x20000000.0x0.0x0 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000060000000.0x80000000.0x8000000080000000.0x80000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000080000000.0x80000000.0x8000000080000000.0x80000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000080000000.0x80000000.0x8000000080000000.0xbff0000000000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0xbff0000000000000.0x3ff0000000000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000080000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xc0000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x40000000.0xc0000000 ++vsubs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xc0000000.0x40000000.0x40debc9a60000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0000000.0x40000000.0x40debc9a60000000.0xba34567880000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0000000.0x40debc9a60000000.0xba34567880000000.0x20000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0xa0000000.0x8000000060000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x20000000.0x20000000.0x20000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xa0000000.0x8000000060000000.0xa0000000.0x8000000060000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x20000000.0x20000000.0x20000000.0x20000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xa0000000.0x8000000060000000.0xa0000000.0x8000000060000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x20000000.0x20000000.0x20000000.0x0 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xa0000000.0x8000000060000000.0x80000000.0x8000000080000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x20000000.0x0.0x0.0x0 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000000.0x8000000080000000.0x80000000.0x8000000080000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80000000.0x8000000080000000.0x80000000.0x8000000080000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0xbff0000000000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80000000.0x8000000080000000.0xbff0000000000000.0x3ff0000000000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x40000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xc0000000.0x40000000 ++vsubs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x40000000.0xc0000000.0x40debc9a60000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40000000.0xc0000000.0x40debc9a60000000.0xba34567880000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40000000.0x40debc9a60000000.0xba34567880000000.0xa0000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x20000000.0x20000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0xa0000000.0x8000000060000000.0xa0000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0x20000000.0x20000000.0x20000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000060000000.0xa0000000.0x8000000060000000.0xa0000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0x20000000.0x20000000.0x20000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000060000000.0xa0000000.0x8000000060000000.0x80000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0x20000000.0x0.0x0 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000060000000.0x80000000.0x8000000080000000.0x80000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000080000000.0x80000000.0x8000000080000000.0x80000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000080000000.0x80000000.0x8000000080000000.0xbff0000000000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0xbff0000000000000.0x3ff0000000000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000080000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xc0000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x40000000.0xc0000000 ++vsubs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xc0000000.0x40000000.0x40debc9a60000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0000000.0x40000000.0x40debc9a60000000.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0000000.0x40debc9a60000000.0xba34567880000000.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0xa0000000.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x20000000.0x20000000.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xa0000000.0x8000000060000000.0xa0000000.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x20000000.0x20000000.0x20000000.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xa0000000.0x8000000060000000.0xa0000000.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x20000000.0x20000000.0x20000000.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xa0000000.0x8000000060000000.0x80000000.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x20000000.0x0.0x0.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000000.0x8000000080000000.0x80000000.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80000000.0x8000000080000000.0x80000000.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80000000.0x8000000080000000.0xbff0000000000000.0x4000000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0xbff0000000000000.0x3ff0000000000000.0x3fecccccc0000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3ff19999a0000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0x3fe99999a0000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3ff3333340000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc000000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4010000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc010000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4018000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xc0000000.0x3ff0000000000000 ++vsubs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x40000000.0xc0000000.0x40debcda60000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40000000.0xc0000000.0x40debcda60000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40000000.0x40debc9a60000000.0x3ff0000000000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x3ff0000000000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0xa0000000.0x3ff0000000000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0x20000000.0x3ff0000000000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000060000000.0xa0000000.0x3ff0000000000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0x20000000.0x3ff0000000000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000060000000.0xa0000000.0x3ff0000000000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0x20000000.0x3ff0000000000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000060000000.0x80000000.0x3ff0000000000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x3ff0000000000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000080000000.0x80000000.0x3ff0000000000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x3ff0000000000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000080000000.0x80000000.0x3ff0000000000000.0xc000000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000080000000.0xbff0000000000000.0x4000000000000000.0xbff19999a0000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0x3fecccccc0000000.0xbfecccccc0000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3ff19999a0000000.0xbff3333340000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0x3fe99999a0000000.0xbfe99999a0000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3ff3333340000000.0xc010000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc000000000000000.0x4000000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4010000000000000.0xc018000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc010000000000000.0x4010000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4018000000000000.0xc197d78400000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vsubs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xc0000000.0x3ff0000000000000.0x40debc5a60000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0000000.0x3ff0000000000000.0x40debc5a60000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0000000.0x40debcda60000000.0xbff0000000000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xa0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x20000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xa0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x20000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xa0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x20000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x3ff0000000000000.0xbff0000000000000.0xbfecccccc0000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80000000.0x3ff0000000000000.0xc000000000000000.0x3ff19999a0000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x4000000000000000.0xbff19999a0000000.0x3fc9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fecccccc0000000.0xbfecccccc0000000.0xbfb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3ff19999a0000000.0xbff3333340000000.0x3fd3333320000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0x3fe99999a0000000.0xbfe99999a0000000.0xc007333340000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3ff3333340000000.0xc010000000000000.0x4008ccccc0000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc000000000000000.0x4000000000000000.0xc0139999a0000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4010000000000000.0xc018000000000000.0x4014666660000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc010000000000000.0x4010000000000000.0xc197d78400000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4018000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xbff0000000000000.0x3fb9999980000000 ++vsubs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x3ff0000000000000.0xbff0000000000000.0x40debca0c0000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3ff0000000000000.0xbff0000000000000.0x7ff0000000000000.0xbfb99999a0000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3ff0000000000000.0x7ff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0xbff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbff19999a0000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3ff0000000000000.0xbff0000000000000.0xbfecccccc0000000.0x3fecccccc0000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3ff0000000000000.0xc000000000000000.0x3ff19999a0000000.0xbfc9999980000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0xbff19999a0000000.0x3fc99999a0000000.0xbfd3333340000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fecccccc0000000.0xbfecccccc0000000.0xbfb99999a0000000.0x3fb99999a0000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3ff19999a0000000.0xbff3333340000000.0x3fd3333340000000.0xc008ccccc0000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fe99999a0000000.0xbfe99999a0000000.0xc007333340000000.0x4007333340000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3ff3333340000000.0xc010000000000000.0x4008ccccc0000000.0xc014666660000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc000000000000000.0x4000000000000000.0xc0139999a0000000.0x40139999a0000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4010000000000000.0xc018000000000000.0x4014666660000000.0xc197d78400000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc010000000000000.0x4010000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4018000000000000.0xc197d78400000000.0x4197d78400000000.0xbfb99999a0000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vsubs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xbff0000000000000.0x3fb99999a0000000.0x7ff0000000000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbff0000000000000.0x3fb99999a0000000.0x7ff0000000000000.0x3fc99999a0000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbff0000000000000.0x7ff0000000000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbff0000000000000.0x3fb99999a0000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0xbfe99999a0000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbff0000000000000.0x3fb9999980000000.0xbff19999a0000000.0x3ff3333340000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbff0000000000000.0xbfecccccc0000000.0x3fecccccc0000000.0x3fb9999980000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc000000000000000.0x3ff19999a0000000.0xbfc99999a0000000.0x3fd3333340000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbff19999a0000000.0x3fc99999a0000000.0xbfd3333340000000.0x3fd99999a0000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfecccccc0000000.0xbfb99999a0000000.0x3fb99999a0000000.0xc006666660000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbff3333340000000.0x3fd3333340000000.0xc008ccccc0000000.0x40099999a0000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfe99999a0000000.0xc007333340000000.0x4007333340000000.0xc013333340000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc010000000000000.0x4008ccccc0000000.0xc014666660000000.0x4014ccccc0000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4000000000000000.0xc0139999a0000000.0x40139999a0000000.0xc197d78400000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc018000000000000.0x4014666660000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4010000000000000.0xc197d78400000000.0x4197d78400000000.0x3fc99999a0000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vsubs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x3fb99999a0000000.0xbfb99999a0000000.0x7ff0000000000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3fb99999a0000000.0xbfb99999a0000000.0x7ff0000000000000.0xbfc99999a0000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3fb99999a0000000.0x7ff0000000000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3fb99999a0000000.0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbff3333340000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fb9999980000000.0xbfb9999980000000.0xbfe99999a0000000.0x3fe99999a0000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fb9999980000000.0xbff19999a0000000.0x3ff3333340000000.0xbfd3333320000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfecccccc0000000.0x3fecccccc0000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff19999a0000000.0xbfc99999a0000000.0x3fd3333340000000.0xbfd99999a0000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fc99999a0000000.0xbfd3333340000000.0x3fd99999a0000000.0xc0099999a0000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfb99999a0000000.0x3fb99999a0000000.0xc006666660000000.0x4006666660000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fd3333340000000.0xc008ccccc0000000.0x40099999a0000000.0xc014ccccc0000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc007333340000000.0x4007333340000000.0xc013333340000000.0x4013333340000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008ccccc0000000.0xc014666660000000.0x4014ccccc0000000.0xc197d78400000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc0139999a0000000.0x40139999a0000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014666660000000.0xc197d78400000000.0x4197d78400000000.0xbfc99999a0000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vsubs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xbfb99999a0000000.0x3fc99999a0000000.0x7ff0000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbfb99999a0000000.0x3fc99999a0000000.0x7ff0000000000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbfb99999a0000000.0x7ff0000000000000.0xbfc99999a0000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4000000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbff3333340000000.0x4010000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfb9999980000000.0xbfe99999a0000000.0x3fe99999a0000000.0x4007333340000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff19999a0000000.0x3ff3333340000000.0xbfd3333340000000.0x4008ccccc0000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fecccccc0000000.0x3fb99999a0000000.0xbfb99999a0000000.0x4006666660000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfc99999a0000000.0x3fd3333340000000.0xbfd99999a0000000.0x40099999a0000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfd3333340000000.0x3fd99999a0000000.0xc0099999a0000000.0x4018000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fb99999a0000000.0xc006666660000000.0x4006666660000000.0xc000000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008ccccc0000000.0x40099999a0000000.0xc014ccccc0000000.0x4020000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4007333340000000.0xc013333340000000.0x4013333340000000.0xc197d78400000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014666660000000.0x4014ccccc0000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x40139999a0000000.0xc197d78400000000.0x4197d78400000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xbfc99999a0000000.0x4008000000000000 ++vsubs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x3fc99999a0000000.0xbfc99999a0000000.0x7ff0000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3fc99999a0000000.0xbfc99999a0000000.0x7ff0000000000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3fc99999a0000000.0x7ff0000000000000.0x4008000000000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0xbfc99999a0000000.0x4008000000000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc010000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4000000000000000.0xc000000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fc9999980000000.0xbff3333340000000.0x4010000000000000.0xc008ccccc0000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfe99999a0000000.0x3fe99999a0000000.0x4007333340000000.0xc007333340000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff3333340000000.0xbfd3333340000000.0x4008ccccc0000000.0xc0099999a0000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb99999a0000000.0xbfb99999a0000000.0x4006666660000000.0xc006666660000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fd3333340000000.0xbfd99999a0000000.0x40099999a0000000.0xc018000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fd99999a0000000.0xc0099999a0000000.0x4018000000000000.0xc020000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc006666660000000.0x4006666660000000.0xc000000000000000.0x4000000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x40099999a0000000.0xc014ccccc0000000.0x4020000000000000.0xc197d78400000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc013333340000000.0x4013333340000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014ccccc0000000.0xc197d78400000000.0x4197d78400000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x4008000000000000.0xc008000000000000 ++vsubs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xbfc99999a0000000.0x4008000000000000.0x7ff0000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbfc99999a0000000.0x4008000000000000.0x7ff0000000000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbfc99999a0000000.0x7ff0000000000000.0xc008000000000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbfc99999a0000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4010000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc010000000000000.0x4018000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfc9999980000000.0x4000000000000000.0xc000000000000000.0x40139999a0000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff3333340000000.0x4010000000000000.0xc008ccccc0000000.0x4014666660000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fe99999a0000000.0x4007333340000000.0xc007333340000000.0x4013333340000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfd3333340000000.0x4008ccccc0000000.0xc0099999a0000000.0x4014ccccc0000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0x4006666660000000.0xc006666660000000.0x4000000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfd99999a0000000.0x40099999a0000000.0xc018000000000000.0x4020000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc0099999a0000000.0x4018000000000000.0xc020000000000000.0x4024000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4006666660000000.0xc000000000000000.0x4000000000000000.0xc197d783e0000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014ccccc0000000.0x4020000000000000.0xc197d78400000000.0x4197d78420000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4013333340000000.0xc197d78400000000.0x4197d78400000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xc008000000000000.0x4014000000000000 ++vsubs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x4008000000000000.0xc008000000000000.0x7ff0000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4008000000000000.0xc008000000000000.0x7ff0000000000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4008000000000000.0x7ff0000000000000.0x4014000000000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc018000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4008000000000000.0xc008000000000000.0x4010000000000000.0xc010000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4008000000000000.0xc010000000000000.0x4018000000000000.0xc014666660000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0xc000000000000000.0x40139999a0000000.0xc0139999a0000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4010000000000000.0xc008ccccc0000000.0x4014666660000000.0xc014ccccc0000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4007333340000000.0xc007333340000000.0x4013333340000000.0xc013333340000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4008ccccc0000000.0xc0099999a0000000.0x4014ccccc0000000.0xc020000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4006666660000000.0xc006666660000000.0x4000000000000000.0xc000000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x40099999a0000000.0xc018000000000000.0x4020000000000000.0xc024000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4018000000000000.0xc020000000000000.0x4024000000000000.0xc197d78420000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc000000000000000.0x4000000000000000.0xc197d783e0000000.0x4197d783e0000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4020000000000000.0xc197d78400000000.0x4197d78420000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x4014000000000000.0xc014000000000000 ++vsubs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xc008000000000000.0x4014000000000000.0x7ff0000000000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc008000000000000.0x4014000000000000.0x7ff0000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc008000000000000.0x7ff0000000000000.0xc014000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc008000000000000.0x4014000000000000.0xc018000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc008000000000000.0x4010000000000000.0xc010000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc010000000000000.0x4018000000000000.0xc014666660000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc000000000000000.0x40139999a0000000.0xc0139999a0000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc008ccccc0000000.0x4014666660000000.0xc014ccccc0000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc007333340000000.0x4013333340000000.0xc013333340000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc0099999a0000000.0x4014ccccc0000000.0xc020000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc006666660000000.0x4000000000000000.0xc000000000000000.0x4197d783e0000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc018000000000000.0x4020000000000000.0xc024000000000000.0x4197d78420000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc020000000000000.0x4024000000000000.0xc197d78420000000.0x41a7d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000000.0xc197d783e0000000.0x4197d783e0000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78420000000.0xc014000000000000.0x4197d78400000000 ++vsubs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x4014000000000000.0xc014000000000000.0x7ff0000000000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4014000000000000.0xc014000000000000.0x7ff0000000000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4014000000000000.0x7ff0000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4014000000000000.0xc018000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4010000000000000.0xc010000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4018000000000000.0xc014666660000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x40139999a0000000.0xc0139999a0000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4014666660000000.0xc014ccccc0000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4013333340000000.0xc013333340000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4014ccccc0000000.0xc020000000000000.0x4197d78400000000.0xc197d78420000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0xc000000000000000.0x4197d783e0000000.0xc197d783e0000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4020000000000000.0xc024000000000000.0x4197d78420000000.0xc1a7d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4024000000000000.0xc197d78420000000.0x41a7d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d783e0000000.0x4197d783e0000000.0x4197d78400000000.0xc197d78400000000 ++vsubs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78420000000.0xc014000000000000.0x4197d78400000000.0x7ff0000000000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc014000000000000.0x4197d78400000000.0x7ff0000000000000.0x0 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc014000000000000.0x7ff0000000000000.0xc197d78400000000.0x0 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000a0000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000020000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000a0000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000040000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000c0000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000040000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000c0000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000040000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000c0000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xbff0000000000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x3ff0000000000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xbfb9999980000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc018000000000000.0x4197d78400000000.0xc197d78400000000.0x3fb99999a0000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc010000000000000.0x4197d78400000000.0xc197d78400000000.0xbfc99999a0000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc014666660000000.0x4197d78400000000.0xc197d78400000000.0x3fc99999a0000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc0139999a0000000.0x4197d78400000000.0xc197d78400000000.0xc008000000000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc014ccccc0000000.0x4197d78400000000.0xc197d78400000000.0x4008000000000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc013333340000000.0x4197d78400000000.0xc197d78400000000.0xc014000000000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc020000000000000.0x4197d78400000000.0xc197d78420000000.0x4014000000000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc000000000000000.0x4197d783e0000000.0xc197d783e0000000.0xc197d78400000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc024000000000000.0x4197d78420000000.0xc1a7d78400000000.0x4197d78400000000 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78420000000.0x41a7d78400000000.0xc197d78400000000.0x0 ++vsubs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d783e0000000.0x4197d78400000000.0xc197d78400000000.0x7ff0000000000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4197d78400000000.0xc197d78400000000.0x7ff0000000000000.0x0 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4197d78400000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0xc197d78400000000.0x0.0x8000000000000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4197d78400000000.0xc197d78400000000.0x8000000020000000.0x80000000a0000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4197d78400000000.0xc197d78400000000.0x80000000a0000000.0x8000000020000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4197d78400000000.0xc197d78400000000.0x8000000020000000.0x80000000a0000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4197d78400000000.0xc197d78400000000.0x80000000a0000000.0x8000000040000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4197d78400000000.0xc197d78400000000.0x8000000040000000.0x80000000c0000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4197d78400000000.0xc197d78400000000.0x80000000c0000000.0x8000000040000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4197d78400000000.0xc197d78400000000.0x8000000040000000.0x80000000c0000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4197d78400000000.0xc197d78400000000.0x80000000c0000000.0x8000000040000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4197d78400000000.0xc197d78400000000.0x8000000040000000.0x80000000c0000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4197d78400000000.0xc197d78400000000.0x80000000c0000000.0xbff0000000000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4197d78400000000.0xc197d78400000000.0xbff0000000000000.0x3ff0000000000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0xc197d78400000000.0x3ff0000000000000.0xbfb9999980000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d78400000000.0xc197d78400000000.0xbfb99999a0000000.0x3fb99999a0000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4197d78400000000.0xc197d78400000000.0x3fb99999a0000000.0xbfc99999a0000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4197d78400000000.0xc197d78400000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4197d78400000000.0xc197d78400000000.0x3fc99999a0000000.0xc008000000000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc008000000000000.0x4008000000000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4197d78400000000.0xc197d78400000000.0x4008000000000000.0xc014000000000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc014000000000000.0x4014000000000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4197d78400000000.0xc197d78420000000.0x4014000000000000.0xc197d78400000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4197d783e0000000.0xc197d783e0000000.0xc197d78400000000.0x4197d78400000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4197d78420000000.0xc1a7d78400000000.0x4197d78400000000.0x8000000000000000 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vsubs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x41a7d78400000000.0xc197d78400000000.0x0.0x7ff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc197d78400000000.0x0.0x7ff0000000000000.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc197d78400000000.0x7ff0000000000000.0x0.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc197d78400000000.0x0.0x8000000000000000.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc197d78400000000.0x80000000a0000000.0x8000000020000000.0xc0debc9a60000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc197d78400000000.0x8000000020000000.0x80000000a0000000.0xc0debc9a60000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc197d78400000000.0x80000000a0000000.0x8000000020000000.0xc0debc9a60000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc197d78400000000.0x8000000020000000.0x80000000a0000000.0xc0debc9a60000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc197d78400000000.0x80000000a0000000.0x8000000040000000.0xc0debc9a60000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc197d78400000000.0x8000000040000000.0x80000000c0000000.0xc0debc9a60000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc197d78400000000.0x80000000c0000000.0x8000000040000000.0xc0debc9a60000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc197d78400000000.0x8000000040000000.0x80000000c0000000.0xc0debc9a60000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc197d78400000000.0x80000000c0000000.0x8000000040000000.0xc0debc9a60000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc197d78400000000.0x8000000040000000.0x80000000c0000000.0xc0debcda60000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc197d78400000000.0x80000000c0000000.0xbff0000000000000.0xc0debc5a60000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0xbff0000000000000.0x3ff0000000000000.0xc0debca0c0000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78400000000.0x3ff0000000000000.0xbfb99999a0000000.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc197d78400000000.0xbfb99999a0000000.0x3fb99999a0000000.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc197d78400000000.0x3fb99999a0000000.0xbfc99999a0000000.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc197d78400000000.0xbfc99999a0000000.0x3fc99999a0000000.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc197d78400000000.0x3fc99999a0000000.0xc008000000000000.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc197d78400000000.0xc008000000000000.0x4008000000000000.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc197d78400000000.0x4008000000000000.0xc014000000000000.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc197d78400000000.0xc014000000000000.0x4014000000000000.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc197d78420000000.0x4014000000000000.0xc197d78400000000.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc197d783e0000000.0xc197d78400000000.0x4197d78400000000.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc1a7d78400000000.0x4197d78400000000.0x8000000000000000.0xfff0000000000000 ++vsubs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++=== Running test on vsubd=== ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0xf0debc9a78563412.0x123456789abcdef0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0xf0debc9a78563412.0x123456789abcdef0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0xf0debc9a78563412.0x123456789abcdef0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0xf0debc9a78563412.0x123456789abcdef0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0xf0debc9a78563412.0x123456789abcdef0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0xf0debc9a78563412.0x123456789abcdef0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0xf0debc9a78563412.0x123456789abcdef0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0xf0debc9a78563412.0x123456789abcdef0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0xf0debc9a78563412.0x123456789abcdef0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0xf0debc9a78563412.0x123456789abcdef0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0xf0debc9a78563412.0x123456789abcdef0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0xf0debc9a78563412.0xbff0000000000000 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xf0debc9a78563412.0x3ff0000000000000 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xf0debc9a78563412.0xbfb999999999999a ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xf0debc9a78563412.0x3fb999999999999a ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0xf0debc9a78563412.0xbfc999999999999a ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xf0debc9a78563412.0x3fc999999999999a ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0xf0debc9a78563412.0xc008000000000000 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xf0debc9a78563412.0x4008000000000000 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0xf0debc9a78563412.0xc014000000000000 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xf0debc9a78563412.0x4014000000000000 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0xf0debc9a78563412.0xc197d78400000000 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xf0debc9a78563412.0x4197d78400000000 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0xf0debc9a78563412.0x123456789abcdef0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xf0debc9a78563412.0x123456789abcdef0 ++vsubd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0xf0debc9a78563412.0x70debc9a78563412 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0xf0debc9a78563412.0x70debc9a78563412.0x923456789abcdef0 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xf0debc9a78563412.0x123456789abcdef0.0x800000007e4ccccd ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0xf0debc9a78563412.0x123456789abcdef0.0x1333333 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xf0debc9a78563412.0x123456789abcdef0.0x800000007ecccccd ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0xf0debc9a78563412.0x123456789abcdef0.0x8000000000c00000 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xf0debc9a78563412.0x123456789abcdef0.0x8000000080c00000 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0xf0debc9a78563412.0x123456789abcdef0.0x8000000001200000 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xf0debc9a78563412.0x123456789abcdef0.0x8000000081200000 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0xf0debc9a78563412.0x123456789abcdef0.0x800000000d3ebc20 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xf0debc9a78563412.0x123456789abcdef0.0x800000008d3ebc20 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0xf0debc9a78563412.0x123456789abcdef0.0xbff0000000000000 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xf0debc9a78563412.0xbff0000000000000.0x3ff0000000000000 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xf0debc9a78563412.0x3ff0000000000000.0xbfb999999999999a ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xf0debc9a78563412.0xbfb999999999999a.0x3fb999999999999a ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xf0debc9a78563412.0x3fb999999999999a.0xbfc999999999999a ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xf0debc9a78563412.0xbfc999999999999a.0x3fc999999999999a ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xf0debc9a78563412.0x3fc999999999999a.0xc008000000000000 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xf0debc9a78563412.0xc008000000000000.0x4008000000000000 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xf0debc9a78563412.0x4008000000000000.0xc014000000000000 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xf0debc9a78563412.0xc014000000000000.0x4014000000000000 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xf0debc9a78563412.0x4014000000000000.0xc197d78400000000 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xf0debc9a78563412.0xc197d78400000000.0x4197d78400000000 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xf0debc9a78563412.0x4197d78400000000.0x0 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vsubd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xf0debc9a78563412.0x123456789abcdef0.0x70debc9a78563412 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xf0debc9a78563412.0x123456789abcdef0.0x70debc9a78563412.0x923456789abcdef0 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xf0debc9a78563412.0x70debc9a78563412.0x923456789abcdef0.0x0 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xf0debc9a78563412.0x123456789abcdef0.0x0.0x0 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xf0debc9a78563412.0x123456789abcdef0.0x1b33333.0x1b33333 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xf0debc9a78563412.0x123456789abcdef0.0x800000007e4ccccd.0x81333333 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xf0debc9a78563412.0x123456789abcdef0.0x1333333.0x1333333 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000007ecccccd.0x7f400000 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xf0debc9a78563412.0x123456789abcdef0.0x8000000000c00000.0x8000000000c00000 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xf0debc9a78563412.0x123456789abcdef0.0x8000000080c00000.0x7ee00000 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xf0debc9a78563412.0x123456789abcdef0.0x8000000001200000.0x8000000001200000 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xf0debc9a78563412.0x123456789abcdef0.0x8000000081200000.0x72c143e0 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000000d3ebc20.0x800000000d3ebc20 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000008d3ebc20.0xbff0000000000000 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xf0debc9a78563412.0x123456789abcdef0.0xbff0000000000000.0x3ff0000000000000 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xf0debc9a78563412.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xf0debc9a78563412.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xf0debc9a78563412.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xf0debc9a78563412.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xf0debc9a78563412.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xf0debc9a78563412.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xf0debc9a78563412.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xf0debc9a78563412.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xf0debc9a78563412.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xf0debc9a78563412.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xf0debc9a78563412.0xc197d78400000000.0x4197d78400000000.0x0 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xf0debc9a78563412.0x4197d78400000000.0x0.0x0 ++vsubd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xf0debc9a78563412.0x123456789abcdef0.0x0.0x70debc9a78563412 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x123456789abcdef0.0x0.0x70debc9a78563412.0x923456789abcdef0 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x123456789abcdef0.0x70debc9a78563412.0x923456789abcdef0.0x0 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x0.0x0 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x123456789abcdef0.0x8000000080000000.0x81b33333.0x8000000080000000 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x123456789abcdef0.0x1b33333.0x1b33333.0x8000000000800000 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x123456789abcdef0.0x800000007e4ccccd.0x81333333.0x8000000080800000 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x123456789abcdef0.0x1333333.0x1333333.0x8000000002733333 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x123456789abcdef0.0x800000007ecccccd.0x7f400000.0x8000000082733333 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x123456789abcdef0.0x8000000000c00000.0x8000000000c00000.0x8000000002d33333 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x123456789abcdef0.0x8000000080c00000.0x7ee00000.0x8000000082d33333 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x123456789abcdef0.0x8000000001200000.0x8000000001200000.0x800000000ef1ef53 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x123456789abcdef0.0x8000000081200000.0x72c143e0.0x800000008ef1ef53 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x123456789abcdef0.0x800000000d3ebc20.0x800000000d3ebc20.0xbff0000000000000 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x123456789abcdef0.0x800000008d3ebc20.0xbff0000000000000.0x3ff0000000000000 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x123456789abcdef0.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x0 ++vsubd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3f800000.0xbf800000.0x70debc9a78563412.0x923456789abcdef0 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3f800000.0x70debc9a78563412.0x923456789abcdef0.0x7e4ccccd ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000001b33333.0x8000000001b33333 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x80000000.0x8000000081b33333.0x80000000 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000080000000.0x81b33333.0x8000000080000000.0x7f800000 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x1b33333.0x1b33333.0x8000000000800000.0x8000000000800000 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x800000007e4ccccd.0x81333333.0x8000000080800000.0x7d8ccccd ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x1333333.0x1333333.0x8000000002733333.0x8000000002733333 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x800000007ecccccd.0x7f400000.0x8000000082733333.0x7d2ccccd ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000000c00000.0x8000000000c00000.0x8000000002d33333.0x8000000002d33333 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000080c00000.0x7ee00000.0x8000000082d33333.0x710e10ad ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000001200000.0x8000000001200000.0x800000000ef1ef53.0x800000000ef1ef53 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000081200000.0x72c143e0.0x800000008ef1ef53.0xbff0000000000000 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000000d3ebc20.0x800000000d3ebc20.0xbff0000000000000.0x3ff0000000000000 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x800000008d3ebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xbdcccccd ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x3dcccccd.0xbdcccccd ++vsubd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xbf800000.0x3dcccccd.0x70debc9a78563412 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbf800000.0x3dcccccd.0x70debc9a78563412.0x923456789abcdef0 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbf800000.0x70debc9a78563412.0x923456789abcdef0.0x8000000001333333 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x7e4ccccd.0x8000000081333333 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000001b33333.0x8000000001b33333.0x800000 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000.0x8000000081b33333.0x80000000.0x800000007f800000 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x81b33333.0x8000000080000000.0x7f800000.0x8000000080000000 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x1b33333.0x8000000000800000.0x8000000000800000.0x8000000001f33333 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x81333333.0x8000000080800000.0x7d8ccccd.0x8000000081f33333 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x1333333.0x8000000002733333.0x8000000002733333.0x8000000002533333 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7f400000.0x8000000082733333.0x7d2ccccd.0x8000000082533333 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000000c00000.0x8000000002d33333.0x8000000002d33333.0x800000000e71ef53 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7ee00000.0x8000000082d33333.0x710e10ad.0x800000008e71ef53 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000001200000.0x800000000ef1ef53.0x800000000ef1ef53.0xbff0000000000000 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x72c143e0.0x800000008ef1ef53.0xbff0000000000000.0x3ff0000000000000 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x800000000d3ebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x3e4ccccd ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xbdcccccd.0x3e4ccccd ++vsubd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x3dcccccd.0xbdcccccd.0x70debc9a78563412 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3dcccccd.0xbdcccccd.0x70debc9a78563412.0x923456789abcdef0 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3dcccccd.0x70debc9a78563412.0x923456789abcdef0.0x7ecccccd ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000001333333.0x8000000001333333 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x7e4ccccd.0x8000000081333333.0x80800000 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000001b33333.0x8000000001b33333.0x800000.0x800000 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000081b33333.0x80000000.0x800000007f800000.0x80000000 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000080000000.0x7f800000.0x8000000080000000.0x7e0ccccd ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000000800000.0x8000000000800000.0x8000000001f33333.0x8000000001f33333 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000080800000.0x7d8ccccd.0x8000000081f33333.0x7daccccd ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000002733333.0x8000000002733333.0x8000000002533333.0x8000000002533333 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000082733333.0x7d2ccccd.0x8000000082533333.0x718e10ad ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000002d33333.0x8000000002d33333.0x800000000e71ef53.0x800000000e71ef53 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000082d33333.0x710e10ad.0x800000008e71ef53.0xbff0000000000000 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000000ef1ef53.0x800000000ef1ef53.0xbff0000000000000.0x3ff0000000000000 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x800000008ef1ef53.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xbe4ccccd ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x3e4ccccd.0xbe4ccccd ++vsubd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xbdcccccd.0x3e4ccccd.0x70debc9a78563412 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbdcccccd.0x3e4ccccd.0x70debc9a78563412.0x923456789abcdef0 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbdcccccd.0x70debc9a78563412.0x923456789abcdef0.0xc00000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x7ecccccd.0x800000007f400000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000001333333.0x8000000001333333.0x2733333 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7e4ccccd.0x8000000081333333.0x80800000.0x800000007d8ccccd ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000001b33333.0x800000.0x800000.0x1f33333 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000000.0x800000007f800000.0x80000000.0x800000007e0ccccd ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7f800000.0x8000000080000000.0x7e0ccccd.0x8000000080000000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000000800000.0x8000000001f33333.0x8000000001f33333.0x8000000000600000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7d8ccccd.0x8000000081f33333.0x7daccccd.0x8000000080600000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000002733333.0x8000000002533333.0x8000000002533333.0x800000000c7ebc20 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7d2ccccd.0x8000000082533333.0x718e10ad.0x800000008c7ebc20 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000002d33333.0x800000000e71ef53.0x800000000e71ef53.0xbff0000000000000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x710e10ad.0x800000008e71ef53.0xbff0000000000000.0x3ff0000000000000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x800000000ef1ef53.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x40400000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xbe4ccccd.0x40400000 ++vsubd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x3e4ccccd.0xbe4ccccd.0x70debc9a78563412 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3e4ccccd.0xbe4ccccd.0x70debc9a78563412.0x923456789abcdef0 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3e4ccccd.0x70debc9a78563412.0x923456789abcdef0.0x80c00000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0xc00000.0xc00000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x7ecccccd.0x800000007f400000.0x82733333 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000001333333.0x8000000001333333.0x2733333.0x2733333 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000081333333.0x80800000.0x800000007d8ccccd.0x81f33333 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000.0x800000.0x1f33333.0x1f33333 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x800000007f800000.0x80000000.0x800000007e0ccccd.0x80000000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000080000000.0x7e0ccccd.0x8000000080000000.0x7fa00000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000001f33333.0x8000000001f33333.0x8000000000600000.0x8000000000600000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000081f33333.0x7daccccd.0x8000000080600000.0x738143e0 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000002533333.0x8000000002533333.0x800000000c7ebc20.0x800000000c7ebc20 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000082533333.0x718e10ad.0x800000008c7ebc20.0xbff0000000000000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000000e71ef53.0x800000000e71ef53.0xbff0000000000000.0x3ff0000000000000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x800000008e71ef53.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xc0400000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x40400000.0xc0400000 ++vsubd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xbe4ccccd.0x40400000.0x70debc9a78563412 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbe4ccccd.0x40400000.0x70debc9a78563412.0x923456789abcdef0 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbe4ccccd.0x70debc9a78563412.0x923456789abcdef0.0x1200000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x80c00000.0x800000007ee00000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0xc00000.0xc00000.0x2d33333 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ecccccd.0x800000007f400000.0x82733333.0x800000007d2ccccd ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000001333333.0x2733333.0x2733333.0x2533333 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80800000.0x800000007d8ccccd.0x81f33333.0x800000007daccccd ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x800000.0x1f33333.0x1f33333.0x600000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000.0x800000007e0ccccd.0x80000000.0x800000007fa00000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7e0ccccd.0x8000000080000000.0x7fa00000.0x8000000080000000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000001f33333.0x8000000000600000.0x8000000000600000.0x800000000c1ebc20 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7daccccd.0x8000000080600000.0x738143e0.0x800000008c1ebc20 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000002533333.0x800000000c7ebc20.0x800000000c7ebc20.0xbff0000000000000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x718e10ad.0x800000008c7ebc20.0xbff0000000000000.0x3ff0000000000000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x800000000e71ef53.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x40a00000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xc0400000.0x40a00000 ++vsubd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x40400000.0xc0400000.0x70debc9a78563412 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40400000.0xc0400000.0x70debc9a78563412.0x923456789abcdef0 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40400000.0x70debc9a78563412.0x923456789abcdef0.0x81200000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x1200000.0x1200000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x80c00000.0x800000007ee00000.0x82d33333 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc00000.0xc00000.0x2d33333.0x2d33333 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x800000007f400000.0x82733333.0x800000007d2ccccd.0x82533333 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x2733333.0x2733333.0x2533333.0x2533333 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x800000007d8ccccd.0x81f33333.0x800000007daccccd.0x80600000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x1f33333.0x1f33333.0x600000.0x600000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x800000007e0ccccd.0x80000000.0x800000007fa00000.0x80000000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000080000000.0x7fa00000.0x8000000080000000.0x73e143e0 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000000600000.0x8000000000600000.0x800000000c1ebc20.0x800000000c1ebc20 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000080600000.0x738143e0.0x800000008c1ebc20.0xbff0000000000000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000000c7ebc20.0x800000000c7ebc20.0xbff0000000000000.0x3ff0000000000000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x800000008c7ebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xc0a00000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x40a00000.0xc0a00000 ++vsubd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xc0400000.0x40a00000.0x70debc9a78563412 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0400000.0x40a00000.0x70debc9a78563412.0x923456789abcdef0 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0400000.0x70debc9a78563412.0x923456789abcdef0.0xd3ebc20 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x81200000.0x8000000072c143e0 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x1200000.0x1200000.0xef1ef53 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80c00000.0x800000007ee00000.0x82d33333.0x80000000710e10ad ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc00000.0x2d33333.0x2d33333.0xe71ef53 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x82733333.0x800000007d2ccccd.0x82533333.0x80000000718e10ad ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x2733333.0x2533333.0x2533333.0xc7ebc20 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x81f33333.0x800000007daccccd.0x80600000.0x80000000738143e0 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x1f33333.0x600000.0x600000.0xc1ebc20 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000000.0x800000007fa00000.0x80000000.0x8000000073e143e0 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7fa00000.0x8000000080000000.0x73e143e0.0x8000000080000000 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000000600000.0x800000000c1ebc20.0x800000000c1ebc20.0xbff0000000000000 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x738143e0.0x800000008c1ebc20.0xbff0000000000000.0x3ff0000000000000 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x800000000c7ebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x4cbebc20 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xc0a00000.0x4cbebc20 ++vsubd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x40a00000.0xc0a00000.0x70debc9a78563412 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40a00000.0xc0a00000.0x70debc9a78563412.0x923456789abcdef0 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40a00000.0x70debc9a78563412.0x923456789abcdef0.0x8d3ebc20 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0xd3ebc20.0xd3ebc20 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x81200000.0x8000000072c143e0.0x8ef1ef53 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x1200000.0x1200000.0xef1ef53.0xef1ef53 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x800000007ee00000.0x82d33333.0x80000000710e10ad.0x8e71ef53 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x2d33333.0x2d33333.0xe71ef53.0xe71ef53 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x800000007d2ccccd.0x82533333.0x80000000718e10ad.0x8c7ebc20 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x2533333.0x2533333.0xc7ebc20.0xc7ebc20 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x800000007daccccd.0x80600000.0x80000000738143e0.0x8c1ebc20 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x600000.0x600000.0xc1ebc20.0xc1ebc20 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x800000007fa00000.0x80000000.0x8000000073e143e0.0x80000000 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000080000000.0x73e143e0.0x8000000080000000.0xbff0000000000000 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000000c1ebc20.0x800000000c1ebc20.0xbff0000000000000.0x3ff0000000000000 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x800000008c1ebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xccbebc20 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x4cbebc20.0xccbebc20 ++vsubd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xc0a00000.0x4cbebc20.0x70debc9a78563412 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0a00000.0x4cbebc20.0x70debc9a78563412.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0a00000.0x70debc9a78563412.0x923456789abcdef0.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8d3ebc20.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0xd3ebc20.0xd3ebc20.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x81200000.0x8000000072c143e0.0x8ef1ef53.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x1200000.0xef1ef53.0xef1ef53.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x82d33333.0x80000000710e10ad.0x8e71ef53.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x2d33333.0xe71ef53.0xe71ef53.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x82533333.0x80000000718e10ad.0x8c7ebc20.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x2533333.0xc7ebc20.0xc7ebc20.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80600000.0x80000000738143e0.0x8c1ebc20.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x600000.0xc1ebc20.0xc1ebc20.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80000000.0x8000000073e143e0.0x80000000.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x73e143e0.0x8000000080000000.0xbff0000000000000.0x4000000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x800000000c1ebc20.0xbff0000000000000.0x3ff0000000000000.0x3feccccccccccccd ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3ff199999999999a ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0x3fe999999999999a ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3ff3333333333333 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc000000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4010000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc010000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4018000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d783fc000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78404000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xccbebc20.0x3ff0000000000000 ++vsubd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x4cbebc20.0xccbebc20.0x70debc9a78563412 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4cbebc20.0xccbebc20.0x70debc9a78563412.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4cbebc20.0x70debc9a78563412.0x3ff0000000000000.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3ff0000000000000.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8d3ebc20.0x3ff0000000000000.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xd3ebc20.0xd3ebc20.0x3ff0000000000000.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000072c143e0.0x8ef1ef53.0x3ff0000000000000.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xef1ef53.0xef1ef53.0x3ff0000000000000.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000710e10ad.0x8e71ef53.0x3ff0000000000000.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xe71ef53.0xe71ef53.0x3ff0000000000000.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000718e10ad.0x8c7ebc20.0x3ff0000000000000.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc7ebc20.0xc7ebc20.0x3ff0000000000000.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000738143e0.0x8c1ebc20.0x3ff0000000000000.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc1ebc20.0xc1ebc20.0x3ff0000000000000.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000073e143e0.0x80000000.0x3ff0000000000000.0xc000000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000080000000.0xbff0000000000000.0x4000000000000000.0xbff199999999999a ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0x3feccccccccccccd.0xbfeccccccccccccd ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3ff199999999999a.0xbff3333333333333 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0x3fe999999999999a.0xbfe999999999999a ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3ff3333333333333.0xc010000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc000000000000000.0x4000000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4010000000000000.0xc018000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc010000000000000.0x4010000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4018000000000000.0xc197d78404000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d783fc000000.0x4197d783fc000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78404000000.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vsubd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xccbebc20.0x3ff0000000000000.0x70debc9a78563412 ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xccbebc20.0x3ff0000000000000.0x70debc9a78563412.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xccbebc20.0x70debc9a78563412.0xbff0000000000000.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8d3ebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xd3ebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8ef1ef53.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xef1ef53.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8e71ef53.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xe71ef53.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8c7ebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc7ebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8c1ebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc1ebc20.0x3ff0000000000000.0xbff0000000000000.0xbfeccccccccccccd ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80000000.0x3ff0000000000000.0xc000000000000000.0x3ff199999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x4000000000000000.0xbff199999999999a.0x3fc999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3feccccccccccccd.0xbfeccccccccccccd.0xbfb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3ff199999999999a.0xbff3333333333333.0x3fd3333333333334 ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fe999999999999a.0xbfe999999999999a.0xc007333333333333 ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3ff3333333333333.0xc010000000000000.0x4008cccccccccccd ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc000000000000000.0x4000000000000000.0xc01399999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4010000000000000.0xc018000000000000.0x4014666666666666 ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc010000000000000.0x4010000000000000.0xc197d783ff99999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4018000000000000.0xc197d78404000000.0x4197d78400666666 ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d783fc000000.0x4197d783fc000000.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78404000000.0xbff0000000000000.0x3fb999999999999a ++vsubd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x3ff0000000000000.0xbff0000000000000.0x70debc9a78563412 ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3ff0000000000000.0xbff0000000000000.0x70debc9a78563412.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3ff0000000000000.0x70debc9a78563412.0x3fb999999999999a.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbff199999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3ff0000000000000.0xbff0000000000000.0xbfeccccccccccccd.0x3feccccccccccccd ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3ff0000000000000.0xc000000000000000.0x3ff199999999999a.0xbfc999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0xbff199999999999a.0x3fc999999999999a.0xbfd3333333333334 ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3feccccccccccccd.0xbfeccccccccccccd.0xbfb999999999999a.0x3fb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3ff199999999999a.0xbff3333333333333.0x3fd3333333333334.0xc008cccccccccccd ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fe999999999999a.0xbfe999999999999a.0xc007333333333333.0x4007333333333333 ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3ff3333333333333.0xc010000000000000.0x4008cccccccccccd.0xc014666666666666 ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc000000000000000.0x4000000000000000.0xc01399999999999a.0x401399999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4010000000000000.0xc018000000000000.0x4014666666666666.0xc197d78400666666 ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc010000000000000.0x4010000000000000.0xc197d783ff99999a.0x4197d783ff99999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4018000000000000.0xc197d78404000000.0x4197d78400666666.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d783fc000000.0x4197d783fc000000.0x3fb999999999999a.0xbfb999999999999a ++vsubd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78404000000.0xbff0000000000000.0x3fb999999999999a.0x70debc9a78563412 ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbff0000000000000.0x3fb999999999999a.0x70debc9a78563412.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbff0000000000000.0x70debc9a78563412.0xbfb999999999999a.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0xbfe999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbff0000000000000.0x3fb999999999999a.0xbff199999999999a.0x3ff3333333333333 ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbff0000000000000.0xbfeccccccccccccd.0x3feccccccccccccd.0x3fb999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc000000000000000.0x3ff199999999999a.0xbfc999999999999a.0x3fd3333333333334 ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbff199999999999a.0x3fc999999999999a.0xbfd3333333333334.0x3fd999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfeccccccccccccd.0xbfb999999999999a.0x3fb999999999999a.0xc006666666666666 ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbff3333333333333.0x3fd3333333333334.0xc008cccccccccccd.0x400999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfe999999999999a.0xc007333333333333.0x4007333333333333.0xc013333333333333 ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc010000000000000.0x4008cccccccccccd.0xc014666666666666.0x4014cccccccccccd ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4000000000000000.0xc01399999999999a.0x401399999999999a.0xc197d783ff333333 ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc018000000000000.0x4014666666666666.0xc197d78400666666.0x4197d78400cccccd ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4010000000000000.0xc197d783ff99999a.0x4197d783ff99999a.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78404000000.0x4197d78400666666.0xbfb999999999999a.0x3fc999999999999a ++vsubd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d783fc000000.0x3fb999999999999a.0xbfb999999999999a.0x70debc9a78563412 ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3fb999999999999a.0xbfb999999999999a.0x70debc9a78563412.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3fb999999999999a.0x70debc9a78563412.0x3fc999999999999a.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbff3333333333333 ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fb999999999999a.0xbfb999999999999a.0xbfe999999999999a.0x3fe999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fb999999999999a.0xbff199999999999a.0x3ff3333333333333.0xbfd3333333333334 ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfeccccccccccccd.0x3feccccccccccccd.0x3fb999999999999a.0xbfb999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff199999999999a.0xbfc999999999999a.0x3fd3333333333334.0xbfd999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fc999999999999a.0xbfd3333333333334.0x3fd999999999999a.0xc00999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfb999999999999a.0x3fb999999999999a.0xc006666666666666.0x4006666666666666 ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fd3333333333334.0xc008cccccccccccd.0x400999999999999a.0xc014cccccccccccd ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc007333333333333.0x4007333333333333.0xc013333333333333.0x4013333333333333 ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008cccccccccccd.0xc014666666666666.0x4014cccccccccccd.0xc197d78400cccccd ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc01399999999999a.0x401399999999999a.0xc197d783ff333333.0x4197d783ff333333 ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014666666666666.0xc197d78400666666.0x4197d78400cccccd.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d783ff99999a.0x4197d783ff99999a.0x3fc999999999999a.0xbfc999999999999a ++vsubd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400666666.0xbfb999999999999a.0x3fc999999999999a.0x70debc9a78563412 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbfb999999999999a.0x3fc999999999999a.0x70debc9a78563412.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbfb999999999999a.0x70debc9a78563412.0xbfc999999999999a.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4000000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbff3333333333333.0x4010000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfb999999999999a.0xbfe999999999999a.0x3fe999999999999a.0x4007333333333333 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff199999999999a.0x3ff3333333333333.0xbfd3333333333334.0x4008cccccccccccd ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3feccccccccccccd.0x3fb999999999999a.0xbfb999999999999a.0x4006666666666666 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfc999999999999a.0x3fd3333333333334.0xbfd999999999999a.0x400999999999999a ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfd3333333333334.0x3fd999999999999a.0xc00999999999999a.0x4018000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fb999999999999a.0xc006666666666666.0x4006666666666666.0xc000000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008cccccccccccd.0x400999999999999a.0xc014cccccccccccd.0x4020000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4007333333333333.0xc013333333333333.0x4013333333333333.0xc197d783f4000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014666666666666.0x4014cccccccccccd.0xc197d78400cccccd.0x4197d7840c000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x401399999999999a.0xc197d783ff333333.0x4197d783ff333333.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400666666.0x4197d78400cccccd.0xbfc999999999999a.0x4008000000000000 ++vsubd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d783ff99999a.0x3fc999999999999a.0xbfc999999999999a.0x70debc9a78563412 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3fc999999999999a.0xbfc999999999999a.0x70debc9a78563412.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3fc999999999999a.0x70debc9a78563412.0x4008000000000000.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc010000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4000000000000000.0xc000000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fc999999999999a.0xbff3333333333333.0x4010000000000000.0xc008cccccccccccd ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfe999999999999a.0x3fe999999999999a.0x4007333333333333.0xc007333333333333 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff3333333333333.0xbfd3333333333334.0x4008cccccccccccd.0xc00999999999999a ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x4006666666666666.0xc006666666666666 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fd3333333333334.0xbfd999999999999a.0x400999999999999a.0xc018000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fd999999999999a.0xc00999999999999a.0x4018000000000000.0xc020000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc006666666666666.0x4006666666666666.0xc000000000000000.0x4000000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x400999999999999a.0xc014cccccccccccd.0x4020000000000000.0xc197d7840c000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc013333333333333.0x4013333333333333.0xc197d783f4000000.0x4197d783f4000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014cccccccccccd.0xc197d78400cccccd.0x4197d7840c000000.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d783ff333333.0x4197d783ff333333.0x4008000000000000.0xc008000000000000 ++vsubd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400cccccd.0xbfc999999999999a.0x4008000000000000.0x70debc9a78563412 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbfc999999999999a.0x4008000000000000.0x70debc9a78563412.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbfc999999999999a.0x70debc9a78563412.0xc008000000000000.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4010000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc010000000000000.0x4018000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfc999999999999a.0x4000000000000000.0xc000000000000000.0x401399999999999a ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff3333333333333.0x4010000000000000.0xc008cccccccccccd.0x4014666666666666 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fe999999999999a.0x4007333333333333.0xc007333333333333.0x4013333333333333 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfd3333333333334.0x4008cccccccccccd.0xc00999999999999a.0x4014cccccccccccd ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x4006666666666666.0xc006666666666666.0x4000000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfd999999999999a.0x400999999999999a.0xc018000000000000.0x4020000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc00999999999999a.0x4018000000000000.0xc020000000000000.0x4024000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4006666666666666.0xc000000000000000.0x4000000000000000.0xc197d783ec000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014cccccccccccd.0x4020000000000000.0xc197d7840c000000.0x4197d78414000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4013333333333333.0xc197d783f4000000.0x4197d783f4000000.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400cccccd.0x4197d7840c000000.0xc008000000000000.0x4014000000000000 ++vsubd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d783ff333333.0x4008000000000000.0xc008000000000000.0x70debc9a78563412 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4008000000000000.0xc008000000000000.0x70debc9a78563412.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4008000000000000.0x70debc9a78563412.0x4014000000000000.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc018000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4008000000000000.0xc008000000000000.0x4010000000000000.0xc010000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4008000000000000.0xc010000000000000.0x4018000000000000.0xc014666666666666 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0xc000000000000000.0x401399999999999a.0xc01399999999999a ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4010000000000000.0xc008cccccccccccd.0x4014666666666666.0xc014cccccccccccd ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4007333333333333.0xc007333333333333.0x4013333333333333.0xc013333333333333 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4008cccccccccccd.0xc00999999999999a.0x4014cccccccccccd.0xc020000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4006666666666666.0xc006666666666666.0x4000000000000000.0xc000000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x400999999999999a.0xc018000000000000.0x4020000000000000.0xc024000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4018000000000000.0xc020000000000000.0x4024000000000000.0xc197d78414000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc000000000000000.0x4000000000000000.0xc197d783ec000000.0x4197d783ec000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4020000000000000.0xc197d7840c000000.0x4197d78414000000.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d783f4000000.0x4197d783f4000000.0x4014000000000000.0xc014000000000000 ++vsubd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d7840c000000.0xc008000000000000.0x4014000000000000.0x70debc9a78563412 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc008000000000000.0x4014000000000000.0x70debc9a78563412.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc008000000000000.0x70debc9a78563412.0xc014000000000000.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d783fc000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc008000000000000.0x4014000000000000.0xc018000000000000.0x4197d78404000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc008000000000000.0x4010000000000000.0xc010000000000000.0x4197d783ff99999a ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc010000000000000.0x4018000000000000.0xc014666666666666.0x4197d78400666666 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc000000000000000.0x401399999999999a.0xc01399999999999a.0x4197d783ff333333 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc008cccccccccccd.0x4014666666666666.0xc014cccccccccccd.0x4197d78400cccccd ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc007333333333333.0x4013333333333333.0xc013333333333333.0x4197d783f4000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc00999999999999a.0x4014cccccccccccd.0xc020000000000000.0x4197d7840c000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc006666666666666.0x4000000000000000.0xc000000000000000.0x4197d783ec000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc018000000000000.0x4020000000000000.0xc024000000000000.0x4197d78414000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc020000000000000.0x4024000000000000.0xc197d78414000000.0x41a7d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000000.0xc197d783ec000000.0x4197d783ec000000.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d7840c000000.0x4197d78414000000.0xc014000000000000.0x4197d78400000000 ++vsubd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d783f4000000.0x4014000000000000.0xc014000000000000.0x70debc9a78563412 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4014000000000000.0xc014000000000000.0x70debc9a78563412.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4014000000000000.0x70debc9a78563412.0x4197d78400000000.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78404000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4014000000000000.0xc014000000000000.0x4197d783fc000000.0xc197d783fc000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4014000000000000.0xc018000000000000.0x4197d78404000000.0xc197d78400666666 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4010000000000000.0xc010000000000000.0x4197d783ff99999a.0xc197d783ff99999a ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4018000000000000.0xc014666666666666.0x4197d78400666666.0xc197d78400cccccd ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x401399999999999a.0xc01399999999999a.0x4197d783ff333333.0xc197d783ff333333 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4014666666666666.0xc014cccccccccccd.0x4197d78400cccccd.0xc197d7840c000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4013333333333333.0xc013333333333333.0x4197d783f4000000.0xc197d783f4000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4014cccccccccccd.0xc020000000000000.0x4197d7840c000000.0xc197d78414000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0xc000000000000000.0x4197d783ec000000.0xc197d783ec000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4020000000000000.0xc024000000000000.0x4197d78414000000.0xc1a7d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4024000000000000.0xc197d78414000000.0x41a7d78400000000.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d783ec000000.0x4197d783ec000000.0x4197d78400000000.0xc197d78400000000 ++vsubd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78414000000.0xc014000000000000.0x4197d78400000000.0x70debc9a78563412 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc014000000000000.0x4197d78400000000.0x70debc9a78563412.0x923456789abcdef0 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc014000000000000.0x70debc9a78563412.0xc197d78400000000.0x0 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x4197d78400000000.0xc197d78400000000.0x0 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000bdcccccd ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x800000003e4ccccd ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000be4ccccd ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000040400000 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000c0400000 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000040a00000 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000c0a00000 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x800000004cbebc20 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000ccbebc20 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xbff0000000000000 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc014000000000000.0x4197d78400000000.0xc197d78404000000.0x3ff0000000000000 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc014000000000000.0x4197d783fc000000.0xc197d783fc000000.0xbfb999999999999a ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc018000000000000.0x4197d78404000000.0xc197d78400666666.0x3fb999999999999a ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc010000000000000.0x4197d783ff99999a.0xc197d783ff99999a.0xbfc999999999999a ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc014666666666666.0x4197d78400666666.0xc197d78400cccccd.0x3fc999999999999a ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc01399999999999a.0x4197d783ff333333.0xc197d783ff333333.0xc008000000000000 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc014cccccccccccd.0x4197d78400cccccd.0xc197d7840c000000.0x4008000000000000 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc013333333333333.0x4197d783f4000000.0xc197d783f4000000.0xc014000000000000 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc020000000000000.0x4197d7840c000000.0xc197d78414000000.0x4014000000000000 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc000000000000000.0x4197d783ec000000.0xc197d783ec000000.0xc197d78400000000 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc024000000000000.0x4197d78414000000.0xc1a7d78400000000.0x4197d78400000000 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78414000000.0x41a7d78400000000.0xc197d78400000000.0x0 ++vsubd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d783ec000000.0x4197d78400000000.0xc197d78400000000.0x70debc9a78563412 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4197d78400000000.0xc197d78400000000.0x70debc9a78563412.0x923456789abcdef0 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4197d78400000000.0x70debc9a78563412.0x923456789abcdef0.0x8000000000000000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0xc197d78400000000.0x0.0x8000000000000000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4197d78400000000.0xc197d78400000000.0x800000003dcccccd.0x80000000bdcccccd ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4197d78400000000.0xc197d78400000000.0x80000000bdcccccd.0x800000003e4ccccd ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4197d78400000000.0xc197d78400000000.0x800000003e4ccccd.0x80000000be4ccccd ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4197d78400000000.0xc197d78400000000.0x80000000be4ccccd.0x8000000040400000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4197d78400000000.0xc197d78400000000.0x8000000040400000.0x80000000c0400000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4197d78400000000.0xc197d78400000000.0x80000000c0400000.0x8000000040a00000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4197d78400000000.0xc197d78400000000.0x8000000040a00000.0x80000000c0a00000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4197d78400000000.0xc197d78400000000.0x80000000c0a00000.0x800000004cbebc20 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4197d78400000000.0xc197d78400000000.0x800000004cbebc20.0x80000000ccbebc20 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4197d78400000000.0xc197d78400000000.0x80000000ccbebc20.0xbff0000000000000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4197d78400000000.0xc197d78400000000.0xbff0000000000000.0x3ff0000000000000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0xc197d78404000000.0x3ff0000000000000.0xbfb999999999999a ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d783fc000000.0xc197d783fc000000.0xbfb999999999999a.0x3fb999999999999a ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4197d78404000000.0xc197d78400666666.0x3fb999999999999a.0xbfc999999999999a ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4197d783ff99999a.0xc197d783ff99999a.0xbfc999999999999a.0x3fc999999999999a ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4197d78400666666.0xc197d78400cccccd.0x3fc999999999999a.0xc008000000000000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4197d783ff333333.0xc197d783ff333333.0xc008000000000000.0x4008000000000000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4197d78400cccccd.0xc197d7840c000000.0x4008000000000000.0xc014000000000000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4197d783f4000000.0xc197d783f4000000.0xc014000000000000.0x4014000000000000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4197d7840c000000.0xc197d78414000000.0x4014000000000000.0xc197d78400000000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4197d783ec000000.0xc197d783ec000000.0xc197d78400000000.0x4197d78400000000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4197d78414000000.0xc1a7d78400000000.0x4197d78400000000.0x8000000000000000 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vsubd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x41a7d78400000000.0xc197d78400000000.0x0.0x70debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc197d78400000000.0x0.0x70debc9a78563412.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc197d78400000000.0x70debc9a78563412.0x923456789abcdef0.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000000000000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc197d78400000000.0x80000000bf800000.0x800000003dcccccd.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc197d78400000000.0x800000003dcccccd.0x80000000bdcccccd.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc197d78400000000.0x80000000bdcccccd.0x800000003e4ccccd.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc197d78400000000.0x800000003e4ccccd.0x80000000be4ccccd.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc197d78400000000.0x80000000be4ccccd.0x8000000040400000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc197d78400000000.0x8000000040400000.0x80000000c0400000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc197d78400000000.0x80000000c0400000.0x8000000040a00000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc197d78400000000.0x8000000040a00000.0x80000000c0a00000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc197d78400000000.0x80000000c0a00000.0x800000004cbebc20.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc197d78400000000.0x800000004cbebc20.0x80000000ccbebc20.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc197d78400000000.0x80000000ccbebc20.0xbff0000000000000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0xbff0000000000000.0x3ff0000000000000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78404000000.0x3ff0000000000000.0xbfb999999999999a.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc197d783fc000000.0xbfb999999999999a.0x3fb999999999999a.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc197d78400666666.0x3fb999999999999a.0xbfc999999999999a.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc197d783ff99999a.0xbfc999999999999a.0x3fc999999999999a.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc197d78400cccccd.0x3fc999999999999a.0xc008000000000000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc197d783ff333333.0xc008000000000000.0x4008000000000000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc197d7840c000000.0x4008000000000000.0xc014000000000000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc197d783f4000000.0xc014000000000000.0x4014000000000000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc197d78414000000.0x4014000000000000.0xc197d78400000000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc197d783ec000000.0xc197d78400000000.0x4197d78400000000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc1a7d78400000000.0x4197d78400000000.0x8000000000000000.0xf0debc9a78563412 ++vsubd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++=== Running test on vmuls=== ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x7ff0000000000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x0.0xc32388ef40000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x8000000000000000.0x8000000000000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x8000000000000000.0x8000000000000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x8000000000000000.0x80000f5e40000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x8000000000000000.0x80004cd780000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x8000000000000000.0x80000f5e40000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x8000000000000000.0x80004cd780000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x8000000000000000.0x80001ebca0000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x8000000000000000.0x80005c35c0000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x8000000000000000.0x80001ebca0000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x8000000000000000.0x80005c35c0000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x8000000000000000.0x80001ebca0000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x8000000000000000.0x80005c35c0000000.0x3a34567880000000 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x8000000000000000.0xc0debc9a60000000.0xba34567880000000 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x8000000000000000.0x40debc9a60000000.0x3a00452d20000000 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0xfff0000000000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0xfff0000000000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0xfff0000000000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0xfff0000000000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0xfff0000000000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x0 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x8000000000000000.0x8000000000000000 ++vmuls 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0x8000000000000000.0x0.0xc32388ef40000000 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xc32388ef40000000.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x7ff0000000000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0xc32388ef40000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x8000000000000000.0x8000000000000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000000000000.0x80004cd780000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000000000000.0x80000f5e40000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000000000000.0x80004cd780000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000000000000.0x80000f5e40000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000000000000.0x80004cd780000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000000000000.0x80001ebca0000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000000000000.0x80005c35c0000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000000000000.0x80001ebca0000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000000000000.0x80005c35c0000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000000000000.0x80001ebca0000000.0x0.0x20000000 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000000000000.0x80005c35c0000000.0x3a34567880000000.0x8000000020000000 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000000000000.0xc0debc9a60000000.0xba34567880000000.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0xfff0000000000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0xfff0000000000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0xfff0000000000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0xfff0000000000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0xfff0000000000000.0x0.0x0 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vmuls 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x8000000000000000.0x8000000000000000.0x8000000000000000 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x8000000000000000.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xc32388ef40000000.0x0.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x0.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc32388ef40000000.0x0.0x0.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000f5e40000000.0x0.0x0.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80004cd780000000.0x0.0x0.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000f5e40000000.0x0.0x0.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80004cd780000000.0x0.0x0.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000f5e40000000.0x0.0x0.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80004cd780000000.0x0.0x0.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80001ebca0000000.0x0.0x0.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80005c35c0000000.0x0.0x0.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80001ebca0000000.0x0.0x0.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80005c35c0000000.0x0.0x0.0xa0000000 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80001ebca0000000.0x0.0x20000000.0x80000000a0000000 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80005c35c0000000.0x3a34567880000000.0x8000000020000000.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vmuls 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7ff0000000000000.0x0.0x8000000000000000.0x8000000000000000 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x8000000000000000.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x8000000000000000.0x0.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc32388ef40000000.0x0.0x0.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x20000000 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0xa0000000.0x8000000020000000 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x20000000.0x80000000a0000000.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3a34567880000000.0x8000000020000000.0x0.0x8000000000000000 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xba34567880000000.0x0.0x8000000000000000.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3a00452d20000000.0x8000000000000000.0x20000000.0x8000000000000000 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xba00452d20000000.0x0.0x8000000020000000.0x60000000 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3a10452d20000000.0x8000000000000000.0x1e0000000.0x8000000060000000 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xba10452d20000000.0x60000000.0x80000001e0000000.0xa0000000 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3a4e81b4c0000000.0x8000000060000000.0x320000000.0x80000000a0000000 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xba4e81b4c0000000.0xa0000000.0x8000000320000000.0x3847d78400000000 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3a596c16a0000000.0x80000000a0000000.0x386dcd6500000000.0xb847d78400000000 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xba596c16a0000000.0x3847d78400000000.0xb86dcd6500000000.0x0 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3bde4e3f00000000.0xb847d78400000000.0x0.0x8000000000000000 ++vmuls 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbbde4e3f00000000.0x0.0x8000000000000000.0x80000f5e40000000 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x80000f5e40000000.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x80004cd780000000.0x0.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x80000f5e40000000.0x0.0x0.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0xa0000000 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x20000000.0x80000000a0000000 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0xa0000000.0x8000000020000000.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x20000000.0x80000000a0000000.0x0.0x8000000000000000 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000020000000.0x0.0x8000000000000000.0x20000000 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x8000000000000000.0x0.0x8000000020000000 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000000000000.0x20000000.0x8000000000000000.0x1e0000000 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x8000000020000000.0x60000000.0x80000001e0000000 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000000000000.0x1e0000000.0x8000000060000000.0x320000000 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x60000000.0x80000001e0000000.0xa0000000.0x8000000320000000 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000060000000.0x320000000.0x80000000a0000000.0x386dcd6500000000 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xa0000000.0x8000000320000000.0x3847d78400000000.0xb86dcd6500000000 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x80000000a0000000.0x386dcd6500000000.0xb847d78400000000.0x0 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3847d78400000000.0xb86dcd6500000000.0x0.0x8000000000000000 ++vmuls 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xb847d78400000000.0x0.0x8000000000000000.0x80004cd780000000 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x80004cd780000000.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x80000f5e40000000.0x0.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x80004cd780000000.0x0.0x0.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x20000000 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0xa0000000.0x8000000020000000 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x20000000.0x80000000a0000000.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xa0000000.0x8000000020000000.0x0.0x8000000000000000 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000a0000000.0x0.0x8000000000000000.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x8000000000000000.0x20000000.0x8000000000000000 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000000000000.0x0.0x8000000020000000.0x60000000 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x20000000.0x8000000000000000.0x1e0000000.0x8000000060000000 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000020000000.0x60000000.0x80000001e0000000.0xa0000000 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x1e0000000.0x8000000060000000.0x320000000.0x80000000a0000000 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000001e0000000.0xa0000000.0x8000000320000000.0x3847d78400000000 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x320000000.0x80000000a0000000.0x386dcd6500000000.0xb847d78400000000 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000320000000.0x3847d78400000000.0xb86dcd6500000000.0x0 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x386dcd6500000000.0xb847d78400000000.0x0.0x8000000000000000 ++vmuls 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xb86dcd6500000000.0x0.0x8000000000000000.0x80000f5e40000000 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x80000f5e40000000.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x80004cd780000000.0x0.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x80000f5e40000000.0x0.0x0.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0xa0000000 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x20000000.0x80000000a0000000 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0xa0000000.0x8000000020000000.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x20000000.0x80000000a0000000.0x0.0x8000000000000000 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000020000000.0x0.0x8000000000000000.0x20000000 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x8000000000000000.0x0.0x8000000020000000 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000000000000.0x20000000.0x8000000000000000.0x1e0000000 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x8000000020000000.0x60000000.0x80000001e0000000 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000000000000.0x1e0000000.0x8000000060000000.0x320000000 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x60000000.0x80000001e0000000.0xa0000000.0x8000000320000000 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000060000000.0x320000000.0x80000000a0000000.0x386dcd6500000000 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xa0000000.0x8000000320000000.0x3847d78400000000.0xb86dcd6500000000 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x80000000a0000000.0x386dcd6500000000.0xb847d78400000000.0x0 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3847d78400000000.0xb86dcd6500000000.0x0.0x8000000000000000 ++vmuls 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xb847d78400000000.0x0.0x8000000000000000.0x80004cd780000000 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x80004cd780000000.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x80000f5e40000000.0x0.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x80004cd780000000.0x0.0x0.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x40000000 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0xa0000000.0x8000000040000000 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x20000000.0x80000000a0000000.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xa0000000.0x8000000020000000.0x0.0x8000000000000000 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000a0000000.0x0.0x8000000000000000.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x8000000000000000.0x20000000.0x8000000000000000 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000000000000.0x0.0x8000000020000000.0xc0000000 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x20000000.0x8000000000000000.0x1e0000000.0x80000000c0000000 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000020000000.0x60000000.0x80000001e0000000.0x140000000 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x1e0000000.0x8000000060000000.0x320000000.0x8000000140000000 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000001e0000000.0xa0000000.0x8000000320000000.0x3857d78400000000 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x320000000.0x80000000a0000000.0x386dcd6500000000.0xb857d78400000000 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000320000000.0x3847d78400000000.0xb86dcd6500000000.0x0 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x386dcd6500000000.0xb847d78400000000.0x0.0x8000000000000000 ++vmuls 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xb86dcd6500000000.0x0.0x8000000000000000.0x80001ebca0000000 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x80001ebca0000000.0x0 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x80004cd780000000.0x0.0x0 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x80000f5e40000000.0x0.0x0.0x0 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0xc0000000 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x40000000.0x80000000c0000000 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0xa0000000.0x8000000040000000.0x20000000 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x20000000.0x80000000a0000000.0x0.0x8000000020000000 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000020000000.0x0.0x8000000000000000.0x20000000 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x8000000000000000.0x0.0x8000000020000000 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000000000000.0x20000000.0x8000000000000000.0x240000000 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x8000000020000000.0xc0000000.0x8000000240000000 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000000000000.0x1e0000000.0x80000000c0000000.0x3c0000000 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x60000000.0x80000001e0000000.0x140000000.0x80000003c0000000 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000060000000.0x320000000.0x8000000140000000.0x3871e1a300000000 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xa0000000.0x8000000320000000.0x3857d78400000000.0xb871e1a300000000 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x80000000a0000000.0x386dcd6500000000.0xb857d78400000000.0x0 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3847d78400000000.0xb86dcd6500000000.0x0.0x8000000000000000 ++vmuls 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xb847d78400000000.0x0.0x8000000000000000.0x80005c35c0000000 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x80005c35c0000000.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x80001ebca0000000.0x0.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x80004cd780000000.0x0.0x0.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x40000000 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0xc0000000.0x8000000040000000 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x40000000.0x80000000c0000000.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xa0000000.0x8000000040000000.0x20000000.0x8000000000000000 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000a0000000.0x0.0x8000000020000000.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x8000000000000000.0x20000000.0x8000000000000000 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000000000000.0x0.0x8000000020000000.0xc0000000 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x20000000.0x8000000000000000.0x240000000.0x80000000c0000000 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000020000000.0xc0000000.0x8000000240000000.0x140000000 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x1e0000000.0x80000000c0000000.0x3c0000000.0x8000000140000000 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000001e0000000.0x140000000.0x80000003c0000000.0x3857d78400000000 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x320000000.0x8000000140000000.0x3871e1a300000000.0xb857d78400000000 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000320000000.0x3857d78400000000.0xb871e1a300000000.0x0 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x386dcd6500000000.0xb857d78400000000.0x0.0x8000000000000000 ++vmuls 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xb86dcd6500000000.0x0.0x8000000000000000.0x80001ebca0000000 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x80001ebca0000000.0x0 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x80005c35c0000000.0x0.0x0 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x80001ebca0000000.0x0.0x0.0x0 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0xc0000000 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x40000000.0x80000000c0000000 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0xc0000000.0x8000000040000000.0x20000000 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x40000000.0x80000000c0000000.0x0.0x8000000020000000 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000040000000.0x20000000.0x8000000000000000.0x20000000 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x8000000020000000.0x0.0x8000000020000000 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000000000000.0x20000000.0x8000000000000000.0x240000000 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x8000000020000000.0xc0000000.0x8000000240000000 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000000000000.0x240000000.0x80000000c0000000.0x3c0000000 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc0000000.0x8000000240000000.0x140000000.0x80000003c0000000 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000000c0000000.0x3c0000000.0x8000000140000000.0x3871e1a300000000 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x140000000.0x80000003c0000000.0x3857d78400000000.0xb871e1a300000000 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000140000000.0x3871e1a300000000.0xb857d78400000000.0x0 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3857d78400000000.0xb871e1a300000000.0x0.0x8000000000000000 ++vmuls 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xb857d78400000000.0x0.0x8000000000000000.0x80005c35c0000000 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x80005c35c0000000.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x80001ebca0000000.0x0.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x80005c35c0000000.0x0.0x0.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x40000000 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0xc0000000.0x8000000040000000 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x40000000.0x80000000c0000000.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc0000000.0x8000000040000000.0x20000000.0x8000000000000000 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000c0000000.0x0.0x8000000020000000.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x20000000.0x8000000000000000.0x20000000.0x8000000000000000 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000020000000.0x0.0x8000000020000000.0xc0000000 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x20000000.0x8000000000000000.0x240000000.0x80000000c0000000 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000020000000.0xc0000000.0x8000000240000000.0x140000000 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x240000000.0x80000000c0000000.0x3c0000000.0x8000000140000000 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000240000000.0x140000000.0x80000003c0000000.0x3857d78400000000 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3c0000000.0x8000000140000000.0x3871e1a300000000.0xb857d78400000000 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x80000003c0000000.0x3857d78400000000.0xb871e1a300000000.0x0 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3871e1a300000000.0xb857d78400000000.0x0.0x8000000000000000 ++vmuls 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xb871e1a300000000.0x0.0x8000000000000000.0x80001ebca0000000 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x80001ebca0000000.0x0 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x80005c35c0000000.0x0.0x0 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x80001ebca0000000.0x0.0x0.0x0 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0xc0000000 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x40000000.0x80000000c0000000 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0xc0000000.0x8000000040000000.0x20000000 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x40000000.0x80000000c0000000.0x0.0x8000000020000000 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000040000000.0x20000000.0x8000000000000000.0x20000000 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x8000000020000000.0x0.0x8000000020000000 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000000000000.0x20000000.0x8000000000000000.0x240000000 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x8000000020000000.0xc0000000.0x8000000240000000 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000000000000.0x240000000.0x80000000c0000000.0x3c0000000 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc0000000.0x8000000240000000.0x140000000.0x80000003c0000000 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000000c0000000.0x3c0000000.0x8000000140000000.0x3871e1a300000000 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x140000000.0x80000003c0000000.0x3857d78400000000.0xb871e1a300000000 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000140000000.0x3871e1a300000000.0xb857d78400000000.0x0 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3857d78400000000.0xb871e1a300000000.0x0.0x8000000000000000 ++vmuls 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xb857d78400000000.0x0.0x8000000000000000.0x80005c35c0000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x80005c35c0000000.0x3a34567880000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x80001ebca0000000.0x0.0x20000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x80005c35c0000000.0x0.0x0.0xa0000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x20000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0xa0000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x20000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0xa0000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x40000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0xc0000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x40000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0xc0000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x40000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0xc0000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x3ff0000000000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0xc0000000.0xbff0000000000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x40000000.0x80000000c0000000.0x3fb9999980000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc0000000.0x8000000040000000.0x20000000.0xbfb9999980000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000c0000000.0x0.0x8000000020000000.0x3fc9999980000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x20000000.0x8000000000000000.0x20000000.0xbfc9999980000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000020000000.0x0.0x8000000020000000.0x4008000000000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x20000000.0x8000000000000000.0x240000000.0xc008000000000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000020000000.0xc0000000.0x8000000240000000.0x4014000000000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x240000000.0x80000000c0000000.0x3c0000000.0xc014000000000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000240000000.0x140000000.0x80000003c0000000.0x4197d78400000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3c0000000.0x8000000140000000.0x3871e1a300000000.0xc197d78400000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x80000003c0000000.0x3857d78400000000.0xb871e1a300000000.0x0 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3871e1a300000000.0xb857d78400000000.0x0.0x8000000000000000 ++vmuls 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xb871e1a300000000.0x0.0x8000000000000000.0xc0debc9a60000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xc0debc9a60000000.0xba34567880000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x80005c35c0000000.0x3a34567880000000.0x8000000020000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x80001ebca0000000.0x0.0x20000000.0x80000000a0000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0xa0000000.0x8000000020000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x20000000.0x80000000a0000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0xa0000000.0x8000000020000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x20000000.0x80000000a0000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0xa0000000.0x8000000040000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x40000000.0x80000000c0000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0xc0000000.0x8000000040000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x40000000.0x80000000c0000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0xc0000000.0x8000000040000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x40000000.0x80000000c0000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0xc0000000.0xbff0000000000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x3ff0000000000000.0x3ff0000000000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0xc0000000.0xbff0000000000000.0xbfb9999980000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x40000000.0x80000000c0000000.0x3fb9999980000000.0x3fb9999980000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000040000000.0x20000000.0xbfb9999980000000.0xbfc9999980000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x8000000020000000.0x3fc9999980000000.0x3fc9999980000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000000000000.0x20000000.0xbfc9999980000000.0xc008000000000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x8000000020000000.0x4008000000000000.0x4008000000000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000000000000.0x240000000.0xc008000000000000.0xc014000000000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc0000000.0x8000000240000000.0x4014000000000000.0x4014000000000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000000c0000000.0x3c0000000.0xc014000000000000.0xc197d78400000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x140000000.0x80000003c0000000.0x4197d78400000000.0x4197d78400000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000140000000.0x3871e1a300000000.0xc197d78400000000.0x8000000000000000 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3857d78400000000.0xb871e1a300000000.0x0.0x0 ++vmuls 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xb857d78400000000.0x0.0x8000000000000000.0x40debc9a60000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x40debc9a60000000.0x3a00452d20000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xc0debc9a60000000.0xba34567880000000.0x0 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x80005c35c0000000.0x3a34567880000000.0x8000000020000000.0x0 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x20000000.0x80000000a0000000.0x0 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0xa0000000.0x8000000020000000.0x0 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x20000000.0x80000000a0000000.0x0 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0xa0000000.0x8000000020000000.0x0 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x20000000.0x80000000a0000000.0x0 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0xa0000000.0x8000000040000000.0x20000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x40000000.0x80000000c0000000.0x0 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0xc0000000.0x8000000040000000.0x20000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x40000000.0x80000000c0000000.0x0 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0xc0000000.0x8000000040000000.0x20000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x40000000.0x80000000c0000000.0x3fb9999980000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0xc0000000.0xbff0000000000000.0xbfb9999980000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x3ff0000000000000.0x3ff0000000000000.0x3f847ae120000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc0000000.0xbff0000000000000.0xbfb9999980000000.0xbf847ae120000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000c0000000.0x3fb9999980000000.0x3fb9999980000000.0x3f947ae120000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x20000000.0xbfb9999980000000.0xbfc9999980000000.0xbf947ae120000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000020000000.0x3fc9999980000000.0x3fc9999980000000.0x3fd3333320000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x20000000.0xbfc9999980000000.0xc008000000000000.0xbfd3333320000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000020000000.0x4008000000000000.0x4008000000000000.0x3fdfffffe0000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x240000000.0xc008000000000000.0xc014000000000000.0xbfdfffffe0000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000240000000.0x4014000000000000.0x4014000000000000.0x416312cfe0000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3c0000000.0xc014000000000000.0xc197d78400000000.0xc16312cfe0000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x80000003c0000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3871e1a300000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vmuls 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xb871e1a300000000.0x0.0x0.0xc0a896e1c0000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xfff0000000000000.0x0 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x8000000020000000.0x0.0x8000000000000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0x80000000a0000000.0x0.0x8000000000000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x8000000020000000.0x0.0x8000000000000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0x80000000a0000000.0x0.0x8000000000000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x8000000020000000.0x0.0x8000000000000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0x80000000a0000000.0x0.0x8000000020000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x8000000040000000.0x20000000.0x8000000000000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0x80000000c0000000.0x0.0x8000000020000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x8000000040000000.0x20000000.0x8000000000000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0x80000000c0000000.0x0.0x8000000020000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x8000000040000000.0x20000000.0xbfb9999980000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0x80000000c0000000.0x3fb9999980000000.0x3fb9999980000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0xbff0000000000000.0xbfb9999980000000.0xbf847ae120000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3f847ae140000000.0x3f847ae140000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb99999a0000000.0xbf847ae140000000.0xbf947ae140000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb99999a0000000.0x3fb99999a0000000.0x3f947ae140000000.0x3f947ae140000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0xbfc99999a0000000.0xbf947ae140000000.0xbfd3333340000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0x3fc99999a0000000.0x3fd3333340000000.0x3fd3333340000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0xc008000000000000.0xbfd3333340000000.0xbfe0000000000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0xbfe0000000000000.0xc16312d000000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x416312d000000000.0x416312d000000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0xc16312d000000000.0x8000000000000000 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vmuls 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x0 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xfff0000000000000.0x0.0x0 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x0.0x8000000000000000.0x0 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x0.0x8000000000000000.0x20000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x0.0x8000000000000000.0x0 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0x0.0x8000000000000000.0x20000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x0.0x8000000000000000.0x0 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0x0.0x8000000000000000.0x20000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x0.0x8000000020000000.0x0 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x20000000.0x8000000000000000.0x20000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x0.0x8000000020000000.0x0 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x20000000.0x8000000000000000.0x20000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x0.0x8000000020000000.0x3fc9999980000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x20000000.0xbfb9999980000000.0xbfc9999980000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0x3fb9999980000000.0x3fb9999980000000.0x3f947ae120000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbfb99999a0000000.0xbf847ae140000000.0xbf947ae140000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3f847ae140000000.0x3f847ae140000000.0x3fa47ae140000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb99999a0000000.0xbf847ae140000000.0xbf947ae140000000.0xbfa47ae140000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0x3f947ae140000000.0x3f947ae140000000.0x3fe3333340000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0xbf947ae140000000.0xbfd3333340000000.0xbfe3333340000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0x3fd3333340000000.0x3fd3333340000000.0x3ff0000000000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xbfd3333340000000.0xbfe0000000000000.0xbff0000000000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000.0x417312d000000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xbfe0000000000000.0xc16312d000000000.0xc17312d000000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x416312d000000000.0x416312d000000000.0x0 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc16312d000000000.0x8000000000000000.0x8000000000000000 ++vmuls 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0xfff0000000000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xfff0000000000000.0x0 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a00452d20000000.0x8000000000000000.0x20000000.0x8000000000000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x8000000000000000.0x0.0x8000000020000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x8000000000000000.0x20000000.0x8000000000000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x8000000000000000.0x0.0x8000000020000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x8000000000000000.0x20000000.0x8000000000000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x8000000000000000.0x0.0x8000000020000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x8000000000000000.0x20000000.0x8000000000000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x8000000020000000.0x0.0x8000000020000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x20000000.0x8000000000000000.0x20000000.0x8000000000000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x8000000020000000.0x0.0x8000000020000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x20000000.0x8000000000000000.0x20000000.0xbfc9999980000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x8000000020000000.0x3fc9999980000000.0x3fc9999980000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x20000000.0xbfb9999980000000.0xbfc9999980000000.0xbf947ae120000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fb99999a0000000.0x3fb99999a0000000.0x3f947ae140000000.0x3f947ae140000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbfb99999a0000000.0xbf847ae140000000.0xbf947ae140000000.0xbfa47ae140000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3f847ae140000000.0x3f847ae140000000.0x3fa47ae140000000.0x3fa47ae140000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbf847ae140000000.0xbf947ae140000000.0xbfa47ae140000000.0xbfe3333340000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3f947ae140000000.0x3f947ae140000000.0x3fe3333340000000.0x3fe3333340000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbf947ae140000000.0xbfd3333340000000.0xbfe3333340000000.0xbff0000000000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fd3333340000000.0x3fd3333340000000.0x3ff0000000000000.0x3ff0000000000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbfd3333340000000.0xbfe0000000000000.0xbff0000000000000.0xc17312d000000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3fe0000000000000.0x3fe0000000000000.0x417312d000000000.0x417312d000000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbfe0000000000000.0xc16312d000000000.0xc17312d000000000.0x8000000000000000 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x416312d000000000.0x416312d000000000.0x0.0x0 ++vmuls 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc16312d000000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x0 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xfff0000000000000.0x0.0x0 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba00452d20000000.0x0.0x8000000020000000.0x60000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000000000000.0x20000000.0x8000000000000000.0x1e0000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000000000000.0x0.0x8000000020000000.0x60000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000000000000.0x20000000.0x8000000000000000.0x1e0000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000000000000.0x0.0x8000000020000000.0xc0000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000000000000.0x20000000.0x8000000000000000.0x240000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000000000000.0x0.0x8000000020000000.0xc0000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000000000000.0x20000000.0x8000000000000000.0x240000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000020000000.0x0.0x8000000020000000.0xc0000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000000000000.0x20000000.0x8000000000000000.0x240000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000020000000.0x0.0x8000000020000000.0x4008000000000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000000000000.0x20000000.0xbfc9999980000000.0xc008000000000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000020000000.0x3fc9999980000000.0x3fc9999980000000.0x3fd3333320000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfb99999a0000000.0xbfc99999a0000000.0xbf947ae140000000.0xbfd3333340000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fb99999a0000000.0x3f947ae140000000.0x3f947ae140000000.0x3fe3333340000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbf847ae140000000.0xbf947ae140000000.0xbfa47ae140000000.0xbfe3333340000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3f847ae140000000.0x3fa47ae140000000.0x3fa47ae140000000.0x4022000000000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbf947ae140000000.0xbfa47ae140000000.0xbfe3333340000000.0xc022000000000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3f947ae140000000.0x3fe3333340000000.0x3fe3333340000000.0x402e000000000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbfd3333340000000.0xbfe3333340000000.0xbff0000000000000.0xc02e000000000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3fd3333340000000.0x3ff0000000000000.0x3ff0000000000000.0x41b1e1a300000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbfe0000000000000.0xbff0000000000000.0xc17312d000000000.0xc1b1e1a300000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3fe0000000000000.0x417312d000000000.0x417312d000000000.0x0 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc16312d000000000.0xc17312d000000000.0x8000000000000000.0x8000000000000000 ++vmuls 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x416312d000000000.0x0.0x0.0xfff0000000000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xfff0000000000000.0x0 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a10452d20000000.0x8000000000000000.0x1e0000000.0x8000000060000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x8000000020000000.0x60000000.0x80000001e0000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x20000000.0x8000000000000000.0x1e0000000.0x8000000060000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x8000000020000000.0x60000000.0x80000001e0000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x20000000.0x8000000000000000.0x1e0000000.0x80000000c0000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x8000000020000000.0xc0000000.0x8000000240000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x20000000.0x8000000000000000.0x240000000.0x80000000c0000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x8000000020000000.0xc0000000.0x8000000240000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x20000000.0x8000000000000000.0x240000000.0x80000000c0000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x8000000020000000.0xc0000000.0x8000000240000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x20000000.0x8000000000000000.0x240000000.0xc008000000000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x8000000020000000.0x4008000000000000.0x4008000000000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x20000000.0xbfc9999980000000.0xc008000000000000.0xbfd3333320000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fc99999a0000000.0x3fc99999a0000000.0x3fd3333340000000.0x3fd3333340000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbfc99999a0000000.0xbf947ae140000000.0xbfd3333340000000.0xbfe3333340000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3f947ae140000000.0x3f947ae140000000.0x3fe3333340000000.0x3fe3333340000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbf947ae140000000.0xbfa47ae140000000.0xbfe3333340000000.0xc022000000000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fa47ae140000000.0x3fa47ae140000000.0x4022000000000000.0x4022000000000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfa47ae140000000.0xbfe3333340000000.0xc022000000000000.0xc02e000000000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fe3333340000000.0x3fe3333340000000.0x402e000000000000.0x402e000000000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbfe3333340000000.0xbff0000000000000.0xc02e000000000000.0xc1b1e1a300000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3ff0000000000000.0x3ff0000000000000.0x41b1e1a300000000.0x41b1e1a300000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbff0000000000000.0xc17312d000000000.0xc1b1e1a300000000.0x8000000000000000 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x417312d000000000.0x417312d000000000.0x0.0x0 ++vmuls 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc17312d000000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x0 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xfff0000000000000.0x0.0x0 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba10452d20000000.0x60000000.0x80000001e0000000.0xa0000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000000000000.0x1e0000000.0x8000000060000000.0x320000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000020000000.0x60000000.0x80000001e0000000.0xa0000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000000000000.0x1e0000000.0x8000000060000000.0x320000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000020000000.0x60000000.0x80000001e0000000.0x140000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000000000000.0x1e0000000.0x80000000c0000000.0x3c0000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000020000000.0xc0000000.0x8000000240000000.0x140000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000000000000.0x240000000.0x80000000c0000000.0x3c0000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000020000000.0xc0000000.0x8000000240000000.0x140000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000000000000.0x240000000.0x80000000c0000000.0x3c0000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000020000000.0xc0000000.0x8000000240000000.0x4014000000000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000000000000.0x240000000.0xc008000000000000.0xc014000000000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000020000000.0x4008000000000000.0x4008000000000000.0x3fdfffffe0000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfc99999a0000000.0xc008000000000000.0xbfd3333340000000.0xbfe0000000000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fc99999a0000000.0x3fd3333340000000.0x3fd3333340000000.0x3ff0000000000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbf947ae140000000.0xbfd3333340000000.0xbfe3333340000000.0xbff0000000000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3f947ae140000000.0x3fe3333340000000.0x3fe3333340000000.0x402e000000000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfa47ae140000000.0xbfe3333340000000.0xc022000000000000.0xc02e000000000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fa47ae140000000.0x4022000000000000.0x4022000000000000.0x4039000000000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbfe3333340000000.0xc022000000000000.0xc02e000000000000.0xc039000000000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3fe3333340000000.0x402e000000000000.0x402e000000000000.0x41bdcd6500000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbff0000000000000.0xc02e000000000000.0xc1b1e1a300000000.0xc1bdcd6500000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3ff0000000000000.0x41b1e1a300000000.0x41b1e1a300000000.0x0 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc17312d000000000.0xc1b1e1a300000000.0x8000000000000000.0x8000000000000000 ++vmuls 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x417312d000000000.0x0.0x0.0xfff0000000000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xfff0000000000000.0x0 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a4e81b4c0000000.0x8000000060000000.0x320000000.0x80000000a0000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x60000000.0x80000001e0000000.0xa0000000.0x8000000320000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x1e0000000.0x8000000060000000.0x320000000.0x80000000a0000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x60000000.0x80000001e0000000.0xa0000000.0x8000000320000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x1e0000000.0x8000000060000000.0x320000000.0x8000000140000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x60000000.0x80000001e0000000.0x140000000.0x80000003c0000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x1e0000000.0x80000000c0000000.0x3c0000000.0x8000000140000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc0000000.0x8000000240000000.0x140000000.0x80000003c0000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x240000000.0x80000000c0000000.0x3c0000000.0x8000000140000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc0000000.0x8000000240000000.0x140000000.0x80000003c0000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x240000000.0x80000000c0000000.0x3c0000000.0xc014000000000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc0000000.0x8000000240000000.0x4014000000000000.0x4014000000000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x240000000.0xc008000000000000.0xc014000000000000.0xbfdfffffe0000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4008000000000000.0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc008000000000000.0xbfd3333340000000.0xbfe0000000000000.0xbff0000000000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fd3333340000000.0x3fd3333340000000.0x3ff0000000000000.0x3ff0000000000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfd3333340000000.0xbfe3333340000000.0xbff0000000000000.0xc02e000000000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fe3333340000000.0x3fe3333340000000.0x402e000000000000.0x402e000000000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfe3333340000000.0xc022000000000000.0xc02e000000000000.0xc039000000000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4022000000000000.0x4022000000000000.0x4039000000000000.0x4039000000000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc022000000000000.0xc02e000000000000.0xc039000000000000.0xc1bdcd6500000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x402e000000000000.0x402e000000000000.0x41bdcd6500000000.0x41bdcd6500000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc02e000000000000.0xc1b1e1a300000000.0xc1bdcd6500000000.0x8000000000000000 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x41b1e1a300000000.0x41b1e1a300000000.0x0.0x0 ++vmuls 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc1b1e1a300000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x0 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xfff0000000000000.0x0.0x0 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba4e81b4c0000000.0xa0000000.0x8000000320000000.0x3847d78400000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000060000000.0x320000000.0x80000000a0000000.0x386dcd6500000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000001e0000000.0xa0000000.0x8000000320000000.0x3847d78400000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000060000000.0x320000000.0x80000000a0000000.0x386dcd6500000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000001e0000000.0xa0000000.0x8000000320000000.0x3857d78400000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000060000000.0x320000000.0x8000000140000000.0x3871e1a300000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000001e0000000.0x140000000.0x80000003c0000000.0x3857d78400000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000000c0000000.0x3c0000000.0x8000000140000000.0x3871e1a300000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000240000000.0x140000000.0x80000003c0000000.0x3857d78400000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80000000c0000000.0x3c0000000.0x8000000140000000.0x3871e1a300000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000240000000.0x140000000.0x80000003c0000000.0x4197d78400000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80000000c0000000.0x3c0000000.0xc014000000000000.0xc197d78400000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000240000000.0x4014000000000000.0x4014000000000000.0x416312cfe0000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc008000000000000.0xc014000000000000.0xbfe0000000000000.0xc16312d000000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000.0x417312d000000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfd3333340000000.0xbfe0000000000000.0xbff0000000000000.0xc17312d000000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fd3333340000000.0x3ff0000000000000.0x3ff0000000000000.0x41b1e1a300000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfe3333340000000.0xbff0000000000000.0xc02e000000000000.0xc1b1e1a300000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fe3333340000000.0x402e000000000000.0x402e000000000000.0x41bdcd6500000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc022000000000000.0xc02e000000000000.0xc039000000000000.0xc1bdcd6500000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4022000000000000.0x4039000000000000.0x4039000000000000.0x4341c37940000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc02e000000000000.0xc039000000000000.0xc1bdcd6500000000.0xc341c37940000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x402e000000000000.0x41bdcd6500000000.0x41bdcd6500000000.0x0 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc1b1e1a300000000.0xc1bdcd6500000000.0x8000000000000000.0x8000000000000000 ++vmuls 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x41b1e1a300000000.0x0.0x0.0xfff0000000000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xfff0000000000000.0x0 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a596c16a0000000.0x80000000a0000000.0x386dcd6500000000.0xb847d78400000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xa0000000.0x8000000320000000.0x3847d78400000000.0xb86dcd6500000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x320000000.0x80000000a0000000.0x386dcd6500000000.0xb847d78400000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xa0000000.0x8000000320000000.0x3847d78400000000.0xb86dcd6500000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x320000000.0x80000000a0000000.0x386dcd6500000000.0xb857d78400000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xa0000000.0x8000000320000000.0x3857d78400000000.0xb871e1a300000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x320000000.0x8000000140000000.0x3871e1a300000000.0xb857d78400000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x140000000.0x80000003c0000000.0x3857d78400000000.0xb871e1a300000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3c0000000.0x8000000140000000.0x3871e1a300000000.0xb857d78400000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x140000000.0x80000003c0000000.0x3857d78400000000.0xb871e1a300000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3c0000000.0x8000000140000000.0x3871e1a300000000.0xc197d78400000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x140000000.0x80000003c0000000.0x4197d78400000000.0x4197d78400000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3c0000000.0xc014000000000000.0xc197d78400000000.0xc16312cfe0000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4014000000000000.0x4014000000000000.0x416312d000000000.0x416312d000000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc014000000000000.0xbfe0000000000000.0xc16312d000000000.0xc17312d000000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fe0000000000000.0x3fe0000000000000.0x417312d000000000.0x417312d000000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfe0000000000000.0xbff0000000000000.0xc17312d000000000.0xc1b1e1a300000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x41b1e1a300000000.0x41b1e1a300000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbff0000000000000.0xc02e000000000000.0xc1b1e1a300000000.0xc1bdcd6500000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x402e000000000000.0x402e000000000000.0x41bdcd6500000000.0x41bdcd6500000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc02e000000000000.0xc039000000000000.0xc1bdcd6500000000.0xc341c37940000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4039000000000000.0x4039000000000000.0x4341c37940000000.0x4341c37940000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc039000000000000.0xc1bdcd6500000000.0xc341c37940000000.0x8000000000000000 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x41bdcd6500000000.0x41bdcd6500000000.0x0.0x0 ++vmuls 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc1bdcd6500000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xfff0000000000000.0x0.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba596c16a0000000.0x3847d78400000000.0xb86dcd6500000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000a0000000.0x386dcd6500000000.0xb847d78400000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000320000000.0x3847d78400000000.0xb86dcd6500000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000000a0000000.0x386dcd6500000000.0xb847d78400000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000320000000.0x3847d78400000000.0xb86dcd6500000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000a0000000.0x386dcd6500000000.0xb857d78400000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000320000000.0x3857d78400000000.0xb871e1a300000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000140000000.0x3871e1a300000000.0xb857d78400000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000003c0000000.0x3857d78400000000.0xb871e1a300000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000140000000.0x3871e1a300000000.0xb857d78400000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000003c0000000.0x3857d78400000000.0xb871e1a300000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000140000000.0x3871e1a300000000.0xc197d78400000000.0x8000000000000000 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000003c0000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc014000000000000.0xc197d78400000000.0xc16312d000000000.0x8000000000000000 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4014000000000000.0x416312d000000000.0x416312d000000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfe0000000000000.0xc16312d000000000.0xc17312d000000000.0x8000000000000000 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fe0000000000000.0x417312d000000000.0x417312d000000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbff0000000000000.0xc17312d000000000.0xc1b1e1a300000000.0x8000000000000000 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3ff0000000000000.0x41b1e1a300000000.0x41b1e1a300000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc02e000000000000.0xc1b1e1a300000000.0xc1bdcd6500000000.0x8000000000000000 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x402e000000000000.0x41bdcd6500000000.0x41bdcd6500000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc039000000000000.0xc1bdcd6500000000.0xc341c37940000000.0x8000000000000000 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4039000000000000.0x4341c37940000000.0x4341c37940000000.0x0 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc1bdcd6500000000.0xc341c37940000000.0x8000000000000000.0x8000000000000000 ++vmuls 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x41bdcd6500000000.0x0.0x0.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x8000000000000000.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3bde4e3f00000000.0xb847d78400000000.0x0.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3847d78400000000.0xb86dcd6500000000.0x0.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x386dcd6500000000.0xb847d78400000000.0x0.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3847d78400000000.0xb86dcd6500000000.0x0.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x386dcd6500000000.0xb847d78400000000.0x0.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3847d78400000000.0xb86dcd6500000000.0x0.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x386dcd6500000000.0xb857d78400000000.0x0.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3857d78400000000.0xb871e1a300000000.0x0.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3871e1a300000000.0xb857d78400000000.0x0.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3857d78400000000.0xb871e1a300000000.0x0.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3871e1a300000000.0xb857d78400000000.0x0.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3857d78400000000.0xb871e1a300000000.0x0.0x0 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3871e1a300000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc197d78400000000.0xc16312d000000000.0x8000000000000000.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x416312d000000000.0x416312d000000000.0x0.0x0 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc16312d000000000.0xc17312d000000000.0x8000000000000000.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x417312d000000000.0x417312d000000000.0x0.0x0 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc17312d000000000.0xc1b1e1a300000000.0x8000000000000000.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41b1e1a300000000.0x41b1e1a300000000.0x0.0x0 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1b1e1a300000000.0xc1bdcd6500000000.0x8000000000000000.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x41bdcd6500000000.0x41bdcd6500000000.0x0.0x0 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc1bdcd6500000000.0xc341c37940000000.0x8000000000000000.0x8000000000000000 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4341c37940000000.0x4341c37940000000.0x0.0x0 ++vmuls 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc341c37940000000.0x8000000000000000.0x8000000000000000.0x0 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x0.0xc32388ef40000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x8000000000000000.0x8000000000000000.0x8000000000000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x8000000000000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbbde4e3f00000000.0x0.0x8000000000000000.0x80000f5e40000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xb847d78400000000.0x0.0x8000000000000000.0x80004cd780000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xb86dcd6500000000.0x0.0x8000000000000000.0x80000f5e40000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xb847d78400000000.0x0.0x8000000000000000.0x80004cd780000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xb86dcd6500000000.0x0.0x8000000000000000.0x80001ebca0000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xb847d78400000000.0x0.0x8000000000000000.0x80005c35c0000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xb86dcd6500000000.0x0.0x8000000000000000.0x80001ebca0000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xb857d78400000000.0x0.0x8000000000000000.0x80005c35c0000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xb871e1a300000000.0x0.0x8000000000000000.0x80001ebca0000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xb857d78400000000.0x0.0x8000000000000000.0x80005c35c0000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xb871e1a300000000.0x0.0x8000000000000000.0xc0debc9a60000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xb857d78400000000.0x0.0x8000000000000000.0x40debc9a60000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xb871e1a300000000.0x0.0x0.0xc0a896e1c0000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4197d78400000000.0x0.0x0.0xfff0000000000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc16312d000000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x416312d000000000.0x0.0x0.0xfff0000000000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc17312d000000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x417312d000000000.0x0.0x0.0xfff0000000000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1b1e1a300000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41b1e1a300000000.0x0.0x0.0xfff0000000000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc1bdcd6500000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x41bdcd6500000000.0x0.0x0.0x8000000000000000 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc341c37940000000.0x8000000000000000.0x8000000000000000.0x0 ++vmuls 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4341c37940000000.0x0.0x0.0x7ff0000000000000 ++=== Running test on vmuld=== ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x7ff0000000000000.0x0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x0.0xc32388ef423d9d0c.0x0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x8000000000000000.0x8000000000000000.0x0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x8000000000000000.0x8000000000000000.0x0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x8000000000000000.0xaf9dae1ec2b23ac3.0x0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x8000000000000000.0xafb6c9d4ecd7a8ba.0x0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x8000000000000000.0xaf9deb97f7a2e72b.0x0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x8000000000000000.0xafb6d9333a13d3d4.0x0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x8000000000000000.0xaf9edb5712ce8a46.0x0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x8000000000000000.0xafb7152300debc9b.0x0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x8000000000000000.0xaf9f0971fa830b94.0x0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x8000000000000000.0xafb720a9bacbdcee.0x0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x8000000000000000.0xafa26dc8d96fd63d.0x0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x8000000000000000.0xafb89531a8e30527.0x123456789abcdef0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x8000000000000000.0x70debc9a78563412.0x1200452d489718c0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0xf0a896e1f9de900f.0x9200452d489718c0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000000000000.0x8000000000000000.0x70a896e1f9de900f.0x1210452d489718c0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0xf0b896e1f9de900f.0x9210452d489718c0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000000000000.0x8000000000000000.0x70b896e1f9de900f.0x124e81b4e81b4e68 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0xf0f70d73da40a70e.0x924e81b4e81b4e68 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000000000000.0x8000000000000000.0x70f70d73da40a70e.0x12596c16c16c16ac ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0xf10335e08b35e08b.0x92596c16c16c16ac ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000000.0x8000000000000000.0x710335e08b35e08b.0x13de4e3f1c71c703 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0xf286e690fe53a8fe.0x93de4e3f1c71c703 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000000000000.0x8000000000000000.0x7286e690fe53a8fe.0x0 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x8000000000000000.0x8000000000000000 ++vmuld 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0x8000000000000000.0x0.0xc32388ef423d9d0c ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xc32388ef423d9d0c.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x7ff0000000000000.0x0.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0xc32388ef423d9d0c.0x0.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x8000000000000000.0x8000000000000000.0x0.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000000000000.0xafb6fe158d047bf3.0x0.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000000000000.0xaf9dae1ec2b23ac3.0x0.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000000000000.0xafb6c9d4ecd7a8ba.0x0.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000000000000.0xaf9deb97f7a2e72b.0x0.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000000000000.0xafb6d9333a13d3d4.0x0.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000000000000.0xaf9edb5712ce8a46.0x0.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000000000000.0xafb7152300debc9b.0x0.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000000000000.0xaf9f0971fa830b94.0x0.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000000000000.0xafb720a9bacbdcee.0x0.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000000000000.0xafa26dc8d96fd63d.0x0.0x3f800000 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000000000000.0xafb89531a8e30527.0x123456789abcdef0.0x800000003f800000 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x659999a ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x8000000000000000.0x70debc9a78563412.0x1200452d489718c0.0x8000000000000000 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0xf0a896e1f9de900f.0x9200452d489718c0.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x8000000000000000.0x70a896e1f9de900f.0x1210452d489718c0.0x8000000000000000 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0xf0b896e1f9de900f.0x9210452d489718c0.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x8000000000000000.0x70b896e1f9de900f.0x124e81b4e81b4e68.0x8000000000000000 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0xf0f70d73da40a70e.0x924e81b4e81b4e68.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000000.0x70f70d73da40a70e.0x12596c16c16c16ac.0x8000000000000000 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0xf10335e08b35e08b.0x92596c16c16c16ac.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x8000000000000000.0x710335e08b35e08b.0x13de4e3f1c71c703.0x8000000000000000 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0xf286e690fe53a8fe.0x93de4e3f1c71c703.0x0 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x8000000000000000.0x7286e690fe53a8fe.0x0.0x8000000000000000 ++vmuld 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x8000000000000000.0x8000000000000000.0x8000000000000000 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x8000000000000000.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xc32388ef423d9d0c.0x0.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x0.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc32388ef423d9d0c.0x0.0x0.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xaf9e7f21436587aa.0x0.0x0.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xafb6fe158d047bf3.0x0.0x0.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xaf9dae1ec2b23ac3.0x0.0x0.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xafb6c9d4ecd7a8ba.0x0.0x0.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xaf9deb97f7a2e72b.0x0.0x0.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xafb6d9333a13d3d4.0x0.0x0.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xaf9edb5712ce8a46.0x0.0x0.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xafb7152300debc9b.0x0.0x0.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xaf9f0971fa830b94.0x0.0x0.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xafb720a9bacbdcee.0x0.0x0.0xbf800000 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xafa26dc8d96fd63d.0x0.0x3f800000.0x80000000bf800000 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xafb89531a8e30527.0x123456789abcdef0.0x800000003f800000.0x13266666 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xf0debc9a78563412.0x923456789abcdef0.0x0.0x8000000000000000 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x70debc9a78563412.0x1200452d489718c0.0x8000000000000000.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xf0a896e1f9de900f.0x9200452d489718c0.0x0.0x8000000000000000 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x70a896e1f9de900f.0x1210452d489718c0.0x8000000000000000.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xf0b896e1f9de900f.0x9210452d489718c0.0x0.0x8000000000000000 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x70b896e1f9de900f.0x124e81b4e81b4e68.0x8000000000000000.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xf0f70d73da40a70e.0x924e81b4e81b4e68.0x0.0x8000000000000000 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x70f70d73da40a70e.0x12596c16c16c16ac.0x8000000000000000.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xf10335e08b35e08b.0x92596c16c16c16ac.0x0.0x8000000000000000 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x710335e08b35e08b.0x13de4e3f1c71c703.0x8000000000000000.0x0 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xf286e690fe53a8fe.0x93de4e3f1c71c703.0x0.0x8000000000000000 ++vmuld 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7286e690fe53a8fe.0x0.0x8000000000000000.0x8000000000000000 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x8000000000000000.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x8000000000000000.0x0.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc32388ef423d9d0c.0x0.0x0.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x3dcccccd ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0xbf800000.0x800000003dcccccd ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x3f800000.0x80000000bf800000.0x62e147b ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x123456789abcdef0.0x8000000000000000.0x0.0x8000000000000000 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x923456789abcdef0.0x0.0x8000000000000000.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x1200452d489718c0.0x8000000000000000.0x0.0x8000000000000000 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x9200452d489718c0.0x0.0x8000000000000000.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x1210452d489718c0.0x8000000000000000.0x0.0x8000000000000000 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x9210452d489718c0.0x0.0x8000000000000000.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x124e81b4e81b4e68.0x8000000000000000.0x0.0x8000000000000000 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x924e81b4e81b4e68.0x0.0x8000000000000000.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x12596c16c16c16ac.0x8000000000000000.0x0.0x8000000000000000 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x92596c16c16c16ac.0x0.0x8000000000000000.0x0 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x13de4e3f1c71c703.0x8000000000000000.0x0.0x8000000000000000 ++vmuld 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x93de4e3f1c71c703.0x0.0x8000000000000000.0x8000000000000000 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xaf9dae1ec2b23ac3.0x0 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xafb6fe158d047bf3.0x0.0x0 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xaf9e7f21436587aa.0x0.0x0.0x0 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0xbdcccccd ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x3dcccccd.0x80000000bdcccccd ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0xbf800000.0x800000003dcccccd.0x12fae148 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3f800000.0x80000000bf800000.0x62e147b.0x8000000012fae148 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x800000003f800000.0x13266666.0x80000000062e147b.0x25f5c28f ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x659999a.0x8000000013266666.0xc5c28f6.0x8000000025f5c28f ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x800000000659999a.0x264ccccd.0x800000000c5c28f6.0x239666667 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xcb33333.0x80000000264ccccd.0xb9666667.0x8000000239666667 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x800000000cb33333.0x23e800000.0x80000000b9666667.0x3b5000001 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbe800000.0x800000023e800000.0x135000001.0x80000003b5000001 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000000be800000.0x3bd800000.0x8000000135000001.0x71ad2f4404c4b4 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x13d800000.0x80000003bd800000.0x5705b5101312d0.0x8071ad2f4404c4b4 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x800000013d800000.0x71d5b73e000000.0x805705b5101312d0.0x0 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x57a7d4f8000000.0x8071d5b73e000000.0x0.0x8000000000000000 ++vmuld 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8057a7d4f8000000.0x0.0x8000000000000000.0xafb6c9d4ecd7a8ba ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xafb6c9d4ecd7a8ba.0x0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xaf9dae1ec2b23ac3.0x0.0x0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xafb6fe158d047bf3.0x0.0x0.0x0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x3e4ccccd ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0xbdcccccd.0x800000003e4ccccd ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x3dcccccd.0x80000000bdcccccd.0x63ae148 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbf800000.0x800000003dcccccd.0x12fae148.0x80000000063ae148 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000bf800000.0x62e147b.0x8000000012fae148.0xc75c28f ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x13266666.0x80000000062e147b.0x25f5c28f.0x800000000c75c28f ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000013266666.0xc5c28f6.0x8000000025f5c28f.0xbae66667 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x264ccccd.0x800000000c5c28f6.0x239666667.0x80000000bae66667 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x80000000264ccccd.0xb9666667.0x8000000239666667.0x137800001 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x23e800000.0x80000000b9666667.0x3b5000001.0x8000000137800001 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x800000023e800000.0x135000001.0x80000003b5000001.0x573564181312d0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3bd800000.0x8000000135000001.0x71ad2f4404c4b4.0x80573564181312d0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x80000003bd800000.0x5705b5101312d0.0x8071ad2f4404c4b4.0x0 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x71d5b73e000000.0x805705b5101312d0.0x0.0x8000000000000000 ++vmuld 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8071d5b73e000000.0x0.0x8000000000000000.0xaf9deb97f7a2e72b ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xaf9deb97f7a2e72b.0x0 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xafb6c9d4ecd7a8ba.0x0.0x0 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xaf9dae1ec2b23ac3.0x0.0x0.0x0 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0xbe4ccccd ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x3e4ccccd.0x80000000be4ccccd ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0xbdcccccd.0x800000003e4ccccd.0x1307ae15 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3dcccccd.0x80000000bdcccccd.0x63ae148.0x800000001307ae15 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x800000003dcccccd.0x12fae148.0x80000000063ae148.0x260f5c29 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x62e147b.0x8000000012fae148.0xc75c28f.0x80000000260f5c29 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x80000000062e147b.0x25f5c28f.0x800000000c75c28f.0x23ae66667 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc5c28f6.0x8000000025f5c28f.0xbae66667.0x800000023ae66667 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x800000000c5c28f6.0x239666667.0x80000000bae66667.0x3b7800001 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xb9666667.0x8000000239666667.0x137800001.0x80000003b7800001 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000000b9666667.0x3b5000001.0x8000000137800001.0x71b91b0604c4b4 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x135000001.0x80000003b5000001.0x573564181312d0.0x8071b91b0604c4b4 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000135000001.0x71ad2f4404c4b4.0x80573564181312d0.0x0 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x5705b5101312d0.0x8071ad2f4404c4b4.0x0.0x8000000000000000 ++vmuld 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x805705b5101312d0.0x0.0x8000000000000000.0xafb6d9333a13d3d4 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xafb6d9333a13d3d4.0x0 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xaf9deb97f7a2e72b.0x0.0x0 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xafb6c9d4ecd7a8ba.0x0.0x0.0x0 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x40400000 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0xbe4ccccd.0x8000000040400000 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x3e4ccccd.0x80000000be4ccccd.0x66ccccd ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbdcccccd.0x800000003e4ccccd.0x1307ae15.0x80000000066ccccd ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000bdcccccd.0x63ae148.0x800000001307ae15.0xcd9999a ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x12fae148.0x80000000063ae148.0x260f5c29.0x800000000cd9999a ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000012fae148.0xc75c28f.0x80000000260f5c29.0xc0c00000 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x25f5c28f.0x800000000c75c28f.0x23ae66667.0x80000000c0c00000 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000025f5c28f.0xbae66667.0x800000023ae66667.0x141400000 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x239666667.0x80000000bae66667.0x3b7800001.0x8000000141400000 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000239666667.0x137800001.0x80000003b7800001.0x57ef5b84000000 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3b5000001.0x8000000137800001.0x71b91b0604c4b4.0x8057ef5b84000000 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x80000003b5000001.0x573564181312d0.0x8071b91b0604c4b4.0x0 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x71ad2f4404c4b4.0x80573564181312d0.0x0.0x8000000000000000 ++vmuld 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8071ad2f4404c4b4.0x0.0x8000000000000000.0xaf9edb5712ce8a46 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xaf9edb5712ce8a46.0x0 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xafb6d9333a13d3d4.0x0.0x0 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xaf9deb97f7a2e72b.0x0.0x0.0x0 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0xc0400000 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x40400000.0x80000000c0400000 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0xbe4ccccd.0x8000000040400000.0x1339999a ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3e4ccccd.0x80000000be4ccccd.0x66ccccd.0x800000001339999a ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x800000003e4ccccd.0x1307ae15.0x80000000066ccccd.0x26733333 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x63ae148.0x800000001307ae15.0xcd9999a.0x8000000026733333 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x80000000063ae148.0x260f5c29.0x800000000cd9999a.0x240c00000 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc75c28f.0x80000000260f5c29.0xc0c00000.0x8000000240c00000 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x800000000c75c28f.0x23ae66667.0x80000000c0c00000.0x3c1400000 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbae66667.0x800000023ae66667.0x141400000.0x80000003c1400000 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000000bae66667.0x3b7800001.0x8000000141400000.0x71e798e1000000 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x137800001.0x80000003b7800001.0x57ef5b84000000.0x8071e798e1000000 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000137800001.0x71b91b0604c4b4.0x8057ef5b84000000.0x0 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x573564181312d0.0x8071b91b0604c4b4.0x0.0x8000000000000000 ++vmuld 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x80573564181312d0.0x0.0x8000000000000000.0xafb7152300debc9b ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xafb7152300debc9b.0x0 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xaf9edb5712ce8a46.0x0.0x0 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xafb6d9333a13d3d4.0x0.0x0.0x0 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x40a00000 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0xc0400000.0x8000000040a00000 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x40400000.0x80000000c0400000.0x6766666 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbe4ccccd.0x8000000040400000.0x1339999a.0x8000000006766666 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000be4ccccd.0x66ccccd.0x800000001339999a.0xceccccd ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x1307ae15.0x80000000066ccccd.0x26733333.0x800000000ceccccd ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x800000001307ae15.0xcd9999a.0x8000000026733333.0xc1e00000 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x260f5c29.0x800000000cd9999a.0x240c00000.0x80000000c1e00000 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x80000000260f5c29.0xc0c00000.0x8000000240c00000.0x143200000 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x23ae66667.0x80000000c0c00000.0x3c1400000.0x8000000143200000 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x800000023ae66667.0x141400000.0x80000003c1400000.0x58131eca000000 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3b7800001.0x8000000141400000.0x71e798e1000000.0x8058131eca000000 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x80000003b7800001.0x57ef5b84000000.0x8071e798e1000000.0x0 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x71b91b0604c4b4.0x8057ef5b84000000.0x0.0x8000000000000000 ++vmuld 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8071b91b0604c4b4.0x0.0x8000000000000000.0xaf9f0971fa830b94 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xaf9f0971fa830b94.0x0 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xafb7152300debc9b.0x0.0x0 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xaf9edb5712ce8a46.0x0.0x0.0x0 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0xc0a00000 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x40a00000.0x80000000c0a00000 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0xc0400000.0x8000000040a00000.0x13433333 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x40400000.0x80000000c0400000.0x6766666.0x8000000013433333 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000040400000.0x1339999a.0x8000000006766666.0x26866666 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x66ccccd.0x800000001339999a.0xceccccd.0x8000000026866666 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x80000000066ccccd.0x26733333.0x800000000ceccccd.0x241e00000 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xcd9999a.0x8000000026733333.0xc1e00000.0x8000000241e00000 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x800000000cd9999a.0x240c00000.0x80000000c1e00000.0x3c3200000 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc0c00000.0x8000000240c00000.0x143200000.0x80000003c3200000 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000000c0c00000.0x3c1400000.0x8000000143200000.0x71f089b2800000 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x141400000.0x80000003c1400000.0x58131eca000000.0x8071f089b2800000 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000141400000.0x71e798e1000000.0x8058131eca000000.0x0 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x57ef5b84000000.0x8071e798e1000000.0x0.0x8000000000000000 ++vmuld 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8057ef5b84000000.0x0.0x8000000000000000.0xafb720a9bacbdcee ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xafb720a9bacbdcee.0x0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xaf9f0971fa830b94.0x0.0x0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xafb7152300debc9b.0x0.0x0.0x0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x4cbebc20 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0xc0a00000.0x800000004cbebc20 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x40a00000.0x80000000c0a00000.0x7acac6a ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc0400000.0x8000000040a00000.0x13433333.0x8000000007acac6a ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000c0400000.0x6766666.0x8000000013433333.0xf5958d3 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x1339999a.0x8000000006766666.0x26866666.0x800000000f5958d3 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x800000001339999a.0xceccccd.0x8000000026866666.0xe63c3460 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x26733333.0x800000000ceccccd.0x241e00000.0x80000000e63c3460 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000026733333.0xc1e00000.0x8000000241e00000.0x17fb9aca0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x240c00000.0x80000000c1e00000.0x3c3200000.0x800000017fb9aca0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000240c00000.0x143200000.0x80000003c3200000.0x5c96faa4df8200 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3c1400000.0x8000000143200000.0x71f089b2800000.0x805c96faa4df8200 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x80000003c1400000.0x58131eca000000.0x8071f089b2800000.0x0 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x71e798e1000000.0x8058131eca000000.0x0.0x8000000000000000 ++vmuld 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8071e798e1000000.0x0.0x8000000000000000.0xafa26dc8d96fd63d ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xafa26dc8d96fd63d.0x0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xafb720a9bacbdcee.0x0.0x0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xaf9f0971fa830b94.0x0.0x0.0x0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0xccbebc20 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x4cbebc20.0x80000000ccbebc20 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0xc0a00000.0x800000004cbebc20.0x14797936 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x40a00000.0x80000000c0a00000.0x7acac6a.0x8000000014797936 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000040a00000.0x13433333.0x8000000007acac6a.0x28f2f26d ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x6766666.0x8000000013433333.0xf5958d3.0x8000000028f2f26d ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000006766666.0x26866666.0x800000000f5958d3.0x2663c3460 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xceccccd.0x8000000026866666.0xe63c3460.0x80000002663c3460 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x800000000ceccccd.0x241e00000.0x80000000e63c3460.0x3ffb9aca0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1e00000.0x8000000241e00000.0x17fb9aca0.0x80000003ffb9aca0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000000c1e00000.0x3c3200000.0x800000017fb9aca0.0x731180a937e080 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x143200000.0x80000003c3200000.0x5c96faa4df8200.0x80731180a937e080 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000143200000.0x71f089b2800000.0x805c96faa4df8200.0x0 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x58131eca000000.0x8071f089b2800000.0x0.0x8000000000000000 ++vmuld 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8058131eca000000.0x0.0x8000000000000000.0xafb89531a8e30527 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xafb89531a8e30527.0x123456789abcdef0 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xafa26dc8d96fd63d.0x0.0x3f800000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xafb720a9bacbdcee.0x0.0x0.0xbf800000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x3dcccccd ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0xbdcccccd ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x3e4ccccd ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0xbe4ccccd ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x40400000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0xc0400000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x40a00000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0xc0a00000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x4cbebc20 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0xccbebc20 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x3ff0000000000000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0xccbebc20.0xbff0000000000000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4cbebc20.0x80000000ccbebc20.0x3fb999999999999a ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc0a00000.0x800000004cbebc20.0x14797936.0xbfb999999999999a ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000c0a00000.0x7acac6a.0x8000000014797936.0x3fc999999999999a ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x13433333.0x8000000007acac6a.0x28f2f26d.0xbfc999999999999a ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000013433333.0xf5958d3.0x8000000028f2f26d.0x4008000000000000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x26866666.0x800000000f5958d3.0x2663c3460.0xc008000000000000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000026866666.0xe63c3460.0x80000002663c3460.0x4014000000000000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x241e00000.0x80000000e63c3460.0x3ffb9aca0.0xc014000000000000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000241e00000.0x17fb9aca0.0x80000003ffb9aca0.0x4197d78400000000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3c3200000.0x800000017fb9aca0.0x731180a937e080.0xc197d78400000000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x80000003c3200000.0x5c96faa4df8200.0x80731180a937e080.0x0 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x71f089b2800000.0x805c96faa4df8200.0x0.0x8000000000000000 ++vmuld 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8071f089b2800000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xafb89531a8e30527.0x123456789abcdef0.0x800000003f800000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xafa26dc8d96fd63d.0x0.0x3f800000.0x80000000bf800000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0xbf800000.0x800000003dcccccd ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x3dcccccd.0x80000000bdcccccd ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0xbdcccccd.0x800000003e4ccccd ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x3e4ccccd.0x80000000be4ccccd ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0xbe4ccccd.0x8000000040400000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x40400000.0x80000000c0400000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0xc0400000.0x8000000040a00000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x40a00000.0x80000000c0a00000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0xc0a00000.0x800000004cbebc20 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x4cbebc20.0x80000000ccbebc20 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0xccbebc20.0xbff0000000000000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x3ff0000000000000.0x3ff0000000000000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0xccbebc20.0xbff0000000000000.0xbfb999999999999a ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4cbebc20.0x80000000ccbebc20.0x3fb999999999999a.0x3fb999999999999a ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x800000004cbebc20.0x14797936.0xbfb999999999999a.0xbfc999999999999a ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x7acac6a.0x8000000014797936.0x3fc999999999999a.0x3fc999999999999a ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000007acac6a.0x28f2f26d.0xbfc999999999999a.0xc008000000000000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xf5958d3.0x8000000028f2f26d.0x4008000000000000.0x4008000000000000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x800000000f5958d3.0x2663c3460.0xc008000000000000.0xc014000000000000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xe63c3460.0x80000002663c3460.0x4014000000000000.0x4014000000000000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000000e63c3460.0x3ffb9aca0.0xc014000000000000.0xc197d78400000000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x17fb9aca0.0x80000003ffb9aca0.0x4197d78400000000.0x4197d78400000000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x800000017fb9aca0.0x731180a937e080.0xc197d78400000000.0x8000000000000000 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x5c96faa4df8200.0x80731180a937e080.0x0.0x0 ++vmuld 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x805c96faa4df8200.0x0.0x8000000000000000.0x70debc9a78563412 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x70debc9a78563412.0x1200452d489718c0 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x659999a ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xafb89531a8e30527.0x123456789abcdef0.0x800000003f800000.0x13266666 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x3f800000.0x80000000bf800000.0x62e147b ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0xbf800000.0x800000003dcccccd.0x12fae148 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x3dcccccd.0x80000000bdcccccd.0x63ae148 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0xbdcccccd.0x800000003e4ccccd.0x1307ae15 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x3e4ccccd.0x80000000be4ccccd.0x66ccccd ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0xbe4ccccd.0x8000000040400000.0x1339999a ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x40400000.0x80000000c0400000.0x6766666 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0xc0400000.0x8000000040a00000.0x13433333 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x40a00000.0x80000000c0a00000.0x7acac6a ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0xc0a00000.0x800000004cbebc20.0x14797936 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4cbebc20.0x80000000ccbebc20.0x3fb999999999999a ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0xccbebc20.0xbff0000000000000.0xbfb999999999999a ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x3ff0000000000000.0x3ff0000000000000.0x3f847ae147ae147c ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xccbebc20.0xbff0000000000000.0xbfb999999999999a.0xbf847ae147ae147c ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000ccbebc20.0x3fb999999999999a.0x3fb999999999999a.0x3f947ae147ae147c ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x14797936.0xbfb999999999999a.0xbfc999999999999a.0xbf947ae147ae147c ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000014797936.0x3fc999999999999a.0x3fc999999999999a.0x3fd3333333333334 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x28f2f26d.0xbfc999999999999a.0xc008000000000000.0xbfd3333333333334 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000028f2f26d.0x4008000000000000.0x4008000000000000.0x3fe0000000000000 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x2663c3460.0xc008000000000000.0xc014000000000000.0xbfe0000000000000 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000002663c3460.0x4014000000000000.0x4014000000000000.0x416312d000000000 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3ffb9aca0.0xc014000000000000.0xc197d78400000000.0xc16312d000000000 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x80000003ffb9aca0.0x4197d78400000000.0x4197d78400000000.0x0 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x731180a937e080.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vmuld 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x80731180a937e080.0x0.0x0.0xf0a896e1f9de900f ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xf0a896e1f9de900f.0x9200452d489718c0 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x1200452d489718c0.0x8000000000000000 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x0.0x8000000000000000 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x8000000000000000.0x0.0x8000000000000000 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x62e147b.0x8000000012fae148 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0x12fae148.0x80000000063ae148 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x63ae148.0x800000001307ae15 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0x1307ae15.0x80000000066ccccd ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x66ccccd.0x800000001339999a ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0x1339999a.0x8000000006766666 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x6766666.0x8000000013433333 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0x13433333.0x8000000007acac6a ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x7acac6a.0x8000000014797936 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0x14797936.0xbfb999999999999a ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0x3fb999999999999a.0x3fb999999999999a ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0xbfb999999999999a.0xbf847ae147ae147c ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3f847ae147ae147c.0x3f847ae147ae147c ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbf847ae147ae147c.0xbf947ae147ae147c ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3f947ae147ae147c.0x3f947ae147ae147c ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0xbf947ae147ae147c.0xbfd3333333333334 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0x3fd3333333333334.0x3fd3333333333334 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0xbfd3333333333334.0xbfe0000000000000 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0xbfe0000000000000.0xc16312d000000000 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x416312d000000000.0x416312d000000000 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0xc16312d000000000.0x8000000000000000 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vmuld 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0x70a896e1f9de900f ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x70a896e1f9de900f.0x1210452d489718c0 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0a896e1f9de900f.0x9200452d489718c0.0x0 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x1200452d489718c0.0x8000000000000000.0x0 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x0.0x8000000000000000.0x0 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x13266666.0x80000000062e147b.0x25f5c28f ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x62e147b.0x8000000012fae148.0xc75c28f ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x12fae148.0x80000000063ae148.0x260f5c29 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x63ae148.0x800000001307ae15.0xcd9999a ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x1307ae15.0x80000000066ccccd.0x26733333 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x66ccccd.0x800000001339999a.0xceccccd ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x1339999a.0x8000000006766666.0x26866666 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x6766666.0x8000000013433333.0xf5958d3 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x13433333.0x8000000007acac6a.0x28f2f26d ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x7acac6a.0x8000000014797936.0x3fc999999999999a ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x14797936.0xbfb999999999999a.0xbfc999999999999a ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3fb999999999999a.0x3fb999999999999a.0x3f947ae147ae147c ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbf847ae147ae147c.0xbf947ae147ae147c ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3f847ae147ae147c.0x3f847ae147ae147c.0x3fa47ae147ae147c ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbf847ae147ae147c.0xbf947ae147ae147c.0xbfa47ae147ae147c ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3f947ae147ae147c.0x3f947ae147ae147c.0x3fe3333333333334 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbf947ae147ae147c.0xbfd3333333333334.0xbfe3333333333334 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x3fd3333333333334.0x3fd3333333333334.0x3ff0000000000000 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xbfd3333333333334.0xbfe0000000000000.0xbff0000000000000 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000.0x417312d000000000 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xbfe0000000000000.0xc16312d000000000.0xc17312d000000000 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x416312d000000000.0x416312d000000000.0x0 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc16312d000000000.0x8000000000000000.0x8000000000000000 ++vmuld 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0xf0b896e1f9de900f ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xf0b896e1f9de900f.0x9210452d489718c0 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70a896e1f9de900f.0x1210452d489718c0.0x8000000000000000 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0a896e1f9de900f.0x9200452d489718c0.0x0.0x8000000000000000 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x1200452d489718c0.0x8000000000000000.0x0.0x8000000000000000 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x659999a.0x8000000013266666.0xc5c28f6.0x8000000025f5c28f ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x13266666.0x80000000062e147b.0x25f5c28f.0x800000000c75c28f ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x62e147b.0x8000000012fae148.0xc75c28f.0x80000000260f5c29 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x12fae148.0x80000000063ae148.0x260f5c29.0x800000000cd9999a ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x63ae148.0x800000001307ae15.0xcd9999a.0x8000000026733333 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x1307ae15.0x80000000066ccccd.0x26733333.0x800000000ceccccd ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x66ccccd.0x800000001339999a.0xceccccd.0x8000000026866666 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x1339999a.0x8000000006766666.0x26866666.0x800000000f5958d3 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x6766666.0x8000000013433333.0xf5958d3.0x8000000028f2f26d ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x13433333.0x8000000007acac6a.0x28f2f26d.0xbfc999999999999a ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x7acac6a.0x8000000014797936.0x3fc999999999999a.0x3fc999999999999a ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x14797936.0xbfb999999999999a.0xbfc999999999999a.0xbf947ae147ae147c ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3f947ae147ae147c.0x3f947ae147ae147c ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbfb999999999999a.0xbf847ae147ae147c.0xbf947ae147ae147c.0xbfa47ae147ae147c ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3f847ae147ae147c.0x3f847ae147ae147c.0x3fa47ae147ae147c.0x3fa47ae147ae147c ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbf847ae147ae147c.0xbf947ae147ae147c.0xbfa47ae147ae147c.0xbfe3333333333334 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3f947ae147ae147c.0x3f947ae147ae147c.0x3fe3333333333334.0x3fe3333333333334 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbf947ae147ae147c.0xbfd3333333333334.0xbfe3333333333334.0xbff0000000000000 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fd3333333333334.0x3fd3333333333334.0x3ff0000000000000.0x3ff0000000000000 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbfd3333333333334.0xbfe0000000000000.0xbff0000000000000.0xc17312d000000000 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3fe0000000000000.0x3fe0000000000000.0x417312d000000000.0x417312d000000000 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbfe0000000000000.0xc16312d000000000.0xc17312d000000000.0x8000000000000000 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x416312d000000000.0x416312d000000000.0x0.0x0 ++vmuld 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc16312d000000000.0x8000000000000000.0x8000000000000000.0x70b896e1f9de900f ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x70b896e1f9de900f.0x124e81b4e81b4e68 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0b896e1f9de900f.0x9210452d489718c0.0x0 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70a896e1f9de900f.0x1210452d489718c0.0x8000000000000000.0x0 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x9200452d489718c0.0x0.0x8000000000000000.0x0 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000000659999a.0x264ccccd.0x800000000c5c28f6.0x239666667 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000013266666.0xc5c28f6.0x8000000025f5c28f.0xbae66667 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000000062e147b.0x25f5c28f.0x800000000c75c28f.0x23ae66667 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000012fae148.0xc75c28f.0x80000000260f5c29.0xc0c00000 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000063ae148.0x260f5c29.0x800000000cd9999a.0x240c00000 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x800000001307ae15.0xcd9999a.0x8000000026733333.0xc1e00000 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000000066ccccd.0x26733333.0x800000000ceccccd.0x241e00000 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x800000001339999a.0xceccccd.0x8000000026866666.0xe63c3460 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000006766666.0x26866666.0x800000000f5958d3.0x2663c3460 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000013433333.0xf5958d3.0x8000000028f2f26d.0x4008000000000000 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000007acac6a.0x28f2f26d.0xbfc999999999999a.0xc008000000000000 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000014797936.0x3fc999999999999a.0x3fc999999999999a.0x3fd3333333333334 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfb999999999999a.0xbfc999999999999a.0xbf947ae147ae147c.0xbfd3333333333334 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fb999999999999a.0x3f947ae147ae147c.0x3f947ae147ae147c.0x3fe3333333333334 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbf847ae147ae147c.0xbf947ae147ae147c.0xbfa47ae147ae147c.0xbfe3333333333334 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3f847ae147ae147c.0x3fa47ae147ae147c.0x3fa47ae147ae147c.0x4022000000000000 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbf947ae147ae147c.0xbfa47ae147ae147c.0xbfe3333333333334.0xc022000000000000 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3f947ae147ae147c.0x3fe3333333333334.0x3fe3333333333334.0x402e000000000000 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbfd3333333333334.0xbfe3333333333334.0xbff0000000000000.0xc02e000000000000 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3fd3333333333334.0x3ff0000000000000.0x3ff0000000000000.0x41b1e1a300000000 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbfe0000000000000.0xbff0000000000000.0xc17312d000000000.0xc1b1e1a300000000 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3fe0000000000000.0x417312d000000000.0x417312d000000000.0x0 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc16312d000000000.0xc17312d000000000.0x8000000000000000.0x8000000000000000 ++vmuld 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x416312d000000000.0x0.0x0.0xf0f70d73da40a70e ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xf0f70d73da40a70e.0x924e81b4e81b4e68 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70b896e1f9de900f.0x124e81b4e81b4e68.0x8000000000000000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0b896e1f9de900f.0x9210452d489718c0.0x0.0x8000000000000000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x1210452d489718c0.0x8000000000000000.0x0.0x8000000000000000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xcb33333.0x80000000264ccccd.0xb9666667.0x8000000239666667 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x264ccccd.0x800000000c5c28f6.0x239666667.0x80000000bae66667 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc5c28f6.0x8000000025f5c28f.0xbae66667.0x800000023ae66667 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x25f5c28f.0x800000000c75c28f.0x23ae66667.0x80000000c0c00000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc75c28f.0x80000000260f5c29.0xc0c00000.0x8000000240c00000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x260f5c29.0x800000000cd9999a.0x240c00000.0x80000000c1e00000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xcd9999a.0x8000000026733333.0xc1e00000.0x8000000241e00000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x26733333.0x800000000ceccccd.0x241e00000.0x80000000e63c3460 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xceccccd.0x8000000026866666.0xe63c3460.0x80000002663c3460 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x26866666.0x800000000f5958d3.0x2663c3460.0xc008000000000000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xf5958d3.0x8000000028f2f26d.0x4008000000000000.0x4008000000000000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x28f2f26d.0xbfc999999999999a.0xc008000000000000.0xbfd3333333333334 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fc999999999999a.0x3fc999999999999a.0x3fd3333333333334.0x3fd3333333333334 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbfc999999999999a.0xbf947ae147ae147c.0xbfd3333333333334.0xbfe3333333333334 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3f947ae147ae147c.0x3f947ae147ae147c.0x3fe3333333333334.0x3fe3333333333334 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbf947ae147ae147c.0xbfa47ae147ae147c.0xbfe3333333333334.0xc022000000000000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fa47ae147ae147c.0x3fa47ae147ae147c.0x4022000000000000.0x4022000000000000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfa47ae147ae147c.0xbfe3333333333334.0xc022000000000000.0xc02e000000000000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fe3333333333334.0x3fe3333333333334.0x402e000000000000.0x402e000000000000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbfe3333333333334.0xbff0000000000000.0xc02e000000000000.0xc1b1e1a300000000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3ff0000000000000.0x3ff0000000000000.0x41b1e1a300000000.0x41b1e1a300000000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbff0000000000000.0xc17312d000000000.0xc1b1e1a300000000.0x8000000000000000 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x417312d000000000.0x417312d000000000.0x0.0x0 ++vmuld 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc17312d000000000.0x8000000000000000.0x8000000000000000.0x70f70d73da40a70e ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x70f70d73da40a70e.0x12596c16c16c16ac ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0f70d73da40a70e.0x924e81b4e81b4e68.0x0 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70b896e1f9de900f.0x124e81b4e81b4e68.0x8000000000000000.0x0 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x9210452d489718c0.0x0.0x8000000000000000.0x0 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000000cb33333.0x23e800000.0x80000000b9666667.0x3b5000001 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000264ccccd.0xb9666667.0x8000000239666667.0x137800001 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000000c5c28f6.0x239666667.0x80000000bae66667.0x3b7800001 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000025f5c28f.0xbae66667.0x800000023ae66667.0x141400000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000000c75c28f.0x23ae66667.0x80000000c0c00000.0x3c1400000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000260f5c29.0xc0c00000.0x8000000240c00000.0x143200000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x800000000cd9999a.0x240c00000.0x80000000c1e00000.0x3c3200000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000026733333.0xc1e00000.0x8000000241e00000.0x17fb9aca0 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x800000000ceccccd.0x241e00000.0x80000000e63c3460.0x3ffb9aca0 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000026866666.0xe63c3460.0x80000002663c3460.0x4014000000000000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000000f5958d3.0x2663c3460.0xc008000000000000.0xc014000000000000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000028f2f26d.0x4008000000000000.0x4008000000000000.0x3fe0000000000000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfc999999999999a.0xc008000000000000.0xbfd3333333333334.0xbfe0000000000000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fc999999999999a.0x3fd3333333333334.0x3fd3333333333334.0x3ff0000000000000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbf947ae147ae147c.0xbfd3333333333334.0xbfe3333333333334.0xbff0000000000000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3f947ae147ae147c.0x3fe3333333333334.0x3fe3333333333334.0x402e000000000000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfa47ae147ae147c.0xbfe3333333333334.0xc022000000000000.0xc02e000000000000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fa47ae147ae147c.0x4022000000000000.0x4022000000000000.0x4039000000000000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbfe3333333333334.0xc022000000000000.0xc02e000000000000.0xc039000000000000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3fe3333333333334.0x402e000000000000.0x402e000000000000.0x41bdcd6500000000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbff0000000000000.0xc02e000000000000.0xc1b1e1a300000000.0xc1bdcd6500000000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3ff0000000000000.0x41b1e1a300000000.0x41b1e1a300000000.0x0 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc17312d000000000.0xc1b1e1a300000000.0x8000000000000000.0x8000000000000000 ++vmuld 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x417312d000000000.0x0.0x0.0xf10335e08b35e08b ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xf10335e08b35e08b.0x92596c16c16c16ac ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70f70d73da40a70e.0x12596c16c16c16ac.0x8000000000000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0f70d73da40a70e.0x924e81b4e81b4e68.0x0.0x8000000000000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x124e81b4e81b4e68.0x8000000000000000.0x0.0x8000000000000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbe800000.0x800000023e800000.0x135000001.0x80000003b5000001 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x23e800000.0x80000000b9666667.0x3b5000001.0x8000000137800001 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xb9666667.0x8000000239666667.0x137800001.0x80000003b7800001 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x239666667.0x80000000bae66667.0x3b7800001.0x8000000141400000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbae66667.0x800000023ae66667.0x141400000.0x80000003c1400000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x23ae66667.0x80000000c0c00000.0x3c1400000.0x8000000143200000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc0c00000.0x8000000240c00000.0x143200000.0x80000003c3200000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x240c00000.0x80000000c1e00000.0x3c3200000.0x800000017fb9aca0 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc1e00000.0x8000000241e00000.0x17fb9aca0.0x80000003ffb9aca0 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x241e00000.0x80000000e63c3460.0x3ffb9aca0.0xc014000000000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xe63c3460.0x80000002663c3460.0x4014000000000000.0x4014000000000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x2663c3460.0xc008000000000000.0xc014000000000000.0xbfe0000000000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4008000000000000.0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc008000000000000.0xbfd3333333333334.0xbfe0000000000000.0xbff0000000000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fd3333333333334.0x3fd3333333333334.0x3ff0000000000000.0x3ff0000000000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfd3333333333334.0xbfe3333333333334.0xbff0000000000000.0xc02e000000000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fe3333333333334.0x3fe3333333333334.0x402e000000000000.0x402e000000000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfe3333333333334.0xc022000000000000.0xc02e000000000000.0xc039000000000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4022000000000000.0x4022000000000000.0x4039000000000000.0x4039000000000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc022000000000000.0xc02e000000000000.0xc039000000000000.0xc1bdcd6500000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x402e000000000000.0x402e000000000000.0x41bdcd6500000000.0x41bdcd6500000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc02e000000000000.0xc1b1e1a300000000.0xc1bdcd6500000000.0x8000000000000000 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x41b1e1a300000000.0x41b1e1a300000000.0x0.0x0 ++vmuld 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc1b1e1a300000000.0x8000000000000000.0x8000000000000000.0x710335e08b35e08b ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x710335e08b35e08b.0x13de4e3f1c71c703 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf10335e08b35e08b.0x92596c16c16c16ac.0x0 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70f70d73da40a70e.0x12596c16c16c16ac.0x8000000000000000.0x0 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x924e81b4e81b4e68.0x0.0x8000000000000000.0x0 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000be800000.0x3bd800000.0x8000000135000001.0x71ad2f4404c4b4 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x800000023e800000.0x135000001.0x80000003b5000001.0x573564181312d0 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000000b9666667.0x3b5000001.0x8000000137800001.0x71b91b0604c4b4 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000239666667.0x137800001.0x80000003b7800001.0x57ef5b84000000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000bae66667.0x3b7800001.0x8000000141400000.0x71e798e1000000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x800000023ae66667.0x141400000.0x80000003c1400000.0x58131eca000000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000000c0c00000.0x3c1400000.0x8000000143200000.0x71f089b2800000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000240c00000.0x143200000.0x80000003c3200000.0x5c96faa4df8200 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80000000c1e00000.0x3c3200000.0x800000017fb9aca0.0x731180a937e080 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000241e00000.0x17fb9aca0.0x80000003ffb9aca0.0x4197d78400000000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80000000e63c3460.0x3ffb9aca0.0xc014000000000000.0xc197d78400000000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000002663c3460.0x4014000000000000.0x4014000000000000.0x416312d000000000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc008000000000000.0xc014000000000000.0xbfe0000000000000.0xc16312d000000000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000.0x417312d000000000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfd3333333333334.0xbfe0000000000000.0xbff0000000000000.0xc17312d000000000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fd3333333333334.0x3ff0000000000000.0x3ff0000000000000.0x41b1e1a300000000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfe3333333333334.0xbff0000000000000.0xc02e000000000000.0xc1b1e1a300000000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fe3333333333334.0x402e000000000000.0x402e000000000000.0x41bdcd6500000000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc022000000000000.0xc02e000000000000.0xc039000000000000.0xc1bdcd6500000000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4022000000000000.0x4039000000000000.0x4039000000000000.0x4341c37937e08000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc02e000000000000.0xc039000000000000.0xc1bdcd6500000000.0xc341c37937e08000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x402e000000000000.0x41bdcd6500000000.0x41bdcd6500000000.0x0 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc1b1e1a300000000.0xc1bdcd6500000000.0x8000000000000000.0x8000000000000000 ++vmuld 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x41b1e1a300000000.0x0.0x0.0xf286e690fe53a8fe ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xf286e690fe53a8fe.0x93de4e3f1c71c703 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x710335e08b35e08b.0x13de4e3f1c71c703.0x8000000000000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf10335e08b35e08b.0x92596c16c16c16ac.0x0.0x8000000000000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x12596c16c16c16ac.0x8000000000000000.0x0.0x8000000000000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x13d800000.0x80000003bd800000.0x5705b5101312d0.0x8071ad2f4404c4b4 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3bd800000.0x8000000135000001.0x71ad2f4404c4b4.0x80573564181312d0 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x135000001.0x80000003b5000001.0x573564181312d0.0x8071b91b0604c4b4 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3b5000001.0x8000000137800001.0x71b91b0604c4b4.0x8057ef5b84000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x137800001.0x80000003b7800001.0x57ef5b84000000.0x8071e798e1000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3b7800001.0x8000000141400000.0x71e798e1000000.0x8058131eca000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x141400000.0x80000003c1400000.0x58131eca000000.0x8071f089b2800000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3c1400000.0x8000000143200000.0x71f089b2800000.0x805c96faa4df8200 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x143200000.0x80000003c3200000.0x5c96faa4df8200.0x80731180a937e080 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3c3200000.0x800000017fb9aca0.0x731180a937e080.0xc197d78400000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x17fb9aca0.0x80000003ffb9aca0.0x4197d78400000000.0x4197d78400000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3ffb9aca0.0xc014000000000000.0xc197d78400000000.0xc16312d000000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4014000000000000.0x4014000000000000.0x416312d000000000.0x416312d000000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc014000000000000.0xbfe0000000000000.0xc16312d000000000.0xc17312d000000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fe0000000000000.0x3fe0000000000000.0x417312d000000000.0x417312d000000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfe0000000000000.0xbff0000000000000.0xc17312d000000000.0xc1b1e1a300000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x41b1e1a300000000.0x41b1e1a300000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbff0000000000000.0xc02e000000000000.0xc1b1e1a300000000.0xc1bdcd6500000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x402e000000000000.0x402e000000000000.0x41bdcd6500000000.0x41bdcd6500000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc02e000000000000.0xc039000000000000.0xc1bdcd6500000000.0xc341c37937e08000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4039000000000000.0x4039000000000000.0x4341c37937e08000.0x4341c37937e08000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc039000000000000.0xc1bdcd6500000000.0xc341c37937e08000.0x8000000000000000 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x41bdcd6500000000.0x41bdcd6500000000.0x0.0x0 ++vmuld 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc1bdcd6500000000.0x8000000000000000.0x8000000000000000.0x7286e690fe53a8fe ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x7286e690fe53a8fe.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf286e690fe53a8fe.0x93de4e3f1c71c703.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x710335e08b35e08b.0x13de4e3f1c71c703.0x8000000000000000.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x92596c16c16c16ac.0x0.0x8000000000000000.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000013d800000.0x71d5b73e000000.0x805705b5101312d0.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000003bd800000.0x5705b5101312d0.0x8071ad2f4404c4b4.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000135000001.0x71ad2f4404c4b4.0x80573564181312d0.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000003b5000001.0x573564181312d0.0x8071b91b0604c4b4.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000137800001.0x71b91b0604c4b4.0x8057ef5b84000000.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000003b7800001.0x57ef5b84000000.0x8071e798e1000000.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000141400000.0x71e798e1000000.0x8058131eca000000.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000003c1400000.0x58131eca000000.0x8071f089b2800000.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000143200000.0x71f089b2800000.0x805c96faa4df8200.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000003c3200000.0x5c96faa4df8200.0x80731180a937e080.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000017fb9aca0.0x731180a937e080.0xc197d78400000000.0x8000000000000000 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000003ffb9aca0.0x4197d78400000000.0x4197d78400000000.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc014000000000000.0xc197d78400000000.0xc16312d000000000.0x8000000000000000 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4014000000000000.0x416312d000000000.0x416312d000000000.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfe0000000000000.0xc16312d000000000.0xc17312d000000000.0x8000000000000000 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fe0000000000000.0x417312d000000000.0x417312d000000000.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbff0000000000000.0xc17312d000000000.0xc1b1e1a300000000.0x8000000000000000 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3ff0000000000000.0x41b1e1a300000000.0x41b1e1a300000000.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc02e000000000000.0xc1b1e1a300000000.0xc1bdcd6500000000.0x8000000000000000 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x402e000000000000.0x41bdcd6500000000.0x41bdcd6500000000.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc039000000000000.0xc1bdcd6500000000.0xc341c37937e08000.0x8000000000000000 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4039000000000000.0x4341c37937e08000.0x4341c37937e08000.0x0 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc1bdcd6500000000.0xc341c37937e08000.0x8000000000000000.0x8000000000000000 ++vmuld 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x41bdcd6500000000.0x0.0x0.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x8000000000000000.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x7286e690fe53a8fe.0x0.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf286e690fe53a8fe.0x93de4e3f1c71c703.0x0.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x13de4e3f1c71c703.0x8000000000000000.0x0.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x57a7d4f8000000.0x8071d5b73e000000.0x0.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x71d5b73e000000.0x805705b5101312d0.0x0.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x5705b5101312d0.0x8071ad2f4404c4b4.0x0.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x71ad2f4404c4b4.0x80573564181312d0.0x0.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x573564181312d0.0x8071b91b0604c4b4.0x0.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x71b91b0604c4b4.0x8057ef5b84000000.0x0.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x57ef5b84000000.0x8071e798e1000000.0x0.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x71e798e1000000.0x8058131eca000000.0x0.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x58131eca000000.0x8071f089b2800000.0x0.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x71f089b2800000.0x805c96faa4df8200.0x0.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x5c96faa4df8200.0x80731180a937e080.0x0.0x0 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x731180a937e080.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc197d78400000000.0xc16312d000000000.0x8000000000000000.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x416312d000000000.0x416312d000000000.0x0.0x0 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc16312d000000000.0xc17312d000000000.0x8000000000000000.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x417312d000000000.0x417312d000000000.0x0.0x0 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc17312d000000000.0xc1b1e1a300000000.0x8000000000000000.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41b1e1a300000000.0x41b1e1a300000000.0x0.0x0 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1b1e1a300000000.0xc1bdcd6500000000.0x8000000000000000.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x41bdcd6500000000.0x41bdcd6500000000.0x0.0x0 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc1bdcd6500000000.0xc341c37937e08000.0x8000000000000000.0x8000000000000000 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4341c37937e08000.0x4341c37937e08000.0x0.0x0 ++vmuld 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc341c37937e08000.0x8000000000000000.0x8000000000000000.0x0 ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x0.0xc32388ef423d9d0c ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x8000000000000000.0x8000000000000000.0x8000000000000000 ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7286e690fe53a8fe.0x0.0x8000000000000000.0x8000000000000000 ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x93de4e3f1c71c703.0x0.0x8000000000000000.0x8000000000000000 ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8057a7d4f8000000.0x0.0x8000000000000000.0xafb6c9d4ecd7a8ba ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8071d5b73e000000.0x0.0x8000000000000000.0xaf9deb97f7a2e72b ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x805705b5101312d0.0x0.0x8000000000000000.0xafb6d9333a13d3d4 ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8071ad2f4404c4b4.0x0.0x8000000000000000.0xaf9edb5712ce8a46 ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80573564181312d0.0x0.0x8000000000000000.0xafb7152300debc9b ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8071b91b0604c4b4.0x0.0x8000000000000000.0xaf9f0971fa830b94 ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8057ef5b84000000.0x0.0x8000000000000000.0xafb720a9bacbdcee ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8071e798e1000000.0x0.0x8000000000000000.0xafa26dc8d96fd63d ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8058131eca000000.0x0.0x8000000000000000.0xafb89531a8e30527 ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8071f089b2800000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x805c96faa4df8200.0x0.0x8000000000000000.0x70debc9a78563412 ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80731180a937e080.0x0.0x0.0xf0a896e1f9de900f ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0x70a896e1f9de900f ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4197d78400000000.0x0.0x0.0xf0b896e1f9de900f ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc16312d000000000.0x8000000000000000.0x8000000000000000.0x70b896e1f9de900f ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x416312d000000000.0x0.0x0.0xf0f70d73da40a70e ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc17312d000000000.0x8000000000000000.0x8000000000000000.0x70f70d73da40a70e ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x417312d000000000.0x0.0x0.0xf10335e08b35e08b ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1b1e1a300000000.0x8000000000000000.0x8000000000000000.0x710335e08b35e08b ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41b1e1a300000000.0x0.0x0.0xf286e690fe53a8fe ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc1bdcd6500000000.0x8000000000000000.0x8000000000000000.0x7286e690fe53a8fe ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x41bdcd6500000000.0x0.0x0.0x8000000000000000 ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc341c37937e08000.0x8000000000000000.0x8000000000000000.0x0 ++vmuld 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4341c37937e08000.0x0.0x0.0x7ff0000000000000 ++=== Running test on vdivs=== ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff8000000000000.0xfff8000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff8000000000000.0x0.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x8000000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0xfff8000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x8000000000000000.0xfff0000000000000.0x4360452d40000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x8000000000000000.0xfff0000000000000.0x4384567880000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x8000000000000000.0xfff0000000000000.0x4360452d40000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x8000000000000000.0xfff0000000000000.0x4374567880000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x8000000000000000.0xfff0000000000000.0x435b1df600000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x8000000000000000.0xfff0000000000000.0x4374567880000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x8000000000000000.0xfff0000000000000.0x435b1df600000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x8000000000000000.0xfff0000000000000.0x4374567880000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x8000000000000000.0xfff0000000000000.0x435b1df600000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x8000000000000000.0xfff0000000000000.0x3a34567880000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x8000000000000000.0xc0debc9a60000000.0xba34567880000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x8000000000000000.0x40debc9a60000000.0x3a696c16c0000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0xfff0000000000000.0x0 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x0 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0xfff0000000000000.0x0 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x0 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0xfff0000000000000.0x0 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x0 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0xfff0000000000000.0x0 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x0 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0xfff0000000000000.0x0 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000000000000.0x8000000000000000.0x7ff0000000000000.0x7ff0000000000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0xfff0000000000000.0xfff0000000000000 ++vdivs 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0xfff8000000000000.0x7ff0000000000000.0x0 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff8000000000000.0x7ff0000000000000.0x0.0x0 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff8000000000000.0x3ff0000000000000.0x3ff0000000000000.0xfff8000000000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0xfff0000000000000.0x7ff0000000000000.0xfff8000000000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x8000000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff8000000000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000000000000.0xfff0000000000000.0x4384567880000000.0x3fc99999a0000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000000000000.0xfff0000000000000.0x4360452d40000000.0x3ff0000000000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000000000000.0xfff0000000000000.0x4384567880000000.0x3fc99999a0000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000000000000.0xfff0000000000000.0x4360452d40000000.0x3fe0000000000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000000000000.0xfff0000000000000.0x4374567880000000.0x3fc5555560000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000000000000.0xfff0000000000000.0x435b1df600000000.0x3fe0000000000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000000000000.0xfff0000000000000.0x4374567880000000.0x3fc5555560000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000000000000.0xfff0000000000000.0x435b1df600000000.0x3fe0000000000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000000000000.0xfff0000000000000.0x4374567880000000.0x3fc5555560000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000000000000.0xfff0000000000000.0x435b1df600000000.0x20000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000000000000.0xfff0000000000000.0x3a34567880000000.0x8000000020000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000000000000.0xc0debc9a60000000.0xba34567880000000.0x140000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0xfff0000000000000.0x0.0x0 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0xfff0000000000000.0x0.0x0 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0xfff0000000000000.0x0.0x0 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0xfff0000000000000.0x0.0x0 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x8000000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0xfff0000000000000.0x0.0xfff8000000000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x8000000000000000.0x7ff0000000000000.0x7ff0000000000000.0xfff8000000000000 ++vdivs 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0xfff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0xfff0000000000000.0x8000000000000000.0x0 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x0.0x0.0xfff8000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x3ff0000000000000.0x3ff0000000000000.0xfff8000000000000.0xfff8000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff8000000000000.0xfff8000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x4360452d40000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfff0000000000000.0x4384567880000000.0x3fc99999a0000000.0x4014000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfff0000000000000.0x4360452d40000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfff0000000000000.0x4384567880000000.0x3fc99999a0000000.0x4004000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfff0000000000000.0x4360452d40000000.0x3fe0000000000000.0x3feaaaaaa0000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfff0000000000000.0x4374567880000000.0x3fc5555560000000.0x4004000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfff0000000000000.0x435b1df600000000.0x3fe0000000000000.0x3feaaaaaa0000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfff0000000000000.0x4374567880000000.0x3fc5555560000000.0x4004000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfff0000000000000.0x435b1df600000000.0x3fe0000000000000.0x3feaaaaaa0000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfff0000000000000.0x4374567880000000.0x3fc5555560000000.0xa0000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xfff0000000000000.0x435b1df600000000.0x20000000.0x80000000a0000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xfff0000000000000.0x3a34567880000000.0x8000000020000000.0x640000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xfff0000000000000.0x0.0x0.0x8000000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x7ff0000000000000.0x0.0x8000000000000000.0xfff8000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xfff0000000000000.0x0.0xfff8000000000000.0xfff8000000000000 ++vdivs 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7ff0000000000000.0x7ff0000000000000.0xfff8000000000000.0x8000000000000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff8000000000000.0x8000000000000000.0x0 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x0.0xfff8000000000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xb9452c7480000000.0x3c592cc180000000.0x4014000000000000.0x3fc99999a0000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3ff0000000000000.0xfff8000000000000.0xfff8000000000000.0xfff8000000000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4384567880000000.0x3fc99999a0000000.0x4014000000000000.0x3fc99999a0000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4360452d40000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4384567880000000.0x3fc99999a0000000.0x4014000000000000.0x3fc99999a0000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4360452d40000000.0x3ff0000000000000.0x3ff0000000000000.0x3fe0000000000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4384567880000000.0x3fc99999a0000000.0x4004000000000000.0x3fc5555560000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4360452d40000000.0x3fe0000000000000.0x3feaaaaaa0000000.0x3fe0000000000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4374567880000000.0x3fc5555560000000.0x4004000000000000.0x3fc5555560000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x435b1df600000000.0x3fe0000000000000.0x3feaaaaaa0000000.0x3fe0000000000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4374567880000000.0x3fc5555560000000.0x4004000000000000.0x3fc5555560000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x435b1df600000000.0x3fe0000000000000.0x3feaaaaaa0000000.0x20000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4374567880000000.0x3fc5555560000000.0xa0000000.0x8000000020000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x435b1df600000000.0x20000000.0x80000000a0000000.0x140000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3a34567880000000.0x8000000020000000.0x640000000.0x8000000140000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xba34567880000000.0x140000000.0x8000000640000000.0xa0000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3a696c16c0000000.0x8000000140000000.0x320000000.0x80000000a0000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xba696c16c0000000.0xa0000000.0x8000000320000000.0x0 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3a596c16c0000000.0x80000000a0000000.0x40000000.0x8000000000000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xba596c16c0000000.0x0.0x8000000040000000.0x0 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3a1b1df600000000.0x8000000000000000.0x20000000.0x8000000000000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xba1b1df600000000.0x0.0x8000000020000000.0x0 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3a10452d40000000.0x8000000000000000.0x0.0x8000000000000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xba10452d40000000.0x0.0x8000000000000000.0x7ff0000000000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x388b4c01c0000000.0x8000000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xb88b4c01c0000000.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x3c7f77f1e0000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x3c592cc180000000.0x4014000000000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x3c7f77f1e0000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3c592cc180000000.0x4014000000000000.0x3fc99999a0000000.0x4014000000000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fc99999a0000000.0x4014000000000000.0x3fc99999a0000000.0x4014000000000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fc99999a0000000.0x4014000000000000.0x3fc99999a0000000.0x4004000000000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff0000000000000.0x3ff0000000000000.0x3fe0000000000000.0x3feaaaaaa0000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc99999a0000000.0x4004000000000000.0x3fc5555560000000.0x4004000000000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fe0000000000000.0x3feaaaaaa0000000.0x3fe0000000000000.0x3feaaaaaa0000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fc5555560000000.0x4004000000000000.0x3fc5555560000000.0x4004000000000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fe0000000000000.0x3feaaaaaa0000000.0x3fe0000000000000.0x3feaaaaaa0000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fc5555560000000.0x4004000000000000.0x3fc5555560000000.0xa0000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe0000000000000.0x3feaaaaaa0000000.0x20000000.0x80000000a0000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fc5555560000000.0xa0000000.0x8000000020000000.0x640000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x20000000.0x80000000a0000000.0x140000000.0x8000000640000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000020000000.0x640000000.0x8000000140000000.0x320000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x140000000.0x8000000640000000.0xa0000000.0x8000000320000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000140000000.0x320000000.0x80000000a0000000.0x40000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xa0000000.0x8000000320000000.0x0.0x8000000040000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x80000000a0000000.0x40000000.0x8000000000000000.0x20000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x8000000040000000.0x0.0x8000000020000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000000.0x20000000.0x8000000000000000.0x0 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x8000000020000000.0x0.0x8000000000000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000000000000.0x0.0x8000000000000000.0x7ff0000000000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x8000000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x3c592cc180000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x3c7f77f1e0000000.0x3ff0000000000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x3c592cc180000000.0x4014000000000000.0x3fc99999a0000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3c7f77f1e0000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4014000000000000.0x3fc99999a0000000.0x4014000000000000.0x3fc99999a0000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4014000000000000.0x3fc99999a0000000.0x4014000000000000.0x3fc99999a0000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3fe0000000000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4014000000000000.0x3fc99999a0000000.0x4004000000000000.0x3fc5555560000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff0000000000000.0x3fe0000000000000.0x3feaaaaaa0000000.0x3fe0000000000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4004000000000000.0x3fc5555560000000.0x4004000000000000.0x3fc5555560000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3feaaaaaa0000000.0x3fe0000000000000.0x3feaaaaaa0000000.0x3fe0000000000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4004000000000000.0x3fc5555560000000.0x4004000000000000.0x3fc5555560000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3feaaaaaa0000000.0x3fe0000000000000.0x3feaaaaaa0000000.0x20000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4004000000000000.0x3fc5555560000000.0xa0000000.0x8000000020000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3feaaaaaa0000000.0x20000000.0x80000000a0000000.0x140000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xa0000000.0x8000000020000000.0x640000000.0x8000000140000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000a0000000.0x140000000.0x8000000640000000.0xa0000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x640000000.0x8000000140000000.0x320000000.0x80000000a0000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000640000000.0xa0000000.0x8000000320000000.0x0 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x320000000.0x80000000a0000000.0x40000000.0x8000000000000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000320000000.0x0.0x8000000040000000.0x0 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x40000000.0x8000000000000000.0x20000000.0x8000000000000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000040000000.0x0.0x8000000020000000.0x0 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x20000000.0x8000000000000000.0x0.0x8000000000000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000020000000.0x0.0x8000000000000000.0x7ff0000000000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x8000000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x3c7f77f1e0000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x3c592cc180000000.0x4014000000000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x3c7f77f1e0000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3c592cc180000000.0x4014000000000000.0x3fc99999a0000000.0x4014000000000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fc99999a0000000.0x4014000000000000.0x3fc99999a0000000.0x4014000000000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fc99999a0000000.0x4014000000000000.0x3fc99999a0000000.0x4004000000000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff0000000000000.0x3ff0000000000000.0x3fe0000000000000.0x3feaaaaaa0000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc99999a0000000.0x4004000000000000.0x3fc5555560000000.0x4004000000000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fe0000000000000.0x3feaaaaaa0000000.0x3fe0000000000000.0x3feaaaaaa0000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fc5555560000000.0x4004000000000000.0x3fc5555560000000.0x4004000000000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fe0000000000000.0x3feaaaaaa0000000.0x3fe0000000000000.0x3feaaaaaa0000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fc5555560000000.0x4004000000000000.0x3fc5555560000000.0xa0000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe0000000000000.0x3feaaaaaa0000000.0x20000000.0x80000000a0000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fc5555560000000.0xa0000000.0x8000000020000000.0x640000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x20000000.0x80000000a0000000.0x140000000.0x8000000640000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000020000000.0x640000000.0x8000000140000000.0x320000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x140000000.0x8000000640000000.0xa0000000.0x8000000320000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000140000000.0x320000000.0x80000000a0000000.0x40000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xa0000000.0x8000000320000000.0x0.0x8000000040000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x80000000a0000000.0x40000000.0x8000000000000000.0x20000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x8000000040000000.0x0.0x8000000020000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000000.0x20000000.0x8000000000000000.0x0 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x8000000020000000.0x0.0x8000000000000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000000000000.0x0.0x8000000000000000.0x7ff0000000000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x8000000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x3c692cc180000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x3c7f77f1e0000000.0x4000000000000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x3c592cc180000000.0x4014000000000000.0x3fd99999a0000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3c7f77f1e0000000.0x3ff0000000000000.0x3ff0000000000000.0x4000000000000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4014000000000000.0x3fc99999a0000000.0x4014000000000000.0x3fd99999a0000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x4000000000000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4014000000000000.0x3fc99999a0000000.0x4014000000000000.0x3fd99999a0000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4014000000000000.0x3fc99999a0000000.0x4004000000000000.0x3fd5555560000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff0000000000000.0x3fe0000000000000.0x3feaaaaaa0000000.0x3ff0000000000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4004000000000000.0x3fc5555560000000.0x4004000000000000.0x3fd5555560000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3feaaaaaa0000000.0x3fe0000000000000.0x3feaaaaaa0000000.0x3ff0000000000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4004000000000000.0x3fc5555560000000.0x4004000000000000.0x3fd5555560000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3feaaaaaa0000000.0x3fe0000000000000.0x3feaaaaaa0000000.0x40000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4004000000000000.0x3fc5555560000000.0xa0000000.0x8000000040000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3feaaaaaa0000000.0x20000000.0x80000000a0000000.0x280000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xa0000000.0x8000000020000000.0x640000000.0x8000000280000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000a0000000.0x140000000.0x8000000640000000.0x140000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x640000000.0x8000000140000000.0x320000000.0x8000000140000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000640000000.0xa0000000.0x8000000320000000.0x20000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x320000000.0x80000000a0000000.0x40000000.0x8000000020000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000320000000.0x0.0x8000000040000000.0x0 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x40000000.0x8000000000000000.0x20000000.0x8000000000000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000040000000.0x0.0x8000000020000000.0x0 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x20000000.0x8000000000000000.0x0.0x8000000000000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000020000000.0x0.0x8000000000000000.0x7ff0000000000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x8000000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x3c82e19120000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x3c692cc180000000.0x4018000000000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x3c7f77f1e0000000.0x4000000000000000.0x3ff3333340000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3c592cc180000000.0x4014000000000000.0x3fd99999a0000000.0x4018000000000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff0000000000000.0x3ff0000000000000.0x4000000000000000.0x3ff3333340000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fc99999a0000000.0x4014000000000000.0x3fd99999a0000000.0x4018000000000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff0000000000000.0x3ff0000000000000.0x4000000000000000.0x3ff3333340000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fc99999a0000000.0x4014000000000000.0x3fd99999a0000000.0x4008000000000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc99999a0000000.0x4004000000000000.0x3fd5555560000000.0x4008000000000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fe0000000000000.0x3feaaaaaa0000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fc5555560000000.0x4004000000000000.0x3fd5555560000000.0x4008000000000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fe0000000000000.0x3feaaaaaa0000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fc5555560000000.0x4004000000000000.0x3fd5555560000000.0xc0000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe0000000000000.0x3feaaaaaa0000000.0x40000000.0x80000000c0000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fc5555560000000.0xa0000000.0x8000000040000000.0x780000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x20000000.0x80000000a0000000.0x280000000.0x8000000780000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000020000000.0x640000000.0x8000000280000000.0x3c0000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x140000000.0x8000000640000000.0x140000000.0x80000003c0000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000140000000.0x320000000.0x8000000140000000.0x40000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xa0000000.0x8000000320000000.0x20000000.0x8000000040000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x80000000a0000000.0x40000000.0x8000000020000000.0x20000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x8000000040000000.0x0.0x8000000020000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000000.0x20000000.0x8000000000000000.0x0 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x8000000020000000.0x0.0x8000000000000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000000000000.0x0.0x8000000000000000.0x7ff0000000000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x8000000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x3c692cc180000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x3c82e19120000000.0x4000000000000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x3c692cc180000000.0x4018000000000000.0x3fd99999a0000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3c7f77f1e0000000.0x4000000000000000.0x3ff3333340000000.0x4000000000000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4014000000000000.0x3fd99999a0000000.0x4018000000000000.0x3fd99999a0000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0x4000000000000000.0x3ff3333340000000.0x4000000000000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4014000000000000.0x3fd99999a0000000.0x4018000000000000.0x3fd99999a0000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff0000000000000.0x4000000000000000.0x3ff3333340000000.0x3ff0000000000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4014000000000000.0x3fd99999a0000000.0x4008000000000000.0x3fd5555560000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4004000000000000.0x3fd5555560000000.0x4008000000000000.0x3fd5555560000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3feaaaaaa0000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4004000000000000.0x3fd5555560000000.0x4008000000000000.0x3fd5555560000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3feaaaaaa0000000.0x3ff0000000000000.0x3ff0000000000000.0x40000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4004000000000000.0x3fd5555560000000.0xc0000000.0x8000000040000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3feaaaaaa0000000.0x40000000.0x80000000c0000000.0x280000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xa0000000.0x8000000040000000.0x780000000.0x8000000280000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000a0000000.0x280000000.0x8000000780000000.0x140000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x640000000.0x8000000280000000.0x3c0000000.0x8000000140000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000640000000.0x140000000.0x80000003c0000000.0x20000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x320000000.0x8000000140000000.0x40000000.0x8000000020000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000320000000.0x20000000.0x8000000040000000.0x0 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x40000000.0x8000000020000000.0x20000000.0x8000000000000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000040000000.0x0.0x8000000020000000.0x0 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x20000000.0x8000000000000000.0x0.0x8000000000000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000020000000.0x0.0x8000000000000000.0x7ff0000000000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x8000000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x3c82e19120000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x3c692cc180000000.0x4018000000000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x3c82e19120000000.0x4000000000000000.0x3ff3333340000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3c692cc180000000.0x4018000000000000.0x3fd99999a0000000.0x4018000000000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x3ff3333340000000.0x4000000000000000.0x3ff3333340000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fd99999a0000000.0x4018000000000000.0x3fd99999a0000000.0x4018000000000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x3ff3333340000000.0x4000000000000000.0x3ff3333340000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fd99999a0000000.0x4018000000000000.0x3fd99999a0000000.0x4008000000000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x3ff3333340000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fd99999a0000000.0x4008000000000000.0x3fd5555560000000.0x4008000000000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fd5555560000000.0x4008000000000000.0x3fd5555560000000.0x4008000000000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd5555560000000.0x4008000000000000.0x3fd5555560000000.0xc0000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x40000000.0x80000000c0000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fd5555560000000.0xc0000000.0x8000000040000000.0x780000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x40000000.0x80000000c0000000.0x280000000.0x8000000780000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000040000000.0x780000000.0x8000000280000000.0x3c0000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x280000000.0x8000000780000000.0x140000000.0x80000003c0000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000280000000.0x3c0000000.0x8000000140000000.0x40000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x140000000.0x80000003c0000000.0x20000000.0x8000000040000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000140000000.0x40000000.0x8000000020000000.0x20000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x20000000.0x8000000040000000.0x0.0x8000000020000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000020000000.0x20000000.0x8000000000000000.0x0 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x8000000020000000.0x0.0x8000000000000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000000000000.0x0.0x8000000000000000.0x7ff0000000000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x8000000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x3c692cc180000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x3c82e19120000000.0x4000000000000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x3c692cc180000000.0x4018000000000000.0x3fd99999a0000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3c82e19120000000.0x4000000000000000.0x3ff3333340000000.0x4000000000000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4018000000000000.0x3fd99999a0000000.0x4018000000000000.0x3fd99999a0000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff3333340000000.0x4000000000000000.0x3ff3333340000000.0x4000000000000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4018000000000000.0x3fd99999a0000000.0x4018000000000000.0x3fd99999a0000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff3333340000000.0x4000000000000000.0x3ff3333340000000.0x3ff0000000000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4018000000000000.0x3fd99999a0000000.0x4008000000000000.0x3fd5555560000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff3333340000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0x3fd5555560000000.0x4008000000000000.0x3fd5555560000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0x3fd5555560000000.0x4008000000000000.0x3fd5555560000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x40000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4008000000000000.0x3fd5555560000000.0xc0000000.0x8000000040000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3ff0000000000000.0x40000000.0x80000000c0000000.0x280000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc0000000.0x8000000040000000.0x780000000.0x8000000280000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000c0000000.0x280000000.0x8000000780000000.0x140000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x780000000.0x8000000280000000.0x3c0000000.0x8000000140000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000780000000.0x140000000.0x80000003c0000000.0x20000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3c0000000.0x8000000140000000.0x40000000.0x8000000020000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x80000003c0000000.0x20000000.0x8000000040000000.0x0 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x40000000.0x8000000020000000.0x20000000.0x8000000000000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000040000000.0x0.0x8000000020000000.0x0 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x20000000.0x8000000000000000.0x0.0x8000000000000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000020000000.0x0.0x8000000000000000.0x7ff0000000000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x8000000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x3c82e19120000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x3c692cc180000000.0x4018000000000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x3c82e19120000000.0x4000000000000000.0x3ff3333340000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3c692cc180000000.0x4018000000000000.0x3fd99999a0000000.0x4018000000000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x3ff3333340000000.0x4000000000000000.0x3ff3333340000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fd99999a0000000.0x4018000000000000.0x3fd99999a0000000.0x4018000000000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x3ff3333340000000.0x4000000000000000.0x3ff3333340000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fd99999a0000000.0x4018000000000000.0x3fd99999a0000000.0x4008000000000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x3ff3333340000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fd99999a0000000.0x4008000000000000.0x3fd5555560000000.0x4008000000000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fd5555560000000.0x4008000000000000.0x3fd5555560000000.0x4008000000000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd5555560000000.0x4008000000000000.0x3fd5555560000000.0xc0000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x40000000.0x80000000c0000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fd5555560000000.0xc0000000.0x8000000040000000.0x780000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x40000000.0x80000000c0000000.0x280000000.0x8000000780000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000040000000.0x780000000.0x8000000280000000.0x3c0000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x280000000.0x8000000780000000.0x140000000.0x80000003c0000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000280000000.0x3c0000000.0x8000000140000000.0x40000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x140000000.0x80000003c0000000.0x20000000.0x8000000040000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000140000000.0x40000000.0x8000000020000000.0x20000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x20000000.0x8000000040000000.0x0.0x8000000020000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000020000000.0x20000000.0x8000000000000000.0x0 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x8000000020000000.0x0.0x8000000000000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000000000000.0x0.0x8000000000000000.0x7ff0000000000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x8000000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x45a92cc180000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x3c82e19120000000.0x7ff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x3c692cc180000000.0x4018000000000000.0x7ff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3c82e19120000000.0x4000000000000000.0x3ff3333340000000.0x7ff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4018000000000000.0x3fd99999a0000000.0x4018000000000000.0x7ff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff3333340000000.0x4000000000000000.0x3ff3333340000000.0x7ff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4018000000000000.0x3fd99999a0000000.0x4018000000000000.0x7ff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff3333340000000.0x4000000000000000.0x3ff3333340000000.0x7ff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4018000000000000.0x3fd99999a0000000.0x4008000000000000.0x7ff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff3333340000000.0x3ff0000000000000.0x3ff0000000000000.0x7ff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0x3fd5555560000000.0x4008000000000000.0x7ff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x7ff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0x3fd5555560000000.0x4008000000000000.0x7ff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4008000000000000.0x3fd5555560000000.0xc0000000.0xbff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3ff0000000000000.0x40000000.0x80000000c0000000.0x4024000020000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc0000000.0x8000000040000000.0x780000000.0xc024000020000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000c0000000.0x280000000.0x8000000780000000.0x4014000020000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x780000000.0x8000000280000000.0x3c0000000.0xc014000020000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000780000000.0x140000000.0x80000003c0000000.0x3fd5555560000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3c0000000.0x8000000140000000.0x40000000.0xbfd5555560000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x80000003c0000000.0x20000000.0x8000000040000000.0x3fc99999a0000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x40000000.0x8000000020000000.0x20000000.0xbfc99999a0000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000040000000.0x0.0x8000000020000000.0x3e45798ee0000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x20000000.0x8000000000000000.0x0.0xbe45798ee0000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000020000000.0x0.0x8000000000000000.0x7ff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x8000000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0x7ff0000000000000.0xfff0000000000000.0xbf00a85820000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0xbf00a85820000000.0xc5a92cc180000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x45a92cc180000000.0xfff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x3c82e19120000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3c692cc180000000.0x4018000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x3ff3333340000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fd99999a0000000.0x4018000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x3ff3333340000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fd99999a0000000.0x4018000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x3ff3333340000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fd99999a0000000.0x4008000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3ff0000000000000.0x3ff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fd5555560000000.0x4008000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3ff0000000000000.0x3ff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd5555560000000.0x4008000000000000.0x7ff0000000000000.0xbff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fd5555560000000.0xc0000000.0xbff0000000000000.0xc024000020000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x40000000.0x80000000c0000000.0x4024000020000000.0x4024000020000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000040000000.0x780000000.0xc024000020000000.0xc014000020000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x280000000.0x8000000780000000.0x4014000020000000.0x4014000020000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000280000000.0x3c0000000.0xc014000020000000.0xbfd5555560000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x140000000.0x80000003c0000000.0x3fd5555560000000.0x3fd5555560000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000140000000.0x40000000.0xbfd5555560000000.0xbfc99999a0000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x20000000.0x8000000040000000.0x3fc99999a0000000.0x3fc99999a0000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000020000000.0x20000000.0xbfc99999a0000000.0xbe45798ee0000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x8000000020000000.0x3e45798ee0000000.0x3e45798ee0000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000000000000.0x0.0xbe45798ee0000000.0xfff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x8000000000000000.0x7ff0000000000000.0x7ff0000000000000 ++vdivs 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0x7ff0000000000000.0xfff0000000000000.0x3f00a85820000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x3f00a85820000000.0x457423cde0000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0xbf00a85820000000.0xc5a92cc180000000.0x7ff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x45a92cc180000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3c82e19120000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4018000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff3333340000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4018000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff3333340000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4018000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff3333340000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3ff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3ff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x3fb9999980000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4008000000000000.0x7ff0000000000000.0xbff0000000000000.0xbfb9999980000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc0000000.0xbff0000000000000.0xc024000020000000.0xbff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000c0000000.0x4024000020000000.0x4024000020000000.0x3fe0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x780000000.0xc024000020000000.0xc014000020000000.0xbfe0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000780000000.0x4014000020000000.0x4014000020000000.0x3fa1111100000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3c0000000.0xc014000020000000.0xbfd5555560000000.0xbfa1111100000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x80000003c0000000.0x3fd5555560000000.0x3fd5555560000000.0x3f947ae140000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x40000000.0xbfd5555560000000.0xbfc99999a0000000.0xbf947ae140000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000040000000.0x3fc99999a0000000.0x3fc99999a0000000.0x3e112e0be0000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x20000000.0xbfc99999a0000000.0xbe45798ee0000000.0xbe112e0be0000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000020000000.0x3e45798ee0000000.0x3e45798ee0000000.0x7ff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0xbe45798ee0000000.0xfff0000000000000.0xfff0000000000000 ++vdivs 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0x7ff0000000000000.0x7ff0000000000000.0xbecaa6f340000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x7ff0000000000000.0x0.0xfff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x0.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xbf00a85820000000.0xc5a92cc180000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xbfb9999980000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x3fb9999980000000.0x3fb9999980000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x7ff0000000000000.0xbff0000000000000.0xbfb9999980000000.0xbff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xc024000000000000.0xbff0000000000000.0xbfe0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4024000000000000.0x4024000000000000.0x3fe0000000000000.0x3fe0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc024000000000000.0xc014000000000000.0xbfe0000000000000.0xbfa1111120000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4014000000000000.0x4014000000000000.0x3fa1111120000000.0x3fa1111120000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc014000000000000.0xbfd5555560000000.0xbfa1111120000000.0xbf947ae140000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fd5555560000000.0x3fd5555560000000.0x3f947ae140000000.0x3f947ae140000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbfd5555560000000.0xbfc99999a0000000.0xbf947ae140000000.0xbe112e0be0000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3fc99999a0000000.0x3fc99999a0000000.0x3e112e0be0000000.0x3e112e0be0000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbfc99999a0000000.0xbe45798ee0000000.0xbe112e0be0000000.0xfff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3e45798ee0000000.0x3e45798ee0000000.0x7ff0000000000000.0x7ff0000000000000 ++vdivs 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbe45798ee0000000.0xfff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0xfff0000000000000.0x0.0x7ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x0.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x3f00a85820000000.0x457423cde0000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x3fc9999980000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xbfb9999980000000.0xbfc9999980000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xfff0000000000000.0x3fb9999980000000.0x3fb9999980000000.0x4000000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbfb99999a0000000.0xbff0000000000000.0xc000000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc024000000000000.0xbff0000000000000.0xbfe0000000000000.0xbff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4024000000000000.0x3fe0000000000000.0x3fe0000000000000.0x3fb1111120000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc014000000000000.0xbfe0000000000000.0xbfa1111120000000.0xbfb1111120000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4014000000000000.0x3fa1111120000000.0x3fa1111120000000.0x3fa47ae140000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbfd5555560000000.0xbfa1111120000000.0xbf947ae140000000.0xbfa47ae140000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3fd5555560000000.0x3f947ae140000000.0x3f947ae140000000.0x3e212e0be0000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbfc99999a0000000.0xbf947ae140000000.0xbe112e0be0000000.0xbe212e0be0000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3fc99999a0000000.0x3e112e0be0000000.0x3e112e0be0000000.0x7ff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbe45798ee0000000.0xbe112e0be0000000.0xfff0000000000000.0xfff0000000000000 ++vdivs 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3e45798ee0000000.0x7ff0000000000000.0x7ff0000000000000.0x0 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x7ff0000000000000.0x0.0xfff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x0.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xbecaa6f340000000.0xc57423cde0000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xbfc9999980000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x3fc9999980000000.0x3fc9999980000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x7ff0000000000000.0xbfb9999980000000.0xbfc9999980000000.0xc000000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fb99999a0000000.0x3fb99999a0000000.0x4000000000000000.0x4000000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbfb99999a0000000.0xbff0000000000000.0xc000000000000000.0xbff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbff0000000000000.0xbfe0000000000000.0xbff0000000000000.0xbfb1111120000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fe0000000000000.0x3fe0000000000000.0x3fb1111120000000.0x3fb1111120000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfe0000000000000.0xbfa1111120000000.0xbfb1111120000000.0xbfa47ae140000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fa1111120000000.0x3fa1111120000000.0x3fa47ae140000000.0x3fa47ae140000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbfa1111120000000.0xbf947ae140000000.0xbfa47ae140000000.0xbe212e0be0000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3f947ae140000000.0x3f947ae140000000.0x3e212e0be0000000.0x3e212e0be0000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbf947ae140000000.0xbe112e0be0000000.0xbe212e0be0000000.0xfff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3e112e0be0000000.0x3e112e0be0000000.0x7ff0000000000000.0x7ff0000000000000 ++vdivs 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbe112e0be0000000.0xfff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0xfff0000000000000.0x0.0x7ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x0.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x3ecaa6f340000000.0x458423cde0000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x4008000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xbfc9999980000000.0xc008000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xfff0000000000000.0x3fc9999980000000.0x3fc9999980000000.0x403e000020000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfb99999a0000000.0xbfc99999a0000000.0xc000000000000000.0xc03e000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fb99999a0000000.0x4000000000000000.0x4000000000000000.0x402e000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbff0000000000000.0xc000000000000000.0xbff0000000000000.0xc02e000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfe0000000000000.0xbff0000000000000.0xbfb1111120000000.0xbff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fe0000000000000.0x3fb1111120000000.0x3fb1111120000000.0x3fe3333340000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbfa1111120000000.0xbfb1111120000000.0xbfa47ae140000000.0xbfe3333340000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3fa1111120000000.0x3fa47ae140000000.0x3fa47ae140000000.0x3e601b2b20000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbf947ae140000000.0xbfa47ae140000000.0xbe212e0be0000000.0xbe601b2b20000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3f947ae140000000.0x3e212e0be0000000.0x3e212e0be0000000.0x7ff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbe112e0be0000000.0xbe212e0be0000000.0xfff0000000000000.0xfff0000000000000 ++vdivs 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3e112e0be0000000.0x7ff0000000000000.0x7ff0000000000000.0x0 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x7ff0000000000000.0x0.0xfff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x0.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xbedaa6f340000000.0xc58423cde0000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xc008000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x4008000000000000.0x4008000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x7ff0000000000000.0xbfc9999980000000.0xc008000000000000.0xc03e000020000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fc99999a0000000.0x3fc99999a0000000.0x403e000000000000.0x403e000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbfc99999a0000000.0xc000000000000000.0xc03e000000000000.0xc02e000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x4000000000000000.0x402e000000000000.0x402e000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc000000000000000.0xbff0000000000000.0xc02e000000000000.0xbff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbff0000000000000.0xbfb1111120000000.0xbff0000000000000.0xbfe3333340000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fb1111120000000.0x3fb1111120000000.0x3fe3333340000000.0x3fe3333340000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbfb1111120000000.0xbfa47ae140000000.0xbfe3333340000000.0xbe601b2b20000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3fa47ae140000000.0x3fa47ae140000000.0x3e601b2b20000000.0x3e601b2b20000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbfa47ae140000000.0xbe212e0be0000000.0xbe601b2b20000000.0xfff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3e212e0be0000000.0x3e212e0be0000000.0x7ff0000000000000.0x7ff0000000000000 ++vdivs 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbe212e0be0000000.0xfff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0xfff0000000000000.0x0.0x7ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x0.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x3edaa6f340000000.0x45c2e19120000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x4014000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xc008000000000000.0xc014000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xfff0000000000000.0x4008000000000000.0x4008000000000000.0x4049000020000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfc99999a0000000.0xc008000000000000.0xc03e000000000000.0xc049000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fc99999a0000000.0x403e000000000000.0x403e000000000000.0x4039000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc000000000000000.0xc03e000000000000.0xc02e000000000000.0xc039000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x402e000000000000.0x402e000000000000.0x3ffaaaaaa0000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbff0000000000000.0xc02e000000000000.0xbff0000000000000.0xbffaaaaaa0000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbfb1111120000000.0xbff0000000000000.0xbfe3333340000000.0xbff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3fb1111120000000.0x3fe3333340000000.0x3fe3333340000000.0x3e6ad7f2a0000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbfa47ae140000000.0xbfe3333340000000.0xbe601b2b20000000.0xbe6ad7f2a0000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3fa47ae140000000.0x3e601b2b20000000.0x3e601b2b20000000.0x7ff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbe212e0be0000000.0xbe601b2b20000000.0xfff0000000000000.0xfff0000000000000 ++vdivs 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3e212e0be0000000.0x7ff0000000000000.0x7ff0000000000000.0x0 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x7ff0000000000000.0x0.0xfff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x0.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xbf18fc8440000000.0xc5c2e19120000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xc014000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x4014000000000000.0x4014000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x7ff0000000000000.0xc008000000000000.0xc014000000000000.0xc049000020000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4008000000000000.0x4008000000000000.0x4049000000000000.0x4049000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc008000000000000.0xc03e000000000000.0xc049000000000000.0xc039000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x403e000000000000.0x403e000000000000.0x4039000000000000.0x4039000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc03e000000000000.0xc02e000000000000.0xc039000000000000.0xbffaaaaaa0000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x402e000000000000.0x402e000000000000.0x3ffaaaaaa0000000.0x3ffaaaaaa0000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc02e000000000000.0xbff0000000000000.0xbffaaaaaa0000000.0xbff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbff0000000000000.0xbfe3333340000000.0xbff0000000000000.0xbe6ad7f2a0000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3fe3333340000000.0x3fe3333340000000.0x3e6ad7f2a0000000.0x3e6ad7f2a0000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbfe3333340000000.0xbe601b2b20000000.0xbe6ad7f2a0000000.0xfff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3e601b2b20000000.0x3e601b2b20000000.0x7ff0000000000000.0x7ff0000000000000 ++vdivs 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbe601b2b20000000.0xfff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0xfff0000000000000.0x0.0x7ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x0.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x3f18fc8440000000.0x45cf77f1e0000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x4197d78400000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xc014000000000000.0xc197d78400000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xfff0000000000000.0x4014000000000000.0x4014000000000000.0x41cdcd6520000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc008000000000000.0xc014000000000000.0xc049000000000000.0xc1cdcd6500000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4008000000000000.0x4049000000000000.0x4049000000000000.0x41bdcd6500000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc03e000000000000.0xc049000000000000.0xc039000000000000.0xc1bdcd6500000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x403e000000000000.0x4039000000000000.0x4039000000000000.0x417fca0560000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc02e000000000000.0xc039000000000000.0xbffaaaaaa0000000.0xc17fca0560000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x402e000000000000.0x3ffaaaaaa0000000.0x3ffaaaaaa0000000.0x417312d000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbff0000000000000.0xbffaaaaaa0000000.0xbff0000000000000.0xc17312d000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbfe3333340000000.0xbff0000000000000.0xbe6ad7f2a0000000.0xbff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3fe3333340000000.0x3e6ad7f2a0000000.0x3e6ad7f2a0000000.0x7ff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbe601b2b20000000.0xbe6ad7f2a0000000.0xfff0000000000000.0xfff0000000000000 ++vdivs 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3e601b2b20000000.0x7ff0000000000000.0x7ff0000000000000.0x0 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x7ff0000000000000.0x0.0xfff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x0.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xbf24d26e20000000.0xc5cf77f1e0000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xc197d78400000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x4197d78400000000.0x4197d78400000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x7ff0000000000000.0xc014000000000000.0xc197d78400000000.0xc1cdcd6520000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4014000000000000.0x4014000000000000.0x41cdcd6500000000.0x41cdcd6500000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc014000000000000.0xc049000000000000.0xc1cdcd6500000000.0xc1bdcd6500000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4049000000000000.0x4049000000000000.0x41bdcd6500000000.0x41bdcd6500000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc049000000000000.0xc039000000000000.0xc1bdcd6500000000.0xc17fca0560000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4039000000000000.0x4039000000000000.0x417fca0560000000.0x417fca0560000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc039000000000000.0xbffaaaaaa0000000.0xc17fca0560000000.0xc17312d000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3ffaaaaaa0000000.0x3ffaaaaaa0000000.0x417312d000000000.0x417312d000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbffaaaaaa0000000.0xbff0000000000000.0xc17312d000000000.0xbff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbff0000000000000.0xbe6ad7f2a0000000.0xbff0000000000000.0xfff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3e6ad7f2a0000000.0x3e6ad7f2a0000000.0x7ff0000000000000.0x7ff0000000000000 ++vdivs 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbe6ad7f2a0000000.0xfff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0xfff0000000000000.0x0.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x0.0xfff0000000000000.0xfff8000000000000 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x3f24d26e20000000.0x4752c1b7a0000000.0xfff0000000000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0xfff8000000000000 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xc197d78400000000.0x8000000000000000 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xfff0000000000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc014000000000000.0xc197d78400000000.0xc1cdcd6500000000.0x8000000000000000 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4014000000000000.0x41cdcd6500000000.0x41cdcd6500000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc049000000000000.0xc1cdcd6500000000.0xc1bdcd6500000000.0x8000000000000000 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4049000000000000.0x41bdcd6500000000.0x41bdcd6500000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc039000000000000.0xc1bdcd6500000000.0xc17fca0560000000.0x8000000000000000 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4039000000000000.0x417fca0560000000.0x417fca0560000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbffaaaaaa0000000.0xc17fca0560000000.0xc17312d000000000.0x8000000000000000 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3ffaaaaaa0000000.0x417312d000000000.0x417312d000000000.0x0 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbff0000000000000.0xc17312d000000000.0xbff0000000000000.0x8000000000000000 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0xfff8000000000000 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbe6ad7f2a0000000.0xbff0000000000000.0xfff0000000000000.0xfff8000000000000 ++vdivs 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3e6ad7f2a0000000.0x7ff0000000000000.0x7ff0000000000000.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x7ff0000000000000.0x8000000000000000.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x0.0x0.0xfff8000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0a8d25e40000000.0xc752c1b7a0000000.0x0.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x7ff0000000000000.0xfff0000000000000.0xfff8000000000000.0xfff8000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x0 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x7ff0000000000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc197d78400000000.0xc1cdcd6500000000.0x8000000000000000.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x41cdcd6500000000.0x41cdcd6500000000.0x0.0x0 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc1cdcd6500000000.0xc1bdcd6500000000.0x8000000000000000.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x41bdcd6500000000.0x41bdcd6500000000.0x0.0x0 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1bdcd6500000000.0xc17fca0560000000.0x8000000000000000.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x417fca0560000000.0x417fca0560000000.0x0.0x0 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc17fca0560000000.0xc17312d000000000.0x8000000000000000.0x8000000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x417312d000000000.0x417312d000000000.0x0.0x0 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc17312d000000000.0xbff0000000000000.0x8000000000000000.0xfff8000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0xfff8000000000000.0xfff8000000000000 ++vdivs 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbff0000000000000.0xfff0000000000000.0xfff8000000000000.0x0 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0xfff8000000000000.0x0.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x8000000000000000.0x8000000000000000.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40a8d25e40000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xfff0000000000000.0xfff8000000000000.0xfff8000000000000.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfff0000000000000.0x0.0x8000000000000000.0xc0debc9a60000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xfff0000000000000.0x0.0x8000000000000000.0x40debc9a60000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xfff0000000000000.0x0.0x0.0xc11335e080000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4197d78400000000.0x0.0x0.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc1cdcd6500000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x41cdcd6500000000.0x0.0x0.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc1bdcd6500000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41bdcd6500000000.0x0.0x0.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc17fca0560000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x417fca0560000000.0x0.0x0.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc17312d000000000.0x8000000000000000.0x8000000000000000.0x7ff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x417312d000000000.0x0.0x0.0xfff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbff0000000000000.0x8000000000000000.0xfff8000000000000.0x7ff0000000000000 ++vdivs 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3ff0000000000000.0xfff8000000000000.0xfff8000000000000.0x3ff0000000000000 ++=== Running test on vdivd=== ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff8000000000000.0xfff8000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff8000000000000.0x0.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x8000000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0xfff8000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x8000000000000000.0xfff0000000000000.0x535b6e6d41fa5075 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x8000000000000000.0xfff0000000000000.0x5374e48ab026c975 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x8000000000000000.0xfff0000000000000.0x535b5bf9d15792f5 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x8000000000000000.0xfff0000000000000.0x537442366458866a ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x8000000000000000.0xfff0000000000000.0x535b14ef2943681d ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x8000000000000000.0xfff0000000000000.0x5374241e4ef7744d ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x8000000000000000.0xfff0000000000000.0x535b076ff1084d00 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x8000000000000000.0xfff0000000000000.0x5370f5d4ffd185da ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x8000000000000000.0xfff0000000000000.0x53596dd5d593915e ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x8000000000000000.0xfff0000000000000.0x123456789abcdef0 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x8000000000000000.0x70debc9a78563412.0x12696c16c16c16ac ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0xf11335e08b35e08b.0x92696c16c16c16ac ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000000000000.0x8000000000000000.0x711335e08b35e08b.0x12596c16c16c16ac ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0xf10335e08b35e08b.0x92596c16c16c16ac ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000000000000.0x8000000000000000.0x710335e08b35e08b.0x121b1df623a67e95 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0xf0c47dbc5039780c.0x921b1df623a67e95 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000000000000.0x8000000000000000.0x70c47dbc5039780c.0x1210452d489718c0 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0xf0b896e1f9de900e.0x9210452d489718c0 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000000.0x8000000000000000.0x70b896e1f9de900e.0x108b4c01da1b936f ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0xef34a087c53fb2aa.0x908b4c01da1b936f ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000000000000.0x8000000000000000.0x6f34a087c53fb2aa.0x7ff0000000000000 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0xfff0000000000000.0xfff0000000000000 ++vdivd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000000.0xfff8000000000000.0x7ff0000000000000.0x0 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff8000000000000.0x7ff0000000000000.0x0.0x0 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff8000000000000.0x3ff0000000000000.0x3ff0000000000000.0xfff8000000000000 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0xfff0000000000000.0x7ff0000000000000.0xfff8000000000000 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x8000000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff8000000000000 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000000000000.0xfff0000000000000.0x53750fd092ec2382.0x3fd56979a91d8fec ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000000000000.0xfff0000000000000.0x535b6e6d41fa5075.0x3ff04ee54a52c065 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000000000000.0xfff0000000000000.0x5374e48ab026c975.0x3fd55b12b2e52249 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000000000000.0xfff0000000000000.0x535b5bf9d15792f5.0x3fefa05fa05fa060 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000000000000.0xfff0000000000000.0x537442366458866a.0x3fd5239ecb11a4c9 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000000000000.0xfff0000000000000.0x535b14ef2943681d.0x3fef716484b43d66 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000000000000.0xfff0000000000000.0x5374241e4ef7744d.0x3fd51915c332ab1c ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000000000000.0xfff0000000000000.0x535b076ff1084d00.0x3fea7a2eb034c20b ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000000000000.0xfff0000000000000.0x5370f5d4ffd185da.0x3fd3d95cf995b9ae ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x8000000000000000.0xfff0000000000000.0x53596dd5d593915e.0x3f800000 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000000000000.0xfff0000000000000.0x123456789abcdef0.0x800000003f800000 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x27b000000 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x8000000000000000.0x70debc9a78563412.0x12696c16c16c16ac.0x8000000000000000 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0xf11335e08b35e08b.0x92696c16c16c16ac.0x0 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x8000000000000000.0x711335e08b35e08b.0x12596c16c16c16ac.0x8000000000000000 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0xf10335e08b35e08b.0x92596c16c16c16ac.0x0 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x8000000000000000.0x710335e08b35e08b.0x121b1df623a67e95.0x8000000000000000 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0xf0c47dbc5039780c.0x921b1df623a67e95.0x0 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000000.0x70c47dbc5039780c.0x1210452d489718c0.0x8000000000000000 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0xf0b896e1f9de900e.0x9210452d489718c0.0x0 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x8000000000000000.0x70b896e1f9de900e.0x108b4c01da1b936f.0x8000000000000000 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0xef34a087c53fb2aa.0x908b4c01da1b936f.0xfff8000000000000 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x8000000000000000.0x6f34a087c53fb2aa.0x7ff0000000000000.0xfff8000000000000 ++vdivd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0xfff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0xfff0000000000000.0x8000000000000000.0x0 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x0.0x0.0xfff8000000000000 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x3ff0000000000000.0x3ff0000000000000.0xfff8000000000000.0xfff8000000000000 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff8000000000000.0xfff8000000000000 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x535b30163272cb1d.0x3ff070ac52cb70f2.0x3ff024afe1c52778 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfff0000000000000.0x53750fd092ec2382.0x3fd56979a91d8fec.0x4008973779241603 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfff0000000000000.0x535b6e6d41fa5075.0x3ff04ee54a52c065.0x3ff019d4251ca066 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfff0000000000000.0x5374e48ab026c975.0x3fd55b12b2e52249.0x4007d827d827d828 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfff0000000000000.0x535b5bf9d15792f5.0x3fefa05fa05fa060.0x3fefe00aa71da0ca ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfff0000000000000.0x537442366458866a.0x3fd5239ecb11a4c9.0x4007b4bc299803f6 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfff0000000000000.0x535b14ef2943681d.0x3fef716484b43d66.0x3fefd027dec65ab4 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfff0000000000000.0x5374241e4ef7744d.0x3fd51915c332ab1c.0x4003f65291f35de3 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfff0000000000000.0x535b076ff1084d00.0x3fea7a2eb034c20b.0x3fedee0e35d2a618 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfff0000000000000.0x5370f5d4ffd185da.0x3fd3d95cf995b9ae.0xbf800000 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xfff0000000000000.0x53596dd5d593915e.0x3f800000.0x80000000bf800000 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xfff0000000000000.0x123456789abcdef0.0x800000003f800000.0x77b000000 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xf0debc9a78563412.0x923456789abcdef0.0x0.0x8000000000000000 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x70debc9a78563412.0x12696c16c16c16ac.0x8000000000000000.0x0 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xf11335e08b35e08b.0x92696c16c16c16ac.0x0.0x8000000000000000 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x711335e08b35e08b.0x12596c16c16c16ac.0x8000000000000000.0x0 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xf10335e08b35e08b.0x92596c16c16c16ac.0x0.0x8000000000000000 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x710335e08b35e08b.0x121b1df623a67e95.0x8000000000000000.0x0 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xf0c47dbc5039780c.0x921b1df623a67e95.0x0.0x8000000000000000 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x70c47dbc5039780c.0x1210452d489718c0.0x8000000000000000.0x0 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xf0b896e1f9de900e.0x9210452d489718c0.0x0.0x8000000000000000 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x70b896e1f9de900e.0x108b4c01da1b936f.0x8000000000000000.0xfff8000000000000 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xef34a087c53fb2aa.0x908b4c01da1b936f.0xfff8000000000000.0xfff8000000000000 ++vdivd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x6f34a087c53fb2aa.0x7ff0000000000000.0xfff8000000000000.0x8000000000000000 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff8000000000000.0x8000000000000000.0x0 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x0.0xfff8000000000000 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x2c68fa67d508f38d.0x4008204081020408.0x3fd4a75e83578fb5 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3ff0000000000000.0xfff8000000000000.0xfff8000000000000.0xfff8000000000000 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x53747f7789d07ff0.0x3fd538d08b075a3c.0x4008ca261c168b10.0x3fd4d6ba2208f20c ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x535b30163272cb1d.0x3ff070ac52cb70f2.0x3ff024afe1c52778.0x3fefbe40ecb01529 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x53750fd092ec2382.0x3fd56979a91d8fec.0x4008973779241603.0x3fd4c8b5e0911351 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x535b6e6d41fa5075.0x3ff04ee54a52c065.0x3ff019d4251ca066.0x3feec79ec7b847b8 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x5374e48ab026c975.0x3fd55b12b2e52249.0x4007d827d827d828.0x3fd492be04fe55e3 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x535b5bf9d15792f5.0x3fefa05fa05fa060.0x3fefe00aa71da0ca.0x3fee99e5a85b1c39 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x537442366458866a.0x3fd5239ecb11a4c9.0x4007b4bc299803f6.0x3fd4887d3156e243 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x535b14ef2943681d.0x3fef716484b43d66.0x3fefd027dec65ab4.0x3fe9c4b81f46adad ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x5374241e4ef7744d.0x3fd51915c332ab1c.0x4003f65291f35de3.0x3fd35153a1eeb909 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x535b076ff1084d00.0x3fea7a2eb034c20b.0x3fedee0e35d2a618.0x3dcccccd ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x5370f5d4ffd185da.0x3fd3d95cf995b9ae.0xbf800000.0x800000003dcccccd ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x53596dd5d593915e.0x3f800000.0x80000000bf800000.0x26a000002 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x123456789abcdef0.0x8000000000000000.0x0.0x8000000000000000 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x923456789abcdef0.0x0.0x8000000000000000.0x0 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x12696c16c16c16ac.0x8000000000000000.0x0.0x8000000000000000 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x92696c16c16c16ac.0x0.0x8000000000000000.0x0 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x12596c16c16c16ac.0x8000000000000000.0x0.0x8000000000000000 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x92596c16c16c16ac.0x0.0x8000000000000000.0x0 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x121b1df623a67e95.0x8000000000000000.0x0.0x8000000000000000 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x921b1df623a67e95.0x0.0x8000000000000000.0x0 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x1210452d489718c0.0x8000000000000000.0x0.0x8000000000000000 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x9210452d489718c0.0x0.0x8000000000000000.0xfff8000000000000 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x108b4c01da1b936f.0x8000000000000000.0xfff8000000000000.0xfff8000000000000 ++vdivd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x908b4c01da1b936f.0xfff8000000000000.0xfff8000000000000.0x8000000000000000 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x2c82aa2e8ba7f1bd ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x2c684f377f2efe4a.0x4007e96c72850a14 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x2c82d4faa11e6f0e.0x3fef24afc60c1830.0x3fefb746fc281abc ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x2c68fa67d508f38d.0x4008204081020408.0x3fd4a75e83578fb5.0x400891cff2b0d297 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fd538d08b075a3c.0x4008ca261c168b10.0x3fd4d6ba2208f20c.0x40085f550f26bb1b ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff070ac52cb70f2.0x3ff024afe1c52778.0x3fefbe40ecb01529.0x3fefea79e10f3950 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fd56979a91d8fec.0x4008973779241603.0x3fd4c8b5e0911351.0x4007a1f7a1fe01fe ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff04ee54a52c065.0x3ff019d4251ca066.0x3feec79ec7b847b8.0x3fef979a4413f958 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fd55b12b2e52249.0x4007d827d827d828.0x3fd492be04fe55e3.0x40077edc7281bbab ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fefa05fa05fa060.0x3fefe00aa71da0ca.0x3fee99e5a85b1c39.0x3fef87db95d87648 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fd5239ecb11a4c9.0x4007b4bc299803f6.0x3fd4887d3156e243.0x4003c8f4edb7d8cb ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fef716484b43d66.0x3fefd027dec65ab4.0x3fe9c4b81f46adad.0x3fedaa0989ff25c5 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd51915c332ab1c.0x4003f65291f35de3.0x3fd35153a1eeb909.0xbdcccccd ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fea7a2eb034c20b.0x3fedee0e35d2a618.0x3dcccccd.0x80000000bdcccccd ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fd3d95cf995b9ae.0xbf800000.0x800000003dcccccd.0x76a000002 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3f800000.0x80000000bf800000.0x26a000002.0x800000076a000002 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x800000003f800000.0x77b000000.0x800000026a000002.0x3b5000001 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x27b000000.0x800000077b000000.0x135000001.0x80000003b5000001 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x800000027b000000.0x3bd800000.0x8000000135000001.0x3f444444 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x13d800000.0x80000003bd800000.0x1499999a.0x800000003f444444 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x800000013d800000.0x3fd55555.0x800000001499999a.0x25f5c28f ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x152aaaab.0x800000003fd55555.0xc5c28f6.0x8000000025f5c28f ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000000152aaaab.0x264ccccd.0x800000000c5c28f6.0x20 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xcb33333.0x80000000264ccccd.0xa.0x8000000000000020 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x800000000cb33333.0x20.0x800000000000000a.0x7ff0000000000000 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xb.0x8000000000000020.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x800000000000000b.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x2c68819101de6f13 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x2c82aa2e8ba7f1bd.0x3fef6530c8102041 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x2c684f377f2efe4a.0x4007e96c72850a14.0x3fd4d225b2cc885b ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x2c82d4faa11e6f0e.0x3fef24afc60c1830.0x3fefb746fc281abc.0x3ff021239fe561a5 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4008204081020408.0x3fd4a75e83578fb5.0x400891cff2b0d297.0x3fd501e367e6e91a ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4008ca261c168b10.0x3fd4d6ba2208f20c.0x40085f550f26bb1b.0x3fd4f3c21e72a0b0 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff024afe1c52778.0x3fefbe40ecb01529.0x3fefea79e10f3950.0x3fef075f07788779 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4008973779241603.0x3fd4c8b5e0911351.0x4007a1f7a1fe01fe.0x3fd4bd5a7b817f80 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff019d4251ca066.0x3feec79ec7b847b8.0x3fef979a4413f958.0x3feed947347cc80c ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4007d827d827d828.0x3fd492be04fe55e3.0x40077edc7281bbab.0x3fd4b3046b513c4e ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fefe00aa71da0ca.0x3fee99e5a85b1c39.0x3fef87db95d87648.0x3fe9fa173ade4662 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4007b4bc299803f6.0x3fd4887d3156e243.0x4003c8f4edb7d8cb.0x3fd379566160c89b ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fefd027dec65ab4.0x3fe9c4b81f46adad.0x3fedaa0989ff25c5.0x3e4ccccd ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4003f65291f35de3.0x3fd35153a1eeb909.0xbdcccccd.0x800000003e4ccccd ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fedee0e35d2a618.0x3dcccccd.0x80000000bdcccccd.0x26f000002 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbf800000.0x800000003dcccccd.0x76a000002.0x800000026f000002 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000bf800000.0x26a000002.0x800000076a000002.0x137800001 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x77b000000.0x800000026a000002.0x3b5000001.0x8000000137800001 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x800000077b000000.0x135000001.0x80000003b5000001.0x14c44444 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3bd800000.0x8000000135000001.0x3f444444.0x8000000014c44444 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x80000003bd800000.0x1499999a.0x800000003f444444.0xc75c28f ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fd55555.0x800000001499999a.0x25f5c28f.0x800000000c75c28f ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x800000003fd55555.0xc5c28f6.0x8000000025f5c28f.0xa ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x264ccccd.0x800000000c5c28f6.0x20.0x800000000000000a ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x80000000264ccccd.0xa.0x8000000000000020.0x7ff0000000000000 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x20.0x800000000000000a.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000020.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x2c82b6c4ec53cdf0 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x2c68819101de6f13.0x4007f98cb3060c18 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x2c82aa2e8ba7f1bd.0x3fef6530c8102041.0x3fefccaa93e2970f ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x2c684f377f2efe4a.0x4007e96c72850a14.0x3fd4d225b2cc885b.0x4008a261c2a38369 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3fef24afc60c1830.0x3fefb746fc281abc.0x3ff021239fe561a5.0x3ff00aca51777dc3 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fd4a75e83578fb5.0x400891cff2b0d297.0x3fd501e367e6e91a.0x40086fc4d3fab5d0 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fd4d6ba2208f20c.0x40085f550f26bb1b.0x3fd4f3c21e72a0b0.0x4007b1e7b1ee11ee ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fefbe40ecb01529.0x3fefea79e10f3950.0x3fef075f07788779.0x3feface87f558e26 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fd4c8b5e0911351.0x4007a1f7a1fe01fe.0x3fd4bd5a7b817f80.0x40078eb4d58a269f ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3feec79ec7b847b8.0x3fef979a4413f958.0x3feed947347cc80c.0x3fef9d1f32d5a34d ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fd492be04fe55e3.0x40077edc7281bbab.0x3fd4b3046b513c4e.0x4003d64cb49dbef9 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fee99e5a85b1c39.0x3fef87db95d87648.0x3fe9fa173ade4662.0x3fedbe0ae9b82d8f ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd4887d3156e243.0x4003c8f4edb7d8cb.0x3fd379566160c89b.0xbe4ccccd ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe9c4b81f46adad.0x3fedaa0989ff25c5.0x3e4ccccd.0x80000000be4ccccd ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fd35153a1eeb909.0xbdcccccd.0x800000003e4ccccd.0x76f000002 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3dcccccd.0x80000000bdcccccd.0x26f000002.0x800000076f000002 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x800000003dcccccd.0x76a000002.0x800000026f000002.0x3b7800001 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x26a000002.0x800000076a000002.0x137800001.0x80000003b7800001 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x800000026a000002.0x3b5000001.0x8000000137800001.0x3f6eeeef ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x135000001.0x80000003b5000001.0x14c44444.0x800000003f6eeeef ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000135000001.0x3f444444.0x8000000014c44444.0x260f5c29 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x1499999a.0x800000003f444444.0xc75c28f.0x80000000260f5c29 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x800000001499999a.0x25f5c28f.0x800000000c75c28f.0x20 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc5c28f6.0x8000000025f5c28f.0xa.0x8000000000000020 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x800000000c5c28f6.0x20.0x800000000000000a.0x7ff0000000000000 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xa.0x8000000000000020.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x800000000000000a.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x2c6945ee19101cba ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x2c82b6c4ec53cdf0.0x3ff03060c183060c ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x2c68819101de6f13.0x4007f98cb3060c18.0x3fd578fb5236cf35 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x2c82aa2e8ba7f1bd.0x3fef6530c8102041.0x3fefccaa93e2970f.0x3ff0a261c2a38369 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4007e96c72850a14.0x3fd4d225b2cc885b.0x4008a261c2a38369.0x3fd5aa3791ea8281 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fefb746fc281abc.0x3ff021239fe561a5.0x3ff00aca51777dc3.0x3ff0803498ceb086 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x400891cff2b0d297.0x3fd501e367e6e91a.0x40086fc4d3fab5d0.0x3fd59ba50fb77658 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x40085f550f26bb1b.0x3fd4f3c21e72a0b0.0x4007b1e7b1ee11ee.0x3fd563897cd66334 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fefea79e10f3950.0x3fef075f07788779.0x3feface87f558e26.0x3fefd076d6e6bf22 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4007a1f7a1fe01fe.0x3fd4bd5a7b817f80.0x40078eb4d58a269f.0x3fd558e09a2a322c ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fef979a4413f958.0x3feed947347cc80c.0x3fef9d1f32d5a34d.0x3feaca3d5998271b ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40077edc7281bbab.0x3fd4b3046b513c4e.0x4003d64cb49dbef9.0x3fd4156118c0d10a ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fef87db95d87648.0x3fe9fa173ade4662.0x3fedbe0ae9b82d8f.0x40400000 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4003c8f4edb7d8cb.0x3fd379566160c89b.0xbe4ccccd.0x8000000040400000 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fedaa0989ff25c5.0x3e4ccccd.0x80000000be4ccccd.0x282800000 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbdcccccd.0x800000003e4ccccd.0x76f000002.0x8000000282800000 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000bdcccccd.0x26f000002.0x800000076f000002.0x141400000 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x76a000002.0x800000026f000002.0x3b7800001.0x8000000141400000 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x800000076a000002.0x137800001.0x80000003b7800001.0x156aaaab ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3b5000001.0x8000000137800001.0x3f6eeeef.0x80000000156aaaab ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x80000003b5000001.0x14c44444.0x800000003f6eeeef.0xcd9999a ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3f444444.0x8000000014c44444.0x260f5c29.0x800000000cd9999a ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x800000003f444444.0xc75c28f.0x80000000260f5c29.0xb ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x25f5c28f.0x800000000c75c28f.0x20.0x800000000000000b ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000025f5c28f.0xa.0x8000000000000020.0x7ff0000000000000 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x20.0x800000000000000a.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000020.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x2c82e7dc32203959 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x2c6945ee19101cba.0x40083870e1c3870e ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x2c82b6c4ec53cdf0.0x3ff03060c183060c.0x3ff0100ab1cbdd3e ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x2c68819101de6f13.0x4007f98cb3060c18.0x3fd578fb5236cf35.0x4008e300d402944c ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3fef6530c8102041.0x3fefccaa93e2970f.0x3ff0a261c2a38369.0x3ff034df5bf8641d ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fd4d225b2cc885b.0x4008a261c2a38369.0x3fd5aa3791ea8281.0x4008afdf20620e14 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff021239fe561a5.0x3ff00aca51777dc3.0x3ff0803498ceb086.0x3ff029f8bc51356a ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fd501e367e6e91a.0x40086fc4d3fab5d0.0x3fd59ba50fb77658.0x4007f00ff00ff010 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fd4f3c21e72a0b0.0x4007b1e7b1ee11ee.0x3fd563897cd66334.0x4007cc80be24a465 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fef075f07788779.0x3feface87f558e26.0x3fefd076d6e6bf22.0x3feff00d4a421e3c ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fd4bd5a7b817f80.0x40078eb4d58a269f.0x3fd558e09a2a322c.0x40040a563c4c3727 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3feed947347cc80c.0x3fef9d1f32d5a34d.0x3feaca3d5998271b.0x3fee0c10456831c6 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd4b3046b513c4e.0x4003d64cb49dbef9.0x3fd4156118c0d10a.0xc0400000 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe9fa173ade4662.0x3fedbe0ae9b82d8f.0x40400000.0x80000000c0400000 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fd379566160c89b.0xbe4ccccd.0x8000000040400000.0x782800000 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3e4ccccd.0x80000000be4ccccd.0x282800000.0x8000000782800000 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x800000003e4ccccd.0x76f000002.0x8000000282800000.0x3c1400000 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x26f000002.0x800000076f000002.0x141400000.0x80000003c1400000 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x800000026f000002.0x3b7800001.0x8000000141400000.0x40155555 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x137800001.0x80000003b7800001.0x156aaaab.0x8000000040155555 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000137800001.0x3f6eeeef.0x80000000156aaaab.0x26733333 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x14c44444.0x800000003f6eeeef.0xcd9999a.0x8000000026733333 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000014c44444.0x260f5c29.0x800000000cd9999a.0x20 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc75c28f.0x80000000260f5c29.0xb.0x8000000000000020 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x800000000c75c28f.0x20.0x800000000000000b.0x7ff0000000000000 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xa.0x8000000000000020.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x800000000000000a.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x2c696bb13b13b150 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x2c82e7dc32203959.0x3ff0489122448912 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x2c6945ee19101cba.0x40083870e1c3870e.0x3fd59910b5ce89b1 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x2c82b6c4ec53cdf0.0x3ff03060c183060c.0x3ff0100ab1cbdd3e.0x3ff0bb3c7a8f8ca5 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4007f98cb3060c18.0x3fd578fb5236cf35.0x4008e300d402944c.0x3fd5ca968650fbcc ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fefccaa93e2970f.0x3ff0a261c2a38369.0x3ff034df5bf8641d.0x3ff098dc400ca897 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4008a261c2a38369.0x3fd5aa3791ea8281.0x4008afdf20620e14.0x3fd5bbee3e20a05f ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff00aca51777dc3.0x3ff0803498ceb086.0x3ff029f8bc51356a.0x3ff017e817e817e8 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x40086fc4d3fab5d0.0x3fd59ba50fb77658.0x4007f00ff00ff010.0x3fd5837ed5b8c26a ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4007b1e7b1ee11ee.0x3fd563897cd66334.0x4007cc80be24a465.0x3fd578c605a5f5b3 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3feface87f558e26.0x3fefd076d6e6bf22.0x3feff00d4a421e3c.0x3feaf244ae49d9a3 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40078eb4d58a269f.0x3fd558e09a2a322c.0x40040a563c4c3727.0x3fd4336328565cb8 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fef9d1f32d5a34d.0x3feaca3d5998271b.0x3fee0c10456831c6.0x40a00000 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4003d64cb49dbef9.0x3fd4156118c0d10a.0xc0400000.0x8000000040a00000 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fedbe0ae9b82d8f.0x40400000.0x80000000c0400000.0x286400000 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbe4ccccd.0x8000000040400000.0x782800000.0x8000000286400000 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000be4ccccd.0x282800000.0x8000000782800000.0x143200000 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x76f000002.0x8000000282800000.0x3c1400000.0x8000000143200000 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x800000076f000002.0x141400000.0x80000003c1400000.0x158aaaab ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3b7800001.0x8000000141400000.0x40155555.0x80000000158aaaab ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x80000003b7800001.0x156aaaab.0x8000000040155555.0xceccccd ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3f6eeeef.0x80000000156aaaab.0x26733333.0x800000000ceccccd ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x800000003f6eeeef.0xcd9999a.0x8000000026733333.0xb ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x260f5c29.0x800000000cd9999a.0x20.0x800000000000000b ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x80000000260f5c29.0xb.0x8000000000000020.0x7ff0000000000000 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x20.0x800000000000000b.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000020.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x2c82f14cfaa11e7f ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x2c696bb13b13b150.0x4008448912244891 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x2c82e7dc32203959.0x3ff0489122448912.0x3ff018100ab1cbdd ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x2c6945ee19101cba.0x40083870e1c3870e.0x3fd59910b5ce89b1.0x4008ef6e2ff898e9 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff03060c183060c.0x3ff0100ab1cbdd3e.0x3ff0bb3c7a8f8ca5.0x3ff03cf719120270 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fd578fb5236cf35.0x4008e300d402944c.0x3fd5ca968650fbcc.0x4008bc32f4010a1c ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff0a261c2a38369.0x3ff034df5bf8641d.0x3ff098dc400ca897.0x3ff0320b07eb7fec ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fd5aa3791ea8281.0x4008afdf20620e14.0x3fd5bbee3e20a05f.0x4007fc03fc03fc04 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff0803498ceb086.0x3ff029f8bc51356a.0x3ff017e817e817e8.0x3ff007fd563897cd ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fd59ba50fb77658.0x4007f00ff00ff010.0x3fd5837ed5b8c26a.0x4007d863086af49c ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fd563897cd66334.0x4007cc80be24a465.0x3fd578c605a5f5b3.0x400414581178a3c9 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fefd076d6e6bf22.0x3feff00d4a421e3c.0x3feaf244ae49d9a3.0x3fee1b114d32f79d ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd558e09a2a322c.0x40040a563c4c3727.0x3fd4336328565cb8.0xc0a00000 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3feaca3d5998271b.0x3fee0c10456831c6.0x40a00000.0x80000000c0a00000 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fd4156118c0d10a.0xc0400000.0x8000000040a00000.0x786400000 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x40400000.0x80000000c0400000.0x286400000.0x8000000786400000 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000040400000.0x782800000.0x8000000286400000.0x3c3200000 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x282800000.0x8000000782800000.0x143200000.0x80000003c3200000 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000282800000.0x3c1400000.0x8000000143200000.0x40355555 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x141400000.0x80000003c1400000.0x158aaaab.0x8000000040355555 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000141400000.0x40155555.0x80000000158aaaab.0x26866666 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x156aaaab.0x8000000040155555.0xceccccd.0x8000000026866666 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000000156aaaab.0x26733333.0x800000000ceccccd.0x20 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xcd9999a.0x8000000026733333.0xb.0x8000000000000020 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x800000000cd9999a.0x20.0x800000000000000b.0x7ff0000000000000 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xb.0x8000000000000020.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x800000000000000b.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x2c6e302c7635b4e9 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x2c82f14cfaa11e7f.0x3ff3565bbf7efdfc ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x2c696bb13b13b150.0x4008448912244891.0x3fd9a602b724c32d ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x2c82e7dc32203959.0x3ff0489122448912.0x3ff018100ab1cbdd.0x3ff3de88862637e5 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x40083870e1c3870e.0x3fd59910b5ce89b1.0x4008ef6e2ff898e9.0x3fd9e0d22ee91a7c ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0100ab1cbdd3e.0x3ff0bb3c7a8f8ca5.0x3ff03cf719120270.0x3ff3b5b5dc99194e ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4008e300d402944c.0x3fd5ca968650fbcc.0x4008bc32f4010a1c.0x3fd9cf6a2e84b131 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff034df5bf8641d.0x3ff098dc400ca897.0x3ff0320b07eb7fec.0x3ff31c92758a758a ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4008afdf20620e14.0x3fd5bbee3e20a05f.0x4007fc03fc03fc04.0x3fd98c653e409524 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff029f8bc51356a.0x3ff017e817e817e8.0x3ff007fd563897cd.0x3ff3002e938f1a3e ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4007f00ff00ff010.0x3fd5837ed5b8c26a.0x4007d863086af49c.0x3fd97fa9a7f409f8 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4007cc80be24a465.0x3fd578c605a5f5b3.0x400414581178a3c9.0x3fd7fd408df06d7e ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3feff00d4a421e3c.0x3feaf244ae49d9a3.0x3fee1b114d32f79d.0x4cbebc20 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40040a563c4c3727.0x3fd4336328565cb8.0xc0a00000.0x800000004cbebc20 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fee0c10456831c6.0x40a00000.0x80000000c0a00000.0x2ff735940 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc0400000.0x8000000040a00000.0x786400000.0x80000002ff735940 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000c0400000.0x286400000.0x8000000786400000.0x17fb9aca0 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x782800000.0x8000000286400000.0x3c3200000.0x800000017fb9aca0 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000782800000.0x143200000.0x80000003c3200000.0x1994e960 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3c1400000.0x8000000143200000.0x40355555.0x800000001994e960 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x80000003c1400000.0x158aaaab.0x8000000040355555.0xf5958d3 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x40155555.0x80000000158aaaab.0x26866666.0x800000000f5958d3 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000040155555.0xceccccd.0x8000000026866666.0xd ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x26733333.0x800000000ceccccd.0x20.0x800000000000000d ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000026733333.0xb.0x8000000000000020.0x7ff0000000000000 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x20.0x800000000000000b.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000020.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x2c84226bc9699f65 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x2c6e302c7635b4e9.0x4009cb6e60c18306 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x2c82f14cfaa11e7f.0x3ff3565bbf7efdfc.0x3ff11b4c8b075a3c ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x2c696bb13b13b150.0x4008448912244891.0x3fd9a602b724c32d.0x400a811435c3ee89 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff0489122448912.0x3ff018100ab1cbdd.0x3ff3de88862637e5.0x3ff1428603380a1c ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fd59910b5ce89b1.0x4008ef6e2ff898e9.0x3fd9e0d22ee91a7c.0x400a4a9fc2474277 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff0bb3c7a8f8ca5.0x3ff03cf719120270.0x3ff3b5b5dc99194e.0x3ff136ea04048420 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fd5ca968650fbcc.0x4008bc32f4010a1c.0x3fd9cf6a2e84b131.0x40097e592ad52ad5 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff098dc400ca897.0x3ff0320b07eb7fec.0x3ff31c92758a758a.0x3ff10a36f05a8c7c ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fd5bbee3e20a05f.0x4007fc03fc03fc04.0x3fd98c653e409524.0x4009587a523281bc ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3ff017e817e817e8.0x3ff007fd563897cd.0x3ff3002e938f1a3e.0x3ff101b8e8938511 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fd5837ed5b8c26a.0x4007d863086af49c.0x3fd97fa9a7f409f8.0x400557c6e5e62d60 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd578c605a5f5b3.0x400414581178a3c9.0x3fd7fd408df06d7e.0xccbebc20 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3feaf244ae49d9a3.0x3fee1b114d32f79d.0x4cbebc20.0x80000000ccbebc20 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fd4336328565cb8.0xc0a00000.0x800000004cbebc20.0x7ff735940 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x40a00000.0x80000000c0a00000.0x2ff735940.0x80000007ff735940 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000040a00000.0x786400000.0x80000002ff735940.0x3ffb9aca0 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x286400000.0x8000000786400000.0x17fb9aca0.0x80000003ffb9aca0 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000286400000.0x3c3200000.0x800000017fb9aca0.0x443f940b ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x143200000.0x80000003c3200000.0x1994e960.0x80000000443f940b ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x8000000143200000.0x40355555.0x800000001994e960.0x28f2f26d ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x158aaaab.0x8000000040355555.0xf5958d3.0x8000000028f2f26d ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000000158aaaab.0x26866666.0x800000000f5958d3.0x22 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xceccccd.0x8000000026866666.0xd.0x8000000000000022 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x800000000ceccccd.0x20.0x800000000000000d.0x7ff0000000000000 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xb.0x8000000000000020.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x800000000000000b.0x7ff0000000000000.0xfff0000000000000.0x8000000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8000000000000000.0x6da92cc157b86456 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x2c84226bc9699f65.0x7ff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x2c6e302c7635b4e9.0x4009cb6e60c18306.0x7ff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x2c82f14cfaa11e7f.0x3ff3565bbf7efdfc.0x3ff11b4c8b075a3c.0x7ff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4008448912244891.0x3fd9a602b724c32d.0x400a811435c3ee89.0x7ff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff018100ab1cbdd.0x3ff3de88862637e5.0x3ff1428603380a1c.0x7ff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4008ef6e2ff898e9.0x3fd9e0d22ee91a7c.0x400a4a9fc2474277.0x7ff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff03cf719120270.0x3ff3b5b5dc99194e.0x3ff136ea04048420.0x7ff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4008bc32f4010a1c.0x3fd9cf6a2e84b131.0x40097e592ad52ad5.0x7ff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff0320b07eb7fec.0x3ff31c92758a758a.0x3ff10a36f05a8c7c.0x7ff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4007fc03fc03fc04.0x3fd98c653e409524.0x4009587a523281bc.0x7ff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3ff007fd563897cd.0x3ff3002e938f1a3e.0x3ff101b8e8938511.0x7ff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4007d863086af49c.0x3fd97fa9a7f409f8.0x400557c6e5e62d60.0x7ff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x400414581178a3c9.0x3fd7fd408df06d7e.0xccbebc20.0xbff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fee1b114d32f79d.0x4cbebc20.0x80000000ccbebc20.0x4024000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc0a00000.0x800000004cbebc20.0x7ff735940.0xc024000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000c0a00000.0x2ff735940.0x80000007ff735940.0x4014000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x786400000.0x80000002ff735940.0x3ffb9aca0.0xc014000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x8000000786400000.0x17fb9aca0.0x80000003ffb9aca0.0x3fd5555555555555 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3c3200000.0x800000017fb9aca0.0x443f940b.0xbfd5555555555555 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x80000003c3200000.0x1994e960.0x80000000443f940b.0x3fc999999999999a ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x40355555.0x800000001994e960.0x28f2f26d.0xbfc999999999999a ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000040355555.0xf5958d3.0x8000000028f2f26d.0x3e45798ee2308c3a ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x26866666.0x800000000f5958d3.0x22.0xbe45798ee2308c3a ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000026866666.0xd.0x8000000000000022.0x7ff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x20.0x800000000000000d.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000020.0x7ff0000000000000.0xfff0000000000000.0x8f00a85812f3e03a ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0x8f00a85812f3e03a.0xeda92cc157b86456 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8000000000000000.0x6da92cc157b86456.0xfff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x2c84226bc9699f65.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x2c6e302c7635b4e9.0x4009cb6e60c18306.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff3565bbf7efdfc.0x3ff11b4c8b075a3c.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fd9a602b724c32d.0x400a811435c3ee89.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff3de88862637e5.0x3ff1428603380a1c.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fd9e0d22ee91a7c.0x400a4a9fc2474277.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff3b5b5dc99194e.0x3ff136ea04048420.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fd9cf6a2e84b131.0x40097e592ad52ad5.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3ff31c92758a758a.0x3ff10a36f05a8c7c.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fd98c653e409524.0x4009587a523281bc.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3ff3002e938f1a3e.0x3ff101b8e8938511.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd97fa9a7f409f8.0x400557c6e5e62d60.0x7ff0000000000000.0xbff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fd7fd408df06d7e.0xccbebc20.0xbff0000000000000.0xc024000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4cbebc20.0x80000000ccbebc20.0x4024000000000000.0x4024000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x800000004cbebc20.0x7ff735940.0xc024000000000000.0xc014000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x2ff735940.0x80000007ff735940.0x4014000000000000.0x4014000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x80000002ff735940.0x3ffb9aca0.0xc014000000000000.0xbfd5555555555555 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x17fb9aca0.0x80000003ffb9aca0.0x3fd5555555555555.0x3fd5555555555555 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x800000017fb9aca0.0x443f940b.0xbfd5555555555555.0xbfc999999999999a ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x1994e960.0x80000000443f940b.0x3fc999999999999a.0x3fc999999999999a ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x800000001994e960.0x28f2f26d.0xbfc999999999999a.0xbe45798ee2308c3a ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xf5958d3.0x8000000028f2f26d.0x3e45798ee2308c3a.0x3e45798ee2308c3a ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x800000000f5958d3.0x22.0xbe45798ee2308c3a.0xfff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xd.0x8000000000000022.0x7ff0000000000000.0x7ff0000000000000 ++vdivd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x800000000000000d.0x7ff0000000000000.0xfff0000000000000.0xf00a85812f3e03a ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0xfff0000000000000.0xf00a85812f3e03a.0x6d7423cddfc6b6ab ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x8f00a85812f3e03a.0xeda92cc157b86456.0x7ff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x6da92cc157b86456.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x2c84226bc9699f65.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4009cb6e60c18306.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff11b4c8b075a3c.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x400a811435c3ee89.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff1428603380a1c.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x400a4a9fc2474277.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff136ea04048420.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40097e592ad52ad5.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3ff10a36f05a8c7c.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4009587a523281bc.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3ff101b8e8938511.0x7ff0000000000000.0xfff0000000000000.0x3fb999999999999a ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x400557c6e5e62d60.0x7ff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xccbebc20.0xbff0000000000000.0xc024000000000000.0xbff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x80000000ccbebc20.0x4024000000000000.0x4024000000000000.0x3fe0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x7ff735940.0xc024000000000000.0xc014000000000000.0xbfe0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x80000007ff735940.0x4014000000000000.0x4014000000000000.0x3fa1111111111111 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3ffb9aca0.0xc014000000000000.0xbfd5555555555555.0xbfa1111111111111 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x80000003ffb9aca0.0x3fd5555555555555.0x3fd5555555555555.0x3f947ae147ae147b ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x443f940b.0xbfd5555555555555.0xbfc999999999999a.0xbf947ae147ae147b ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x80000000443f940b.0x3fc999999999999a.0x3fc999999999999a.0x3e112e0be826d695 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x28f2f26d.0xbfc999999999999a.0xbe45798ee2308c3a.0xbe112e0be826d695 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8000000028f2f26d.0x3e45798ee2308c3a.0x3e45798ee2308c3a.0x7ff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x22.0xbe45798ee2308c3a.0xfff0000000000000.0xfff0000000000000 ++vdivd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8000000000000022.0x7ff0000000000000.0x7ff0000000000000.0x8ecaa6f351863390 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x7ff0000000000000.0x8ecaa6f351863390.0xed7423cddfc6b6ab ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0xf00a85812f3e03a.0x6d7423cddfc6b6ab.0xfff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8f00a85812f3e03a.0xeda92cc157b86456.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x6da92cc157b86456.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xbfb999999999999a ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x7ff0000000000000.0xbff0000000000000.0xbfb999999999999a.0xbff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xc024000000000000.0xbff0000000000000.0xbfe0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4024000000000000.0x4024000000000000.0x3fe0000000000000.0x3fe0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc024000000000000.0xc014000000000000.0xbfe0000000000000.0xbfa1111111111111 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4014000000000000.0x4014000000000000.0x3fa1111111111111.0x3fa1111111111111 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc014000000000000.0xbfd5555555555555.0xbfa1111111111111.0xbf947ae147ae147b ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fd5555555555555.0x3fd5555555555555.0x3f947ae147ae147b.0x3f947ae147ae147b ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbfd5555555555555.0xbfc999999999999a.0xbf947ae147ae147b.0xbe112e0be826d695 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3fc999999999999a.0x3fc999999999999a.0x3e112e0be826d695.0x3e112e0be826d695 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbfc999999999999a.0xbe45798ee2308c3a.0xbe112e0be826d695.0xfff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3e45798ee2308c3a.0x3e45798ee2308c3a.0x7ff0000000000000.0x7ff0000000000000 ++vdivd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbe45798ee2308c3a.0xfff0000000000000.0xfff0000000000000.0xecaa6f351863390 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0xfff0000000000000.0xecaa6f351863390.0x6d8423cddfc6b6ab ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x8ecaa6f351863390.0xed7423cddfc6b6ab.0x7ff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf00a85812f3e03a.0x6d7423cddfc6b6ab.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xeda92cc157b86456.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x3fc999999999999a ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xbfb999999999999a.0xbfc999999999999a ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xfff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0x4000000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbff0000000000000.0xc000000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc024000000000000.0xbff0000000000000.0xbfe0000000000000.0xbff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4024000000000000.0x3fe0000000000000.0x3fe0000000000000.0x3fb1111111111111 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc014000000000000.0xbfe0000000000000.0xbfa1111111111111.0xbfb1111111111111 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4014000000000000.0x3fa1111111111111.0x3fa1111111111111.0x3fa47ae147ae147b ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbfd5555555555555.0xbfa1111111111111.0xbf947ae147ae147b.0xbfa47ae147ae147b ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3fd5555555555555.0x3f947ae147ae147b.0x3f947ae147ae147b.0x3e212e0be826d695 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbfc999999999999a.0xbf947ae147ae147b.0xbe112e0be826d695.0xbe212e0be826d695 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3fc999999999999a.0x3e112e0be826d695.0x3e112e0be826d695.0x7ff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbe45798ee2308c3a.0xbe112e0be826d695.0xfff0000000000000.0xfff0000000000000 ++vdivd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3e45798ee2308c3a.0x7ff0000000000000.0x7ff0000000000000.0x8edaa6f351863390 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x7ff0000000000000.0x8edaa6f351863390.0xed8423cddfc6b6ab ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0xecaa6f351863390.0x6d8423cddfc6b6ab.0xfff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8ecaa6f351863390.0xed7423cddfc6b6ab.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x6d7423cddfc6b6ab.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xbfc999999999999a ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x3fc999999999999a.0x3fc999999999999a ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x7ff0000000000000.0xbfb999999999999a.0xbfc999999999999a.0xc000000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x4000000000000000.0x4000000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbfb999999999999a.0xbff0000000000000.0xc000000000000000.0xbff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbff0000000000000.0xbfe0000000000000.0xbff0000000000000.0xbfb1111111111111 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fe0000000000000.0x3fe0000000000000.0x3fb1111111111111.0x3fb1111111111111 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfe0000000000000.0xbfa1111111111111.0xbfb1111111111111.0xbfa47ae147ae147b ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fa1111111111111.0x3fa1111111111111.0x3fa47ae147ae147b.0x3fa47ae147ae147b ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbfa1111111111111.0xbf947ae147ae147b.0xbfa47ae147ae147b.0xbe212e0be826d695 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3f947ae147ae147b.0x3f947ae147ae147b.0x3e212e0be826d695.0x3e212e0be826d695 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbf947ae147ae147b.0xbe112e0be826d695.0xbe212e0be826d695.0xfff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3e112e0be826d695.0x3e112e0be826d695.0x7ff0000000000000.0x7ff0000000000000 ++vdivd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbe112e0be826d695.0xfff0000000000000.0xfff0000000000000.0xedaa6f351863390 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0xfff0000000000000.0xedaa6f351863390.0x6dc2e19101ca4b40 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x8edaa6f351863390.0xed8423cddfc6b6ab.0x7ff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xecaa6f351863390.0x6d8423cddfc6b6ab.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xed7423cddfc6b6ab.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x4008000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xbfc999999999999a.0xc008000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xfff0000000000000.0x3fc999999999999a.0x3fc999999999999a.0x403e000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfb999999999999a.0xbfc999999999999a.0xc000000000000000.0xc03e000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fb999999999999a.0x4000000000000000.0x4000000000000000.0x402e000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbff0000000000000.0xc000000000000000.0xbff0000000000000.0xc02e000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfe0000000000000.0xbff0000000000000.0xbfb1111111111111.0xbff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fe0000000000000.0x3fb1111111111111.0x3fb1111111111111.0x3fe3333333333333 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbfa1111111111111.0xbfb1111111111111.0xbfa47ae147ae147b.0xbfe3333333333333 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3fa1111111111111.0x3fa47ae147ae147b.0x3fa47ae147ae147b.0x3e601b2b29a4692b ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbf947ae147ae147b.0xbfa47ae147ae147b.0xbe212e0be826d695.0xbe601b2b29a4692b ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3f947ae147ae147b.0x3e212e0be826d695.0x3e212e0be826d695.0x7ff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbe112e0be826d695.0xbe212e0be826d695.0xfff0000000000000.0xfff0000000000000 ++vdivd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3e112e0be826d695.0x7ff0000000000000.0x7ff0000000000000.0x8f18fc841c6dd057 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x7ff0000000000000.0x8f18fc841c6dd057.0xedc2e19101ca4b40 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0xedaa6f351863390.0x6dc2e19101ca4b40.0xfff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8edaa6f351863390.0xed8423cddfc6b6ab.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x6d8423cddfc6b6ab.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xc008000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x4008000000000000.0x4008000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x7ff0000000000000.0xbfc999999999999a.0xc008000000000000.0xc03e000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fc999999999999a.0x3fc999999999999a.0x403e000000000000.0x403e000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbfc999999999999a.0xc000000000000000.0xc03e000000000000.0xc02e000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x4000000000000000.0x402e000000000000.0x402e000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc000000000000000.0xbff0000000000000.0xc02e000000000000.0xbff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbff0000000000000.0xbfb1111111111111.0xbff0000000000000.0xbfe3333333333333 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fb1111111111111.0x3fb1111111111111.0x3fe3333333333333.0x3fe3333333333333 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbfb1111111111111.0xbfa47ae147ae147b.0xbfe3333333333333.0xbe601b2b29a4692b ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3fa47ae147ae147b.0x3fa47ae147ae147b.0x3e601b2b29a4692b.0x3e601b2b29a4692b ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbfa47ae147ae147b.0xbe212e0be826d695.0xbe601b2b29a4692b.0xfff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3e212e0be826d695.0x3e212e0be826d695.0x7ff0000000000000.0x7ff0000000000000 ++vdivd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbe212e0be826d695.0xfff0000000000000.0xfff0000000000000.0xf18fc841c6dd057 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0xfff0000000000000.0xf18fc841c6dd057.0x6dcf77f1ada67d6b ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x8f18fc841c6dd057.0xedc2e19101ca4b40.0x7ff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xedaa6f351863390.0x6dc2e19101ca4b40.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xed8423cddfc6b6ab.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x4014000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xc008000000000000.0xc014000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xfff0000000000000.0x4008000000000000.0x4008000000000000.0x4049000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfc999999999999a.0xc008000000000000.0xc03e000000000000.0xc049000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fc999999999999a.0x403e000000000000.0x403e000000000000.0x4039000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc000000000000000.0xc03e000000000000.0xc02e000000000000.0xc039000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x402e000000000000.0x402e000000000000.0x3ffaaaaaaaaaaaab ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbff0000000000000.0xc02e000000000000.0xbff0000000000000.0xbffaaaaaaaaaaaab ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbfb1111111111111.0xbff0000000000000.0xbfe3333333333333.0xbff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3fb1111111111111.0x3fe3333333333333.0x3fe3333333333333.0x3e6ad7f29abcaf48 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbfa47ae147ae147b.0xbfe3333333333333.0xbe601b2b29a4692b.0xbe6ad7f29abcaf48 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3fa47ae147ae147b.0x3e601b2b29a4692b.0x3e601b2b29a4692b.0x7ff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbe212e0be826d695.0xbe601b2b29a4692b.0xfff0000000000000.0xfff0000000000000 ++vdivd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3e212e0be826d695.0x7ff0000000000000.0x7ff0000000000000.0x8f24d26e17b0d848 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x7ff0000000000000.0x8f24d26e17b0d848.0xedcf77f1ada67d6b ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0xf18fc841c6dd057.0x6dcf77f1ada67d6b.0xfff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8f18fc841c6dd057.0xedc2e19101ca4b40.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x6dc2e19101ca4b40.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xc014000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x4014000000000000.0x4014000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x7ff0000000000000.0xc008000000000000.0xc014000000000000.0xc049000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4008000000000000.0x4008000000000000.0x4049000000000000.0x4049000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc008000000000000.0xc03e000000000000.0xc049000000000000.0xc039000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x403e000000000000.0x403e000000000000.0x4039000000000000.0x4039000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc03e000000000000.0xc02e000000000000.0xc039000000000000.0xbffaaaaaaaaaaaab ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x402e000000000000.0x402e000000000000.0x3ffaaaaaaaaaaaab.0x3ffaaaaaaaaaaaab ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc02e000000000000.0xbff0000000000000.0xbffaaaaaaaaaaaab.0xbff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbff0000000000000.0xbfe3333333333333.0xbff0000000000000.0xbe6ad7f29abcaf48 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3fe3333333333333.0x3fe3333333333333.0x3e6ad7f29abcaf48.0x3e6ad7f29abcaf48 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbfe3333333333333.0xbe601b2b29a4692b.0xbe6ad7f29abcaf48.0xfff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3e601b2b29a4692b.0x3e601b2b29a4692b.0x7ff0000000000000.0x7ff0000000000000 ++vdivd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbe601b2b29a4692b.0xfff0000000000000.0xfff0000000000000.0xf24d26e17b0d848 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0xfff0000000000000.0xf24d26e17b0d848.0x6f52c1b782af70d8 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x8f24d26e17b0d848.0xedcf77f1ada67d6b.0x7ff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf18fc841c6dd057.0x6dcf77f1ada67d6b.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xedc2e19101ca4b40.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x4197d78400000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xc014000000000000.0xc197d78400000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xfff0000000000000.0x4014000000000000.0x4014000000000000.0x41cdcd6500000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc008000000000000.0xc014000000000000.0xc049000000000000.0xc1cdcd6500000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4008000000000000.0x4049000000000000.0x4049000000000000.0x41bdcd6500000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc03e000000000000.0xc049000000000000.0xc039000000000000.0xc1bdcd6500000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x403e000000000000.0x4039000000000000.0x4039000000000000.0x417fca0555555555 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc02e000000000000.0xc039000000000000.0xbffaaaaaaaaaaaab.0xc17fca0555555555 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x402e000000000000.0x3ffaaaaaaaaaaaab.0x3ffaaaaaaaaaaaab.0x417312d000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbff0000000000000.0xbffaaaaaaaaaaaab.0xbff0000000000000.0xc17312d000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbfe3333333333333.0xbff0000000000000.0xbe6ad7f29abcaf48.0xbff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3fe3333333333333.0x3e6ad7f29abcaf48.0x3e6ad7f29abcaf48.0x7ff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbe601b2b29a4692b.0xbe6ad7f29abcaf48.0xfff0000000000000.0xfff0000000000000 ++vdivd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3e601b2b29a4692b.0x7ff0000000000000.0x7ff0000000000000.0x90a8d25e2793dbc4 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x7ff0000000000000.0x90a8d25e2793dbc4.0xef52c1b782af70d8 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0xf24d26e17b0d848.0x6f52c1b782af70d8.0xfff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8f24d26e17b0d848.0xedcf77f1ada67d6b.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x6dcf77f1ada67d6b.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x7ff0000000000000.0xc197d78400000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x4197d78400000000.0x4197d78400000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x7ff0000000000000.0xc014000000000000.0xc197d78400000000.0xc1cdcd6500000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4014000000000000.0x4014000000000000.0x41cdcd6500000000.0x41cdcd6500000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc014000000000000.0xc049000000000000.0xc1cdcd6500000000.0xc1bdcd6500000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4049000000000000.0x4049000000000000.0x41bdcd6500000000.0x41bdcd6500000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc049000000000000.0xc039000000000000.0xc1bdcd6500000000.0xc17fca0555555555 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4039000000000000.0x4039000000000000.0x417fca0555555555.0x417fca0555555555 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc039000000000000.0xbffaaaaaaaaaaaab.0xc17fca0555555555.0xc17312d000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3ffaaaaaaaaaaaab.0x3ffaaaaaaaaaaaab.0x417312d000000000.0x417312d000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbffaaaaaaaaaaaab.0xbff0000000000000.0xc17312d000000000.0xbff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbff0000000000000.0xbe6ad7f29abcaf48.0xbff0000000000000.0xfff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3e6ad7f29abcaf48.0x3e6ad7f29abcaf48.0x7ff0000000000000.0x7ff0000000000000 ++vdivd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbe6ad7f29abcaf48.0xfff0000000000000.0xfff0000000000000.0x10a8d25e2793dbc4 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0xfff0000000000000.0x10a8d25e2793dbc4.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x90a8d25e2793dbc4.0xef52c1b782af70d8.0xfff8000000000000 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf24d26e17b0d848.0x6f52c1b782af70d8.0xfff0000000000000.0xfff8000000000000 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xedcf77f1ada67d6b.0x7ff0000000000000.0xfff0000000000000.0xfff8000000000000 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xfff0000000000000.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xfff0000000000000.0x7ff0000000000000.0xc197d78400000000.0x8000000000000000 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xfff0000000000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc014000000000000.0xc197d78400000000.0xc1cdcd6500000000.0x8000000000000000 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4014000000000000.0x41cdcd6500000000.0x41cdcd6500000000.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc049000000000000.0xc1cdcd6500000000.0xc1bdcd6500000000.0x8000000000000000 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4049000000000000.0x41bdcd6500000000.0x41bdcd6500000000.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc039000000000000.0xc1bdcd6500000000.0xc17fca0555555555.0x8000000000000000 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4039000000000000.0x417fca0555555555.0x417fca0555555555.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbffaaaaaaaaaaaab.0xc17fca0555555555.0xc17312d000000000.0x8000000000000000 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3ffaaaaaaaaaaaab.0x417312d000000000.0x417312d000000000.0x0 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbff0000000000000.0xc17312d000000000.0xbff0000000000000.0x8000000000000000 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3ff0000000000000.0x3ff0000000000000.0x3ff0000000000000.0xfff8000000000000 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbe6ad7f29abcaf48.0xbff0000000000000.0xfff0000000000000.0xfff8000000000000 ++vdivd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3e6ad7f29abcaf48.0x7ff0000000000000.0x7ff0000000000000.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x7ff0000000000000.0x8000000000000000.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x10a8d25e2793dbc4.0x0.0xfff8000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x90a8d25e2793dbc4.0xef52c1b782af70d8.0xfff8000000000000.0xfff8000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x6f52c1b782af70d8.0xfff0000000000000.0xfff8000000000000.0xfff8000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x0 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x7ff0000000000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc197d78400000000.0xc1cdcd6500000000.0x8000000000000000.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x41cdcd6500000000.0x41cdcd6500000000.0x0.0x0 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc1cdcd6500000000.0xc1bdcd6500000000.0x8000000000000000.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x41bdcd6500000000.0x41bdcd6500000000.0x0.0x0 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1bdcd6500000000.0xc17fca0555555555.0x8000000000000000.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x417fca0555555555.0x417fca0555555555.0x0.0x0 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc17fca0555555555.0xc17312d000000000.0x8000000000000000.0x8000000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x417312d000000000.0x417312d000000000.0x0.0x0 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc17312d000000000.0xbff0000000000000.0x8000000000000000.0xfff8000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3ff0000000000000.0x3ff0000000000000.0xfff8000000000000.0xfff8000000000000 ++vdivd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbff0000000000000.0xfff0000000000000.0xfff8000000000000.0x0 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0xfff8000000000000.0x0.0xfff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x8000000000000000.0x8000000000000000.0xfff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x10a8d25e2793dbc4.0x0.0xfff8000000000000.0xfff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xef52c1b782af70d8.0xfff8000000000000.0xfff8000000000000.0xfff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xfff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xfff0000000000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xfff0000000000000.0x0.0x8000000000000000.0x70debc9a78563412 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xfff0000000000000.0x0.0x0.0xf11335e08b35e08b ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0x711335e08b35e08b ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4197d78400000000.0x0.0x0.0xf10335e08b35e08b ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc1cdcd6500000000.0x8000000000000000.0x8000000000000000.0x710335e08b35e08b ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x41cdcd6500000000.0x0.0x0.0xf0c47dbc5039780c ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc1bdcd6500000000.0x8000000000000000.0x8000000000000000.0x70c47dbc5039780c ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41bdcd6500000000.0x0.0x0.0xf0b896e1f9de900e ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc17fca0555555555.0x8000000000000000.0x8000000000000000.0x70b896e1f9de900e ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x417fca0555555555.0x0.0x0.0xef34a087c53fb2aa ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc17312d000000000.0x8000000000000000.0x8000000000000000.0x6f34a087c53fb2aa ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x417312d000000000.0x0.0x0.0xfff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbff0000000000000.0x8000000000000000.0xfff8000000000000.0x7ff0000000000000 ++vdivd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3ff0000000000000.0xfff8000000000000.0xfff8000000000000.0x3ff0000000000000 ++=== Running test on vsqrts=== ++vsqrts 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xfff8000000000000.0x0 ++vsqrts 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xfff8000000000000.0x0.0x0 ++vsqrts 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff8000000000000.0x0.0x0.0x0 ++vsqrts 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3d1209f9e0000000.0x3b46a09e60000000.0x3b594c5840000000.0x3b46a09e60000000 ++vsqrts 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3b46a09e60000000.0x3b594c5840000000.0x3b46a09e60000000.0x3b594c5840000000 ++vsqrts 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3b594c5840000000.0x3b46a09e60000000.0x3b594c5840000000.0x3b46a09e60000000 ++vsqrts 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3b46a09e60000000.0x3b594c5840000000.0x3b46a09e60000000.0x3b594c5840000000 ++vsqrts 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3b594c5840000000.0x3b46a09e60000000.0x3b594c5840000000.0x3b50000000000000 ++vsqrts 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3b46a09e60000000.0x3b594c5840000000.0x3b50000000000000.0x3b5bb67ae0000000 ++vsqrts 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3b594c5840000000.0x3b50000000000000.0x3b5bb67ae0000000.0x3b50000000000000 ++vsqrts 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3b50000000000000.0x3b5bb67ae0000000.0x3b50000000000000.0x3b5bb67ae0000000 ++vsqrts 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3b5bb67ae0000000.0x3b50000000000000.0x3b5bb67ae0000000.0x3b50000000000000 ++vsqrts 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3b50000000000000.0x3b5bb67ae0000000.0x3b50000000000000.0x3b5bb67ae0000000 ++vsqrts 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3b5bb67ae0000000.0x3b50000000000000.0x3b5bb67ae0000000.0x3ff0000000000000 ++vsqrts 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3b50000000000000.0x3b5bb67ae0000000.0x3ff0000000000000.0xfff8000000000000 ++vsqrts 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3b5bb67ae0000000.0x3ff0000000000000.0xfff8000000000000.0x3fd43d1360000000 ++vsqrts 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xfff8000000000000.0x3fd43d1360000000.0xfff8000000000000 ++vsqrts 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xfff8000000000000.0x3fd43d1360000000.0xfff8000000000000.0x3fdc9f25c0000000 ++vsqrts 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fd43d1360000000.0xfff8000000000000.0x3fdc9f25c0000000.0xfff8000000000000 ++vsqrts 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xfff8000000000000.0x3fdc9f25c0000000.0xfff8000000000000.0x3ffbb67ae0000000 ++vsqrts 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fdc9f25c0000000.0xfff8000000000000.0x3ffbb67ae0000000.0xfff8000000000000 ++vsqrts 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xfff8000000000000.0x3ffbb67ae0000000.0xfff8000000000000.0x4001e377a0000000 ++vsqrts 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3ffbb67ae0000000.0xfff8000000000000.0x4001e377a0000000.0xfff8000000000000 ++vsqrts 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xfff8000000000000.0x4001e377a0000000.0xfff8000000000000.0x40c3880000000000 ++vsqrts 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4001e377a0000000.0xfff8000000000000.0x40c3880000000000.0xfff8000000000000 ++vsqrts 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xfff8000000000000.0x40c3880000000000.0xfff8000000000000.0x0 ++vsqrts 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x40c3880000000000.0xfff8000000000000.0x0.0x8000000000000000 ++vsqrts 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xfff8000000000000.0x0.0x8000000000000000.0xfff8000000000000 ++=== Running test on vsqrtd=== ++vsqrtd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xfff8000000000000.0x291209f9f2cc09c1 ++vsqrtd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xfff8000000000000.0x291209f9f2cc09c1.0x0 ++vsqrtd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff8000000000000.0x291209f9f2cc09c1.0x0.0x0 ++vsqrtd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x291209f9f2cc09c1.0x0.0x0.0x0 ++vsqrtd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x1f4fdfefefebe3d6.0x1f5bad3c8a0ea6d6.0x1f4f71f7ffbdda69.0x1f5b8db7b105a6eb ++vsqrtd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x1f5bad3c8a0ea6d6.0x1f4f71f7ffbdda69.0x1f5b8db7b105a6eb.0x1f4f9277bdfd0d24 ++vsqrtd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x1f4f71f7ffbdda69.0x1f5b8db7b105a6eb.0x1f4f9277bdfd0d24.0x1f5b97009eae7a40 ++vsqrtd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x1f5b8db7b105a6eb.0x1f4f9277bdfd0d24.0x1f5b97009eae7a40.0x1f5007fe00ff6070 ++vsqrtd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x1f4f9277bdfd0d24.0x1f5b97009eae7a40.0x1f5007fe00ff6070.0x1f5bbb18efb147fc ++vsqrtd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x1f5b97009eae7a40.0x1f5007fe00ff6070.0x1f5bbb18efb147fc.0x1f5013f38f87c06a ++vsqrtd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x1f5007fe00ff6070.0x1f5bbb18efb147fc.0x1f5013f38f87c06a.0x1f5bc2048a0cbe05 ++vsqrtd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x1f5bbb18efb147fc.0x1f5013f38f87c06a.0x1f5bc2048a0cbe05.0x1f51855683b41030 ++vsqrtd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x1f5013f38f87c06a.0x1f5bc2048a0cbe05.0x1f51855683b41030.0x1f5c9e2a2698c368 ++vsqrtd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x1f5bc2048a0cbe05.0x1f51855683b41030.0x1f5c9e2a2698c368.0x3ff0000000000000 ++vsqrtd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x1f51855683b41030.0x1f5c9e2a2698c368.0x3ff0000000000000.0xfff8000000000000 ++vsqrtd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x1f5c9e2a2698c368.0x3ff0000000000000.0xfff8000000000000.0x3fd43d136248490f ++vsqrtd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xfff8000000000000.0x3fd43d136248490f.0xfff8000000000000 ++vsqrtd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xfff8000000000000.0x3fd43d136248490f.0xfff8000000000000.0x3fdc9f25c5bfedd9 ++vsqrtd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fd43d136248490f.0xfff8000000000000.0x3fdc9f25c5bfedd9.0xfff8000000000000 ++vsqrtd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xfff8000000000000.0x3fdc9f25c5bfedd9.0xfff8000000000000.0x3ffbb67ae8584caa ++vsqrtd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fdc9f25c5bfedd9.0xfff8000000000000.0x3ffbb67ae8584caa.0xfff8000000000000 ++vsqrtd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xfff8000000000000.0x3ffbb67ae8584caa.0xfff8000000000000.0x4001e3779b97f4a8 ++vsqrtd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3ffbb67ae8584caa.0xfff8000000000000.0x4001e3779b97f4a8.0xfff8000000000000 ++vsqrtd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xfff8000000000000.0x4001e3779b97f4a8.0xfff8000000000000.0x40c3880000000000 ++vsqrtd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4001e3779b97f4a8.0xfff8000000000000.0x40c3880000000000.0xfff8000000000000 ++vsqrtd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xfff8000000000000.0x40c3880000000000.0xfff8000000000000.0x0 ++vsqrtd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x40c3880000000000.0xfff8000000000000.0x0.0x8000000000000000 ++vsqrtd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xfff8000000000000.0x0.0x8000000000000000.0xfff8000000000000 ++=== Running test on vfcmpeq=== ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x4000000000000000.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x4000000000000000 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmpeq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x4000000000000000 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmpeq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmpeq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmpeq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++=== Running test on vfcmple=== ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmple 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++=== Running test on vfcmplt=== ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmplt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x0.0x0.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x0 ++vfcmplt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x4000000000000000.0x0 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x4000000000000000.0x4000000000000000.0x0 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmplt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x4000000000000000.0x0.0x0 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4000000000000000.0x4000000000000000.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000000.0x0.0x4000000000000000.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000000.0x4000000000000000.0x0.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4000000000000000.0x0.0x0.0x4000000000000000 ++vfcmplt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++=== Running test on vfcmpun=== ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x0.0x0.0x0.0x0 ++vfcmpun 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x0.0x0 ++=== Running test on vcpys=== ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x923456789abcdef0.0x3f800000 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x800000003f800000.0xbf800000 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x800000003f800000.0x80000000bf800000.0x3dcccccd ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x800000003dcccccd.0xbdcccccd ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0x80000000bdcccccd.0x3e4ccccd ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0xbe4ccccd ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x40400000 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x8000000040400000.0xc0400000 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0x80000000c0400000.0x40a00000 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x8000000040a00000.0xc0a00000 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0x80000000c0a00000.0x4cbebc20 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x800000004cbebc20.0xccbebc20 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0x80000000ccbebc20.0x3ff0000000000000 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0xc008000000000000.0x4008000000000000 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0xc008000000000000.0x4014000000000000 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0xc014000000000000.0x4014000000000000 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0xc197d78400000000.0x4197d78400000000 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0xc197d78400000000.0x0 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000000000000.0x0 ++vcpys 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x8000000000000000.0x70debc9a78563412 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x70debc9a78563412.0x123456789abcdef0 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x3f800000.0xbf800000 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0xbf800000.0x3dcccccd ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x3dcccccd.0xbdcccccd ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0xbdcccccd.0x3e4ccccd ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0xbe4ccccd.0x40400000 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x40400000.0xc0400000 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0xc0400000.0x40a00000 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x40a00000.0xc0a00000 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0xc0a00000.0x4cbebc20 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x4cbebc20.0xccbebc20 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0x3fb999999999999a ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0x3fc999999999999a ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0x4008000000000000 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0x4008000000000000.0x4008000000000000 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0x4008000000000000.0x4014000000000000 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0x4014000000000000.0x4014000000000000 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0x4014000000000000.0x4197d78400000000 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0x4197d78400000000.0x4197d78400000000 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x0.0x0 ++vcpys 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x0.0x70debc9a78563412 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0x70debc9a78563412.0x123456789abcdef0 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0x4008000000000000.0x4008000000000000 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0x4008000000000000.0x4014000000000000 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0x4014000000000000.0x4014000000000000 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0x4014000000000000.0x4197d78400000000 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0x4197d78400000000.0x4197d78400000000 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x0 ++vcpys 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x0.0x70debc9a78563412 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x123456789abcdef0 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000.0x4008000000000000 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0x4008000000000000.0x4014000000000000 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x4014000000000000.0x4014000000000000 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0x4014000000000000.0x4197d78400000000 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x4197d78400000000.0x4197d78400000000 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vcpys 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x123456789abcdef0 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000.0x4008000000000000 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0x4008000000000000.0x4014000000000000 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x4014000000000000.0x4014000000000000 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0x4014000000000000.0x4197d78400000000 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x4197d78400000000.0x4197d78400000000 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vcpys 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x123456789abcdef0 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000.0x4008000000000000 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0x4008000000000000.0x4014000000000000 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x4014000000000000.0x4014000000000000 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0x4014000000000000.0x4197d78400000000 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x4197d78400000000.0x4197d78400000000 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vcpys 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x123456789abcdef0 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000.0x4008000000000000 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0x4008000000000000.0x4014000000000000 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x4014000000000000.0x4014000000000000 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0x4014000000000000.0x4197d78400000000 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x4197d78400000000.0x4197d78400000000 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vcpys 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x123456789abcdef0 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000.0x4008000000000000 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0x4008000000000000.0x4014000000000000 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x4014000000000000.0x4014000000000000 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0x4014000000000000.0x4197d78400000000 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x4197d78400000000.0x4197d78400000000 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vcpys 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x123456789abcdef0 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000.0x4008000000000000 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0x4008000000000000.0x4014000000000000 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x4014000000000000.0x4014000000000000 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0x4014000000000000.0x4197d78400000000 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x4197d78400000000.0x4197d78400000000 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vcpys 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x123456789abcdef0 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000.0x4008000000000000 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0x4008000000000000.0x4014000000000000 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x4014000000000000.0x4014000000000000 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0x4014000000000000.0x4197d78400000000 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x4197d78400000000.0x4197d78400000000 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vcpys 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x123456789abcdef0 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000.0x4008000000000000 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0x4008000000000000.0x4014000000000000 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x4014000000000000.0x4014000000000000 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0x4014000000000000.0x4197d78400000000 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x4197d78400000000.0x4197d78400000000 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vcpys 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x123456789abcdef0 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000.0x4008000000000000 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0x4008000000000000.0x4014000000000000 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x4014000000000000.0x4014000000000000 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0x4014000000000000.0x4197d78400000000 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x4197d78400000000.0x4197d78400000000 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vcpys 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x123456789abcdef0 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000.0x4008000000000000 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0x4008000000000000.0x4014000000000000 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x4014000000000000.0x4014000000000000 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0x4014000000000000.0x4197d78400000000 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x4197d78400000000.0x4197d78400000000 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vcpys 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x123456789abcdef0 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000.0x4008000000000000 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0x4008000000000000.0x4014000000000000 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x4014000000000000.0x4014000000000000 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0x4014000000000000.0x4197d78400000000 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x4197d78400000000.0x4197d78400000000 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0x4197d78400000000.0x0 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x0 ++vcpys 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x923456789abcdef0 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x123456789abcdef0.0x800000003f800000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x123456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x800000003dcccccd ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0x80000000bdcccccd ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0x80000000c0400000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x8000000040a00000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0x80000000c0a00000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x800000004cbebc20 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0xbff0000000000000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0x4008000000000000.0xc014000000000000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x4014000000000000.0xc014000000000000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0x4014000000000000.0xc197d78400000000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0x4197d78400000000.0x8000000000000000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x8000000000000000 ++vcpys 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0xf0debc9a78563412 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x923456789abcdef0.0x3f800000 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x123456789abcdef0.0x800000003f800000.0xbf800000 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0x80000000bf800000.0x3dcccccd ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x800000003dcccccd.0xbdcccccd ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0x80000000be4ccccd.0x40400000 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x8000000040400000.0xc0400000 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0x80000000c0400000.0x40a00000 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x8000000040a00000.0xc0a00000 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0x80000000c0a00000.0x4cbebc20 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x800000004cbebc20.0xccbebc20 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vcpys 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x8000000000000000.0x70debc9a78563412 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x800000003f800000.0xbf800000.0x800000003dcccccd ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x40400000.0x80000000c0400000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0xc0400000.0x8000000040a00000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x40a00000.0x80000000c0a00000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0xc0a00000.0x800000004cbebc20 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0xccbebc20.0xbff0000000000000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vcpys 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0xf0debc9a78563412 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0.0x3f800000 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000.0xbf800000 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3f800000.0x80000000bf800000.0x3dcccccd ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xbf800000.0x800000003dcccccd.0xbdcccccd ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd.0x40400000 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000.0xc0400000 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x40400000.0x80000000c0400000.0x40a00000 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xc0400000.0x8000000040a00000.0xc0a00000 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x40a00000.0x80000000c0a00000.0x4cbebc20 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xc0a00000.0x800000004cbebc20.0xccbebc20 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vcpys 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0x70debc9a78563412 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x800000003f800000.0xbf800000.0x800000003dcccccd ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x40400000.0x80000000c0400000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0xc0400000.0x8000000040a00000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x40a00000.0x80000000c0a00000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0xc0a00000.0x800000004cbebc20 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0xccbebc20.0xbff0000000000000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vcpys 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0xf0debc9a78563412 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0.0x3f800000 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000.0xbf800000 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3f800000.0x80000000bf800000.0x3dcccccd ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xbf800000.0x800000003dcccccd.0xbdcccccd ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd.0x40400000 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000.0xc0400000 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x40400000.0x80000000c0400000.0x40a00000 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xc0400000.0x8000000040a00000.0xc0a00000 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x40a00000.0x80000000c0a00000.0x4cbebc20 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xc0a00000.0x800000004cbebc20.0xccbebc20 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vcpys 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0x70debc9a78563412 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x800000003f800000.0xbf800000.0x800000003dcccccd ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x40400000.0x80000000c0400000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0xc0400000.0x8000000040a00000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x40a00000.0x80000000c0a00000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0xc0a00000.0x800000004cbebc20 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0xccbebc20.0xbff0000000000000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vcpys 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0xf0debc9a78563412 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0.0x3f800000 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000.0xbf800000 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3f800000.0x80000000bf800000.0x3dcccccd ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xbf800000.0x800000003dcccccd.0xbdcccccd ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd.0x40400000 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000.0xc0400000 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x40400000.0x80000000c0400000.0x40a00000 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xc0400000.0x8000000040a00000.0xc0a00000 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x40a00000.0x80000000c0a00000.0x4cbebc20 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xc0a00000.0x800000004cbebc20.0xccbebc20 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vcpys 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0x70debc9a78563412 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x800000003f800000.0xbf800000.0x800000003dcccccd ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x40400000.0x80000000c0400000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0xc0400000.0x8000000040a00000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x40a00000.0x80000000c0a00000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0xc0a00000.0x800000004cbebc20 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0xccbebc20.0xbff0000000000000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vcpys 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0xf0debc9a78563412 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0.0x3f800000 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000.0xbf800000 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3f800000.0x80000000bf800000.0x3dcccccd ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xbf800000.0x800000003dcccccd.0xbdcccccd ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd.0x40400000 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000.0xc0400000 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x40400000.0x80000000c0400000.0x40a00000 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xc0400000.0x8000000040a00000.0xc0a00000 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x40a00000.0x80000000c0a00000.0x4cbebc20 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xc0a00000.0x800000004cbebc20.0xccbebc20 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vcpys 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0x70debc9a78563412 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x800000003f800000.0xbf800000.0x800000003dcccccd ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x40400000.0x80000000c0400000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0xc0400000.0x8000000040a00000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x40a00000.0x80000000c0a00000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0xc0a00000.0x800000004cbebc20 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0xccbebc20.0xbff0000000000000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vcpys 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0xf0debc9a78563412 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0.0x3f800000 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000.0xbf800000 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3f800000.0x80000000bf800000.0x3dcccccd ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xbf800000.0x800000003dcccccd.0xbdcccccd ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd.0x40400000 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000.0xc0400000 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x40400000.0x80000000c0400000.0x40a00000 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xc0400000.0x8000000040a00000.0xc0a00000 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x40a00000.0x80000000c0a00000.0x4cbebc20 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xc0a00000.0x800000004cbebc20.0xccbebc20 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vcpys 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0x70debc9a78563412 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x800000003f800000.0xbf800000.0x800000003dcccccd ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x40400000.0x80000000c0400000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0xc0400000.0x8000000040a00000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x40a00000.0x80000000c0a00000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0xc0a00000.0x800000004cbebc20 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0xccbebc20.0xbff0000000000000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vcpys 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0xf0debc9a78563412 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xf0debc9a78563412.0x923456789abcdef0 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3f800000.0x80000000bf800000.0x800000003dcccccd ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xbf800000.0x800000003dcccccd.0x80000000bdcccccd ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000.0x80000000c0400000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x40400000.0x80000000c0400000.0x8000000040a00000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xc0400000.0x8000000040a00000.0x80000000c0a00000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x40a00000.0x80000000c0a00000.0x800000004cbebc20 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xc0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xccbebc20.0xbff0000000000000.0xbff0000000000000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0xbfb999999999999a ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0xc008000000000000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0xc014000000000000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0xc014000000000000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0xc197d78400000000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0xc197d78400000000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000000000000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x8000000000000000 ++vcpys 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++=== Running test on vcpyse=== ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x800ebc9a78563412.0xf0d456789abcdef0.0x123000003f800000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xebc9a78563412.0x800456789abcdef0.0xf0d000003f800000.0x12300000bf800000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x456789abcdef0.0x800000003f800000.0xf0d00000bf800000.0x123000003dcccccd ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0xf0d000003dcccccd.0x12300000bdcccccd ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0xf0d00000bdcccccd.0x123000003e4ccccd ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0xf0d000003e4ccccd.0x12300000be4ccccd ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0xf0d00000be4ccccd.0x1230000040400000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0xf0d0000040400000.0x12300000c0400000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0xf0d00000c0400000.0x1230000040a00000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0xf0d0000040a00000.0x12300000c0a00000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0xf0d00000c0a00000.0x123000004cbebc20 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0xf0d000004cbebc20.0x12300000ccbebc20 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0xf0d00000ccbebc20.0x1230000000000000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0xf0d0000000000000.0x1230000000000000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x8000000000000000.0xf0d0000000000000.0x123999999999999a ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x8000000000000000.0xf0d999999999999a.0x123999999999999a ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x800999999999999a.0xf0d999999999999a.0x123999999999999a ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x999999999999a.0x800999999999999a.0xf0d999999999999a.0x123999999999999a ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x999999999999a.0x800999999999999a.0xf0d999999999999a.0x1238000000000000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x999999999999a.0x800999999999999a.0xf0d8000000000000.0x1238000000000000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x999999999999a.0x8008000000000000.0xf0d8000000000000.0x1234000000000000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000.0x8008000000000000.0xf0d4000000000000.0x1234000000000000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000.0x8004000000000000.0xf0d4000000000000.0x1237d78400000000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000.0x8004000000000000.0xf0d7d78400000000.0x1237d78400000000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000.0x8007d78400000000.0xf0d7d78400000000.0x1230000000000000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7d78400000000.0x8007d78400000000.0xf0d0000000000000.0x1230000000000000 ++vcpyse 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7d78400000000.0x8000000000000000.0xf0d0000000000000.0x123ebc9a78563412 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0xf0d0000000000000.0x123ebc9a78563412.0x456789abcdef0 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x800ebc9a78563412.0xf0d456789abcdef0.0x123000003f800000.0xbf800000 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x800456789abcdef0.0xf0d000003f800000.0x12300000bf800000.0x3dcccccd ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xf0d00000bf800000.0x123000003dcccccd.0xbdcccccd ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0xf0d000003dcccccd.0x12300000bdcccccd.0x3e4ccccd ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xf0d00000bdcccccd.0x123000003e4ccccd.0xbe4ccccd ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0xf0d000003e4ccccd.0x12300000be4ccccd.0x40400000 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xf0d00000be4ccccd.0x1230000040400000.0xc0400000 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0xf0d0000040400000.0x12300000c0400000.0x40a00000 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xf0d00000c0400000.0x1230000040a00000.0xc0a00000 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0xf0d0000040a00000.0x12300000c0a00000.0x4cbebc20 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xf0d00000c0a00000.0x123000004cbebc20.0xccbebc20 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0xf0d000004cbebc20.0x12300000ccbebc20.0x0 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xf0d00000ccbebc20.0x1230000000000000.0x0 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xf0d0000000000000.0x1230000000000000.0x999999999999a ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x8000000000000000.0xf0d0000000000000.0x123999999999999a.0x999999999999a ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x8000000000000000.0xf0d999999999999a.0x123999999999999a.0x999999999999a ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x800999999999999a.0xf0d999999999999a.0x123999999999999a.0x999999999999a ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x800999999999999a.0xf0d999999999999a.0x123999999999999a.0x8000000000000 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x800999999999999a.0xf0d999999999999a.0x1238000000000000.0x8000000000000 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x800999999999999a.0xf0d8000000000000.0x1238000000000000.0x4000000000000 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8008000000000000.0xf0d8000000000000.0x1234000000000000.0x4000000000000 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8008000000000000.0xf0d4000000000000.0x1234000000000000.0x7d78400000000 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x8004000000000000.0xf0d4000000000000.0x1237d78400000000.0x7d78400000000 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x8004000000000000.0xf0d7d78400000000.0x1237d78400000000.0x0 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x8007d78400000000.0xf0d7d78400000000.0x1230000000000000.0x0 ++vcpyse 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x8007d78400000000.0xf0d0000000000000.0x1230000000000000.0xebc9a78563412 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xf0d0000000000000.0x1230000000000000.0xebc9a78563412.0x456789abcdef0 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xf0d0000000000000.0x123ebc9a78563412.0x456789abcdef0.0x3f800000 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xf0d456789abcdef0.0x123000003f800000.0xbf800000.0x3dcccccd ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xf0d000003f800000.0x12300000bf800000.0x3dcccccd.0xbdcccccd ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xf0d00000bf800000.0x123000003dcccccd.0xbdcccccd.0x3e4ccccd ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xf0d000003dcccccd.0x12300000bdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xf0d00000bdcccccd.0x123000003e4ccccd.0xbe4ccccd.0x40400000 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xf0d000003e4ccccd.0x12300000be4ccccd.0x40400000.0xc0400000 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xf0d00000be4ccccd.0x1230000040400000.0xc0400000.0x40a00000 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xf0d0000040400000.0x12300000c0400000.0x40a00000.0xc0a00000 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xf0d00000c0400000.0x1230000040a00000.0xc0a00000.0x4cbebc20 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xf0d0000040a00000.0x12300000c0a00000.0x4cbebc20.0xccbebc20 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xf0d00000c0a00000.0x123000004cbebc20.0xccbebc20.0x0 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xf0d000004cbebc20.0x12300000ccbebc20.0x0.0x0 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xf0d00000ccbebc20.0x1230000000000000.0x0.0x999999999999a ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xf0d0000000000000.0x1230000000000000.0x999999999999a.0x999999999999a ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xf0d0000000000000.0x123999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xf0d999999999999a.0x123999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xf0d999999999999a.0x123999999999999a.0x999999999999a.0x8000000000000 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xf0d999999999999a.0x123999999999999a.0x8000000000000.0x8000000000000 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xf0d999999999999a.0x1238000000000000.0x8000000000000.0x4000000000000 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xf0d8000000000000.0x1238000000000000.0x4000000000000.0x4000000000000 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xf0d8000000000000.0x1234000000000000.0x4000000000000.0x7d78400000000 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xf0d4000000000000.0x1234000000000000.0x7d78400000000.0x7d78400000000 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xf0d4000000000000.0x1237d78400000000.0x7d78400000000.0x0 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xf0d7d78400000000.0x1237d78400000000.0x0.0x0 ++vcpyse 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xf0d7d78400000000.0x1230000000000000.0x0.0xebc9a78563412 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x1230000000000000.0x0.0xebc9a78563412.0x456789abcdef0 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x1230000000000000.0xebc9a78563412.0x456789abcdef0.0x3f800000 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x123ebc9a78563412.0x456789abcdef0.0x3f800000.0xbf800000 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x123000003f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x12300000bf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x123000003dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x12300000bdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x123000003e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x12300000be4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x1230000040400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x12300000c0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x1230000040a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x12300000c0a00000.0x4cbebc20.0xccbebc20.0x0 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x123000004cbebc20.0xccbebc20.0x0.0x0 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x12300000ccbebc20.0x0.0x0.0x999999999999a ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x1230000000000000.0x0.0x999999999999a.0x999999999999a ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x1230000000000000.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x123999999999999a.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x123999999999999a.0x999999999999a.0x999999999999a.0x8000000000000 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x123999999999999a.0x999999999999a.0x8000000000000.0x8000000000000 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x123999999999999a.0x8000000000000.0x8000000000000.0x4000000000000 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x1238000000000000.0x8000000000000.0x4000000000000.0x4000000000000 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x1238000000000000.0x4000000000000.0x4000000000000.0x7d78400000000 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x1234000000000000.0x4000000000000.0x7d78400000000.0x7d78400000000 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x1234000000000000.0x7d78400000000.0x7d78400000000.0x0 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x1237d78400000000.0x7d78400000000.0x0.0x0 ++vcpyse 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x1237d78400000000.0x0.0x0.0xebc9a78563412 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xebc9a78563412.0x456789abcdef0 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xebc9a78563412.0x456789abcdef0.0x3f800000 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xebc9a78563412.0x456789abcdef0.0x3f800000.0xbf800000 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x0 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x0.0x0 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x0.0x0.0x999999999999a ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x999999999999a.0x999999999999a ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x999999999999a.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x999999999999a.0x999999999999a.0x999999999999a.0x8000000000000 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x999999999999a.0x999999999999a.0x8000000000000.0x8000000000000 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x999999999999a.0x8000000000000.0x8000000000000.0x4000000000000 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000.0x8000000000000.0x4000000000000.0x4000000000000 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000.0x4000000000000.0x4000000000000.0x7d78400000000 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000.0x4000000000000.0x7d78400000000.0x7d78400000000 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000.0x7d78400000000.0x7d78400000000.0x0 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7d78400000000.0x7d78400000000.0x0.0x0 ++vcpyse 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7d78400000000.0x0.0x0.0xebc9a78563412 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xebc9a78563412.0x456789abcdef0 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xebc9a78563412.0x456789abcdef0.0x3f800000 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xebc9a78563412.0x456789abcdef0.0x3f800000.0xbf800000 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x0 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x0.0x0 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x0.0x0.0x999999999999a ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x999999999999a.0x999999999999a ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x999999999999a.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x999999999999a.0x999999999999a.0x999999999999a.0x8000000000000 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x999999999999a.0x999999999999a.0x8000000000000.0x8000000000000 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x999999999999a.0x8000000000000.0x8000000000000.0x4000000000000 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000.0x8000000000000.0x4000000000000.0x4000000000000 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000.0x4000000000000.0x4000000000000.0x7d78400000000 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000.0x4000000000000.0x7d78400000000.0x7d78400000000 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000.0x7d78400000000.0x7d78400000000.0x0 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7d78400000000.0x7d78400000000.0x0.0x0 ++vcpyse 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7d78400000000.0x0.0x0.0xebc9a78563412 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xebc9a78563412.0x456789abcdef0 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xebc9a78563412.0x456789abcdef0.0x3f800000 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xebc9a78563412.0x456789abcdef0.0x3f800000.0xbf800000 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x0 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x0.0x0 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x0.0x0.0x999999999999a ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x999999999999a.0x999999999999a ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x999999999999a.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x999999999999a.0x999999999999a.0x999999999999a.0x8000000000000 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x999999999999a.0x999999999999a.0x8000000000000.0x8000000000000 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x999999999999a.0x8000000000000.0x8000000000000.0x4000000000000 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000.0x8000000000000.0x4000000000000.0x4000000000000 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000.0x4000000000000.0x4000000000000.0x7d78400000000 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000.0x4000000000000.0x7d78400000000.0x7d78400000000 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000.0x7d78400000000.0x7d78400000000.0x0 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7d78400000000.0x7d78400000000.0x0.0x0 ++vcpyse 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7d78400000000.0x0.0x0.0xebc9a78563412 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xebc9a78563412.0x456789abcdef0 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xebc9a78563412.0x456789abcdef0.0x3f800000 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xebc9a78563412.0x456789abcdef0.0x3f800000.0xbf800000 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x0 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x0.0x0 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x0.0x0.0x999999999999a ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x999999999999a.0x999999999999a ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x999999999999a.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x999999999999a.0x999999999999a.0x999999999999a.0x8000000000000 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x999999999999a.0x999999999999a.0x8000000000000.0x8000000000000 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x999999999999a.0x8000000000000.0x8000000000000.0x4000000000000 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000.0x8000000000000.0x4000000000000.0x4000000000000 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000.0x4000000000000.0x4000000000000.0x7d78400000000 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000.0x4000000000000.0x7d78400000000.0x7d78400000000 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000.0x7d78400000000.0x7d78400000000.0x0 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7d78400000000.0x7d78400000000.0x0.0x0 ++vcpyse 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7d78400000000.0x0.0x0.0xebc9a78563412 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xebc9a78563412.0x456789abcdef0 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xebc9a78563412.0x456789abcdef0.0x3f800000 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xebc9a78563412.0x456789abcdef0.0x3f800000.0xbf800000 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x0 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x0.0x0 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x0.0x0.0x999999999999a ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x999999999999a.0x999999999999a ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x999999999999a.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x999999999999a.0x999999999999a.0x999999999999a.0x8000000000000 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x999999999999a.0x999999999999a.0x8000000000000.0x8000000000000 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x999999999999a.0x8000000000000.0x8000000000000.0x4000000000000 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000.0x8000000000000.0x4000000000000.0x4000000000000 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000.0x4000000000000.0x4000000000000.0x7d78400000000 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000.0x4000000000000.0x7d78400000000.0x7d78400000000 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000.0x7d78400000000.0x7d78400000000.0x0 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7d78400000000.0x7d78400000000.0x0.0x0 ++vcpyse 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7d78400000000.0x0.0x0.0xebc9a78563412 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xebc9a78563412.0x456789abcdef0 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xebc9a78563412.0x456789abcdef0.0x3f800000 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xebc9a78563412.0x456789abcdef0.0x3f800000.0xbf800000 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x0 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x0.0x0 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x0.0x0.0x999999999999a ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x999999999999a.0x999999999999a ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x999999999999a.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x999999999999a.0x999999999999a.0x999999999999a.0x8000000000000 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x999999999999a.0x999999999999a.0x8000000000000.0x8000000000000 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x999999999999a.0x8000000000000.0x8000000000000.0x4000000000000 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000.0x8000000000000.0x4000000000000.0x4000000000000 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000.0x4000000000000.0x4000000000000.0x7d78400000000 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000.0x4000000000000.0x7d78400000000.0x7d78400000000 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000.0x7d78400000000.0x7d78400000000.0x0 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7d78400000000.0x7d78400000000.0x0.0x0 ++vcpyse 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7d78400000000.0x0.0x0.0xebc9a78563412 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xebc9a78563412.0x456789abcdef0 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xebc9a78563412.0x456789abcdef0.0x3f800000 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xebc9a78563412.0x456789abcdef0.0x3f800000.0xbf800000 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x0 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x0.0x0 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x0.0x0.0x999999999999a ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x999999999999a.0x999999999999a ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x999999999999a.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x999999999999a.0x999999999999a.0x999999999999a.0x8000000000000 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x999999999999a.0x999999999999a.0x8000000000000.0x8000000000000 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x999999999999a.0x8000000000000.0x8000000000000.0x4000000000000 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000.0x8000000000000.0x4000000000000.0x4000000000000 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000.0x4000000000000.0x4000000000000.0x7d78400000000 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000.0x4000000000000.0x7d78400000000.0x7d78400000000 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000.0x7d78400000000.0x7d78400000000.0x0 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7d78400000000.0x7d78400000000.0x0.0x0 ++vcpyse 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7d78400000000.0x0.0x0.0xebc9a78563412 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xebc9a78563412.0x456789abcdef0 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xebc9a78563412.0x456789abcdef0.0x3f800000 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xebc9a78563412.0x456789abcdef0.0x3f800000.0xbf800000 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x0 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x0.0x0 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x0.0x0.0x999999999999a ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x999999999999a.0x999999999999a ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x999999999999a.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x999999999999a.0x999999999999a.0x999999999999a.0x8000000000000 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x999999999999a.0x999999999999a.0x8000000000000.0x8000000000000 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x999999999999a.0x8000000000000.0x8000000000000.0x4000000000000 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000.0x8000000000000.0x4000000000000.0x4000000000000 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000.0x4000000000000.0x4000000000000.0x7d78400000000 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000.0x4000000000000.0x7d78400000000.0x7d78400000000 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000.0x7d78400000000.0x7d78400000000.0x0 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7d78400000000.0x7d78400000000.0x0.0x0 ++vcpyse 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7d78400000000.0x0.0x0.0xebc9a78563412 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xebc9a78563412.0x456789abcdef0 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xebc9a78563412.0x456789abcdef0.0x3f800000 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xebc9a78563412.0x456789abcdef0.0x3f800000.0xbf800000 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x0 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x0.0x0 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x0.0x0.0x999999999999a ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x999999999999a.0x999999999999a ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x999999999999a.0x999999999999a.0x999999999999a.0x999999999999a ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x999999999999a.0x999999999999a.0x999999999999a.0x8000000000000 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x999999999999a.0x999999999999a.0x8000000000000.0x8000000000000 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x999999999999a.0x8000000000000.0x8000000000000.0x4000000000000 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000.0x8000000000000.0x4000000000000.0x4000000000000 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000.0x4000000000000.0x4000000000000.0x7d78400000000 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000.0x4000000000000.0x7d78400000000.0x7d78400000000 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000.0x7d78400000000.0x7d78400000000.0x0 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7d78400000000.0x7d78400000000.0x0.0x0 ++vcpyse 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7d78400000000.0x0.0x0.0xebc9a78563412 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xebc9a78563412.0x3ff456789abcdef0 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xebc9a78563412.0x456789abcdef0.0x3ff000003f800000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xebc9a78563412.0x456789abcdef0.0x3f800000.0x3ff00000bf800000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x456789abcdef0.0x3f800000.0xbf800000.0x3ff000003dcccccd ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0x3ff00000bdcccccd ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3ff000003e4ccccd ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0x3ff00000be4ccccd ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x3ff0000040400000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0x3ff00000c0400000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x3ff0000040a00000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0x3ff00000c0a00000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x3ff000004cbebc20 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0x3ff00000ccbebc20 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x0.0x3ff0000000000000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x0.0x0.0x3ff999999999999a ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x999999999999a.0x3ff999999999999a ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x999999999999a.0x999999999999a.0x3ff999999999999a ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x999999999999a.0x999999999999a.0x999999999999a.0x3ff999999999999a ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x999999999999a.0x999999999999a.0x999999999999a.0x3ff8000000000000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x999999999999a.0x999999999999a.0x8000000000000.0x3ff8000000000000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x999999999999a.0x8000000000000.0x8000000000000.0x3ff4000000000000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000.0x8000000000000.0x4000000000000.0x3ff4000000000000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000.0x4000000000000.0x4000000000000.0x3ff7d78400000000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000.0x4000000000000.0x7d78400000000.0x3ff7d78400000000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000.0x7d78400000000.0x7d78400000000.0x3ff0000000000000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7d78400000000.0x7d78400000000.0x0.0x3ff0000000000000 ++vcpyse 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7d78400000000.0x0.0x0.0x3ffebc9a78563412 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x3ffebc9a78563412.0xbff456789abcdef0 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xebc9a78563412.0x3ff456789abcdef0.0xbff000003f800000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xebc9a78563412.0x456789abcdef0.0x3ff000003f800000.0xbff00000bf800000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x456789abcdef0.0x3f800000.0x3ff00000bf800000.0xbff000003dcccccd ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3ff000003dcccccd.0xbff00000bdcccccd ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0x3ff00000bdcccccd.0xbff000003e4ccccd ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3ff000003e4ccccd.0xbff00000be4ccccd ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0x3ff00000be4ccccd.0xbff0000040400000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x3ff0000040400000.0xbff00000c0400000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0x3ff00000c0400000.0xbff0000040a00000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x3ff0000040a00000.0xbff00000c0a00000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0x3ff00000c0a00000.0xbff000004cbebc20 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x3ff000004cbebc20.0xbff00000ccbebc20 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0x3ff00000ccbebc20.0xbff0000000000000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x0.0x3ff0000000000000.0xbff999999999999a ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x0.0x3ff999999999999a.0xbff999999999999a ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x999999999999a.0x3ff999999999999a.0xbff999999999999a ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x999999999999a.0x999999999999a.0x3ff999999999999a.0xbff999999999999a ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x999999999999a.0x999999999999a.0x3ff999999999999a.0xbff8000000000000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x999999999999a.0x999999999999a.0x3ff8000000000000.0xbff8000000000000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x999999999999a.0x8000000000000.0x3ff8000000000000.0xbff4000000000000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000.0x8000000000000.0x3ff4000000000000.0xbff4000000000000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000.0x4000000000000.0x3ff4000000000000.0xbff7d78400000000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000.0x4000000000000.0x3ff7d78400000000.0xbff7d78400000000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000.0x7d78400000000.0x3ff7d78400000000.0xbff0000000000000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7d78400000000.0x7d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vcpyse 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7d78400000000.0x0.0x3ff0000000000000.0xbffebc9a78563412 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x3ff0000000000000.0xbffebc9a78563412.0x3fb456789abcdef0 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x3ffebc9a78563412.0xbff456789abcdef0.0x3fb000003f800000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xebc9a78563412.0x3ff456789abcdef0.0xbff000003f800000.0x3fb00000bf800000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x456789abcdef0.0x3ff000003f800000.0xbff00000bf800000.0x3fb000003dcccccd ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x3ff00000bf800000.0xbff000003dcccccd.0x3fb00000bdcccccd ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3ff000003dcccccd.0xbff00000bdcccccd.0x3fb000003e4ccccd ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x3ff00000bdcccccd.0xbff000003e4ccccd.0x3fb00000be4ccccd ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3ff000003e4ccccd.0xbff00000be4ccccd.0x3fb0000040400000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x3ff00000be4ccccd.0xbff0000040400000.0x3fb00000c0400000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x3ff0000040400000.0xbff00000c0400000.0x3fb0000040a00000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x3ff00000c0400000.0xbff0000040a00000.0x3fb00000c0a00000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x3ff0000040a00000.0xbff00000c0a00000.0x3fb000004cbebc20 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x3ff00000c0a00000.0xbff000004cbebc20.0x3fb00000ccbebc20 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x3ff000004cbebc20.0xbff00000ccbebc20.0x3fb0000000000000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x3ff00000ccbebc20.0xbff0000000000000.0x3fb0000000000000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x0.0x3ff0000000000000.0xbff999999999999a.0x3fb999999999999a ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x3ff999999999999a.0xbff999999999999a.0x3fb999999999999a ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x999999999999a.0x3ff999999999999a.0xbff999999999999a.0x3fb999999999999a ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x999999999999a.0x3ff999999999999a.0xbff999999999999a.0x3fb8000000000000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x999999999999a.0x3ff999999999999a.0xbff8000000000000.0x3fb8000000000000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x999999999999a.0x3ff8000000000000.0xbff8000000000000.0x3fb4000000000000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000.0x3ff8000000000000.0xbff4000000000000.0x3fb4000000000000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x8000000000000.0x3ff4000000000000.0xbff4000000000000.0x3fb7d78400000000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4000000000000.0x3ff4000000000000.0xbff7d78400000000.0x3fb7d78400000000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4000000000000.0x3ff7d78400000000.0xbff7d78400000000.0x3fb0000000000000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7d78400000000.0x3ff7d78400000000.0xbff0000000000000.0x3fb0000000000000 ++vcpyse 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7d78400000000.0x3ff0000000000000.0xbff0000000000000.0x3fbebc9a78563412 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3ff0000000000000.0xbff0000000000000.0x3fbebc9a78563412.0xbfb456789abcdef0 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3ff0000000000000.0xbffebc9a78563412.0x3fb456789abcdef0.0xbfb000003f800000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x3ffebc9a78563412.0xbff456789abcdef0.0x3fb000003f800000.0xbfb00000bf800000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3ff456789abcdef0.0xbff000003f800000.0x3fb00000bf800000.0xbfb000003dcccccd ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff000003f800000.0xbff00000bf800000.0x3fb000003dcccccd.0xbfb00000bdcccccd ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff00000bf800000.0xbff000003dcccccd.0x3fb00000bdcccccd.0xbfb000003e4ccccd ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff000003dcccccd.0xbff00000bdcccccd.0x3fb000003e4ccccd.0xbfb00000be4ccccd ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff00000bdcccccd.0xbff000003e4ccccd.0x3fb00000be4ccccd.0xbfb0000040400000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff000003e4ccccd.0xbff00000be4ccccd.0x3fb0000040400000.0xbfb00000c0400000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff00000be4ccccd.0xbff0000040400000.0x3fb00000c0400000.0xbfb0000040a00000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3ff0000040400000.0xbff00000c0400000.0x3fb0000040a00000.0xbfb00000c0a00000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3ff00000c0400000.0xbff0000040a00000.0x3fb00000c0a00000.0xbfb000004cbebc20 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3ff0000040a00000.0xbff00000c0a00000.0x3fb000004cbebc20.0xbfb00000ccbebc20 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3ff00000c0a00000.0xbff000004cbebc20.0x3fb00000ccbebc20.0xbfb0000000000000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3ff000004cbebc20.0xbff00000ccbebc20.0x3fb0000000000000.0xbfb0000000000000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3ff00000ccbebc20.0xbff0000000000000.0x3fb0000000000000.0xbfb999999999999a ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbff999999999999a.0x3fb999999999999a.0xbfb999999999999a ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3ff999999999999a.0xbff999999999999a.0x3fb999999999999a.0xbfb999999999999a ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3ff999999999999a.0xbff999999999999a.0x3fb999999999999a.0xbfb8000000000000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3ff999999999999a.0xbff999999999999a.0x3fb8000000000000.0xbfb8000000000000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3ff999999999999a.0xbff8000000000000.0x3fb8000000000000.0xbfb4000000000000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3ff8000000000000.0xbff8000000000000.0x3fb4000000000000.0xbfb4000000000000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3ff8000000000000.0xbff4000000000000.0x3fb4000000000000.0xbfb7d78400000000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3ff4000000000000.0xbff4000000000000.0x3fb7d78400000000.0xbfb7d78400000000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3ff4000000000000.0xbff7d78400000000.0x3fb7d78400000000.0xbfb0000000000000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3ff7d78400000000.0xbff7d78400000000.0x3fb0000000000000.0xbfb0000000000000 ++vcpyse 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3ff7d78400000000.0xbff0000000000000.0x3fb0000000000000.0xbfbebc9a78563412 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbff0000000000000.0x3fb0000000000000.0xbfbebc9a78563412.0x3fc456789abcdef0 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbff0000000000000.0x3fbebc9a78563412.0xbfb456789abcdef0.0x3fc000003f800000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xbffebc9a78563412.0x3fb456789abcdef0.0xbfb000003f800000.0x3fc00000bf800000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbff456789abcdef0.0x3fb000003f800000.0xbfb00000bf800000.0x3fc000003dcccccd ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbff000003f800000.0x3fb00000bf800000.0xbfb000003dcccccd.0x3fc00000bdcccccd ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbff00000bf800000.0x3fb000003dcccccd.0xbfb00000bdcccccd.0x3fc000003e4ccccd ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbff000003dcccccd.0x3fb00000bdcccccd.0xbfb000003e4ccccd.0x3fc00000be4ccccd ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbff00000bdcccccd.0x3fb000003e4ccccd.0xbfb00000be4ccccd.0x3fc0000040400000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbff000003e4ccccd.0x3fb00000be4ccccd.0xbfb0000040400000.0x3fc00000c0400000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbff00000be4ccccd.0x3fb0000040400000.0xbfb00000c0400000.0x3fc0000040a00000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbff0000040400000.0x3fb00000c0400000.0xbfb0000040a00000.0x3fc00000c0a00000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbff00000c0400000.0x3fb0000040a00000.0xbfb00000c0a00000.0x3fc000004cbebc20 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbff0000040a00000.0x3fb00000c0a00000.0xbfb000004cbebc20.0x3fc00000ccbebc20 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbff00000c0a00000.0x3fb000004cbebc20.0xbfb00000ccbebc20.0x3fc0000000000000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbff000004cbebc20.0x3fb00000ccbebc20.0xbfb0000000000000.0x3fc0000000000000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbff00000ccbebc20.0x3fb0000000000000.0xbfb0000000000000.0x3fc999999999999a ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3fb0000000000000.0xbfb999999999999a.0x3fc999999999999a ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbff999999999999a.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbff999999999999a.0x3fb999999999999a.0xbfb999999999999a.0x3fc8000000000000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbff999999999999a.0x3fb999999999999a.0xbfb8000000000000.0x3fc8000000000000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbff999999999999a.0x3fb8000000000000.0xbfb8000000000000.0x3fc4000000000000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbff8000000000000.0x3fb8000000000000.0xbfb4000000000000.0x3fc4000000000000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbff8000000000000.0x3fb4000000000000.0xbfb4000000000000.0x3fc7d78400000000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbff4000000000000.0x3fb4000000000000.0xbfb7d78400000000.0x3fc7d78400000000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbff4000000000000.0x3fb7d78400000000.0xbfb7d78400000000.0x3fc0000000000000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbff7d78400000000.0x3fb7d78400000000.0xbfb0000000000000.0x3fc0000000000000 ++vcpyse 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbff7d78400000000.0x3fb0000000000000.0xbfb0000000000000.0x3fcebc9a78563412 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3fb0000000000000.0xbfb0000000000000.0x3fcebc9a78563412.0xbfc456789abcdef0 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3fb0000000000000.0xbfbebc9a78563412.0x3fc456789abcdef0.0xbfc000003f800000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x3fbebc9a78563412.0xbfb456789abcdef0.0x3fc000003f800000.0xbfc00000bf800000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3fb456789abcdef0.0xbfb000003f800000.0x3fc00000bf800000.0xbfc000003dcccccd ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3fb000003f800000.0xbfb00000bf800000.0x3fc000003dcccccd.0xbfc00000bdcccccd ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fb00000bf800000.0xbfb000003dcccccd.0x3fc00000bdcccccd.0xbfc000003e4ccccd ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fb000003dcccccd.0xbfb00000bdcccccd.0x3fc000003e4ccccd.0xbfc00000be4ccccd ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb00000bdcccccd.0xbfb000003e4ccccd.0x3fc00000be4ccccd.0xbfc0000040400000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fb000003e4ccccd.0xbfb00000be4ccccd.0x3fc0000040400000.0xbfc00000c0400000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fb00000be4ccccd.0xbfb0000040400000.0x3fc00000c0400000.0xbfc0000040a00000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fb0000040400000.0xbfb00000c0400000.0x3fc0000040a00000.0xbfc00000c0a00000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fb00000c0400000.0xbfb0000040a00000.0x3fc00000c0a00000.0xbfc000004cbebc20 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fb0000040a00000.0xbfb00000c0a00000.0x3fc000004cbebc20.0xbfc00000ccbebc20 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fb00000c0a00000.0xbfb000004cbebc20.0x3fc00000ccbebc20.0xbfc0000000000000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fb000004cbebc20.0xbfb00000ccbebc20.0x3fc0000000000000.0xbfc0000000000000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fb00000ccbebc20.0xbfb0000000000000.0x3fc0000000000000.0xbfc999999999999a ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fb0000000000000.0xbfb0000000000000.0x3fc999999999999a.0xbfc999999999999a ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fb0000000000000.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc8000000000000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fb999999999999a.0xbfb999999999999a.0x3fc8000000000000.0xbfc8000000000000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fb999999999999a.0xbfb8000000000000.0x3fc8000000000000.0xbfc4000000000000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fb8000000000000.0xbfb8000000000000.0x3fc4000000000000.0xbfc4000000000000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3fb8000000000000.0xbfb4000000000000.0x3fc4000000000000.0xbfc7d78400000000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3fb4000000000000.0xbfb4000000000000.0x3fc7d78400000000.0xbfc7d78400000000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3fb4000000000000.0xbfb7d78400000000.0x3fc7d78400000000.0xbfc0000000000000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3fb7d78400000000.0xbfb7d78400000000.0x3fc0000000000000.0xbfc0000000000000 ++vcpyse 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3fb7d78400000000.0xbfb0000000000000.0x3fc0000000000000.0xbfcebc9a78563412 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbfb0000000000000.0x3fc0000000000000.0xbfcebc9a78563412.0x400456789abcdef0 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbfb0000000000000.0x3fcebc9a78563412.0xbfc456789abcdef0.0x400000003f800000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xbfbebc9a78563412.0x3fc456789abcdef0.0xbfc000003f800000.0x40000000bf800000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbfb456789abcdef0.0x3fc000003f800000.0xbfc00000bf800000.0x400000003dcccccd ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbfb000003f800000.0x3fc00000bf800000.0xbfc000003dcccccd.0x40000000bdcccccd ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbfb00000bf800000.0x3fc000003dcccccd.0xbfc00000bdcccccd.0x400000003e4ccccd ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfb000003dcccccd.0x3fc00000bdcccccd.0xbfc000003e4ccccd.0x40000000be4ccccd ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb00000bdcccccd.0x3fc000003e4ccccd.0xbfc00000be4ccccd.0x4000000040400000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb000003e4ccccd.0x3fc00000be4ccccd.0xbfc0000040400000.0x40000000c0400000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfb00000be4ccccd.0x3fc0000040400000.0xbfc00000c0400000.0x4000000040a00000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfb0000040400000.0x3fc00000c0400000.0xbfc0000040a00000.0x40000000c0a00000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbfb00000c0400000.0x3fc0000040a00000.0xbfc00000c0a00000.0x400000004cbebc20 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfb0000040a00000.0x3fc00000c0a00000.0xbfc000004cbebc20.0x40000000ccbebc20 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfb00000c0a00000.0x3fc000004cbebc20.0xbfc00000ccbebc20.0x4000000000000000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfb000004cbebc20.0x3fc00000ccbebc20.0xbfc0000000000000.0x4000000000000000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfb00000ccbebc20.0x3fc0000000000000.0xbfc0000000000000.0x400999999999999a ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfb0000000000000.0x3fc0000000000000.0xbfc999999999999a.0x400999999999999a ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbfb0000000000000.0x3fc999999999999a.0xbfc999999999999a.0x400999999999999a ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x400999999999999a ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc8000000000000.0x4008000000000000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfb999999999999a.0x3fc8000000000000.0xbfc8000000000000.0x4004000000000000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbfb8000000000000.0x3fc8000000000000.0xbfc4000000000000.0x4004000000000000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbfb8000000000000.0x3fc4000000000000.0xbfc4000000000000.0x4007d78400000000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbfb4000000000000.0x3fc4000000000000.0xbfc7d78400000000.0x4007d78400000000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbfb4000000000000.0x3fc7d78400000000.0xbfc7d78400000000.0x4000000000000000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbfb7d78400000000.0x3fc7d78400000000.0xbfc0000000000000.0x4000000000000000 ++vcpyse 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbfb7d78400000000.0x3fc0000000000000.0xbfc0000000000000.0x400ebc9a78563412 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3fc0000000000000.0xbfc0000000000000.0x400ebc9a78563412.0xc00456789abcdef0 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3fc0000000000000.0xbfcebc9a78563412.0x400456789abcdef0.0xc00000003f800000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x3fcebc9a78563412.0xbfc456789abcdef0.0x400000003f800000.0xc0000000bf800000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3fc456789abcdef0.0xbfc000003f800000.0x40000000bf800000.0xc00000003dcccccd ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3fc000003f800000.0xbfc00000bf800000.0x400000003dcccccd.0xc0000000bdcccccd ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3fc00000bf800000.0xbfc000003dcccccd.0x40000000bdcccccd.0xc00000003e4ccccd ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fc000003dcccccd.0xbfc00000bdcccccd.0x400000003e4ccccd.0xc0000000be4ccccd ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fc00000bdcccccd.0xbfc000003e4ccccd.0x40000000be4ccccd.0xc000000040400000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fc000003e4ccccd.0xbfc00000be4ccccd.0x4000000040400000.0xc0000000c0400000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc00000be4ccccd.0xbfc0000040400000.0x40000000c0400000.0xc000000040a00000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fc0000040400000.0xbfc00000c0400000.0x4000000040a00000.0xc0000000c0a00000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fc00000c0400000.0xbfc0000040a00000.0x40000000c0a00000.0xc00000004cbebc20 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fc0000040a00000.0xbfc00000c0a00000.0x400000004cbebc20.0xc0000000ccbebc20 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fc00000c0a00000.0xbfc000004cbebc20.0x40000000ccbebc20.0xc000000000000000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fc000004cbebc20.0xbfc00000ccbebc20.0x4000000000000000.0xc000000000000000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fc00000ccbebc20.0xbfc0000000000000.0x4000000000000000.0xc00999999999999a ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fc0000000000000.0xbfc0000000000000.0x400999999999999a.0xc00999999999999a ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fc0000000000000.0xbfc999999999999a.0x400999999999999a.0xc00999999999999a ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fc999999999999a.0xbfc999999999999a.0x400999999999999a.0xc00999999999999a ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x400999999999999a.0xc008000000000000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xbfc8000000000000.0x4008000000000000.0xc004000000000000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fc8000000000000.0xbfc8000000000000.0x4004000000000000.0xc004000000000000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3fc8000000000000.0xbfc4000000000000.0x4004000000000000.0xc007d78400000000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x3fc4000000000000.0xbfc4000000000000.0x4007d78400000000.0xc007d78400000000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3fc4000000000000.0xbfc7d78400000000.0x4007d78400000000.0xc000000000000000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x3fc7d78400000000.0xbfc7d78400000000.0x4000000000000000.0xc000000000000000 ++vcpyse 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3fc7d78400000000.0xbfc0000000000000.0x4000000000000000.0xc00ebc9a78563412 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbfc0000000000000.0x4000000000000000.0xc00ebc9a78563412.0x401456789abcdef0 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbfc0000000000000.0x400ebc9a78563412.0xc00456789abcdef0.0x401000003f800000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xbfcebc9a78563412.0x400456789abcdef0.0xc00000003f800000.0x40100000bf800000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xbfc456789abcdef0.0x400000003f800000.0xc0000000bf800000.0x401000003dcccccd ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbfc000003f800000.0x40000000bf800000.0xc00000003dcccccd.0x40100000bdcccccd ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbfc00000bf800000.0x400000003dcccccd.0xc0000000bdcccccd.0x401000003e4ccccd ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfc000003dcccccd.0x40000000bdcccccd.0xc00000003e4ccccd.0x40100000be4ccccd ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfc00000bdcccccd.0x400000003e4ccccd.0xc0000000be4ccccd.0x4010000040400000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfc000003e4ccccd.0x40000000be4ccccd.0xc000000040400000.0x40100000c0400000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc00000be4ccccd.0x4000000040400000.0xc0000000c0400000.0x4010000040a00000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc0000040400000.0x40000000c0400000.0xc000000040a00000.0x40100000c0a00000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbfc00000c0400000.0x4000000040a00000.0xc0000000c0a00000.0x401000004cbebc20 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfc0000040a00000.0x40000000c0a00000.0xc00000004cbebc20.0x40100000ccbebc20 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfc00000c0a00000.0x400000004cbebc20.0xc0000000ccbebc20.0x4010000000000000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfc000004cbebc20.0x40000000ccbebc20.0xc000000000000000.0x4010000000000000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfc00000ccbebc20.0x4000000000000000.0xc000000000000000.0x401999999999999a ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfc0000000000000.0x4000000000000000.0xc00999999999999a.0x401999999999999a ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbfc0000000000000.0x400999999999999a.0xc00999999999999a.0x401999999999999a ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfc999999999999a.0x400999999999999a.0xc00999999999999a.0x401999999999999a ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfc999999999999a.0x400999999999999a.0xc00999999999999a.0x4018000000000000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x400999999999999a.0xc008000000000000.0x4018000000000000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbfc8000000000000.0x4008000000000000.0xc004000000000000.0x4014000000000000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbfc8000000000000.0x4004000000000000.0xc004000000000000.0x4017d78400000000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbfc4000000000000.0x4004000000000000.0xc007d78400000000.0x4017d78400000000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xbfc4000000000000.0x4007d78400000000.0xc007d78400000000.0x4010000000000000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbfc7d78400000000.0x4007d78400000000.0xc000000000000000.0x4010000000000000 ++vcpyse 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xbfc7d78400000000.0x4000000000000000.0xc000000000000000.0x401ebc9a78563412 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4000000000000000.0xc000000000000000.0x401ebc9a78563412.0xc01456789abcdef0 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4000000000000000.0xc00ebc9a78563412.0x401456789abcdef0.0xc01000003f800000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x400ebc9a78563412.0xc00456789abcdef0.0x401000003f800000.0xc0100000bf800000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x400456789abcdef0.0xc00000003f800000.0x40100000bf800000.0xc01000003dcccccd ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x400000003f800000.0xc0000000bf800000.0x401000003dcccccd.0xc0100000bdcccccd ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x40000000bf800000.0xc00000003dcccccd.0x40100000bdcccccd.0xc01000003e4ccccd ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x400000003dcccccd.0xc0000000bdcccccd.0x401000003e4ccccd.0xc0100000be4ccccd ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x40000000bdcccccd.0xc00000003e4ccccd.0x40100000be4ccccd.0xc010000040400000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x400000003e4ccccd.0xc0000000be4ccccd.0x4010000040400000.0xc0100000c0400000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x40000000be4ccccd.0xc000000040400000.0x40100000c0400000.0xc010000040a00000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4000000040400000.0xc0000000c0400000.0x4010000040a00000.0xc0100000c0a00000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x40000000c0400000.0xc000000040a00000.0x40100000c0a00000.0xc01000004cbebc20 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4000000040a00000.0xc0000000c0a00000.0x401000004cbebc20.0xc0100000ccbebc20 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x40000000c0a00000.0xc00000004cbebc20.0x40100000ccbebc20.0xc010000000000000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x400000004cbebc20.0xc0000000ccbebc20.0x4010000000000000.0xc010000000000000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x40000000ccbebc20.0xc000000000000000.0x4010000000000000.0xc01999999999999a ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0xc000000000000000.0x401999999999999a.0xc01999999999999a ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0xc00999999999999a.0x401999999999999a.0xc01999999999999a ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x400999999999999a.0xc00999999999999a.0x401999999999999a.0xc01999999999999a ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x400999999999999a.0xc00999999999999a.0x401999999999999a.0xc018000000000000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x400999999999999a.0xc00999999999999a.0x4018000000000000.0xc018000000000000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x400999999999999a.0xc008000000000000.0x4018000000000000.0xc014000000000000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc004000000000000.0x4014000000000000.0xc017d78400000000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4004000000000000.0xc004000000000000.0x4017d78400000000.0xc017d78400000000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4004000000000000.0xc007d78400000000.0x4017d78400000000.0xc010000000000000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4007d78400000000.0xc007d78400000000.0x4010000000000000.0xc010000000000000 ++vcpyse 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4007d78400000000.0xc000000000000000.0x4010000000000000.0xc01ebc9a78563412 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc000000000000000.0x4010000000000000.0xc01ebc9a78563412.0x419456789abcdef0 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc000000000000000.0x401ebc9a78563412.0xc01456789abcdef0.0x419000003f800000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc00ebc9a78563412.0x401456789abcdef0.0xc01000003f800000.0x41900000bf800000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc00456789abcdef0.0x401000003f800000.0xc0100000bf800000.0x419000003dcccccd ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc00000003f800000.0x40100000bf800000.0xc01000003dcccccd.0x41900000bdcccccd ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc0000000bf800000.0x401000003dcccccd.0xc0100000bdcccccd.0x419000003e4ccccd ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc00000003dcccccd.0x40100000bdcccccd.0xc01000003e4ccccd.0x41900000be4ccccd ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc0000000bdcccccd.0x401000003e4ccccd.0xc0100000be4ccccd.0x4190000040400000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc00000003e4ccccd.0x40100000be4ccccd.0xc010000040400000.0x41900000c0400000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc0000000be4ccccd.0x4010000040400000.0xc0100000c0400000.0x4190000040a00000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc000000040400000.0x40100000c0400000.0xc010000040a00000.0x41900000c0a00000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000c0400000.0x4010000040a00000.0xc0100000c0a00000.0x419000004cbebc20 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc000000040a00000.0x40100000c0a00000.0xc01000004cbebc20.0x41900000ccbebc20 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000c0a00000.0x401000004cbebc20.0xc0100000ccbebc20.0x4190000000000000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc00000004cbebc20.0x40100000ccbebc20.0xc010000000000000.0x4190000000000000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000ccbebc20.0x4010000000000000.0xc010000000000000.0x419999999999999a ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc000000000000000.0x4010000000000000.0xc01999999999999a.0x419999999999999a ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc000000000000000.0x401999999999999a.0xc01999999999999a.0x419999999999999a ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc00999999999999a.0x401999999999999a.0xc01999999999999a.0x419999999999999a ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc00999999999999a.0x401999999999999a.0xc01999999999999a.0x4198000000000000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc00999999999999a.0x401999999999999a.0xc018000000000000.0x4198000000000000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc00999999999999a.0x4018000000000000.0xc018000000000000.0x4194000000000000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4018000000000000.0xc014000000000000.0x4194000000000000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc004000000000000.0x4014000000000000.0xc017d78400000000.0x4197d78400000000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc004000000000000.0x4017d78400000000.0xc017d78400000000.0x4190000000000000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc007d78400000000.0x4017d78400000000.0xc010000000000000.0x4190000000000000 ++vcpyse 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc007d78400000000.0x4010000000000000.0xc010000000000000.0x419ebc9a78563412 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4010000000000000.0xc010000000000000.0x419ebc9a78563412.0xc19456789abcdef0 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4010000000000000.0xc01ebc9a78563412.0x419456789abcdef0.0xc19000003f800000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x401ebc9a78563412.0xc01456789abcdef0.0x419000003f800000.0xc1900000bf800000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x401456789abcdef0.0xc01000003f800000.0x41900000bf800000.0xc19000003dcccccd ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x401000003f800000.0xc0100000bf800000.0x419000003dcccccd.0xc1900000bdcccccd ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x40100000bf800000.0xc01000003dcccccd.0x41900000bdcccccd.0xc19000003e4ccccd ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x401000003dcccccd.0xc0100000bdcccccd.0x419000003e4ccccd.0xc1900000be4ccccd ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x40100000bdcccccd.0xc01000003e4ccccd.0x41900000be4ccccd.0xc190000040400000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x401000003e4ccccd.0xc0100000be4ccccd.0x4190000040400000.0xc1900000c0400000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x40100000be4ccccd.0xc010000040400000.0x41900000c0400000.0xc190000040a00000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4010000040400000.0xc0100000c0400000.0x4190000040a00000.0xc1900000c0a00000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x40100000c0400000.0xc010000040a00000.0x41900000c0a00000.0xc19000004cbebc20 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4010000040a00000.0xc0100000c0a00000.0x419000004cbebc20.0xc1900000ccbebc20 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x40100000c0a00000.0xc01000004cbebc20.0x41900000ccbebc20.0xc190000000000000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x401000004cbebc20.0xc0100000ccbebc20.0x4190000000000000.0xc190000000000000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x40100000ccbebc20.0xc010000000000000.0x4190000000000000.0xc19999999999999a ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4010000000000000.0xc010000000000000.0x419999999999999a.0xc19999999999999a ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4010000000000000.0xc01999999999999a.0x419999999999999a.0xc19999999999999a ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x401999999999999a.0xc01999999999999a.0x419999999999999a.0xc19999999999999a ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x401999999999999a.0xc01999999999999a.0x419999999999999a.0xc198000000000000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x401999999999999a.0xc01999999999999a.0x4198000000000000.0xc198000000000000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x401999999999999a.0xc018000000000000.0x4198000000000000.0xc194000000000000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4018000000000000.0xc018000000000000.0x4194000000000000.0xc194000000000000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4018000000000000.0xc014000000000000.0x4194000000000000.0xc197d78400000000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc017d78400000000.0x4197d78400000000.0xc190000000000000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4017d78400000000.0xc017d78400000000.0x4190000000000000.0xc190000000000000 ++vcpyse 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4017d78400000000.0xc010000000000000.0x4190000000000000.0xc19ebc9a78563412 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc010000000000000.0x4190000000000000.0xc19ebc9a78563412.0x456789abcdef0 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc010000000000000.0x419ebc9a78563412.0xc19456789abcdef0.0x3f800000 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc01ebc9a78563412.0x419456789abcdef0.0xc19000003f800000.0xbf800000 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc01456789abcdef0.0x419000003f800000.0xc1900000bf800000.0x3dcccccd ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc01000003f800000.0x41900000bf800000.0xc19000003dcccccd.0xbdcccccd ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc0100000bf800000.0x419000003dcccccd.0xc1900000bdcccccd.0x3e4ccccd ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc01000003dcccccd.0x41900000bdcccccd.0xc19000003e4ccccd.0xbe4ccccd ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc0100000bdcccccd.0x419000003e4ccccd.0xc1900000be4ccccd.0x40400000 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc01000003e4ccccd.0x41900000be4ccccd.0xc190000040400000.0xc0400000 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc0100000be4ccccd.0x4190000040400000.0xc1900000c0400000.0x40a00000 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc010000040400000.0x41900000c0400000.0xc190000040a00000.0xc0a00000 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0100000c0400000.0x4190000040a00000.0xc1900000c0a00000.0x4cbebc20 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc010000040a00000.0x41900000c0a00000.0xc19000004cbebc20.0xccbebc20 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0100000c0a00000.0x419000004cbebc20.0xc1900000ccbebc20.0x0 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc01000004cbebc20.0x41900000ccbebc20.0xc190000000000000.0x0 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0100000ccbebc20.0x4190000000000000.0xc190000000000000.0x999999999999a ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc010000000000000.0x4190000000000000.0xc19999999999999a.0x999999999999a ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc010000000000000.0x419999999999999a.0xc19999999999999a.0x999999999999a ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc01999999999999a.0x419999999999999a.0xc19999999999999a.0x999999999999a ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc01999999999999a.0x419999999999999a.0xc19999999999999a.0x8000000000000 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc01999999999999a.0x419999999999999a.0xc198000000000000.0x8000000000000 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc01999999999999a.0x4198000000000000.0xc198000000000000.0x4000000000000 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc018000000000000.0x4198000000000000.0xc194000000000000.0x4000000000000 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc018000000000000.0x4194000000000000.0xc194000000000000.0x7d78400000000 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4194000000000000.0xc197d78400000000.0x7d78400000000 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc017d78400000000.0x4197d78400000000.0xc190000000000000.0x0 ++vcpyse 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc017d78400000000.0x4190000000000000.0xc190000000000000.0xebc9a78563412 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4190000000000000.0xc190000000000000.0xebc9a78563412.0x800456789abcdef0 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x4190000000000000.0xc19ebc9a78563412.0x456789abcdef0.0x800000003f800000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x419ebc9a78563412.0xc19456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x419456789abcdef0.0xc19000003f800000.0xbf800000.0x800000003dcccccd ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x419000003f800000.0xc1900000bf800000.0x3dcccccd.0x80000000bdcccccd ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x41900000bf800000.0xc19000003dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x419000003dcccccd.0xc1900000bdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x41900000bdcccccd.0xc19000003e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x419000003e4ccccd.0xc1900000be4ccccd.0x40400000.0x80000000c0400000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x41900000be4ccccd.0xc190000040400000.0xc0400000.0x8000000040a00000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4190000040400000.0xc1900000c0400000.0x40a00000.0x80000000c0a00000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x41900000c0400000.0xc190000040a00000.0xc0a00000.0x800000004cbebc20 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4190000040a00000.0xc1900000c0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x41900000c0a00000.0xc19000004cbebc20.0xccbebc20.0x8000000000000000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x419000004cbebc20.0xc1900000ccbebc20.0x0.0x8000000000000000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x41900000ccbebc20.0xc190000000000000.0x0.0x800999999999999a ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4190000000000000.0xc190000000000000.0x999999999999a.0x800999999999999a ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4190000000000000.0xc19999999999999a.0x999999999999a.0x800999999999999a ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x419999999999999a.0xc19999999999999a.0x999999999999a.0x800999999999999a ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x419999999999999a.0xc19999999999999a.0x999999999999a.0x8008000000000000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x419999999999999a.0xc19999999999999a.0x8000000000000.0x8008000000000000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x419999999999999a.0xc198000000000000.0x8000000000000.0x8004000000000000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4198000000000000.0xc198000000000000.0x4000000000000.0x8004000000000000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4198000000000000.0xc194000000000000.0x4000000000000.0x8007d78400000000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4194000000000000.0xc194000000000000.0x7d78400000000.0x8007d78400000000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4194000000000000.0xc197d78400000000.0x7d78400000000.0x8000000000000000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vcpyse 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xc190000000000000.0x0.0x800ebc9a78563412 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc190000000000000.0x0.0x800ebc9a78563412.0xf0d456789abcdef0 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc190000000000000.0xebc9a78563412.0x800456789abcdef0.0xf0d000003f800000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc19ebc9a78563412.0x456789abcdef0.0x800000003f800000.0xf0d00000bf800000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xc19456789abcdef0.0x3f800000.0x80000000bf800000.0xf0d000003dcccccd ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc19000003f800000.0xbf800000.0x800000003dcccccd.0xf0d00000bdcccccd ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc1900000bf800000.0x3dcccccd.0x80000000bdcccccd.0xf0d000003e4ccccd ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc19000003dcccccd.0xbdcccccd.0x800000003e4ccccd.0xf0d00000be4ccccd ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc1900000bdcccccd.0x3e4ccccd.0x80000000be4ccccd.0xf0d0000040400000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc19000003e4ccccd.0xbe4ccccd.0x8000000040400000.0xf0d00000c0400000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xc1900000be4ccccd.0x40400000.0x80000000c0400000.0xf0d0000040a00000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc190000040400000.0xc0400000.0x8000000040a00000.0xf0d00000c0a00000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc1900000c0400000.0x40a00000.0x80000000c0a00000.0xf0d000004cbebc20 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc190000040a00000.0xc0a00000.0x800000004cbebc20.0xf0d00000ccbebc20 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc1900000c0a00000.0x4cbebc20.0x80000000ccbebc20.0xf0d0000000000000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc19000004cbebc20.0xccbebc20.0x8000000000000000.0xf0d0000000000000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc1900000ccbebc20.0x0.0x8000000000000000.0xf0d999999999999a ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc190000000000000.0x0.0x800999999999999a.0xf0d999999999999a ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc190000000000000.0x999999999999a.0x800999999999999a.0xf0d999999999999a ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc19999999999999a.0x999999999999a.0x800999999999999a.0xf0d999999999999a ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc19999999999999a.0x999999999999a.0x800999999999999a.0xf0d8000000000000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc19999999999999a.0x999999999999a.0x8008000000000000.0xf0d8000000000000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc19999999999999a.0x8000000000000.0x8008000000000000.0xf0d4000000000000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc198000000000000.0x8000000000000.0x8004000000000000.0xf0d4000000000000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc198000000000000.0x4000000000000.0x8004000000000000.0xf0d7d78400000000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc194000000000000.0x4000000000000.0x8007d78400000000.0xf0d7d78400000000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc194000000000000.0x7d78400000000.0x8007d78400000000.0xf0d0000000000000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x7d78400000000.0x8000000000000000.0xf0d0000000000000 ++vcpyse 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++=== Running test on vcpysn=== ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0x70debc9a78563412.0x923456789abcdef0 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x123456789abcdef0.0x800000003f800000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3f800000.0xbf800000.0x800000003dcccccd ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xbf800000.0x3dcccccd.0x80000000bdcccccd ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x3dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xbdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x3e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xbe4ccccd.0x40400000.0x80000000c0400000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x40400000.0xc0400000.0x8000000040a00000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xc0400000.0x40a00000.0x80000000c0a00000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x40a00000.0xc0a00000.0x800000004cbebc20 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xc0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x4cbebc20.0xccbebc20.0xbff0000000000000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3ff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0x4008000000000000.0xc014000000000000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0x4014000000000000.0xc014000000000000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0x4014000000000000.0xc197d78400000000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0x4197d78400000000.0x8000000000000000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x8000000000000000 ++vcpysn 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x0.0xf0debc9a78563412 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xf0debc9a78563412.0x923456789abcdef0 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x123456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0x80000000bf800000.0x800000003dcccccd ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x800000003dcccccd.0x80000000bdcccccd ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x8000000040400000.0x80000000c0400000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0x80000000c0400000.0x8000000040a00000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x8000000040a00000.0x80000000c0a00000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0x80000000c0a00000.0x800000004cbebc20 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0xbff0000000000000.0xbff0000000000000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0xbfb999999999999a ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0xc008000000000000.0xc008000000000000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0xc008000000000000.0xc014000000000000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0xc014000000000000.0xc014000000000000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0xc014000000000000.0xc197d78400000000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0xc197d78400000000.0xc197d78400000000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000000000000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x8000000000000000.0x8000000000000000 ++vcpysn 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x800000003f800000.0x80000000bf800000.0x800000003dcccccd ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0xc008000000000000.0xc008000000000000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0xc008000000000000.0xc014000000000000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0xc014000000000000.0xc014000000000000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0xc014000000000000.0xc197d78400000000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0xc197d78400000000.0xc197d78400000000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0xc197d78400000000.0x8000000000000000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vcpysn 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x8000000000000000.0xf0debc9a78563412 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0x800000003dcccccd ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000.0xc008000000000000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0xc008000000000000.0xc014000000000000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0xc014000000000000.0xc014000000000000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0xc014000000000000.0xc197d78400000000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0xc197d78400000000.0xc197d78400000000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0xc197d78400000000.0x8000000000000000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vcpysn 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0xf0debc9a78563412 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0x800000003dcccccd ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000.0xc008000000000000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0xc008000000000000.0xc014000000000000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0xc014000000000000.0xc014000000000000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0xc014000000000000.0xc197d78400000000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0xc197d78400000000.0xc197d78400000000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0xc197d78400000000.0x8000000000000000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vcpysn 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0xf0debc9a78563412 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0x800000003dcccccd ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000.0xc008000000000000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0xc008000000000000.0xc014000000000000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0xc014000000000000.0xc014000000000000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0xc014000000000000.0xc197d78400000000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0xc197d78400000000.0xc197d78400000000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0xc197d78400000000.0x8000000000000000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vcpysn 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0xf0debc9a78563412 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0x800000003dcccccd ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000.0xc008000000000000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0xc008000000000000.0xc014000000000000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0xc014000000000000.0xc014000000000000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0xc014000000000000.0xc197d78400000000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0xc197d78400000000.0xc197d78400000000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0xc197d78400000000.0x8000000000000000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vcpysn 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0xf0debc9a78563412 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0x800000003dcccccd ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000.0xc008000000000000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0xc008000000000000.0xc014000000000000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0xc014000000000000.0xc014000000000000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0xc014000000000000.0xc197d78400000000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0xc197d78400000000.0xc197d78400000000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0xc197d78400000000.0x8000000000000000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vcpysn 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0xf0debc9a78563412 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0x800000003dcccccd ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000.0xc008000000000000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0xc008000000000000.0xc014000000000000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0xc014000000000000.0xc014000000000000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0xc014000000000000.0xc197d78400000000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0xc197d78400000000.0xc197d78400000000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0xc197d78400000000.0x8000000000000000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vcpysn 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0xf0debc9a78563412 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0x800000003dcccccd ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000.0xc008000000000000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0xc008000000000000.0xc014000000000000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0xc014000000000000.0xc014000000000000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0xc014000000000000.0xc197d78400000000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0xc197d78400000000.0xc197d78400000000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0xc197d78400000000.0x8000000000000000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vcpysn 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0xf0debc9a78563412 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0x800000003dcccccd ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000.0xc008000000000000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0xc008000000000000.0xc014000000000000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0xc014000000000000.0xc014000000000000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0xc014000000000000.0xc197d78400000000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0xc197d78400000000.0xc197d78400000000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0xc197d78400000000.0x8000000000000000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vcpysn 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0xf0debc9a78563412 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0x800000003dcccccd ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000.0xc008000000000000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0xc008000000000000.0xc014000000000000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0xc014000000000000.0xc014000000000000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0xc014000000000000.0xc197d78400000000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0xc197d78400000000.0xc197d78400000000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0xc197d78400000000.0x8000000000000000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vcpysn 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0xf0debc9a78563412 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0x800000003dcccccd ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000.0xc008000000000000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0xc008000000000000.0xc014000000000000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0xc014000000000000.0xc014000000000000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0xc014000000000000.0xc197d78400000000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0xc197d78400000000.0xc197d78400000000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0xc197d78400000000.0x8000000000000000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vcpysn 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0xf0debc9a78563412 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0x800000003dcccccd ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000.0xc008000000000000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0xc008000000000000.0xc014000000000000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0xc014000000000000.0xc014000000000000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0xc014000000000000.0xc197d78400000000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0xc197d78400000000.0xc197d78400000000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0xc197d78400000000.0x8000000000000000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x8000000000000000.0x8000000000000000 ++vcpysn 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0xf0debc9a78563412 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x923456789abcdef0.0x3f800000 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x800000003f800000.0xbf800000 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0x3dcccccd ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x800000003dcccccd.0xbdcccccd ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd.0x3e4ccccd ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0xbe4ccccd ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x40400000 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0xc0400000 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x40a00000 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0xc0a00000 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x4cbebc20 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0xccbebc20 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0x3ff0000000000000 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000.0x4008000000000000 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0xc008000000000000.0x4014000000000000 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0xc014000000000000.0x4014000000000000 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0xc197d78400000000.0x4197d78400000000 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0xc197d78400000000.0x0 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x8000000000000000.0x0 ++vcpysn 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x8000000000000000.0x70debc9a78563412 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x923456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0xbf800000.0x800000003dcccccd ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x40400000.0x80000000c0400000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0xc0400000.0x8000000040a00000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x40a00000.0x80000000c0a00000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0xc0a00000.0x800000004cbebc20 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0xccbebc20.0xbff0000000000000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vcpysn 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x0.0xf0debc9a78563412 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0.0x3f800000 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000.0xbf800000 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3f800000.0x80000000bf800000.0x3dcccccd ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xbf800000.0x800000003dcccccd.0xbdcccccd ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd.0x40400000 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000.0xc0400000 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x40400000.0x80000000c0400000.0x40a00000 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xc0400000.0x8000000040a00000.0xc0a00000 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x40a00000.0x80000000c0a00000.0x4cbebc20 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xc0a00000.0x800000004cbebc20.0xccbebc20 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vcpysn 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0x70debc9a78563412 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x800000003f800000.0xbf800000.0x800000003dcccccd ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x40400000.0x80000000c0400000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0xc0400000.0x8000000040a00000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x40a00000.0x80000000c0a00000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0xc0a00000.0x800000004cbebc20 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0xccbebc20.0xbff0000000000000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vcpysn 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0xf0debc9a78563412 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0.0x3f800000 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000.0xbf800000 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3f800000.0x80000000bf800000.0x3dcccccd ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xbf800000.0x800000003dcccccd.0xbdcccccd ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd.0x40400000 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000.0xc0400000 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x40400000.0x80000000c0400000.0x40a00000 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xc0400000.0x8000000040a00000.0xc0a00000 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x40a00000.0x80000000c0a00000.0x4cbebc20 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xc0a00000.0x800000004cbebc20.0xccbebc20 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vcpysn 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0x70debc9a78563412 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x800000003f800000.0xbf800000.0x800000003dcccccd ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x40400000.0x80000000c0400000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0xc0400000.0x8000000040a00000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x40a00000.0x80000000c0a00000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0xc0a00000.0x800000004cbebc20 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0xccbebc20.0xbff0000000000000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vcpysn 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0xf0debc9a78563412 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0.0x3f800000 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000.0xbf800000 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3f800000.0x80000000bf800000.0x3dcccccd ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xbf800000.0x800000003dcccccd.0xbdcccccd ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd.0x40400000 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000.0xc0400000 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x40400000.0x80000000c0400000.0x40a00000 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xc0400000.0x8000000040a00000.0xc0a00000 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x40a00000.0x80000000c0a00000.0x4cbebc20 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xc0a00000.0x800000004cbebc20.0xccbebc20 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vcpysn 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0x70debc9a78563412 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x800000003f800000.0xbf800000.0x800000003dcccccd ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x40400000.0x80000000c0400000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0xc0400000.0x8000000040a00000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x40a00000.0x80000000c0a00000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0xc0a00000.0x800000004cbebc20 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0xccbebc20.0xbff0000000000000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vcpysn 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0xf0debc9a78563412 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0.0x3f800000 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000.0xbf800000 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3f800000.0x80000000bf800000.0x3dcccccd ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xbf800000.0x800000003dcccccd.0xbdcccccd ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd.0x40400000 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000.0xc0400000 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x40400000.0x80000000c0400000.0x40a00000 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xc0400000.0x8000000040a00000.0xc0a00000 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x40a00000.0x80000000c0a00000.0x4cbebc20 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xc0a00000.0x800000004cbebc20.0xccbebc20 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vcpysn 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0x70debc9a78563412 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x800000003f800000.0xbf800000.0x800000003dcccccd ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x40400000.0x80000000c0400000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0xc0400000.0x8000000040a00000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x40a00000.0x80000000c0a00000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0xc0a00000.0x800000004cbebc20 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0xccbebc20.0xbff0000000000000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vcpysn 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0xf0debc9a78563412 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0.0x3f800000 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000.0xbf800000 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3f800000.0x80000000bf800000.0x3dcccccd ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xbf800000.0x800000003dcccccd.0xbdcccccd ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd.0x40400000 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000.0xc0400000 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x40400000.0x80000000c0400000.0x40a00000 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xc0400000.0x8000000040a00000.0xc0a00000 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x40a00000.0x80000000c0a00000.0x4cbebc20 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xc0a00000.0x800000004cbebc20.0xccbebc20 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vcpysn 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0x70debc9a78563412 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3f800000.0x80000000bf800000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x800000003f800000.0xbf800000.0x800000003dcccccd ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x40400000.0x80000000c0400000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0xc0400000.0x8000000040a00000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x40a00000.0x80000000c0a00000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0xc0a00000.0x800000004cbebc20 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0xccbebc20.0xbff0000000000000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vcpysn 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0xf0debc9a78563412 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x923456789abcdef0.0x3f800000 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x800000003f800000.0xbf800000 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3f800000.0x80000000bf800000.0x3dcccccd ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xbf800000.0x800000003dcccccd.0xbdcccccd ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x3e4ccccd.0x80000000be4ccccd.0x40400000 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xbe4ccccd.0x8000000040400000.0xc0400000 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x40400000.0x80000000c0400000.0x40a00000 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xc0400000.0x8000000040a00000.0xc0a00000 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x40a00000.0x80000000c0a00000.0x4cbebc20 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xc0a00000.0x800000004cbebc20.0xccbebc20 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vcpysn 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0x70debc9a78563412 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x70debc9a78563412.0x123456789abcdef0 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3f800000.0xbf800000 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x800000003f800000.0xbf800000.0x3dcccccd ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x80000000bf800000.0x3dcccccd.0xbdcccccd ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x800000003dcccccd.0xbdcccccd.0x3e4ccccd ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x80000000bdcccccd.0x3e4ccccd.0xbe4ccccd ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x800000003e4ccccd.0xbe4ccccd.0x40400000 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x80000000be4ccccd.0x40400000.0xc0400000 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x8000000040400000.0xc0400000.0x40a00000 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x80000000c0400000.0x40a00000.0xc0a00000 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x8000000040a00000.0xc0a00000.0x4cbebc20 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x80000000c0a00000.0x4cbebc20.0xccbebc20 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x800000004cbebc20.0xccbebc20.0x3ff0000000000000 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x80000000ccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0x3ff0000000000000.0x3fb999999999999a ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0x3fc999999999999a ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0x4008000000000000 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0x4008000000000000 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0x4014000000000000 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0x4014000000000000 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0x4197d78400000000 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0x4197d78400000000 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x0 ++vcpysn 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0x70debc9a78563412 ++=== Running test on vmas=== ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x7ff0000000000000.0x0 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xfff0000000000000.0xc32388ef40000000.0x0 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x0 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0x80004cd6e0000000.0x20000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0xa0000000.0x80000f5e20000000.0xa0000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x20000000.0x80004cd6e0000000.0x20000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0xa0000000.0x80000f5e20000000.0xa0000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x20000000.0x80004cd6e0000000.0x40000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0xa0000000.0x80001ebc60000000.0xc0000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x40000000.0x80005c3500000000.0x40000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0x80001ebc60000000.0xc0000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0x80005c3500000000.0x40000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x80001ebc60000000.0xc0000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0x80005c3500000000.0x3ff0000000000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0xc0debc5a60000000.0xbff0000000000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0x40debc5a60000000.0x3fb9999980000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0xfff0000000000000.0xbfb99999a0000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb99999a0000000.0x7ff0000000000000.0x3fc99999a0000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb99999a0000000.0xbfb99999a0000000.0xfff0000000000000.0xbfc99999a0000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0x3fc99999a0000000.0x7ff0000000000000.0x4008000000000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0xbfc99999a0000000.0xfff0000000000000.0xc008000000000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0x4008000000000000.0x7ff0000000000000.0x4014000000000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0xfff0000000000000.0xc014000000000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0x7ff0000000000000.0x4197d78400000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0xfff0000000000000.0xc197d78400000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0x7ff0000000000000.0x0 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x0.0xfff0000000000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xfff0000000000000.0xc32388ef40000000.0x0 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x7ff0000000000000.0x0.0x0 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xbb2388ef20000000.0xa0000000.0x20000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0x80000f5da0000000.0x20000000.0xa0000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x80004cd760000000.0xa0000000.0x20000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0x80000f5da0000000.0x20000000.0xa0000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x80004cd760000000.0xa0000000.0x40000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0x80000f5da0000000.0x40000000.0xc0000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x80004cd740000000.0xc0000000.0x40000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0x80001ebbe0000000.0x40000000.0xc0000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x80005c3580000000.0xc0000000.0x40000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0x80001ebbe0000000.0x40000000.0xc0000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x80005c3580000000.0xc0000000.0x3ff0000000000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0x80001ebbe0000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xc0debcda60000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x7ff0000000000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb99999a0000000.0xfff0000000000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0x7ff0000000000000.0xbfc99999a0000000.0x4008000000000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0xfff0000000000000.0x4008000000000000.0xc008000000000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0x7ff0000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xfff0000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x7ff0000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xfff0000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x7ff0000000000000.0xc197d78400000000.0x0 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xfff0000000000000.0x0.0x0 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x7ff0000000000000.0x0.0xfff0000000000000 ++vmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xfff0000000000000.0x0 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x0 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xbb2388ef20000000.0xa0000000.0x20000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x41cd85f900000000.0xa0000000.0x20000000.0xa0000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbb2388ef20000000.0x20000000.0xa0000000.0x20000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000f5e20000000.0xa0000000.0x20000000.0xa0000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80004cd6e0000000.0x20000000.0xa0000000.0x40000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000f5e20000000.0xa0000000.0x40000000.0xc0000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80004cd6e0000000.0x40000000.0xc0000000.0x40000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000f5e00000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80004cd6c0000000.0x40000000.0xc0000000.0x40000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80001ebc60000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80005c3500000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80001ebc60000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80005c3500000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xfff0000000000000.0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x7ff0000000000000.0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xfff0000000000000.0xbfc99999a0000000.0x4008000000000000.0xc008000000000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x7ff0000000000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xfff0000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x7ff0000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xfff0000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x7ff0000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xfff0000000000000.0xc197d78400000000.0x0.0x8000000000000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7ff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0x0.0xfff0000000000000.0x0 ++vmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x0 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0x80004cd6e0000000.0x20000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0x80000f5da0000000.0x20000000.0xa0000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbb2388ef20000000.0x20000000.0xa0000000.0x20000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0xa0000000.0x20000000.0xa0000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x20000000.0xa0000000.0x40000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0xa0000000.0x40000000.0xc0000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x40000000.0xc0000000.0x40000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0xc0000000.0x40000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000.0xc008000000000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x0 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x0.0xfff0000000000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xba596c16a0000000.0x3847d78400000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3bde4e3f00000000.0xc0debc9a60000000.0x3a34567880000000.0x20000000 ++vmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x0 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0xa0000000.0x80000f5e20000000.0xa0000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x80004cd760000000.0xa0000000.0x20000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000f5e20000000.0xa0000000.0x20000000.0xa0000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x20000000.0xa0000000.0x40000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0xa0000000.0x40000000.0xc0000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x40000000.0xc0000000.0x40000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0xc0000000.0x40000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x320000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xa0000000.0x8000000320000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x320000000.0x80000000a0000000.0xc0debc9a60000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xa0000000.0x8000000320000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000a0000000.0xc0debc9a60000000.0x3a34567880000000.0x20000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x20000000.0xa0000000 ++vmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0xa0000000.0x80004cd760000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x20000000.0x80004cd6e0000000.0x20000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0x80000f5da0000000.0x20000000.0xa0000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80004cd6e0000000.0x20000000.0xa0000000.0x40000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0xa0000000.0x40000000.0xc0000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x40000000.0xc0000000.0x40000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0xc0000000.0x40000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000060000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x80000001e0000000.0xa0000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000060000000.0x320000000.0xc0debc9a60000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000001e0000000.0xa0000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x320000000.0xc0debc9a60000000.0x3a34567880000000.0xb847d78400000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0xb86dcd6500000000.0xa0000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xb847d78400000000.0xa0000000.0x20000000 ++vmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xb86dcd6500000000.0xa0000000.0x20000000.0x80000f5da0000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0xa0000000.0x80000f5e20000000.0xa0000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x80004cd760000000.0xa0000000.0x40000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000f5e20000000.0xa0000000.0x40000000.0xc0000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x40000000.0xc0000000.0x40000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0xc0000000.0x40000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x1e0000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x60000000.0x80000001e0000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x1e0000000.0x8000000060000000.0xc0debc9a60000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x60000000.0x80000001e0000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000060000000.0xc0debc9a60000000.0x3a34567880000000.0x386dcd6500000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x3847d78400000000.0xb86dcd6500000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x386dcd6500000000.0xb847d783e0000000.0x20000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3847d78400000000.0xb86dcd6500000000.0x20000000.0xa0000000 ++vmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xb847d783e0000000.0x20000000.0xa0000000.0x80004cd760000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x20000000.0x80004cd6e0000000.0x40000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0x80000f5da0000000.0x40000000.0xc0000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80004cd6e0000000.0x40000000.0xc0000000.0x40000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0xc0000000.0x40000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000000000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000020000000.0xc0000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x1e0000000.0xc0debc9a60000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000020000000.0x60000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x1e0000000.0xc0debc9a60000000.0x3a34567880000000.0x8000000120000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x8000000300000000.0x3857d78400000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x8000000080000000.0x386dcd6500000000.0xb857d78400000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000300000000.0x3847d78420000000.0xb86dcd6500000000.0xa0000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x386dcd6500000000.0xb847d78400000000.0xa0000000.0x20000000 ++vmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xb86dcd6500000000.0xa0000000.0x20000000.0x80001ebc00000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0xa0000000.0x80001ebc60000000.0xc0000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x80004cd740000000.0xc0000000.0x40000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000f5e00000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0xc0000000.0x40000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x20000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000020000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x20000000.0x8000000000000000.0xc0debc9a60000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000020000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xc0debc9a60000000.0x3a34567880000000.0x3e0000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x160000000.0x8000000320000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x340000000.0x80000000a0000000.0x3871e1a300000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc0000000.0x8000000280000000.0x3857d78400000000.0xb871e1a300000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x386dcd6500000000.0xb857d78400000000.0x20000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3847d78400000000.0xb86dcd6500000000.0x20000000.0xa0000000 ++vmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xb847d783e0000000.0x20000000.0xa0000000.0x80005c3580000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x40000000.0x80005c3500000000.0x40000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0x80001ebbe0000000.0x40000000.0xc0000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80004cd6c0000000.0x40000000.0xc0000000.0x40000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000000000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000020000000.0x0 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x20000000.0xc0debc9a60000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x20000000.0xc0debc9a60000000.0x3a34567880000000.0x80000000a0000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x8000000220000000.0x1e0000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x80000000a0000000.0x460000000.0x8000000120000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000001c0000000.0x1e0000000.0x80000003a0000000.0x3857d78400000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3c0000000.0x8000000120000000.0x3871e1a300000000.0xb857d78400000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000300000000.0x3857d78400000000.0xb871e1a300000000.0xa0000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x386dcd6500000000.0xb857d78400000000.0xa0000000.0x40000000 ++vmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xb86dcd6500000000.0xa0000000.0x40000000.0x80001ebbe0000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0x80001ebc60000000.0xc0000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x80005c3580000000.0xc0000000.0x40000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80001ebc60000000.0xc0000000.0x40000000.0xc0000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x20000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000020000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x20000000.0x8000000000000000.0xc0debc9a60000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000020000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xc0debc9a60000000.0x3a34567880000000.0x260000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0xe0000000.0x80000001a0000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x260000000.0x8000000020000000.0x3e0000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xe0000000.0x80000001a0000000.0x160000000.0x8000000320000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000020000000.0x3e0000000.0x80000000a0000000.0x3871e1a300000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x160000000.0x8000000320000000.0x3857d78400000000.0xb871e1a300000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x3871e1a300000000.0xb857d78400000000.0x40000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3857d78400000000.0xb871e1a300000000.0x40000000.0xc0000000 ++vmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xb857d78400000000.0x40000000.0xc0000000.0x80005c3580000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0x80005c3500000000.0x40000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0x80001ebbe0000000.0x40000000.0xc0000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80005c3500000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000040000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x80000000c0000000.0x0 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000040000000.0x20000000.0xc0debc9a60000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000c0000000.0x0.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x20000000.0xc0debc9a60000000.0x3a34567880000000.0x20000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x8000000000000000.0x160000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0x2e0000000.0x80000000a0000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000000000000.0x160000000.0x8000000220000000.0x1e0000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x2e0000000.0x80000000a0000000.0x460000000.0x8000000120000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000220000000.0x1e0000000.0x80000003a0000000.0x3857d78400000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x460000000.0x8000000120000000.0x3871e1a300000000.0xb857d78400000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000003a0000000.0x3857d78400000000.0xb871e1a300000000.0xc0000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3871e1a300000000.0xb857d78400000000.0xc0000000.0x40000000 ++vmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xb871e1a300000000.0xc0000000.0x40000000.0x80001ebbe0000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x80001ebc60000000.0xc0000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x80005c3580000000.0xc0000000.0x3ff0000000000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80001ebc60000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xc0000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x40000000.0x80000000c0000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xc0000000.0x8000000040000000.0xc0debc9a60000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40000000.0x80000000c0000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000040000000.0xc0debc9a60000000.0x3a34567880000000.0x40000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x20000000.0x80000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x40000000.0xa0000000.0x260000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0x80000000.0xe0000000.0x80000001a0000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x260000000.0x8000000020000000.0x3e0000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xe0000000.0x80000001a0000000.0x160000000.0x8000000320000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000020000000.0x3e0000000.0x80000000a0000000.0x3871e1a300000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x160000000.0x8000000320000000.0x3857d78400000000.0xb871e1a300000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x3871e1a300000000.0xb857d78400000000.0x40000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3857d78400000000.0xb871e1a300000000.0x40000000.0xc0000000 ++vmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xb857d78400000000.0x40000000.0xc0000000.0x80005c3580000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0x80005c3500000000.0x3ff0000000000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0x80001ebbe0000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80005c3500000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xc0000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x3ff0000000000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0xc0000000.0xc0debcda60000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x40000000.0xc0debc9a60000000.0x3fb9999980000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0000000.0xc0debc9a60000000.0x3a34567880000000.0xbfb9999980000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x0.0x3fc9999980000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0xc0000000.0xbfc9999980000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0xa0000000.0x8000000000000000.0x4008000000000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc0000000.0x20000000.0x2e0000000.0xc008000000000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000000000000.0x160000000.0x8000000220000000.0x4014000000000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x2e0000000.0x80000000a0000000.0x460000000.0xc014000000000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000220000000.0x1e0000000.0x8000000380000000.0x4197d78400000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x460000000.0x8000000100000000.0x3871e1a300000000.0xc197d78400000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000380000000.0x3857d78400000000.0xb871e1a300000000.0xc0000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3871e1a300000000.0xb857d78400000000.0xc0000000.0x40000000 ++vmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xb871e1a300000000.0xc0000000.0x40000000.0xc0debc9a60000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0xc0debc5a60000000.0xbff0000000000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000040000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x40000000.0x80000000c0000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0xc0000000.0xc0debcda60000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xc0debc5a60000000.0x3ff0000000000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xc0debc9a60000000.0xbff0000000000000.0xbfb9999980000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x3fb9999980000000.0x3fb9999980000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x40000000.0xbfb9999980000000.0xbfc9999980000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0x80000000.0x3fc9999980000000.0x3fc9999980000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x40000000.0xbfc9999980000000.0xc008000000000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0x80000000.0x4008000000000000.0x4008000000000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x260000000.0xc008000000000000.0xc014000000000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xe0000000.0x80000001a0000000.0x4014000000000000.0x4014000000000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000020000000.0x400000000.0xc014000000000000.0xc197d78400000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x180000000.0x8000000300000000.0x4197d78400000000.0x4197d78400000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000080000000.0x3871e1a300000000.0xc197d78400000000.0x40000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3857d78400000000.0xb871e1a300000000.0x40000000.0xc0000000 ++vmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xb857d78400000000.0x40000000.0xc0000000.0x40debcda60000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0x40debc5a60000000.0x3fb9999980000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xc0debcda60000000.0x3fb9999980000000.0xbfb9999980000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x20000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x80000000c0000000.0x0 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xc0000000.0x8000000040000000.0xc0debc9a60000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x40000000.0xc0debc9a60000000.0x3fb9999980000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xc0debc9a60000000.0xbff0000000000000.0xbfb9999980000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3ff0000000000000.0x3ff0000000000000.0x3f847ae120000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xbff0000000000000.0xbfb9999980000000.0xbf847ae120000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000a0000000.0x3fb9999980000000.0x3fb9999980000000.0x3f947ae120000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc0000000.0xbfb9999980000000.0xbfc9999980000000.0xbf947ae120000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x3fc9999980000000.0x3fc9999980000000.0x3fd3333320000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc0000000.0xbfc9999980000000.0xc008000000000000.0xbfd3333320000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000000000000.0x4008000000000000.0x4008000000000000.0x3fdfffffe0000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x2e0000000.0xc008000000000000.0xc014000000000000.0xbfdfffffe0000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000200000000.0x4014000000000000.0x4014000000000000.0x416312d000000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x480000000.0xc014000000000000.0xc197d78400000000.0xc16312cfe0000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000380000000.0x4197d78400000000.0x4197d78400000000.0xc0000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3871e1a300000000.0xc197d78400000000.0xc0000000.0x3ff0000000000000 ++vmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xb871e1a300000000.0xc0000000.0x3ff0000000000000.0xc0a898e1c0000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0xfff0000000000000.0xbfb99999a0000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x7ff0000000000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xfff0000000000000.0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000000000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000020000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000040000000.0x20000000.0xc0debc9a60000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40000000.0x80000000c0000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0000000.0xc0debc9a60000000.0x3a34567880000000.0xbfb9999980000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x3fb9999980000000.0x3fb9999980000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xbff0000000000000.0xbfb9999980000000.0xbf847ae120000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff0000000000000.0x3ff0000000000000.0x3f847ae120000000.0x3f847ae120000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbff0000000000000.0xbfb9999980000000.0xbf847ae120000000.0xbf947ae120000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fb9999980000000.0x3fb9999980000000.0x3f947ae120000000.0x3f947ae120000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb9999980000000.0xbfc9999980000000.0xbf947ae120000000.0xbfd3333320000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fc9999980000000.0x3fc9999980000000.0x3fd3333320000000.0x3fd3333320000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc9999980000000.0xc008000000000000.0xbfd3333320000000.0xbfdfffffe0000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0x4008000000000000.0x3fdfffffe0000000.0x3fdfffffe0000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xc014000000000000.0xbfdfffffe0000000.0xc16312cfe0000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4014000000000000.0x4014000000000000.0x416312d000000000.0x416312d000000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xc197d78400000000.0xc16312cfe0000000.0x3ff0000000000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4197d78400000000.0x4197d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000.0x40a8971500000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb99999a0000000.0x7ff0000000000000.0x3fc99999a0000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb99999a0000000.0xfff0000000000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x7ff0000000000000.0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000.0xc008000000000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x20000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000020000000.0x0 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x20000000.0x8000000000000000.0xc0debc9a60000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000c0000000.0x0.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000040000000.0xc0debc9a60000000.0x3a34567880000000.0x40000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x0.0x3fc9999980000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x40000000.0xbfb9999980000000.0xbfc9999980000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000a0000000.0x3fb9999980000000.0x3fb9999980000000.0x3f947ae120000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbff0000000000000.0xbfb9999980000000.0xbf847ae120000000.0xbf947ae120000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff0000000000000.0x3f847ae120000000.0x3f847ae120000000.0x3fa47ae120000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb9999980000000.0xbf847ae120000000.0xbf947ae120000000.0xbfa47ae120000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fb9999980000000.0x3f947ae120000000.0x3f947ae120000000.0x3fe3333320000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc9999980000000.0xbf947ae120000000.0xbfd3333320000000.0xbfe3333320000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fc9999980000000.0x3fd3333320000000.0x3fd3333320000000.0x3fefffffe0000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xbfd3333320000000.0xbfdfffffe0000000.0xbfefffffe0000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0x3fdfffffe0000000.0x3fdfffffe0000000.0x417312d000000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xbfdfffffe0000000.0xc16312cfe0000000.0xc17312cfe0000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4014000000000000.0x416312d000000000.0x416312d000000000.0xbff0000000000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0xc16312cfc0000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d78400000000.0xbff0000000000000.0x3fb99999a0000000.0xfff0000000000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb99999a0000000.0xbfb99999a0000000.0xfff0000000000000.0xbfc99999a0000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0x7ff0000000000000.0xbfc99999a0000000.0x4008000000000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xfff0000000000000.0xbfc99999a0000000.0x4008000000000000.0xc008000000000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000000000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000020000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x20000000.0xc0debc9a60000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000020000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x20000000.0xc0debc9a60000000.0x3a34567880000000.0x20000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x20000000.0x80000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0xc0000000.0xbfc9999980000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0x80000000.0x3fc9999980000000.0x3fc9999980000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc0000000.0xbfb9999980000000.0xbfc9999980000000.0xbf947ae120000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fb9999980000000.0x3fb9999980000000.0x3f947ae120000000.0x3f947ae120000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb9999980000000.0xbf847ae120000000.0xbf947ae120000000.0xbfa47ae120000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3f847ae120000000.0x3f847ae120000000.0x3fa47ae120000000.0x3fa47ae120000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbf847ae120000000.0xbf947ae120000000.0xbfa47ae120000000.0xbfe3333320000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3f947ae120000000.0x3f947ae120000000.0x3fe3333320000000.0x3fe3333320000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae120000000.0xbfd3333320000000.0xbfe3333320000000.0xbfefffffe0000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fd3333320000000.0x3fd3333320000000.0x3fefffffe0000000.0x3fefffffe0000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333320000000.0xbfdfffffe0000000.0xbfefffffe0000000.0xc17312cfe0000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fdfffffe0000000.0x3fdfffffe0000000.0x417312d000000000.0x417312cfe0000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfdfffffe0000000.0xc16312cfc0000000.0xc17312d000000000.0x3fb9999980000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x416312d020000000.0x416312cfe0000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312d020000000.0x3fb99999a0000000.0xbfb99999a0000000.0x7ff0000000000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0x3fc99999a0000000.0x7ff0000000000000.0x4008000000000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0xfff0000000000000.0x4008000000000000.0xc008000000000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x7ff0000000000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x1e0000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000020000000.0xc0000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x20000000.0x8000000000000000.0xc0debc9a60000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xc0debc9a60000000.0x3a34567880000000.0x260000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x8000000000000000.0x160000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x40000000.0xa0000000.0x260000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0xa0000000.0x8000000000000000.0x4008000000000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x40000000.0xbfc9999980000000.0xc008000000000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x3fc9999980000000.0x3fc9999980000000.0x3fd3333320000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb9999980000000.0xbfc9999980000000.0xbf947ae120000000.0xbfd3333320000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fb9999980000000.0x3f947ae120000000.0x3f947ae120000000.0x3fe3333320000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbf847ae120000000.0xbf947ae120000000.0xbfa47ae120000000.0xbfe3333320000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3f847ae120000000.0x3fa47ae120000000.0x3fa47ae120000000.0x4022000000000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae120000000.0xbfa47ae120000000.0xbfe3333320000000.0xc022000000000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3f947ae120000000.0x3fe3333320000000.0x3fe3333320000000.0x402e000000000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333320000000.0xbfe3333320000000.0xbfefffffe0000000.0xc02c000000000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fd3333320000000.0x3fefffffe0000000.0x4000000000000000.0x41b1e1a300000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfdfffffe0000000.0x3e70000000000000.0xc17312d000000000.0xc1b1e1a300000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff8000000000000.0x417312d000000000.0x417312d000000000.0xbfb99999a0000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312d020000000.0xc17312d000000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x416312d000000000.0xbfb99999a0000000.0x3fc99999a0000000.0xfff0000000000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0xbfc99999a0000000.0xfff0000000000000.0xc008000000000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0x7ff0000000000000.0xc008000000000000.0x4014000000000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xfff0000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000060000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x60000000.0x80000001e0000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x1e0000000.0xc0debc9a60000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000020000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x20000000.0xc0debc9a60000000.0x3a34567880000000.0x80000000a0000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0xe0000000.0x80000001a0000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0x2e0000000.0x80000000a0000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0x80000000.0xe0000000.0x80000001a0000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc0000000.0x20000000.0x2e0000000.0xc008000000000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0x80000000.0x4008000000000000.0x4008000000000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xc0000000.0xbfc9999980000000.0xc008000000000000.0xbfd3333320000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fc9999980000000.0x3fc9999980000000.0x3fd3333320000000.0x3fd3333320000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc9999980000000.0xbf947ae120000000.0xbfd3333320000000.0xbfe3333320000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3f947ae120000000.0x3f947ae120000000.0x3fe3333320000000.0x3fe3333320000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae120000000.0xbfa47ae120000000.0xbfe3333320000000.0xc022000000000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fa47ae120000000.0x3fa47ae120000000.0x4022000000000000.0x4022000000000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfa47ae120000000.0xbfe3333320000000.0xc022000000000000.0xc02c000000000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe3333320000000.0x3fe3333320000000.0x4030000000000000.0x402c000000000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333320000000.0x3e70000000000000.0xc030000000000000.0xc1b1e1a300000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x3c90000000000000.0x41b1e1a300000000.0x41b1e1a300000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc000000000000000.0xc17312d000000000.0xc1b1e1a300000000.0x3fc99999a0000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x417312d000000000.0x417312d000000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312d000000000.0x3fc99999a0000000.0xbfc99999a0000000.0x7ff0000000000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0x4008000000000000.0x7ff0000000000000.0x4014000000000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xfff0000000000000.0x4014000000000000.0xc014000000000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x7ff0000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x320000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x80000001e0000000.0xa0000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x1e0000000.0x8000000060000000.0xc0debc9a60000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000020000000.0x60000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xc0debc9a60000000.0x3a34567880000000.0x3e0000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x8000000220000000.0x1e0000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x260000000.0x8000000020000000.0x3e0000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000000000000.0x160000000.0x8000000220000000.0x1e0000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x260000000.0x8000000020000000.0x3e0000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000000000000.0x160000000.0x8000000220000000.0x4014000000000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x260000000.0xc008000000000000.0xc014000000000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000000000000.0x4008000000000000.0x4008000000000000.0x3fdfffffe0000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc9999980000000.0xc008000000000000.0xbfd3333320000000.0xbfdfffffe0000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fc9999980000000.0x3fd3333320000000.0x3fd3333320000000.0x3fefffffe0000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae120000000.0xbfd3333320000000.0xbfe3333320000000.0xbfefffffe0000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3f947ae120000000.0x3fe3333320000000.0x3fe3333320000000.0x402e000000000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfa47ae120000000.0xbfe3333320000000.0xc022000000000000.0xc02c000000000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fa47ae120000000.0x4022000000000000.0x4024000000000000.0x4038000000000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333320000000.0xc020000000000000.0xc030000000000000.0xc038e66660000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff99999a0000000.0x402c000000000000.0x402e333340000000.0x41bdcd6500000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc000000000000000.0xc02dccccc0000000.0xc1b1e1a300000000.0xc1bdcd6500000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3ff19999a0000000.0x41b1e1a300000000.0x41b1e1a300000000.0xbfc99999a0000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312d000000000.0xc1b1e1a300000000.0xbfc99999a0000000.0x4008000000000000 ++vmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x417312d000000000.0xbfc99999a0000000.0x4008000000000000.0xfff0000000000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0xfff0000000000000.0xc014000000000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x7ff0000000000000.0xc014000000000000.0x4197d78400000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xfff0000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xa0000000.0x8000000320000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000060000000.0x320000000.0xc0debc9a60000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x60000000.0x80000001e0000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x1e0000000.0xc0debc9a60000000.0x3a34567880000000.0x8000000120000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x160000000.0x8000000320000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x80000000a0000000.0x460000000.0x8000000120000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xe0000000.0x80000001a0000000.0x160000000.0x8000000320000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x2e0000000.0x80000000a0000000.0x460000000.0x8000000120000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xe0000000.0x80000001a0000000.0x160000000.0x8000000320000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x2e0000000.0x80000000a0000000.0x460000000.0xc014000000000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xe0000000.0x80000001a0000000.0x4014000000000000.0x4014000000000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x2e0000000.0xc008000000000000.0xc014000000000000.0xbfdfffffe0000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0x4008000000000000.0x3fdfffffe0000000.0x3fdfffffe0000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xbfd3333320000000.0xbfdfffffe0000000.0xbfefffffe0000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fd3333320000000.0x3fd3333320000000.0x3fefffffe0000000.0x3fefffffe0000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333320000000.0xbfe3333320000000.0xbfefffffe0000000.0xc02c000000000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe3333320000000.0x3fe3333320000000.0x4030000000000000.0x402c000000000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333320000000.0xc020000000000000.0xc030000000000000.0xc038e66660000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4024000000000000.0x4020000000000000.0x40391999a0000000.0x4038e66660000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc024000000000000.0xc02dccccc0000000.0xc0391999a0000000.0xc1bdcd6500000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x402e333340000000.0x402dccccc0000000.0x41bdcd6500000000.0x41bdcd6500000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02e333340000000.0xc1b1e1a300000000.0xc1bdcd6500000000.0x4008000000000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x41b1e1a300000000.0x41b1e1a300000000.0x4008000000000000.0xc008000000000000 ++vmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a300000000.0x4008000000000000.0xc008000000000000.0x7ff0000000000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0x7ff0000000000000.0x4197d78400000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xfff0000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x7ff0000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x0 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x320000000.0x80000000a0000000.0xc0debc9a60000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000001e0000000.0xa0000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000060000000.0xc0debc9a60000000.0x3a34567880000000.0x386dcd6500000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x8000000300000000.0x3857d78400000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x340000000.0x80000000a0000000.0x3871e1a300000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000001c0000000.0x1e0000000.0x80000003a0000000.0x3857d78400000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000020000000.0x3e0000000.0x80000000a0000000.0x3871e1a300000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000220000000.0x1e0000000.0x80000003a0000000.0x3857d78400000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000020000000.0x3e0000000.0x80000000a0000000.0x3871e1a300000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000220000000.0x1e0000000.0x8000000380000000.0x4197d78400000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000020000000.0x400000000.0xc014000000000000.0xc197d78400000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000200000000.0x4014000000000000.0x4014000000000000.0x416312d000000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xc014000000000000.0xbfdfffffe0000000.0xc16312cfe0000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0x3fdfffffe0000000.0x3fdfffffe0000000.0x417312d000000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333320000000.0xbfdfffffe0000000.0xbfefffffe0000000.0xc17312cfe0000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fd3333320000000.0x3fefffffe0000000.0x4000000000000000.0x41b1e1a300000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333320000000.0x3e70000000000000.0xc030000000000000.0xc1b1e1a300000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff99999a0000000.0x402c000000000000.0x402e333340000000.0x41bdcd6500000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc024000000000000.0xc02dccccc0000000.0xc0391999a0000000.0xc1bdcd6500000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4022333340000000.0x4038e66660000000.0x4039333340000000.0x4341c37940000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02e333340000000.0xc038ccccc0000000.0xc1bdcd6500000000.0xc341c37940000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x402e666660000000.0x41bdcd6500000000.0x41bdcd6500000000.0xc008000000000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a300000000.0xc1bdcd6500000000.0xc008000000000000.0x4014000000000000 ++vmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41b1e1a300000000.0xc008000000000000.0x4014000000000000.0xfff0000000000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0xfff0000000000000.0xc197d78400000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x7ff0000000000000.0xc197d78400000000.0x0 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xfff0000000000000.0xc197d78400000000.0x0.0x8000000000000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x0.0xfff0000000000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xa0000000.0x8000000320000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x320000000.0xc0debc9a60000000.0x3a34567880000000.0xb847d78400000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x3847d78400000000.0xb86dcd6500000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x8000000080000000.0x386dcd6500000000.0xb857d78400000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc0000000.0x8000000280000000.0x3857d78400000000.0xb871e1a300000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3c0000000.0x8000000120000000.0x3871e1a300000000.0xb857d78400000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x160000000.0x8000000320000000.0x3857d78400000000.0xb871e1a300000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x460000000.0x8000000120000000.0x3871e1a300000000.0xb857d78400000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x160000000.0x8000000320000000.0x3857d78400000000.0xb871e1a300000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x460000000.0x8000000100000000.0x3871e1a300000000.0xc197d78400000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x180000000.0x8000000300000000.0x4197d78400000000.0x4197d78400000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x480000000.0xc014000000000000.0xc197d78400000000.0xc16312cfe0000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4014000000000000.0x4014000000000000.0x416312d000000000.0x416312d000000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xbfdfffffe0000000.0xc16312cfe0000000.0xc17312cfe0000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fdfffffe0000000.0x3fdfffffe0000000.0x417312d000000000.0x417312cfe0000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfdfffffe0000000.0x3e70000000000000.0xc17312d000000000.0xc1b1e1a300000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x3c90000000000000.0x41b1e1a300000000.0x41b1e1a300000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc000000000000000.0xc02dccccc0000000.0xc1b1e1a300000000.0xc1bdcd6500000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x402e333340000000.0x402dccccc0000000.0x41bdcd6500000000.0x41bdcd6500000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02e333340000000.0xc038ccccc0000000.0xc1bdcd6500000000.0xc341c37940000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4039333340000000.0x4038ccccc0000000.0x4341c37940000000.0x4341c37940000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc039333340000000.0xc1bdcd6500000000.0xc341c37940000000.0x4014000000000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41bdcd6500000000.0x41bdcd6500000000.0x4014000000000000.0xc014000000000000 ++vmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd6500000000.0x4014000000000000.0xc014000000000000.0x7ff0000000000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0x7ff0000000000000.0x0 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xfff0000000000000.0x0.0x0 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7ff0000000000000.0x0.0x8000000000000000.0xfff0000000000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xba596c16a0000000.0x3847d78400000000.0xc0debc9a60000000.0x3a34567880000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000a0000000.0xc0debc9a60000000.0x3a34567880000000.0x20000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0xb86dcd6500000000.0xa0000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x386dcd6500000000.0xb847d783e0000000.0x20000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000300000000.0x3847d78420000000.0xb86dcd6500000000.0xa0000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0x386dcd6500000000.0xb857d78400000000.0x20000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000300000000.0x3857d78400000000.0xb871e1a300000000.0xa0000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x3871e1a300000000.0xb857d78400000000.0x40000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000003a0000000.0x3857d78400000000.0xb871e1a300000000.0xc0000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x3871e1a300000000.0xb857d78400000000.0x40000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000380000000.0x3857d78400000000.0xb871e1a300000000.0xc0000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000080000000.0x3871e1a300000000.0xc197d78400000000.0x40000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000380000000.0x4197d78400000000.0x4197d78400000000.0xc0000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xc197d78400000000.0xc16312cfe0000000.0x3ff0000000000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4014000000000000.0x416312d000000000.0x416312d000000000.0xbff0000000000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfdfffffe0000000.0xc16312cfc0000000.0xc17312d000000000.0x3fb9999980000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff8000000000000.0x417312d000000000.0x417312d000000000.0xbfb99999a0000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc000000000000000.0xc17312d000000000.0xc1b1e1a300000000.0x3fc99999a0000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3ff19999a0000000.0x41b1e1a300000000.0x41b1e1a300000000.0xbfc99999a0000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02e333340000000.0xc1b1e1a300000000.0xc1bdcd6500000000.0x4008000000000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x402e666660000000.0x41bdcd6500000000.0x41bdcd6500000000.0xc008000000000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc039333340000000.0xc1bdcd6500000000.0xc341c37940000000.0x4014000000000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x403c000000000000.0x4341c37940000000.0x4341c37940000000.0xc014000000000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd6500000000.0xc341c37940000000.0xc014000000000000.0x4197d78400000000 ++vmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x41bdcd6500000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x7ff0000000000000.0x0.0xfff0000000000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0x0.0xfff0000000000000.0x0 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3bde4e3f00000000.0xc0debc9a60000000.0x3a34567880000000.0x20000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x20000000.0xa0000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xb847d78400000000.0xa0000000.0x20000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3847d78400000000.0xb86dcd6500000000.0x20000000.0xa0000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x386dcd6500000000.0xb847d78400000000.0xa0000000.0x20000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3847d78400000000.0xb86dcd6500000000.0x20000000.0xa0000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x386dcd6500000000.0xb857d78400000000.0xa0000000.0x40000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3857d78400000000.0xb871e1a300000000.0x40000000.0xc0000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3871e1a300000000.0xb857d78400000000.0xc0000000.0x40000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3857d78400000000.0xb871e1a300000000.0x40000000.0xc0000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3871e1a300000000.0xb857d78400000000.0xc0000000.0x40000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3857d78400000000.0xb871e1a300000000.0x40000000.0xc0000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3871e1a300000000.0xc197d78400000000.0xc0000000.0x3ff0000000000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4197d78400000000.0x4197d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0xc16312cfc0000000.0xbff0000000000000.0x3fb9999980000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x416312d020000000.0x416312cfe0000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312d020000000.0xc17312d000000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x417312d000000000.0x417312d000000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312d000000000.0xc1b1e1a300000000.0xbfc99999a0000000.0x4008000000000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x41b1e1a300000000.0x41b1e1a300000000.0x4008000000000000.0xc008000000000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a300000000.0xc1bdcd6500000000.0xc008000000000000.0x4014000000000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41bdcd6500000000.0x41bdcd6500000000.0x4014000000000000.0xc014000000000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd6500000000.0xc341c37940000000.0xc014000000000000.0x4197d78400000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4341c37940000000.0x4341c37940000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc341c37940000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x0.0xfff0000000000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xfff0000000000000.0x0 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x0 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x0 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0xa0000000.0x80004cd760000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xb86dcd6500000000.0xa0000000.0x20000000.0x80000f5da0000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xb847d783e0000000.0x20000000.0xa0000000.0x80004cd760000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xb86dcd6500000000.0xa0000000.0x20000000.0x80001ebc00000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xb847d783e0000000.0x20000000.0xa0000000.0x80005c3580000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xb86dcd6500000000.0xa0000000.0x40000000.0x80001ebbe0000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xb857d78400000000.0x40000000.0xc0000000.0x80005c3580000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xb871e1a300000000.0xc0000000.0x40000000.0x80001ebbe0000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xb857d78400000000.0x40000000.0xc0000000.0x80005c3580000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xb871e1a300000000.0xc0000000.0x40000000.0xc0debc9a60000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xb857d78400000000.0x40000000.0xc0000000.0x40debcda60000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xb871e1a300000000.0xc0000000.0x3ff0000000000000.0xc0a898e1c0000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000.0x40a8971500000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d78400000000.0xbff0000000000000.0x3fb99999a0000000.0xfff0000000000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312d020000000.0x3fb99999a0000000.0xbfb99999a0000000.0x7ff0000000000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x416312d000000000.0xbfb99999a0000000.0x3fc99999a0000000.0xfff0000000000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312d000000000.0x3fc99999a0000000.0xbfc99999a0000000.0x7ff0000000000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x417312d000000000.0xbfc99999a0000000.0x4008000000000000.0xfff0000000000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a300000000.0x4008000000000000.0xc008000000000000.0x7ff0000000000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41b1e1a300000000.0xc008000000000000.0x4014000000000000.0xfff0000000000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd6500000000.0x4014000000000000.0xc014000000000000.0x7ff0000000000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x41bdcd6500000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc341c37940000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4341c37940000000.0xc197d78400000000.0x0.0x7ff0000000000000 ++=== Running test on vmad=== ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x7ff0000000000000.0x123456789abcdef0 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0xc32388ef423d9d0c.0x0 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x0.0x0 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x0.0x0.0x0 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0xaf9dae1ec2b23ac3.0xbdcccccd ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xafb6c9d4ecd7a8ba.0x3e4ccccd ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0xaf9deb97f7a2e72b.0xbe4ccccd ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xafb6d9333a13d3d4.0x40400000 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0xaf9edb5712ce8a46.0xc0400000 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xafb7152300debc9a.0x40a00000 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0xaf9f0971fa830b94.0xc0a00000 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xafb720a9bacbdcee.0x4cbebc20 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0xafa26dc8d96fd63c.0xccbebc20 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xafb89531a8e30527.0x3ff0000000000000 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0xf0debc9a78563412.0xbff0000000000000 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0x70debc9a78563412.0x3fb999999999999a ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0xf0a896e1f9de900f.0xbfb999999999999a ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0x70a896e1f9de900f.0x3fc999999999999a ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0xf0b896e1f9de900f.0xbfc999999999999a ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0x70b896e1f9de900f.0x4008000000000000 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0xf0f70d73da40a70d.0xc008000000000000 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0x70f70d73da40a70d.0x4014000000000000 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0xf10335e08b35e08b.0xc014000000000000 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0x710335e08b35e08b.0x4197d78400000000 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0xf286e690fe53a8fe.0xc197d78400000000 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0x7286e690fe53a8fe.0x0 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x0.0xf0debc9a78563412 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0xc32388ef423d9d0c.0x0 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x7ff0000000000000.0x0.0x0 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0xc32388ef423d9d0c.0x0.0x0 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xaf9e7f21436587aa.0x3dcccccd.0xbdcccccd ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0xafb6fe158d047bf3.0xbdcccccd.0x3e4ccccd ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xaf9dae1ec2b23ac3.0x3e4ccccd.0xbe4ccccd ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0xafb6c9d4ecd7a8ba.0xbe4ccccd.0x40400000 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xaf9deb97f7a2e72b.0x40400000.0xc0400000 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0xafb6d9333a13d3d4.0xc0400000.0x40a00000 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xaf9edb5712ce8a46.0x40a00000.0xc0a00000 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0xafb7152300debc9a.0xc0a00000.0x4cbebc20 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xaf9f0971fa830b94.0x4cbebc20.0xccbebc20 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0xafb720a9bacbdcee.0xccbebc20.0x3ff0000000000000 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xafa26dc8d96fd63c.0x3ff0000000000000.0xbff0000000000000 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xf0debc9a78563412.0x3fb999999999999a.0xbfb999999999999a ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x70debc9a78563412.0xbfb999999999999a.0x3fc999999999999a ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xf0a896e1f9de900f.0x3fc999999999999a.0xbfc999999999999a ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x70a896e1f9de900f.0xbfc999999999999a.0x4008000000000000 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xf0b896e1f9de900f.0x4008000000000000.0xc008000000000000 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x70b896e1f9de900f.0xc008000000000000.0x4014000000000000 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xf0f70d73da40a70e.0x4014000000000000.0xc014000000000000 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x70f70d73da40a70e.0xc014000000000000.0x4197d78400000000 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xf10335e08b35e08b.0x4197d78400000000.0xc197d78400000000 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x710335e08b35e08b.0xc197d78400000000.0x0 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xf286e690fe53a8fe.0x93de4e3f1c71c703.0x0 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x7286e690fe53a8fe.0x0.0xf0debc9a78563412 ++vmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x0.0x0 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0xc32388ef423d9d0c.0x0.0x0 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ff0000000000000.0xbf800000.0x3dcccccd.0xbdcccccd ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc32388ef423d9d0c.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xaf9e7f21436587aa.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xafb6fe158d047bf3.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xaf9dae1ec2b23ac3.0xbe4ccccd.0x40400000.0xc0400000 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xafb6c9d4ecd7a8ba.0x40400000.0xc0400000.0x40a00000 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xaf9deb97f7a2e72b.0xc0400000.0x40a00000.0xc0a00000 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xafb6d9333a13d3d4.0x40a00000.0xc0a00000.0x4cbebc20 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xaf9edb5712ce8a46.0xc0a00000.0x4cbebc20.0xccbebc20 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xafb7152300debc9a.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xaf9f0971fa830b94.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xafb720a9bacbdcee.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xf0debc9a78563412.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x70debc9a78563412.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xf0a896e1f9de900f.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x70a896e1f9de900f.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xf0b896e1f9de900f.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x70b896e1f9de900f.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xf0f70d73da40a70d.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x70f70d73da40a70d.0x4197d78400000000.0xc197d78400000000.0x0 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xf10335e08b35e08b.0xc197d78400000000.0x0.0x8000000000000000 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x710335e08b35e08b.0x13de4e3f1c71c703.0x8000000000000000.0xf0debc9a78563412 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xf286e690fe53a8fe.0x93de4e3f1c71c703.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7286e690fe53a8fe.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x0.0x0.0x0 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xaf9e7f21436587aa.0x3dcccccd.0xbdcccccd ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc32388ef423d9d0c.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x0 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x0.0xf0debc9a78563412 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x92596c16c16c16ac.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x13de4e3f1c71c703.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x0.0x0 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0xaf9dae1ec2b23ac3.0xbdcccccd ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0xafb6fe158d047bf3.0xbdcccccd.0x3e4ccccd ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xaf9e7f21436587aa.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x3b5000001 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x135000001.0x80000003b5000001 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x3bd800000.0x8000000135000001.0xf0debc9a78563412 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x13d800000.0x80000003bd800000.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x800000013d800000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0xafb6c9d4ecd7a8ba ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xafb6c9d4ecd7a8ba.0x3e4ccccd ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xaf9dae1ec2b23ac3.0x3e4ccccd.0xbe4ccccd ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xafb6fe158d047bf3.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000bae66667 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000239666667.0x137800001 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x80000000b9666667.0x3b5000001.0xf0debc9a78563412 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000023e800000.0x135000001.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3bd800000.0xf0debc9a78563412.0x123456789abcdef0.0x80573564141b12d0 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x8071ad2f4306c4b4.0xbf800000 ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x805705b50c1b12d0.0xbf800000.0x3dcccccd ++vmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8071d5b73d020000.0xbf800000.0x3dcccccd.0xaf9deb97f7a2e72b ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0xaf9deb97f7a2e72b.0xbe4ccccd ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0xafb6c9d4ecd7a8ba.0xbe4ccccd.0x40400000 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xaf9dae1ec2b23ac3.0xbe4ccccd.0x40400000.0xc0400000 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x23ae66667 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xbae66667.0x800000023ae66667 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x239666667.0x80000000bae66667.0xf0debc9a78563412 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xb9666667.0x8000000239666667.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000b9666667.0xf0debc9a78563412.0x123456789abcdef0.0x71b91b0702c4b4 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x5735641c0b12d0.0x8071b91b0306c4b4 ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x71ad2f4502c4b4.0x805735640c1b12d0.0x3dcccccd ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x5705b5140b12d0.0x8071ad2f4106c4b4.0x3dcccccd.0xbdcccccd ++vmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x805705b5041b12d0.0x3dcccccd.0xbdcccccd.0xafb6d9333a13d3d4 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xafb6d9333a13d3d4.0x40400000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xaf9deb97f7a2e72b.0x40400000.0xc0400000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xafb6c9d4ecd7a8ba.0x40400000.0xc0400000.0x40a00000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x800000000cd9999a ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x80000000260f5c29.0xc0c00000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x800000000c75c28f.0x23ae66667.0xf0debc9a78563412 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000025f5c28f.0xbae66667.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x239666667.0xf0debc9a78563412.0x123456789abcdef0.0x8000000101c00000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x8000000378000001.0x57ef5b8ff80000 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x80000000f8000001.0x71b91b0902c4b4.0x8057ef5b80233333 ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000375800001.0x573564240b12d0.0x8071b91b050d9181.0xbdcccccd ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x71ad2f4702c4b4.0x8057356414364603.0xbdcccccd.0x3e4ccccd ++vmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8071ad2f430d9181.0xbdcccccd.0x3e4ccccd.0xaf9edb5712ce8a46 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0xaf9edb5712ce8a46.0xc0400000 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0xafb6d9333a13d3d4.0xc0400000.0x40a00000 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xaf9deb97f7a2e72b.0xc0400000.0x40a00000.0xc0a00000 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x26733333 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xcd9999a.0x8000000026733333 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x260f5c29.0x800000000cd9999a.0xf0debc9a78563412 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc75c28f.0x80000000260f5c29.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x800000000c75c28f.0xf0debc9a78563412.0x123456789abcdef0.0x400c00000 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x180c00000.0x8000000301c00000 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f7000001.0x8000000081c00000.0x71e798e1f73333 ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x177000001.0x80000002f8000001.0x57ef5b87dccccd.0x8071e798de08cccd ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000078000001.0x71b91b06fbf7e7.0x8057ef5b78233333.0x3e4ccccd ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x5735641befdf9d.0x8071b91b030d9181.0x3e4ccccd.0xbe4ccccd ++vmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x805735640c364603.0x3e4ccccd.0xbe4ccccd.0xafb7152300debc9a ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xafb7152300debc9a.0x40a00000 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xaf9edb5712ce8a46.0x40a00000.0xc0a00000 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xafb6d9333a13d3d4.0x40a00000.0xc0a00000.0x4cbebc20 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000006766666 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x800000001339999a.0xceccccd ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x80000000066ccccd.0x26733333.0xf0debc9a78563412 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000001307ae15.0xcd9999a.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x260f5c29.0xf0debc9a78563412.0x123456789abcdef0.0x8000000082600000 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x8000000201400000.0x202a00000 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x8000000081400000.0x480c00000.0x8000000105533333 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000001fb666667.0x200c00000.0x8000000383733333.0x58131ed5dccccd ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x477000001.0x8000000103733333.0x71e798e3f73333.0x8058131ec61b3333 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000379b33334.0x57ef5b8fdccccd.0x8071e798e006cccd.0xbe4ccccd ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x71b91b08fbf7e7.0x8057ef5b801b3333.0xbe4ccccd.0x40400000 ++vmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8071b91b050b9181.0xbe4ccccd.0x40400000.0xaf9f0971fa830b94 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0xaf9f0971fa830b94.0xc0a00000 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0xafb7152300debc9a.0xc0a00000.0x4cbebc20 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xaf9edb5712ce8a46.0xc0a00000.0x4cbebc20.0xccbebc20 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x13433333 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x6766666.0x8000000013433333 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x1339999a.0x8000000006766666.0xf0debc9a78563412 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x66ccccd.0x800000001339999a.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000066ccccd.0xf0debc9a78563412.0x123456789abcdef0.0x281600000 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x101600000.0x8000000182600000 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x280400000.0x8000000002600000.0x400eccccd ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x100400000.0x8000000181400000.0x180eccccd.0x8000000305533333 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000001400000.0x3ff0ccccd.0x8000000085533333.0x71f089b3793333 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x17f0ccccd.0x8000000303733333.0x58131ecde4cccd.0x8071f089af86cccd ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000083733333.0x71e798e1f93333.0x8058131ebe1b3333.0x40400000 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x57ef5b87e4cccd.0x8071e798de06cccd.0x40400000.0xc0400000 ++vmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8057ef5b781b3333.0x40400000.0xc0400000.0xafb720a9bacbdcee ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xafb720a9bacbdcee.0x4cbebc20 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xaf9f0971fa830b94.0x4cbebc20.0xccbebc20 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xafb7152300debc9a.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x800000004cbebc20 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x80000000c0a00000.0x7acac6a ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000040a00000.0x13433333.0xf0debc9a78563412 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000c0400000.0x6766666.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x1339999a.0xf0debc9a78563412.0x123456789abcdef0.0x3026a72d ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x18f9999a.0x1a5bc3460 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x32933333.0x301600000.0x80000000a86f6793 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x190ccccd.0x181600000.0x8000000204133333.0x23d86796d ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x300400000.0x8000000084133333.0x480eccccd.0x80000001416cdfd3 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000202f33333.0x200eccccd.0x8000000384d33333.0x5c96fab0c44ecd ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x47f0ccccd.0x8000000104d33333.0x71f089b5793333.0x805c96faa0db8200 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000382f33333.0x58131ed5e4cccd.0x8071f089b17f0000.0xc0400000 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x71e798e3f93333.0x8058131ec5fc0000.0xc0400000.0x40a00000 ++vmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8071e798dfff0000.0xc0400000.0x40a00000.0xafa26dc8d96fd63c ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0xafa26dc8d96fd63c.0xccbebc20 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0xafb720a9bacbdcee.0xccbebc20.0x3ff0000000000000 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xaf9f0971fa830b94.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xccbebc20 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x4cbebc20.0x80000000ccbebc20 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xc0a00000.0x800000004cbebc20.0xf0debc9a78563412 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40a00000.0x80000000c0a00000.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000040a00000.0xf0debc9a78563412.0x123456789abcdef0.0x6872f26d ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x4ed958d3.0x968d0d93 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x66066666.0xb026a72d.0x2a409012d ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4c6ccccd.0x98f9999a.0x12409012d.0x80000001a86f6793 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xb2933333.0x27faccccd.0x80000000286f6793.0x43e06796d ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xffaccccd.0x8000000184133333.0x1be06796d.0x80000003416cdfd3 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000004133333.0x4016ccccd.0x80000000c16cdfd3.0x731180aa38e080 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x1816ccccd.0x8000000304d33333.0x5c96faa8e38200.0x80731180a636e080 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000084d33333.0x71f089b3810000.0x805c96fa98db8200.0x40a00000 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x58131ece040000.0x8071f089af7f0000.0x40a00000.0xc0a00000 ++vmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8058131ebdfc0000.0x40a00000.0xc0a00000.0xafb89531a8e30527 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xafb89531a8e30527.0x3ff0000000000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xafa26dc8d96fd63c.0x3ff0000000000000.0xbff0000000000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xafb720a9bacbdcee.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xccbebc20 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x3ff0000000000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0xccbebc20.0xf0debc9a78563412 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4cbebc20.0xf0debc9a78563412.0x3fb999999999999a ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0a00000.0xf0debc9a78563412.0x123456789abcdef0.0xbfb999999999999a ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x2b0686ca.0x3fc999999999999a ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x37d35396.0xe872f26d.0xbfc999999999999a ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x2c3ccccd.0xced958d3.0x14d9da60.0x4008000000000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xe6066666.0x2e7373fa.0x32409012d.0xc008000000000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x17466667.0x1a409012d.0x8000000227ef6793.0x4014000000000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x2ffaccccd.0x80000000a7ef6793.0x4be06796d.0xc014000000000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000203933333.0x23e06796d.0x80000003bf79aca0.0x4197d78400000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4816ccccd.0x800000013f79aca0.0x731180ac38e080.0xc197d78400000000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000382e00000.0x5c96fab0e38200.0x80731180a8356080.0xc0a00000 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x71f089b5810000.0x805c96faa0d58200.0xc0a00000.0x4cbebc20 ++vmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8071f089b17d8000.0xc0a00000.0x4cbebc20.0xf0debc9a78563412 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0xf0debc9a78563412.0xbff0000000000000 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x800000004cbebc20 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x4cbebc20.0x80000000ccbebc20 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0xccbebc20.0xf0debc9a78563412 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xf0debc9a78563412.0x3ff0000000000000 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0xbff0000000000000.0xbfb999999999999a ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3fb999999999999a.0x3fb999999999999a ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x53f97936.0xbfb999999999999a.0xbfc999999999999a ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x472cac6a.0xab0686ca.0x3fc999999999999a.0x3fc999999999999a ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xb7d35396.0x66bfbf3a.0xbfc999999999999a.0xc008000000000000 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4d2625a0.0x94d9da60.0x4008000000000000.0x4008000000000000 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xae7373fa.0x2a489012d.0xc008000000000000.0xc014000000000000 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x12489012d.0x80000001a7ef6793.0x4014000000000000.0x4014000000000000 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000027ef6793.0x43ff9aca0.0xc014000000000000.0xc197d78400000000 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x1bff9aca0.0x800000033f79aca0.0x4197d78400000000.0x4197d78400000000 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000bf79aca0.0x731180aa3a6080.0xc197d78400000000.0x4cbebc20 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x5c96faa8e98200.0x80731180a6356080.0x4cbebc20.0xccbebc20 ++vmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x805c96fa98d58200.0x4cbebc20.0xccbebc20.0x70debc9a78563412 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0x70debc9a78563412.0x3fb999999999999a ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xf0debc9a78563412.0x3fb999999999999a.0xbfb999999999999a ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x13433333 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x80000000c0a00000.0x7acac6a ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xc0a00000.0x800000004cbebc20.0xf0debc9a78563412 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4cbebc20.0xf0debc9a78563412.0x3fb999999999999a ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0xbff0000000000000.0xbfb999999999999a ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x3ff0000000000000.0x3ff0000000000000.0x3f847ae147ae147c ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0xbff0000000000000.0xbfb999999999999a.0xbf847ae147ae147c ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000008d3ebc20.0x3fb999999999999a.0x3fb999999999999a.0x3f947ae147ae147c ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xd3f97936.0xbfb999999999999a.0xbfc999999999999a.0xbf947ae147ae147c ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x29535397.0x3fc999999999999a.0x3fc999999999999a.0x3fd3333333333334 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xe6bfbf3a.0xbfc999999999999a.0xc008000000000000.0xbfd3333333333333 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x1559da60.0x4008000000000000.0x4008000000000000.0x3fe0000000000000 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x32489012d.0xc008000000000000.0xc014000000000000.0xbfe0000000000000 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000225fc3460.0x4014000000000000.0x4014000000000000.0x416312d000000000 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4bff9aca0.0xc014000000000000.0xc197d78400000000.0xc16312d000000000 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80000003bf19aca0.0x4197d78400000000.0x4197d78400000000.0xccbebc20 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x731180ac3a6080.0xc197d78400000000.0xccbebc20.0x3ff0000000000000 ++vmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80731180a804e590.0xccbebc20.0x3ff0000000000000.0xf0a896e1f9de900f ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0xf0a896e1f9de900f.0xbfb999999999999a ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x70debc9a78563412.0xbfb999999999999a.0x3fc999999999999a ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xf0debc9a78563412.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000006766666 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x6766666.0x8000000013433333 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000040a00000.0x13433333.0xf0debc9a78563412 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40a00000.0x80000000c0a00000.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0a00000.0xf0debc9a78563412.0x123456789abcdef0.0xbfb999999999999a ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3fb999999999999a.0x3fb999999999999a ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0xbff0000000000000.0xbfb999999999999a.0xbf847ae147ae147c ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff0000000000000.0x3ff0000000000000.0x3f847ae147ae147c.0x3f847ae147ae147c ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbff0000000000000.0xbfb999999999999a.0xbf847ae147ae147c.0xbf947ae147ae147c ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fb999999999999a.0x3fb999999999999a.0x3f947ae147ae147c.0x3f947ae147ae147c ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb999999999999a.0xbfc999999999999a.0xbf947ae147ae147c.0xbfd3333333333333 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fc999999999999a.0x3fc999999999999a.0x3fd3333333333334.0x3fd3333333333334 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc999999999999a.0xc008000000000000.0xbfd3333333333333.0xbfe0000000000000 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xc014000000000000.0xbfe0000000000000.0xc16312d000000000 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4014000000000000.0x4014000000000000.0x416312d000000000.0x416312d000000000 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xc197d78400000000.0xc16312d000000000.0x3ff0000000000000 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4197d78400000000.0x4197d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000.0x70a896e1f9de900f ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0x70a896e1f9de900f.0x3fc999999999999a ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xf0a896e1f9de900f.0x3fc999999999999a.0xbfc999999999999a ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x70debc9a78563412.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x26733333 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x800000001339999a.0xceccccd ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x1339999a.0x8000000006766666.0xf0debc9a78563412 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000c0400000.0x6766666.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000040a00000.0xf0debc9a78563412.0x123456789abcdef0.0x6872f26d ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x2b0686ca.0x3fc999999999999a ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x53f97936.0xbfb999999999999a.0xbfc999999999999a ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000008d3ebc20.0x3fb999999999999a.0x3fb999999999999a.0x3f947ae147ae147c ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbff0000000000000.0xbfb999999999999a.0xbf847ae147ae147c.0xbf947ae147ae147c ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff0000000000000.0x3f847ae147ae147c.0x3f847ae147ae147c.0x3fa47ae147ae147c ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb999999999999a.0xbf847ae147ae147c.0xbf947ae147ae147c.0xbfa47ae147ae147c ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fb999999999999a.0x3f947ae147ae147c.0x3f947ae147ae147c.0x3fe3333333333334 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc999999999999a.0xbf947ae147ae147c.0xbfd3333333333333.0xbfe3333333333333 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fc999999999999a.0x3fd3333333333334.0x3fd3333333333334.0x3ff0000000000000 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xbfd3333333333333.0xbfe0000000000000.0xbff0000000000000 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000.0x417312d000000000 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xbfe0000000000000.0xc16312d000000000.0xc17312cff0000000 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4014000000000000.0x416312d000000000.0x416312d020000000.0xbff0000000000000 ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0xc16312cfe0000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d78404000000.0xbff0000000000000.0x3fb999999999999a.0xf0b896e1f9de900f ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0xf0b896e1f9de900f.0xbfc999999999999a ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x70a896e1f9de900f.0xbfc999999999999a.0x4008000000000000 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xf0a896e1f9de900f.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x800000000cd9999a ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xcd9999a.0x8000000026733333 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x80000000066ccccd.0x26733333.0xf0debc9a78563412 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x66ccccd.0x800000001339999a.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x1339999a.0xf0debc9a78563412.0x123456789abcdef0.0x3026a72d ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x4ed958d3.0x968d0d93 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x37d35396.0xe872f26d.0xbfc999999999999a ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x472cac6a.0xab0686ca.0x3fc999999999999a.0x3fc999999999999a ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xd3f97936.0xbfb999999999999a.0xbfc999999999999a.0xbf947ae147ae147c ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fb999999999999a.0x3fb999999999999a.0x3f947ae147ae147c.0x3f947ae147ae147c ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb999999999999a.0xbf847ae147ae147c.0xbf947ae147ae147c.0xbfa47ae147ae147c ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3f847ae147ae147c.0x3f847ae147ae147c.0x3fa47ae147ae147c.0x3fa47ae147ae147c ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbf847ae147ae147c.0xbf947ae147ae147c.0xbfa47ae147ae147c.0xbfe3333333333333 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3f947ae147ae147c.0x3f947ae147ae147c.0x3fe3333333333334.0x3fe3333333333334 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae147ae147c.0xbfd3333333333333.0xbfe3333333333333.0xbff0000000000000 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fd3333333333334.0x3fd3333333333334.0x3ff0000000000000.0x3ff0000000000000 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333333333333.0xbfe0000000000000.0xbff0000000000000.0xc17312cff0000000 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe0000000000000.0x3fe0000000000000.0x417312d010000000.0x417312cff0000000 ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe0000000000000.0xc16312cfe0000000.0xc17312d010000000.0x3fb999999999999a ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x416312d020000000.0x416312cfe0000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312d020000000.0x3fb999999999999a.0xbfb999999999999a.0x70b896e1f9de900f ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0x70b896e1f9de900f.0x4008000000000000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xf0b896e1f9de900f.0x4008000000000000.0xc008000000000000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x70a896e1f9de900f.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x23ae66667 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x80000000260f5c29.0xc0c00000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x260f5c29.0x800000000cd9999a.0xf0debc9a78563412 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000001307ae15.0xcd9999a.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000066ccccd.0xf0debc9a78563412.0x123456789abcdef0.0x281600000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x18f9999a.0x1a5bc3460 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x66066666.0xb026a72d.0x2a409012d ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x2c3ccccd.0xced958d3.0x14d9da60.0x4008000000000000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xb7d35396.0x66bfbf3a.0xbfc999999999999a.0xc008000000000000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x29535397.0x3fc999999999999a.0x3fc999999999999a.0x3fd3333333333334 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb999999999999a.0xbfc999999999999a.0xbf947ae147ae147c.0xbfd3333333333333 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fb999999999999a.0x3f947ae147ae147c.0x3f947ae147ae147c.0x3fe3333333333334 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbf847ae147ae147c.0xbf947ae147ae147c.0xbfa47ae147ae147c.0xbfe3333333333333 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3f847ae147ae147c.0x3fa47ae147ae147c.0x3fa47ae147ae147c.0x4022000000000000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae147ae147c.0xbfa47ae147ae147c.0xbfe3333333333333.0xc022000000000000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3f947ae147ae147c.0x3fe3333333333334.0x3fe3333333333334.0x402e000000000000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333333333333.0xbfe3333333333333.0xbff0000000000000.0xc02c000000000000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fd3333333333334.0x3ff0000000000000.0x4000000000000000.0x41b1e1a2ff000000 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe0000000000000.0xbc90000000000000.0xc17312d010000000.0xc1b1e1a2ffe66666 ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff8000000000000.0x417312cff0000000.0x417312d00199999a.0xbfb999999999999a ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312d020000000.0xc17312cffe666667.0xbfb999999999999a.0x3fc999999999999a ++vmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x416312d003333333.0xbfb999999999999a.0x3fc999999999999a.0xf0f70d73da40a70e ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0xf0f70d73da40a70d.0xc008000000000000 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x70b896e1f9de900f.0xc008000000000000.0x4014000000000000 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xf0b896e1f9de900f.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000bae66667 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xbae66667.0x800000023ae66667 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x800000000c75c28f.0x23ae66667.0xf0debc9a78563412 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc75c28f.0x80000000260f5c29.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x260f5c29.0xf0debc9a78563412.0x123456789abcdef0.0x8000000082600000 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x101600000.0x8000000182600000 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x32933333.0x301600000.0x80000000a86f6793 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x4c6ccccd.0x98f9999a.0x12409012d.0x80000001a86f6793 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xe6066666.0x2e7373fa.0x32409012d.0xc008000000000000 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x4d2625a0.0x94d9da60.0x4008000000000000.0x4008000000000000 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xe6bfbf3a.0xbfc999999999999a.0xc008000000000000.0xbfd3333333333333 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fc999999999999a.0x3fc999999999999a.0x3fd3333333333334.0x3fd3333333333334 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc999999999999a.0xbf947ae147ae147c.0xbfd3333333333333.0xbfe3333333333333 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3f947ae147ae147c.0x3f947ae147ae147c.0x3fe3333333333334.0x3fe3333333333334 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae147ae147c.0xbfa47ae147ae147c.0xbfe3333333333333.0xc022000000000000 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fa47ae147ae147c.0x3fa47ae147ae147c.0x4022000000000000.0x4022000000000000 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfa47ae147ae147c.0xbfe3333333333333.0xc022000000000000.0xc02c000000000000 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe3333333333334.0x3fe3333333333334.0x4030000000000000.0x402c000000000000 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333333333333.0xbc90000000000000.0xc030000000000000.0xc1b1e1a2ffe66666 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x3c90000000000000.0x41b1e1a30019999a.0x41b1e1a2ffe66666 ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc000000000000000.0xc17312cffe666667.0xc1b1e1a30019999a.0x3fc999999999999a ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x417312d00199999a.0x417312cffe666667.0x3fc999999999999a.0xbfc999999999999a ++vmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312d00199999a.0x3fc999999999999a.0xbfc999999999999a.0x70f70d73da40a70e ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0x70f70d73da40a70d.0x4014000000000000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xf0f70d73da40a70e.0x4014000000000000.0xc014000000000000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x70b896e1f9de900f.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x3b5000001 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000239666667.0x137800001 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x239666667.0x80000000bae66667.0xf0debc9a78563412 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000025f5c28f.0xbae66667.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x800000000c75c28f.0xf0debc9a78563412.0x123456789abcdef0.0x400c00000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x8000000201400000.0x202a00000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x280400000.0x8000000002600000.0x400eccccd ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x190ccccd.0x181600000.0x8000000204133333.0x23d86796d ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xb2933333.0x27faccccd.0x80000000286f6793.0x43e06796d ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x17466667.0x1a409012d.0x8000000227ef6793.0x4014000000000000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xae7373fa.0x2a489012d.0xc008000000000000.0xc014000000000000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x1559da60.0x4008000000000000.0x4008000000000000.0x3fe0000000000000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc999999999999a.0xc008000000000000.0xbfd3333333333333.0xbfe0000000000000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fc999999999999a.0x3fd3333333333334.0x3fd3333333333334.0x3ff0000000000000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae147ae147c.0xbfd3333333333333.0xbfe3333333333333.0xbff0000000000000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3f947ae147ae147c.0x3fe3333333333334.0x3fe3333333333334.0x402e000000000000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfa47ae147ae147c.0xbfe3333333333333.0xc022000000000000.0xc02c000000000000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fa47ae147ae147c.0x4022000000000000.0x4024000000000000.0x4038000000000000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333333333333.0xc020000000000000.0xc030000000000000.0xc038e66666666666 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff999999999999a.0x402c000000000000.0x402e333333333333.0x41bdcd64ffe66666 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc000000000000000.0xc02dcccccccccccd.0xc1b1e1a30019999a.0xc1bdcd64ffcccccd ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3ff199999999999a.0x41b1e1a2ffe66666.0x41b1e1a300333333.0xbfc999999999999a ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312d00199999a.0xc1b1e1a2ffcccccd.0xbfc999999999999a.0x4008000000000000 ++vmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x417312d003333333.0xbfc999999999999a.0x4008000000000000.0xf10335e08b35e08b ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0xf10335e08b35e08b.0xc014000000000000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x70f70d73da40a70e.0xc014000000000000.0x4197d78400000000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xf0f70d73da40a70d.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x135000001.0x80000003b5000001 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x80000000b9666667.0x3b5000001.0xf0debc9a78563412 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xb9666667.0x8000000239666667.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x239666667.0xf0debc9a78563412.0x123456789abcdef0.0x8000000101c00000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x180c00000.0x8000000301c00000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x8000000081400000.0x480c00000.0x8000000105533333 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x100400000.0x8000000181400000.0x180eccccd.0x8000000305533333 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x300400000.0x8000000084133333.0x480eccccd.0x80000001416cdfd3 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xffaccccd.0x8000000184133333.0x1be06796d.0x80000003416cdfd3 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x2ffaccccd.0x80000000a7ef6793.0x4be06796d.0xc014000000000000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x12489012d.0x80000001a7ef6793.0x4014000000000000.0x4014000000000000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x32489012d.0xc008000000000000.0xc014000000000000.0xbfe0000000000000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xbfd3333333333333.0xbfe0000000000000.0xbff0000000000000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fd3333333333334.0x3fd3333333333334.0x3ff0000000000000.0x3ff0000000000000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333333333333.0xbfe3333333333333.0xbff0000000000000.0xc02c000000000000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe3333333333334.0x3fe3333333333334.0x4030000000000000.0x402c000000000000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333333333333.0xc020000000000000.0xc030000000000000.0xc038e66666666666 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4024000000000000.0x4020000000000000.0x403919999999999a.0x4038e66666666666 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc024000000000000.0xc02dcccccccccccd.0xc03919999999999a.0xc1bdcd64ffcccccd ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x402e333333333333.0x402dcccccccccccd.0x41bdcd6500333333.0x41bdcd64ffcccccd ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02e333333333333.0xc1b1e1a2ffcccccd.0xc1bdcd6500333333.0x4008000000000000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x41b1e1a300333333.0x41b1e1a2ffcccccd.0x4008000000000000.0xc008000000000000 ++vmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a300333333.0x4008000000000000.0xc008000000000000.0x710335e08b35e08b ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0x710335e08b35e08b.0x4197d78400000000 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xf10335e08b35e08b.0x4197d78400000000.0xc197d78400000000 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x70f70d73da40a70d.0x4197d78400000000.0xc197d78400000000.0x0 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x0 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x3bd800000.0x8000000135000001.0xf0debc9a78563412 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000023e800000.0x135000001.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000b9666667.0xf0debc9a78563412.0x123456789abcdef0.0x71b91b0702c4b4 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x8000000378000001.0x57ef5b8ff80000 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f7000001.0x8000000081c00000.0x71e798e1f73333 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000001fb666667.0x200c00000.0x8000000383733333.0x58131ed5dccccd ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000001400000.0x3ff0ccccd.0x8000000085533333.0x71f089b3793333 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000202f33333.0x200eccccd.0x8000000384d33333.0x5c96fab0c44ecd ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000004133333.0x4016ccccd.0x80000000c16cdfd3.0x731180aa38e080 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000203933333.0x23e06796d.0x80000003bf79aca0.0x4197d78400000000 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000027ef6793.0x43ff9aca0.0xc014000000000000.0xc197d78400000000 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000225fc3460.0x4014000000000000.0x4014000000000000.0x416312d000000000 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xc014000000000000.0xbfe0000000000000.0xc16312d000000000 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000.0x417312d000000000 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333333333333.0xbfe0000000000000.0xbff0000000000000.0xc17312cff0000000 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fd3333333333334.0x3ff0000000000000.0x4000000000000000.0x41b1e1a2ff000000 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333333333333.0xbc90000000000000.0xc030000000000000.0xc1b1e1a2ffe66666 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff999999999999a.0x402c000000000000.0x402e333333333333.0x41bdcd64ffe66666 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc024000000000000.0xc02dcccccccccccd.0xc03919999999999a.0xc1bdcd64ffcccccd ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4022333333333333.0x4038e66666666666.0x4039333333333333.0x4341c37937e08000 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02e333333333333.0xc038cccccccccccd.0xc1bdcd6500333333.0xc341c37937e07ffe ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x402e666666666666.0x41bdcd64ffcccccd.0x41bdcd6503000000.0xc008000000000000 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a300333333.0xc1bdcd64fd000000.0xc008000000000000.0x4014000000000000 ++vmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41b1e1a303000000.0xc008000000000000.0x4014000000000000.0xf286e690fe53a8fe ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0xf286e690fe53a8fe.0xc197d78400000000 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x710335e08b35e08b.0xc197d78400000000.0x0 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xf10335e08b35e08b.0xc197d78400000000.0x0.0x8000000000000000 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x0.0xf0debc9a78563412 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x13d800000.0x80000003bd800000.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3bd800000.0xf0debc9a78563412.0x123456789abcdef0.0x80573564141b12d0 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x5735641c0b12d0.0x8071b91b0306c4b4 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x80000000f8000001.0x71b91b0902c4b4.0x8057ef5b80233333 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x177000001.0x80000002f8000001.0x57ef5b87dccccd.0x8071e798de08cccd ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x477000001.0x8000000103733333.0x71e798e3f73333.0x8058131ec61b3333 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x17f0ccccd.0x8000000303733333.0x58131ecde4cccd.0x8071f089af86cccd ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x47f0ccccd.0x8000000104d33333.0x71f089b5793333.0x805c96faa0db8200 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x1816ccccd.0x8000000304d33333.0x5c96faa8e38200.0x80731180a636e080 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4816ccccd.0x800000013f79aca0.0x731180ac38e080.0xc197d78400000000 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x1bff9aca0.0x800000033f79aca0.0x4197d78400000000.0x4197d78400000000 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4bff9aca0.0xc014000000000000.0xc197d78400000000.0xc16312d000000000 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4014000000000000.0x4014000000000000.0x416312d000000000.0x416312d000000000 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xbfe0000000000000.0xc16312d000000000.0xc17312cff0000000 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe0000000000000.0x3fe0000000000000.0x417312d010000000.0x417312cff0000000 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe0000000000000.0xbc90000000000000.0xc17312d010000000.0xc1b1e1a2ffe66666 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4000000000000000.0x3c90000000000000.0x41b1e1a30019999a.0x41b1e1a2ffe66666 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc000000000000000.0xc02dcccccccccccd.0xc1b1e1a30019999a.0xc1bdcd64ffcccccd ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x402e333333333333.0x402dcccccccccccd.0x41bdcd6500333333.0x41bdcd64ffcccccd ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02e333333333333.0xc038cccccccccccd.0xc1bdcd6500333333.0xc341c37937e07ffe ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4039333333333333.0x4038cccccccccccd.0x4341c37937e08002.0x4341c37937e07ffe ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc039333333333333.0xc1bdcd64fd000000.0xc341c37937e08002.0x4014000000000000 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41bdcd6503000000.0x41bdcd64fd000000.0x4014000000000000.0xc014000000000000 ++vmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd6503000000.0x4014000000000000.0xc014000000000000.0x7286e690fe53a8fe ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0x7286e690fe53a8fe.0x0 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xf286e690fe53a8fe.0x93de4e3f1c71c703.0x0 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x710335e08b35e08b.0x13de4e3f1c71c703.0x8000000000000000.0xf0debc9a78563412 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x92596c16c16c16ac.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x800000013d800000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x8071ad2f4306c4b4.0xbf800000 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x71ad2f4502c4b4.0x805735640c1b12d0.0x3dcccccd ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000375800001.0x573564240b12d0.0x8071b91b050d9181.0xbdcccccd ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000078000001.0x71b91b06fbf7e7.0x8057ef5b78233333.0x3e4ccccd ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000379b33334.0x57ef5b8fdccccd.0x8071e798e006cccd.0xbe4ccccd ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000083733333.0x71e798e1f93333.0x8058131ebe1b3333.0x40400000 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000382f33333.0x58131ed5e4cccd.0x8071f089b17f0000.0xc0400000 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000084d33333.0x71f089b3810000.0x805c96fa98db8200.0x40a00000 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000382e00000.0x5c96fab0e38200.0x80731180a8356080.0xc0a00000 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000bf79aca0.0x731180aa3a6080.0xc197d78400000000.0x4cbebc20 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80000003bf19aca0.0x4197d78400000000.0x4197d78400000000.0xccbebc20 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xc197d78400000000.0xc16312d000000000.0x3ff0000000000000 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4014000000000000.0x416312d000000000.0x416312d020000000.0xbff0000000000000 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe0000000000000.0xc16312cfe0000000.0xc17312d010000000.0x3fb999999999999a ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff8000000000000.0x417312cff0000000.0x417312d00199999a.0xbfb999999999999a ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc000000000000000.0xc17312cffe666667.0xc1b1e1a30019999a.0x3fc999999999999a ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3ff199999999999a.0x41b1e1a2ffe66666.0x41b1e1a300333333.0xbfc999999999999a ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02e333333333333.0xc1b1e1a2ffcccccd.0xc1bdcd6500333333.0x4008000000000000 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x402e666666666666.0x41bdcd64ffcccccd.0x41bdcd6503000000.0xc008000000000000 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc039333333333333.0xc1bdcd64fd000000.0xc341c37937e08002.0x4014000000000000 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x403c000000000000.0x4341c37937e07ffe.0x4341c37937e08002.0xc014000000000000 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd6503000000.0xc341c37937e07ffe.0xc014000000000000.0x4197d78400000000 ++vmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x41bdcd6505000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x7286e690fe53a8fe.0x0.0xf0debc9a78563412 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xf286e690fe53a8fe.0x93de4e3f1c71c703.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x13de4e3f1c71c703.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x805705b50c1b12d0.0xbf800000.0x3dcccccd ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x5705b5140b12d0.0x8071ad2f4106c4b4.0x3dcccccd.0xbdcccccd ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x71ad2f4702c4b4.0x8057356414364603.0xbdcccccd.0x3e4ccccd ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x5735641befdf9d.0x8071b91b030d9181.0x3e4ccccd.0xbe4ccccd ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x71b91b08fbf7e7.0x8057ef5b801b3333.0xbe4ccccd.0x40400000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x57ef5b87e4cccd.0x8071e798de06cccd.0x40400000.0xc0400000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x71e798e3f93333.0x8058131ec5fc0000.0xc0400000.0x40a00000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x58131ece040000.0x8071f089af7f0000.0x40a00000.0xc0a00000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x71f089b5810000.0x805c96faa0d58200.0xc0a00000.0x4cbebc20 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x5c96faa8e98200.0x80731180a6356080.0x4cbebc20.0xccbebc20 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x731180ac3a6080.0xc197d78400000000.0xccbebc20.0x3ff0000000000000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4197d78400000000.0x4197d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0xc16312cfe0000000.0xbff0000000000000.0x3fb999999999999a ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x416312d020000000.0x416312cfe0000000.0x3fb999999999999a.0xbfb999999999999a ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312d020000000.0xc17312cffe666667.0xbfb999999999999a.0x3fc999999999999a ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x417312d00199999a.0x417312cffe666667.0x3fc999999999999a.0xbfc999999999999a ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312d00199999a.0xc1b1e1a2ffcccccd.0xbfc999999999999a.0x4008000000000000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x41b1e1a300333333.0x41b1e1a2ffcccccd.0x4008000000000000.0xc008000000000000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a300333333.0xc1bdcd64fd000000.0xc008000000000000.0x4014000000000000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41bdcd6503000000.0x41bdcd64fd000000.0x4014000000000000.0xc014000000000000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd6503000000.0xc341c37937e07ffe.0xc014000000000000.0x4197d78400000000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4341c37937e08002.0x4341c37937e07ffe.0x4197d78400000000.0xc197d78400000000 ++vmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc341c37937e08002.0x4197d78400000000.0xc197d78400000000.0x0 ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x0.0xf0debc9a78563412 ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7286e690fe53a8fe.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x0.0x0 ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0xafb6c9d4ecd7a8ba ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8071d5b73d020000.0xbf800000.0x3dcccccd.0xaf9deb97f7a2e72b ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x805705b5041b12d0.0x3dcccccd.0xbdcccccd.0xafb6d9333a13d3d4 ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8071ad2f430d9181.0xbdcccccd.0x3e4ccccd.0xaf9edb5712ce8a46 ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x805735640c364603.0x3e4ccccd.0xbe4ccccd.0xafb7152300debc9a ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8071b91b050b9181.0xbe4ccccd.0x40400000.0xaf9f0971fa830b94 ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8057ef5b781b3333.0x40400000.0xc0400000.0xafb720a9bacbdcee ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8071e798dfff0000.0xc0400000.0x40a00000.0xafa26dc8d96fd63c ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8058131ebdfc0000.0x40a00000.0xc0a00000.0xafb89531a8e30527 ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8071f089b17d8000.0xc0a00000.0x4cbebc20.0xf0debc9a78563412 ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x805c96fa98d58200.0x4cbebc20.0xccbebc20.0x70debc9a78563412 ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80731180a804e590.0xccbebc20.0x3ff0000000000000.0xf0a896e1f9de900f ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000.0x70a896e1f9de900f ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d78404000000.0xbff0000000000000.0x3fb999999999999a.0xf0b896e1f9de900f ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312d020000000.0x3fb999999999999a.0xbfb999999999999a.0x70b896e1f9de900f ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x416312d003333333.0xbfb999999999999a.0x3fc999999999999a.0xf0f70d73da40a70e ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312d00199999a.0x3fc999999999999a.0xbfc999999999999a.0x70f70d73da40a70e ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x417312d003333333.0xbfc999999999999a.0x4008000000000000.0xf10335e08b35e08b ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a300333333.0x4008000000000000.0xc008000000000000.0x710335e08b35e08b ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41b1e1a303000000.0xc008000000000000.0x4014000000000000.0xf286e690fe53a8fe ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd6503000000.0x4014000000000000.0xc014000000000000.0x7286e690fe53a8fe ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x41bdcd6505000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc341c37937e08002.0x4197d78400000000.0xc197d78400000000.0x0 ++vmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4341c3793adb7080.0xc197d78400000000.0x0.0x7ff0000000000000 ++=== Running test on vmss=== ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x7ff0000000000000.0x0 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x7ff0000000000000.0xc32388ef40000000.0x0 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x80004cd820000000.0x8000000020000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x80000000a0000000.0x80000f5e60000000.0x80000000a0000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x8000000020000000.0x80004cd820000000.0x8000000020000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0x80000000a0000000.0x80000f5e60000000.0x80000000a0000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x8000000020000000.0x80004cd820000000.0x8000000040000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0x80000000a0000000.0x80001ebce0000000.0x80000000c0000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x8000000040000000.0x80005c3680000000.0x8000000040000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0x80001ebce0000000.0x80000000c0000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x80005c3680000000.0x8000000040000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x80001ebce0000000.0x80000000c0000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80005c3680000000.0xbff0000000000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xc0debcda60000000.0x3ff0000000000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x40debcda60000000.0xbfb9999980000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xfff0000000000000.0x3fb99999a0000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb99999a0000000.0x7ff0000000000000.0xbfc99999a0000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb99999a0000000.0x3fb99999a0000000.0xfff0000000000000.0x3fc99999a0000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0xbfc99999a0000000.0x7ff0000000000000.0xc008000000000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0x3fc99999a0000000.0xfff0000000000000.0x4008000000000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0xc008000000000000.0x7ff0000000000000.0xc014000000000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xfff0000000000000.0x4014000000000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x7ff0000000000000.0xc197d78400000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xfff0000000000000.0x4197d78400000000 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x7ff0000000000000.0x0 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0x7ff0000000000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x7ff0000000000000.0xc32388ef40000000.0x0 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x7ff0000000000000.0x0.0x0 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0xbb2388ef20000000.0x80000000a0000000.0x8000000020000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x80000f5ee0000000.0x8000000020000000.0x80000000a0000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x80004cd7a0000000.0x80000000a0000000.0x8000000020000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0x80000f5ee0000000.0x8000000020000000.0x80000000a0000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x80004cd7a0000000.0x80000000a0000000.0x8000000040000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0x80000f5ee0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x80004cd7c0000000.0x80000000c0000000.0x8000000040000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80001ebd60000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x80005c3600000000.0x80000000c0000000.0x8000000040000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80001ebd60000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x80005c3600000000.0x80000000c0000000.0xbff0000000000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80001ebd60000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xc0debc5a60000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x7ff0000000000000.0x3fb99999a0000000.0xbfc99999a0000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb99999a0000000.0xfff0000000000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0x7ff0000000000000.0x3fc99999a0000000.0xc008000000000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0xfff0000000000000.0xc008000000000000.0x4008000000000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0x7ff0000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xfff0000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x7ff0000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xfff0000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x7ff0000000000000.0x4197d78400000000.0x8000000000000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xfff0000000000000.0x0.0x0 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x7ff0000000000000.0x0.0x7ff0000000000000 ++vmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x7ff0000000000000.0x0 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x0 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0xbb2388ef20000000.0x80000000a0000000.0x8000000020000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x41cd85f900000000.0x80000000a0000000.0x8000000020000000.0x80000000a0000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbb2388ef20000000.0x8000000020000000.0x80000000a0000000.0x8000000020000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000f5e60000000.0x80000000a0000000.0x8000000020000000.0x80000000a0000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80004cd820000000.0x8000000020000000.0x80000000a0000000.0x8000000040000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000f5e60000000.0x80000000a0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80004cd820000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000f5e80000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80004cd840000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80001ebce0000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80005c3680000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80001ebce0000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80005c3680000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xfff0000000000000.0x3fb99999a0000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x7ff0000000000000.0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xfff0000000000000.0x3fc99999a0000000.0xc008000000000000.0x4008000000000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x7ff0000000000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xfff0000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x7ff0000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xfff0000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x7ff0000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xfff0000000000000.0x4197d78400000000.0x0.0x0 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7ff0000000000000.0x0.0x0.0x7ff0000000000000 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0x0.0x7ff0000000000000.0x0 ++vmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x80004cd820000000.0x8000000020000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x80000f5ee0000000.0x8000000020000000.0x80000000a0000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbb2388ef20000000.0x8000000020000000.0x80000000a0000000.0x8000000020000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0x80000000a0000000.0x8000000020000000.0x80000000a0000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x8000000020000000.0x80000000a0000000.0x8000000040000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0x80000000a0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000.0x4008000000000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0x7ff0000000000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xba596c16a0000000.0x3847d78400000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3bde4e3f00000000.0x40debc9a60000000.0xba34567880000000.0x8000000020000000 ++vmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x8000000000000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x80000000a0000000.0x80000f5e60000000.0x80000000a0000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x80004cd7a0000000.0x80000000a0000000.0x8000000020000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000f5e60000000.0x80000000a0000000.0x8000000020000000.0x80000000a0000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x8000000020000000.0x80000000a0000000.0x8000000040000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0x80000000a0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x320000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xa0000000.0x8000000320000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x320000000.0x80000000a0000000.0x40debc9a60000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xa0000000.0x8000000320000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000a0000000.0x40debc9a60000000.0xba34567880000000.0x8000000020000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000020000000.0x80000000a0000000 ++vmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x80000000a0000000.0x80004cd7a0000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x8000000020000000.0x80004cd820000000.0x8000000020000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0x80000f5ee0000000.0x8000000020000000.0x80000000a0000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80004cd820000000.0x8000000020000000.0x80000000a0000000.0x8000000040000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0x80000000a0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000060000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x80000001e0000000.0xa0000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000060000000.0x320000000.0x40debc9a60000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000001e0000000.0xa0000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x320000000.0x40debc9a60000000.0xba34567880000000.0xb847d78400000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0xb86dcd6500000000.0x80000000a0000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0xb847d78400000000.0x80000000a0000000.0x8000000020000000 ++vmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xb86dcd6500000000.0x80000000a0000000.0x8000000020000000.0x80000f5ee0000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0x80000000a0000000.0x80000f5e60000000.0x80000000a0000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x80004cd7a0000000.0x80000000a0000000.0x8000000040000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000f5e60000000.0x80000000a0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x1e0000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x60000000.0x80000001e0000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x1e0000000.0x8000000060000000.0x40debc9a60000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x60000000.0x80000001e0000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000060000000.0x40debc9a60000000.0xba34567880000000.0x386dcd6500000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x3847d78400000000.0xb86dcd6500000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x386dcd6500000000.0xb847d78420000000.0x8000000020000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3847d78400000000.0xb86dcd6500000000.0x8000000020000000.0x80000000a0000000 ++vmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xb847d78420000000.0x8000000020000000.0x80000000a0000000.0x80004cd7a0000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x8000000020000000.0x80004cd820000000.0x8000000040000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0x80000f5ee0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80004cd820000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000020000000.0xc0000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x1e0000000.0x40debc9a60000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000020000000.0x60000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x1e0000000.0x40debc9a60000000.0xba34567880000000.0x8000000160000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000340000000.0x3857d78400000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x80000000c0000000.0x386dcd6500000000.0xb857d78400000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000340000000.0x3847d783e0000000.0xb86dcd6500000000.0x80000000a0000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x386dcd6500000000.0xb847d78400000000.0x80000000a0000000.0x8000000020000000 ++vmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xb86dcd6500000000.0x80000000a0000000.0x8000000020000000.0x80001ebd40000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0x80000000a0000000.0x80001ebce0000000.0x80000000c0000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x80004cd7c0000000.0x80000000c0000000.0x8000000040000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000f5e80000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x20000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x8000000020000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x20000000.0x8000000000000000.0x40debc9a60000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000020000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x40debc9a60000000.0xba34567880000000.0x3a0000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x120000000.0x8000000460000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x300000000.0x80000001e0000000.0x3871e1a300000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000.0x80000003c0000000.0x3857d78400000000.0xb871e1a300000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000140000000.0x386dcd6500000000.0xb857d78400000000.0x8000000020000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3847d78400000000.0xb86dcd6500000000.0x8000000020000000.0x80000000a0000000 ++vmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xb847d78420000000.0x8000000020000000.0x80000000a0000000.0x80005c3600000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x8000000040000000.0x80005c3680000000.0x8000000040000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80001ebd60000000.0x8000000040000000.0x80000000c0000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80004cd840000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000020000000.0x0 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x20000000.0x40debc9a60000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0x40debc9a60000000.0xba34567880000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x20000000.0x40debc9a60000000.0xba34567880000000.0x80000000e0000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000260000000.0xa0000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x80000000e0000000.0x320000000.0x8000000160000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000200000000.0xa0000000.0x80000003e0000000.0x3857d78400000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x280000000.0x8000000160000000.0x3871e1a300000000.0xb857d78400000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000340000000.0x3857d78400000000.0xb871e1a300000000.0x80000000a0000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x386dcd6500000000.0xb857d78400000000.0x80000000a0000000.0x8000000040000000 ++vmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xb86dcd6500000000.0x80000000a0000000.0x8000000040000000.0x80001ebd60000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0x80001ebce0000000.0x80000000c0000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x80005c3600000000.0x80000000c0000000.0x8000000040000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x80001ebce0000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x20000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x8000000020000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x20000000.0x8000000000000000.0x40debc9a60000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000020000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x40debc9a60000000.0xba34567880000000.0x220000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0xa0000000.0x80000002e0000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x220000000.0x8000000160000000.0x3a0000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xa0000000.0x80000002e0000000.0x120000000.0x8000000460000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000160000000.0x3a0000000.0x80000001e0000000.0x3871e1a300000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x120000000.0x8000000460000000.0x3857d78400000000.0xb871e1a300000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000001e0000000.0x3871e1a300000000.0xb857d78400000000.0x8000000040000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3857d78400000000.0xb871e1a300000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xb857d78400000000.0x8000000040000000.0x80000000c0000000.0x80005c3600000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x80005c3680000000.0x8000000040000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80001ebd60000000.0x8000000040000000.0x80000000c0000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80005c3680000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000040000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x80000000c0000000.0x0 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000040000000.0x20000000.0x40debc9a60000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000c0000000.0x0.0x40debc9a60000000.0xba34567880000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x20000000.0x40debc9a60000000.0xba34567880000000.0x8000000020000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000040000000.0x20000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x1a0000000.0x80000000e0000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000040000000.0x20000000.0x8000000260000000.0xa0000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x1a0000000.0x80000000e0000000.0x320000000.0x8000000160000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000260000000.0xa0000000.0x80000003e0000000.0x3857d78400000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x320000000.0x8000000160000000.0x3871e1a300000000.0xb857d78400000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000003e0000000.0x3857d78400000000.0xb871e1a300000000.0x80000000c0000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3871e1a300000000.0xb857d78400000000.0x80000000c0000000.0x8000000040000000 ++vmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xb871e1a300000000.0x80000000c0000000.0x8000000040000000.0x80001ebd60000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x80001ebce0000000.0x80000000c0000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x80005c3600000000.0x80000000c0000000.0xbff0000000000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80001ebce0000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xc0000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x40000000.0x80000000c0000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xc0000000.0x8000000040000000.0x40debc9a60000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40000000.0x80000000c0000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000040000000.0x40debc9a60000000.0xba34567880000000.0x0 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000020000000.0x80000000c0000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x0.0x80000000a0000000.0x220000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x80000000c0000000.0xa0000000.0x80000002e0000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x220000000.0x8000000160000000.0x3a0000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xa0000000.0x80000002e0000000.0x120000000.0x8000000460000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000160000000.0x3a0000000.0x80000001e0000000.0x3871e1a300000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x120000000.0x8000000460000000.0x3857d78400000000.0xb871e1a300000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000001e0000000.0x3871e1a300000000.0xb857d78400000000.0x8000000040000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3857d78400000000.0xb871e1a300000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xb857d78400000000.0x8000000040000000.0x80000000c0000000.0x80005c3600000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80005c3680000000.0xbff0000000000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80001ebd60000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80005c3680000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xc0000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x3ff0000000000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0xc0000000.0x40debc5a60000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x40000000.0x40debc9a60000000.0x3fb9999980000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0000000.0x40debc9a60000000.0xba34567880000000.0xbfb9999980000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000040000000.0x3fc9999980000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x8000000080000000.0xbfc9999980000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000040000000.0x80000000a0000000.0x8000000040000000.0x4008000000000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000080000000.0x8000000020000000.0x1a0000000.0xc008000000000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000040000000.0x20000000.0x8000000260000000.0x4014000000000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x1a0000000.0x80000000e0000000.0x320000000.0xc014000000000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000260000000.0xa0000000.0x8000000400000000.0x4197d78400000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x320000000.0x8000000180000000.0x3871e1a300000000.0xc197d78400000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000400000000.0x3857d78400000000.0xb871e1a300000000.0x80000000c0000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3871e1a300000000.0xb857d78400000000.0x80000000c0000000.0x8000000040000000 ++vmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xb871e1a300000000.0x80000000c0000000.0x8000000040000000.0xc0debc9a60000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xc0debcda60000000.0x3ff0000000000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000040000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x40000000.0x80000000c0000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0xc0000000.0x40debc5a60000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x40debcda60000000.0x3ff0000000000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x40debc9a60000000.0xbff0000000000000.0xbfb9999980000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x3fb9999980000000.0x3fb9999980000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000000000000.0xbfb9999980000000.0xbfc9999980000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x80000000c0000000.0x3fc9999980000000.0x3fc9999980000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x0.0xbfc9999980000000.0xc008000000000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0x80000000c0000000.0x4008000000000000.0x4008000000000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x220000000.0xc008000000000000.0xc014000000000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xa0000000.0x80000002e0000000.0x4014000000000000.0x4014000000000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000160000000.0x380000000.0xc014000000000000.0xc197d78400000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x100000000.0x8000000480000000.0x4197d78400000000.0x4197d78400000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000200000000.0x3871e1a300000000.0xc197d78400000000.0x8000000040000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3857d78400000000.0xb871e1a300000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xb857d78400000000.0x8000000040000000.0x80000000c0000000.0x40debc5a60000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x40debcda60000000.0xbfb9999980000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xc0debc5a60000000.0xbfb9999980000000.0x3fb9999980000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x20000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x80000000c0000000.0x0 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xc0000000.0x8000000040000000.0x40debc9a60000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x40000000.0x40debc9a60000000.0x3fb9999980000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x40debc9a60000000.0xbff0000000000000.0xbfb9999980000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0x3ff0000000000000.0x3ff0000000000000.0x3f847ae120000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0xbff0000000000000.0xbfb9999980000000.0xbf847ae120000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000e0000000.0x3fb9999980000000.0x3fb9999980000000.0x3f947ae120000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000080000000.0xbfb9999980000000.0xbfc9999980000000.0xbf947ae120000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000040000000.0x3fc9999980000000.0x3fc9999980000000.0x3fd3333320000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000080000000.0xbfc9999980000000.0xc008000000000000.0xbfd3333320000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000040000000.0x4008000000000000.0x4008000000000000.0x3fdfffffe0000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x1a0000000.0xc008000000000000.0xc014000000000000.0xbfdfffffe0000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000280000000.0x4014000000000000.0x4014000000000000.0x416312cfe0000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x300000000.0xc014000000000000.0xc197d78400000000.0xc16312d000000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000400000000.0x4197d78400000000.0x4197d78400000000.0x80000000c0000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3871e1a300000000.0xc197d78400000000.0x80000000c0000000.0xbff0000000000000 ++vmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xb871e1a300000000.0x80000000c0000000.0xbff0000000000000.0xc0a894e1c0000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xfff0000000000000.0x3fb99999a0000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x7ff0000000000000.0x3fb99999a0000000.0xbfc99999a0000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xfff0000000000000.0x3fb99999a0000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x8000000020000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000040000000.0x20000000.0x40debc9a60000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40000000.0x80000000c0000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0000000.0x40debc9a60000000.0xba34567880000000.0xbfb9999980000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x3fb9999980000000.0x3fb9999980000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0xbff0000000000000.0xbfb9999980000000.0xbf847ae120000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff0000000000000.0x3ff0000000000000.0x3f847ae120000000.0x3f847ae120000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbff0000000000000.0xbfb9999980000000.0xbf847ae120000000.0xbf947ae120000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fb9999980000000.0x3fb9999980000000.0x3f947ae120000000.0x3f947ae120000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb9999980000000.0xbfc9999980000000.0xbf947ae120000000.0xbfd3333320000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fc9999980000000.0x3fc9999980000000.0x3fd3333320000000.0x3fd3333320000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc9999980000000.0xc008000000000000.0xbfd3333320000000.0xbfdfffffe0000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0x4008000000000000.0x3fdfffffe0000000.0x3fdfffffe0000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xc014000000000000.0xbfdfffffe0000000.0xc16312d000000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4014000000000000.0x4014000000000000.0x416312cfe0000000.0x416312cfe0000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xc197d78400000000.0xc16312d000000000.0xbff0000000000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4197d78400000000.0x4197d78400000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0xbff0000000000000.0x3ff0000000000000.0x40a896aea0000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb99999a0000000.0x7ff0000000000000.0xbfc99999a0000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb99999a0000000.0xfff0000000000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x7ff0000000000000.0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000.0x4008000000000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x20000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000020000000.0x0 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x20000000.0x8000000000000000.0x40debc9a60000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000c0000000.0x0.0x40debc9a60000000.0xba34567880000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000040000000.0x40debc9a60000000.0xba34567880000000.0x0 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000040000000.0x3fc9999980000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000000000000.0xbfb9999980000000.0xbfc9999980000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000e0000000.0x3fb9999980000000.0x3fb9999980000000.0x3f947ae120000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbff0000000000000.0xbfb9999980000000.0xbf847ae120000000.0xbf947ae120000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff0000000000000.0x3f847ae120000000.0x3f847ae120000000.0x3fa47ae120000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb9999980000000.0xbf847ae120000000.0xbf947ae120000000.0xbfa47ae120000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fb9999980000000.0x3f947ae120000000.0x3f947ae120000000.0x3fe3333320000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc9999980000000.0xbf947ae120000000.0xbfd3333320000000.0xbfe3333320000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fc9999980000000.0x3fd3333320000000.0x3fd3333320000000.0x3fefffffe0000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xbfd3333320000000.0xbfdfffffe0000000.0xbfefffffe0000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0x3fdfffffe0000000.0x3fdfffffe0000000.0x417312cfe0000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xbfdfffffe0000000.0xc16312d000000000.0xc17312d000000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4014000000000000.0x416312cfe0000000.0x416312cfc0000000.0x3ff0000000000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0xc16312d000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d78400000000.0x3ff0000000000000.0xbfb99999a0000000.0xfff0000000000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb99999a0000000.0x3fb99999a0000000.0xfff0000000000000.0x3fc99999a0000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0x7ff0000000000000.0x3fc99999a0000000.0xc008000000000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xfff0000000000000.0x3fc99999a0000000.0xc008000000000000.0x4008000000000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x8000000020000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x20000000.0x40debc9a60000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000020000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x20000000.0x40debc9a60000000.0xba34567880000000.0x8000000020000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000020000000.0x80000000c0000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x8000000080000000.0xbfc9999980000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x80000000c0000000.0x3fc9999980000000.0x3fc9999980000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000080000000.0xbfb9999980000000.0xbfc9999980000000.0xbf947ae120000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fb9999980000000.0x3fb9999980000000.0x3f947ae120000000.0x3f947ae120000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb9999980000000.0xbf847ae120000000.0xbf947ae120000000.0xbfa47ae120000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3f847ae120000000.0x3f847ae120000000.0x3fa47ae120000000.0x3fa47ae120000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbf847ae120000000.0xbf947ae120000000.0xbfa47ae120000000.0xbfe3333320000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3f947ae120000000.0x3f947ae120000000.0x3fe3333320000000.0x3fe3333320000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae120000000.0xbfd3333320000000.0xbfe3333320000000.0xbfefffffe0000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fd3333320000000.0x3fd3333320000000.0x3fefffffe0000000.0x3fefffffe0000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333320000000.0xbfdfffffe0000000.0xbfefffffe0000000.0xc17312d000000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fdfffffe0000000.0x3fdfffffe0000000.0x417312cfe0000000.0x417312d000000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfdfffffe0000000.0xc16312d000000000.0xc17312cfe0000000.0xbfb9999980000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x416312cfe0000000.0x416312d020000000.0xbfb99999a0000000.0x3fb99999a0000000 ++vmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312cfe0000000.0xbfb99999a0000000.0x3fb99999a0000000.0x7ff0000000000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0xbfc99999a0000000.0x7ff0000000000000.0xc008000000000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0xfff0000000000000.0xc008000000000000.0x4008000000000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x7ff0000000000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x1e0000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000020000000.0xc0000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x20000000.0x8000000000000000.0x40debc9a60000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0x40debc9a60000000.0xba34567880000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x40debc9a60000000.0xba34567880000000.0x220000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000040000000.0x20000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x0.0x80000000a0000000.0x220000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000040000000.0x80000000a0000000.0x8000000040000000.0x4008000000000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x0.0xbfc9999980000000.0xc008000000000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000040000000.0x3fc9999980000000.0x3fc9999980000000.0x3fd3333320000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb9999980000000.0xbfc9999980000000.0xbf947ae120000000.0xbfd3333320000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fb9999980000000.0x3f947ae120000000.0x3f947ae120000000.0x3fe3333320000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbf847ae120000000.0xbf947ae120000000.0xbfa47ae120000000.0xbfe3333320000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3f847ae120000000.0x3fa47ae120000000.0x3fa47ae120000000.0x4022000000000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae120000000.0xbfa47ae120000000.0xbfe3333320000000.0xc022000000000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3f947ae120000000.0x3fe3333320000000.0x3fe3333320000000.0x402e000000000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333320000000.0xbfe3333320000000.0xbfefffffe0000000.0xc030000000000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fd3333320000000.0x3fefffffe0000000.0xbe70000000000000.0x41b1e1a300000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfdfffffe0000000.0xc000000000000000.0xc17312cfe0000000.0xc1b1e1a300000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfe0000000000000.0x417312d020000000.0x417312d000000000.0x3fb99999a0000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312cfe0000000.0xc17312d000000000.0x3fb99999a0000000.0xbfc99999a0000000 ++vmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x416312d000000000.0x3fb99999a0000000.0xbfc99999a0000000.0xfff0000000000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0x3fc99999a0000000.0xfff0000000000000.0x4008000000000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0x7ff0000000000000.0x4008000000000000.0xc014000000000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xfff0000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000060000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x60000000.0x80000001e0000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x1e0000000.0x40debc9a60000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000020000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x20000000.0x40debc9a60000000.0xba34567880000000.0x80000000e0000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0xa0000000.0x80000002e0000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x1a0000000.0x80000000e0000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x80000000c0000000.0xa0000000.0x80000002e0000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000080000000.0x8000000020000000.0x1a0000000.0xc008000000000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0x80000000c0000000.0x4008000000000000.0x4008000000000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000080000000.0xbfc9999980000000.0xc008000000000000.0xbfd3333320000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fc9999980000000.0x3fc9999980000000.0x3fd3333320000000.0x3fd3333320000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc9999980000000.0xbf947ae120000000.0xbfd3333320000000.0xbfe3333320000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3f947ae120000000.0x3f947ae120000000.0x3fe3333320000000.0x3fe3333320000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae120000000.0xbfa47ae120000000.0xbfe3333320000000.0xc022000000000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fa47ae120000000.0x3fa47ae120000000.0x4022000000000000.0x4022000000000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfa47ae120000000.0xbfe3333320000000.0xc022000000000000.0xc030000000000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe3333320000000.0x3fe3333320000000.0x402c000000000000.0x4030000000000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333320000000.0xc000000000000000.0xc02c000000000000.0xc1b1e1a300000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3c90000000000000.0x4000000000000000.0x41b1e1a300000000.0x41b1e1a300000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbc90000000000000.0xc17312d000000000.0xc1b1e1a300000000.0xbfc99999a0000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x417312d000000000.0x417312d000000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312d000000000.0xbfc99999a0000000.0x3fc99999a0000000.0x7ff0000000000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0xc008000000000000.0x7ff0000000000000.0xc014000000000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xfff0000000000000.0xc014000000000000.0x4014000000000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x7ff0000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x320000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x80000001e0000000.0xa0000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x1e0000000.0x8000000060000000.0x40debc9a60000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000020000000.0x60000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x40debc9a60000000.0xba34567880000000.0x3a0000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000260000000.0xa0000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x220000000.0x8000000160000000.0x3a0000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000040000000.0x20000000.0x8000000260000000.0xa0000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x220000000.0x8000000160000000.0x3a0000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000040000000.0x20000000.0x8000000260000000.0x4014000000000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x220000000.0xc008000000000000.0xc014000000000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000040000000.0x4008000000000000.0x4008000000000000.0x3fdfffffe0000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc9999980000000.0xc008000000000000.0xbfd3333320000000.0xbfdfffffe0000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fc9999980000000.0x3fd3333320000000.0x3fd3333320000000.0x3fefffffe0000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae120000000.0xbfd3333320000000.0xbfe3333320000000.0xbfefffffe0000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3f947ae120000000.0x3fe3333320000000.0x3fe3333320000000.0x402e000000000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfa47ae120000000.0xbfe3333320000000.0xc022000000000000.0xc030000000000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fa47ae120000000.0x4022000000000000.0x4020000000000000.0x403a000000000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333320000000.0xc024000000000000.0xc02c000000000000.0xc0391999a0000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfd99999a0000000.0x4030000000000000.0x402dccccc0000000.0x41bdcd6500000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbc90000000000000.0xc02e333340000000.0xc1b1e1a300000000.0xc1bdcd6500000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fecccccc0000000.0x41b1e1a300000000.0x41b1e1a300000000.0x3fc99999a0000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312d000000000.0xc1b1e1a300000000.0x3fc99999a0000000.0xc008000000000000 ++vmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x417312d000000000.0x3fc99999a0000000.0xc008000000000000.0xfff0000000000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xfff0000000000000.0x4014000000000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x7ff0000000000000.0x4014000000000000.0xc197d78400000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xfff0000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xa0000000.0x8000000320000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000060000000.0x320000000.0x40debc9a60000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x60000000.0x80000001e0000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x1e0000000.0x40debc9a60000000.0xba34567880000000.0x8000000160000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x120000000.0x8000000460000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x80000000e0000000.0x320000000.0x8000000160000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xa0000000.0x80000002e0000000.0x120000000.0x8000000460000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x1a0000000.0x80000000e0000000.0x320000000.0x8000000160000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xa0000000.0x80000002e0000000.0x120000000.0x8000000460000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x1a0000000.0x80000000e0000000.0x320000000.0xc014000000000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xa0000000.0x80000002e0000000.0x4014000000000000.0x4014000000000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x1a0000000.0xc008000000000000.0xc014000000000000.0xbfdfffffe0000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0x4008000000000000.0x3fdfffffe0000000.0x3fdfffffe0000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xbfd3333320000000.0xbfdfffffe0000000.0xbfefffffe0000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fd3333320000000.0x3fd3333320000000.0x3fefffffe0000000.0x3fefffffe0000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333320000000.0xbfe3333320000000.0xbfefffffe0000000.0xc030000000000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe3333320000000.0x3fe3333320000000.0x402c000000000000.0x4030000000000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333320000000.0xc024000000000000.0xc02c000000000000.0xc0391999a0000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4020000000000000.0x4024000000000000.0x4038e66660000000.0x40391999a0000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc020000000000000.0xc02e333340000000.0xc038e66660000000.0xc1bdcd6500000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x402dccccc0000000.0x402e333340000000.0x41bdcd6500000000.0x41bdcd6500000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02dccccc0000000.0xc1b1e1a300000000.0xc1bdcd6500000000.0xc008000000000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x41b1e1a300000000.0x41b1e1a300000000.0xc008000000000000.0x4008000000000000 ++vmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a300000000.0xc008000000000000.0x4008000000000000.0x7ff0000000000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x7ff0000000000000.0xc197d78400000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xfff0000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x7ff0000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x320000000.0x80000000a0000000.0x40debc9a60000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000001e0000000.0xa0000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000060000000.0x40debc9a60000000.0xba34567880000000.0x386dcd6500000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000340000000.0x3857d78400000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x300000000.0x80000001e0000000.0x3871e1a300000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000200000000.0xa0000000.0x80000003e0000000.0x3857d78400000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000160000000.0x3a0000000.0x80000001e0000000.0x3871e1a300000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000260000000.0xa0000000.0x80000003e0000000.0x3857d78400000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000160000000.0x3a0000000.0x80000001e0000000.0x3871e1a300000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000260000000.0xa0000000.0x8000000400000000.0x4197d78400000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000160000000.0x380000000.0xc014000000000000.0xc197d78400000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000280000000.0x4014000000000000.0x4014000000000000.0x416312cfe0000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xc014000000000000.0xbfdfffffe0000000.0xc16312d000000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0x3fdfffffe0000000.0x3fdfffffe0000000.0x417312cfe0000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333320000000.0xbfdfffffe0000000.0xbfefffffe0000000.0xc17312d000000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fd3333320000000.0x3fefffffe0000000.0xbe70000000000000.0x41b1e1a300000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333320000000.0xc000000000000000.0xc02c000000000000.0xc1b1e1a300000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfd99999a0000000.0x4030000000000000.0x402dccccc0000000.0x41bdcd6500000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc020000000000000.0xc02e333340000000.0xc038e66660000000.0xc1bdcd6500000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4021ccccc0000000.0x40391999a0000000.0x4038ccccc0000000.0x4341c37940000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02dccccc0000000.0xc039333340000000.0xc1bdcd6500000000.0xc341c37940000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x402d9999a0000000.0x41bdcd6500000000.0x41bdcd6500000000.0x4008000000000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a300000000.0xc1bdcd6500000000.0x4008000000000000.0xc014000000000000 ++vmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41b1e1a300000000.0x4008000000000000.0xc014000000000000.0xfff0000000000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xfff0000000000000.0x4197d78400000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x7ff0000000000000.0x4197d78400000000.0x8000000000000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xfff0000000000000.0x4197d78400000000.0x0.0x0 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0x7ff0000000000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xa0000000.0x8000000320000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x320000000.0x40debc9a60000000.0xba34567880000000.0xb847d78400000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x3847d78400000000.0xb86dcd6500000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x80000000c0000000.0x386dcd6500000000.0xb857d78400000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000.0x80000003c0000000.0x3857d78400000000.0xb871e1a300000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x280000000.0x8000000160000000.0x3871e1a300000000.0xb857d78400000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x120000000.0x8000000460000000.0x3857d78400000000.0xb871e1a300000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x320000000.0x8000000160000000.0x3871e1a300000000.0xb857d78400000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x120000000.0x8000000460000000.0x3857d78400000000.0xb871e1a300000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x320000000.0x8000000180000000.0x3871e1a300000000.0xc197d78400000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x100000000.0x8000000480000000.0x4197d78400000000.0x4197d78400000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x300000000.0xc014000000000000.0xc197d78400000000.0xc16312d000000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4014000000000000.0x4014000000000000.0x416312cfe0000000.0x416312cfe0000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xbfdfffffe0000000.0xc16312d000000000.0xc17312d000000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fdfffffe0000000.0x3fdfffffe0000000.0x417312cfe0000000.0x417312d000000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfdfffffe0000000.0xc000000000000000.0xc17312cfe0000000.0xc1b1e1a300000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3c90000000000000.0x4000000000000000.0x41b1e1a300000000.0x41b1e1a300000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbc90000000000000.0xc02e333340000000.0xc1b1e1a300000000.0xc1bdcd6500000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x402dccccc0000000.0x402e333340000000.0x41bdcd6500000000.0x41bdcd6500000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02dccccc0000000.0xc039333340000000.0xc1bdcd6500000000.0xc341c37940000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4038ccccc0000000.0x4039333340000000.0x4341c37940000000.0x4341c37940000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc038ccccc0000000.0xc1bdcd6500000000.0xc341c37940000000.0xc014000000000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41bdcd6500000000.0x41bdcd6500000000.0xc014000000000000.0x4014000000000000 ++vmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd6500000000.0xc014000000000000.0x4014000000000000.0x7ff0000000000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x7ff0000000000000.0x0 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xfff0000000000000.0x0.0x0 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x7ff0000000000000.0x0.0x0.0x7ff0000000000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xba596c16a0000000.0x3847d78400000000.0x40debc9a60000000.0xba34567880000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000a0000000.0x40debc9a60000000.0xba34567880000000.0x8000000020000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0xb86dcd6500000000.0x80000000a0000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x386dcd6500000000.0xb847d78420000000.0x8000000020000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000340000000.0x3847d783e0000000.0xb86dcd6500000000.0x80000000a0000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000140000000.0x386dcd6500000000.0xb857d78400000000.0x8000000020000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000340000000.0x3857d78400000000.0xb871e1a300000000.0x80000000a0000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000001e0000000.0x3871e1a300000000.0xb857d78400000000.0x8000000040000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000003e0000000.0x3857d78400000000.0xb871e1a300000000.0x80000000c0000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000001e0000000.0x3871e1a300000000.0xb857d78400000000.0x8000000040000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000400000000.0x3857d78400000000.0xb871e1a300000000.0x80000000c0000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000200000000.0x3871e1a300000000.0xc197d78400000000.0x8000000040000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000400000000.0x4197d78400000000.0x4197d78400000000.0x80000000c0000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xc197d78400000000.0xc16312d000000000.0xbff0000000000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4014000000000000.0x416312cfe0000000.0x416312cfc0000000.0x3ff0000000000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfdfffffe0000000.0xc16312d000000000.0xc17312cfe0000000.0xbfb9999980000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfe0000000000000.0x417312d020000000.0x417312d000000000.0x3fb99999a0000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbc90000000000000.0xc17312d000000000.0xc1b1e1a300000000.0xbfc99999a0000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fecccccc0000000.0x41b1e1a300000000.0x41b1e1a300000000.0x3fc99999a0000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02dccccc0000000.0xc1b1e1a300000000.0xc1bdcd6500000000.0xc008000000000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x402d9999a0000000.0x41bdcd6500000000.0x41bdcd6500000000.0x4008000000000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc038ccccc0000000.0xc1bdcd6500000000.0xc341c37940000000.0xc014000000000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4036000000000000.0x4341c37940000000.0x4341c37940000000.0x4014000000000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd6500000000.0xc341c37940000000.0x4014000000000000.0xc197d78400000000 ++vmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x41bdcd6500000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x7ff0000000000000.0x0.0x7ff0000000000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xfff0000000000000.0x0.0x7ff0000000000000.0x0 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3bde4e3f00000000.0x40debc9a60000000.0xba34567880000000.0x8000000020000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000020000000.0x80000000a0000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0xb847d78400000000.0x80000000a0000000.0x8000000020000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3847d78400000000.0xb86dcd6500000000.0x8000000020000000.0x80000000a0000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x386dcd6500000000.0xb847d78400000000.0x80000000a0000000.0x8000000020000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3847d78400000000.0xb86dcd6500000000.0x8000000020000000.0x80000000a0000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x386dcd6500000000.0xb857d78400000000.0x80000000a0000000.0x8000000040000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3857d78400000000.0xb871e1a300000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3871e1a300000000.0xb857d78400000000.0x80000000c0000000.0x8000000040000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3857d78400000000.0xb871e1a300000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3871e1a300000000.0xb857d78400000000.0x80000000c0000000.0x8000000040000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3857d78400000000.0xb871e1a300000000.0x8000000040000000.0x80000000c0000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3871e1a300000000.0xc197d78400000000.0x80000000c0000000.0xbff0000000000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4197d78400000000.0x4197d78400000000.0xbff0000000000000.0x3ff0000000000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0xc16312d000000000.0x3ff0000000000000.0xbfb9999980000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x416312cfe0000000.0x416312d020000000.0xbfb99999a0000000.0x3fb99999a0000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312cfe0000000.0xc17312d000000000.0x3fb99999a0000000.0xbfc99999a0000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x417312d000000000.0x417312d000000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312d000000000.0xc1b1e1a300000000.0x3fc99999a0000000.0xc008000000000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x41b1e1a300000000.0x41b1e1a300000000.0xc008000000000000.0x4008000000000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a300000000.0xc1bdcd6500000000.0x4008000000000000.0xc014000000000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41bdcd6500000000.0x41bdcd6500000000.0xc014000000000000.0x4014000000000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd6500000000.0xc341c37940000000.0x4014000000000000.0xc197d78400000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4341c37940000000.0x4341c37940000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc341c37940000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0x7ff0000000000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x7ff0000000000000.0x0 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7ff0000000000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x8000000000000000.0x8000000000000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x80000000a0000000.0x80004cd7a0000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xb86dcd6500000000.0x80000000a0000000.0x8000000020000000.0x80000f5ee0000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xb847d78420000000.0x8000000020000000.0x80000000a0000000.0x80004cd7a0000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xb86dcd6500000000.0x80000000a0000000.0x8000000020000000.0x80001ebd40000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xb847d78420000000.0x8000000020000000.0x80000000a0000000.0x80005c3600000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xb86dcd6500000000.0x80000000a0000000.0x8000000040000000.0x80001ebd60000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xb857d78400000000.0x8000000040000000.0x80000000c0000000.0x80005c3600000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xb871e1a300000000.0x80000000c0000000.0x8000000040000000.0x80001ebd60000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xb857d78400000000.0x8000000040000000.0x80000000c0000000.0x80005c3600000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xb871e1a300000000.0x80000000c0000000.0x8000000040000000.0xc0debc9a60000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xb857d78400000000.0x8000000040000000.0x80000000c0000000.0x40debc5a60000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xb871e1a300000000.0x80000000c0000000.0xbff0000000000000.0xc0a894e1c0000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0xbff0000000000000.0x3ff0000000000000.0x40a896aea0000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d78400000000.0x3ff0000000000000.0xbfb99999a0000000.0xfff0000000000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312cfe0000000.0xbfb99999a0000000.0x3fb99999a0000000.0x7ff0000000000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x416312d000000000.0x3fb99999a0000000.0xbfc99999a0000000.0xfff0000000000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312d000000000.0xbfc99999a0000000.0x3fc99999a0000000.0x7ff0000000000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x417312d000000000.0x3fc99999a0000000.0xc008000000000000.0xfff0000000000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a300000000.0xc008000000000000.0x4008000000000000.0x7ff0000000000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41b1e1a300000000.0x4008000000000000.0xc014000000000000.0xfff0000000000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd6500000000.0xc014000000000000.0x4014000000000000.0x7ff0000000000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x41bdcd6500000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc341c37940000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4341c37940000000.0x4197d78400000000.0x0.0x7ff0000000000000 ++=== Running test on vmsd=== ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x7ff0000000000000.0x923456789abcdef0 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0xc32388ef423d9d0c.0x0 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000000000000.0x0 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000000000000.0x8000000000000000.0x0 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0xaf9dae1ec2b23ac4.0x80000000bdcccccd ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0xafb6c9d4ecd7a8ba.0x800000003e4ccccd ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0xaf9deb97f7a2e72c.0x80000000be4ccccd ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0xafb6d9333a13d3d4.0x8000000040400000 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0xaf9edb5712ce8a46.0x80000000c0400000 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0xafb7152300debc9b.0x8000000040a00000 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0xaf9f0971fa830b94.0x80000000c0a00000 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0xafb720a9bacbdcee.0x800000004cbebc20 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0xafa26dc8d96fd63d.0x80000000ccbebc20 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0xafb89531a8e30528.0xbff0000000000000 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xf0debc9a78563412.0x3ff0000000000000 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x70debc9a78563412.0xbfb999999999999a ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xf0a896e1f9de900f.0x3fb999999999999a ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x70a896e1f9de900f.0xbfc999999999999a ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xf0b896e1f9de900f.0x3fc999999999999a ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x70b896e1f9de900f.0xc008000000000000 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xf0f70d73da40a70e.0x4008000000000000 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x70f70d73da40a70e.0xc014000000000000 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xf10335e08b35e08b.0x4014000000000000 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x710335e08b35e08b.0xc197d78400000000 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xf286e690fe53a8fe.0x4197d78400000000 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x7286e690fe53a8fe.0x0 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0x70debc9a78563412 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0xc32388ef423d9d0c.0x0 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x7ff0000000000000.0x0.0x0 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0xc32388ef423d9d0c.0x0.0x0 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xaf9e7f21436587aa.0x800000003dcccccd.0x80000000bdcccccd ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0xafb6fe158d047bf4.0x80000000bdcccccd.0x800000003e4ccccd ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xaf9dae1ec2b23ac4.0x800000003e4ccccd.0x80000000be4ccccd ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0xafb6c9d4ecd7a8ba.0x80000000be4ccccd.0x8000000040400000 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xaf9deb97f7a2e72c.0x8000000040400000.0x80000000c0400000 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0xafb6d9333a13d3d4.0x80000000c0400000.0x8000000040a00000 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xaf9edb5712ce8a46.0x8000000040a00000.0x80000000c0a00000 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0xafb7152300debc9b.0x80000000c0a00000.0x800000004cbebc20 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xaf9f0971fa830b94.0x800000004cbebc20.0x80000000ccbebc20 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0xafb720a9bacbdcee.0x80000000ccbebc20.0xbff0000000000000 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xafa26dc8d96fd63d.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xf0debc9a78563412.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x70debc9a78563412.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xf0a896e1f9de900f.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x70a896e1f9de900f.0x3fc999999999999a.0xc008000000000000 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xf0b896e1f9de900f.0xc008000000000000.0x4008000000000000 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x70b896e1f9de900f.0x4008000000000000.0xc014000000000000 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xf0f70d73da40a70d.0xc014000000000000.0x4014000000000000 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x70f70d73da40a70d.0x4014000000000000.0xc197d78400000000 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xf10335e08b35e08b.0xc197d78400000000.0x4197d78400000000 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x710335e08b35e08b.0x4197d78400000000.0x8000000000000000 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xf286e690fe53a8fe.0x93de4e3f1c71c703.0x0 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x7286e690fe53a8fe.0x0.0x70debc9a78563412 ++vmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000000000000.0x0 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0xc32388ef423d9d0c.0x0.0x0 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x7ff0000000000000.0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc32388ef423d9d0c.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xaf9e7f21436587aa.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xafb6fe158d047bf4.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xaf9dae1ec2b23ac4.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xafb6c9d4ecd7a8ba.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xaf9deb97f7a2e72c.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xafb6d9333a13d3d4.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xaf9edb5712ce8a46.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xafb7152300debc9b.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xaf9f0971fa830b94.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xafb720a9bacbdcee.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xf0debc9a78563412.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x70debc9a78563412.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xf0a896e1f9de900f.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x70a896e1f9de900f.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xf0b896e1f9de900f.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x70b896e1f9de900f.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xf0f70d73da40a70e.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x70f70d73da40a70e.0xc197d78400000000.0x4197d78400000000.0x0 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xf10335e08b35e08b.0x4197d78400000000.0x0.0x0 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x710335e08b35e08b.0x13de4e3f1c71c703.0x0.0x70debc9a78563412 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xf286e690fe53a8fe.0x93de4e3f1c71c703.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7286e690fe53a8fe.0x70debc9a78563412.0x923456789abcdef0.0x8000000000000000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000000000000.0x8000000000000000.0x0 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0xaf9e7f21436587aa.0x800000003dcccccd.0x80000000bdcccccd ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc32388ef423d9d0c.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0x70debc9a78563412 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x92596c16c16c16ac.0x0.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x13de4e3f1c71c703.0x70debc9a78563412.0x923456789abcdef0.0x8000000000000000 ++vmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000000000000.0x8000000000000000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0xaf9dae1ec2b23ac4.0x80000000bdcccccd ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0xafb6fe158d047bf4.0x80000000bdcccccd.0x800000003e4ccccd ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xaf9e7f21436587aa.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x3b5000001 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x135000001.0x80000003b5000001 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x3bd800000.0x8000000135000001.0x70debc9a78563412 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x13d800000.0x80000003bd800000.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x800000013d800000.0x70debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0xafb6c9d4ecd7a8ba ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0xafb6c9d4ecd7a8ba.0x800000003e4ccccd ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0xaf9dae1ec2b23ac4.0x800000003e4ccccd.0x80000000be4ccccd ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xafb6fe158d047bf4.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x80000000bae66667 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000239666667.0x137800001 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x80000000b9666667.0x3b5000001.0x70debc9a78563412 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000023e800000.0x135000001.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3bd800000.0x70debc9a78563412.0x923456789abcdef0.0x805735641c0b12d0 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8071ad2f4502c4b4.0x80000000bf800000 ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x805705b5140b12d0.0x80000000bf800000.0x800000003dcccccd ++vmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8071d5b73efe0000.0x80000000bf800000.0x800000003dcccccd.0xaf9deb97f7a2e72c ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0xaf9deb97f7a2e72c.0x80000000be4ccccd ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0xafb6c9d4ecd7a8ba.0x80000000be4ccccd.0x8000000040400000 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xaf9dae1ec2b23ac4.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x23ae66667 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xbae66667.0x800000023ae66667 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x239666667.0x80000000bae66667.0x70debc9a78563412 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xb9666667.0x8000000239666667.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000b9666667.0x70debc9a78563412.0x923456789abcdef0.0x71b91b0506c4b4 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x573564141b12d0.0x8071b91b0902c4b4 ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x71ad2f4306c4b4.0x80573564240b12d0.0x800000003dcccccd ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x5705b50c1b12d0.0x8071ad2f4702c4b4.0x800000003dcccccd.0x80000000bdcccccd ++vmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x805705b51c0b12d0.0x800000003dcccccd.0x80000000bdcccccd.0xafb6d9333a13d3d4 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0xafb6d9333a13d3d4.0x8000000040400000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0xaf9deb97f7a2e72c.0x8000000040400000.0x80000000c0400000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xafb6c9d4ecd7a8ba.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x800000000cd9999a ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x80000000260f5c29.0xc0c00000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x800000000c75c28f.0x23ae66667.0x70debc9a78563412 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000025f5c28f.0xbae66667.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x239666667.0x70debc9a78563412.0x923456789abcdef0.0x8000000180c00000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x80000003f7000001.0x57ef5b78080000 ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000177000001.0x71b91b0306c4b4.0x8057ef5b87dccccd ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000003f4800001.0x5735640c1b12d0.0x8071b91b06fbf7e7.0x80000000bdcccccd ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x71ad2f4106c4b4.0x805735641befdf9d.0x80000000bdcccccd.0x800000003e4ccccd ++vmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8071ad2f44fbf7e7.0x80000000bdcccccd.0x800000003e4ccccd.0xaf9edb5712ce8a46 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0xaf9edb5712ce8a46.0x80000000c0400000 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0xafb6d9333a13d3d4.0x80000000c0400000.0x8000000040a00000 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xaf9deb97f7a2e72c.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x26733333 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xcd9999a.0x8000000026733333 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x260f5c29.0x800000000cd9999a.0x70debc9a78563412 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc75c28f.0x80000000260f5c29.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x800000000c75c28f.0x70debc9a78563412.0x923456789abcdef0.0x381c00000 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x101c00000.0x8000000480c00000 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x378000001.0x8000000200c00000.0x71e798e008cccd ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xf8000001.0x8000000477000001.0x57ef5b80233333.0x8071e798e3f73333 ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000001f7000001.0x71b91b050d9181.0x8057ef5b8fdccccd.0x800000003e4ccccd ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x57356414364603.0x8071b91b08fbf7e7.0x800000003e4ccccd.0x80000000be4ccccd ++vmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8057356423efdf9d.0x800000003e4ccccd.0x80000000be4ccccd.0xafb7152300debc9b ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0xafb7152300debc9b.0x8000000040a00000 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0xaf9edb5712ce8a46.0x8000000040a00000.0x80000000c0a00000 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xafb6d9333a13d3d4.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000006766666 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x800000001339999a.0xceccccd ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x80000000066ccccd.0x26733333.0x70debc9a78563412 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000001307ae15.0xcd9999a.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x260f5c29.0x70debc9a78563412.0x923456789abcdef0.0x8000000101600000 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000280400000.0x83a00000 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000100400000.0x301c00000.0x8000000180eccccd ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000027a666667.0x81c00000.0x80000003ff0ccccd.0x58131ebe233333 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x2f8000001.0x800000017f0ccccd.0x71e798de08cccd.0x8058131ecde4cccd ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000003f54cccce.0x57ef5b78233333.0x8071e798e1f93333.0x80000000be4ccccd ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x71b91b030d9181.0x8057ef5b87e4cccd.0x80000000be4ccccd.0x8000000040400000 ++vmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8071b91b06fdf7e7.0x80000000be4ccccd.0x8000000040400000.0xaf9f0971fa830b94 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0xaf9f0971fa830b94.0x80000000c0a00000 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0xafb7152300debc9b.0x80000000c0a00000.0x800000004cbebc20 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xaf9edb5712ce8a46.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x13433333 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x6766666.0x8000000013433333 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x1339999a.0x8000000006766666.0x70debc9a78563412 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x66ccccd.0x800000001339999a.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000066ccccd.0x70debc9a78563412.0x923456789abcdef0.0x202600000 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x82600000.0x8000000301600000 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x201400000.0x8000000181600000.0x385533333 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x81400000.0x8000000300400000.0x105533333.0x8000000480eccccd ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000180400000.0x383733333.0x8000000200eccccd.0x71f089b186cccd ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x103733333.0x800000047f0ccccd.0x58131ec61b3333.0x8071f089b5793333 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000001ff0ccccd.0x71e798e006cccd.0x8058131ed5e4cccd.0x8000000040400000 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x57ef5b801b3333.0x8071e798e3f93333.0x8000000040400000.0x80000000c0400000 ++vmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8057ef5b8fe4cccd.0x8000000040400000.0x80000000c0400000.0xafb720a9bacbdcee ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0xafb720a9bacbdcee.0x800000004cbebc20 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0xaf9f0971fa830b94.0x800000004cbebc20.0x80000000ccbebc20 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xafb7152300debc9b.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x800000004cbebc20 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x80000000c0a00000.0x7acac6a ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000040a00000.0x13433333.0x70debc9a78563412 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000c0400000.0x6766666.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x1339999a.0x70debc9a78563412.0x923456789abcdef0.0x800000004ed958d3 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000066066666.0x26bc3460 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000004c6ccccd.0x182600000.0x800000012409012d ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000065f33333.0x2600000.0x800000027faccccd.0xc1ecdfd3 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x181400000.0x80000000ffaccccd.0x305533333.0x80000001be06796d ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000027e8ccccd.0x85533333.0x80000004016ccccd.0x5c96fa98fab533 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x303733333.0x80000001816ccccd.0x71f089af86cccd.0x805c96faa8e38200 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000003ff8ccccd.0x58131ebe1b3333.0x8071f089b3810000.0x80000000c0400000 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x71e798de06cccd.0x8058131ece040000.0x80000000c0400000.0x8000000040a00000 ++vmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8071e798e2010000.0x80000000c0400000.0x8000000040a00000.0xafa26dc8d96fd63d ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0xafa26dc8d96fd63d.0x80000000ccbebc20 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0xafb720a9bacbdcee.0x80000000ccbebc20.0xbff0000000000000 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xaf9f0971fa830b94.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xccbebc20 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x4cbebc20.0x80000000ccbebc20 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xc0a00000.0x800000004cbebc20.0x70debc9a78563412 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40a00000.0x80000000c0a00000.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000040a00000.0x70debc9a78563412.0x923456789abcdef0.0x80000000168d0d93 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x800000003026a72d.0x80000000e872f26d ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000018f9999a.0x80000000ced958d3.0x2286f6793 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000032933333.0x80000000e6066666.0xa86f6793.0x800000032409012d ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000cc6ccccd.0x204133333.0x80000001a409012d.0x3c16cdfd3 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x84133333.0x80000002ffaccccd.0x1416cdfd3.0x80000004be06796d ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x800000017faccccd.0x384d33333.0x800000023e06796d.0x731180a836e080 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x104d33333.0x80000004816ccccd.0x5c96faa0db8200.0x80731180ac38e080 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000002016ccccd.0x71f089b17f0000.0x805c96fab0e38200.0x8000000040a00000 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x58131ec5fc0000.0x8071f089b5810000.0x8000000040a00000.0x80000000c0a00000 ++vmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8058131ed6040000.0x8000000040a00000.0x80000000c0a00000.0xafb89531a8e30528 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0xafb89531a8e30528.0xbff0000000000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0xafa26dc8d96fd63d.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xafb720a9bacbdcee.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xccbebc20 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x3ff0000000000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0xccbebc20.0x70debc9a78563412 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4cbebc20.0x70debc9a78563412.0x3fb999999999999a ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0a00000.0x70debc9a78563412.0x923456789abcdef0.0xbfb999999999999a ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000053f97936.0x3fc999999999999a ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x80000000472cac6a.0x80000000968d0d93.0xbfc999999999999a ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000052c33333.0x80000000b026a72d.0x8000000066bfbf3a.0x4008000000000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000098f9999a.0x800000004d2625a0.0x1a86f6793.0xc008000000000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000064533333.0x286f6793.0x80000002a489012d.0x4014000000000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x184133333.0x800000012489012d.0x3416cdfd3.0xc014000000000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000002802ccccd.0xc16cdfd3.0x800000043ff9aca0.0x4197d78400000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x304d33333.0x80000001bff9aca0.0x731180a636e080.0xc197d78400000000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000403600000.0x5c96fa98db8200.0x80731180aa3a6080.0x80000000c0a00000 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x71f089af7f0000.0x805c96faa8e98200.0x80000000c0a00000.0x800000004cbebc20 ++vmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8071f089b3828000.0x80000000c0a00000.0x800000004cbebc20.0xf0debc9a78563412 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xf0debc9a78563412.0x3ff0000000000000 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x800000004cbebc20 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x4cbebc20.0x80000000ccbebc20 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0xccbebc20.0x70debc9a78563412 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x3ff0000000000000 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0xbff0000000000000.0xbfb999999999999a ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3fb999999999999a.0x3fb999999999999a ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000002b0686ca.0xbfb999999999999a.0xbfc999999999999a ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000037d35396.0x80000000d3f97936.0x3fc999999999999a.0x3fc999999999999a ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000c72cac6a.0x8000000014d9da60.0xbfc999999999999a.0xc008000000000000 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000002e7373fa.0x80000000e6bfbf3a.0x4008000000000000.0x4008000000000000 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000cd2625a0.0x227ef6793.0xc008000000000000.0xc014000000000000 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xa7ef6793.0x800000032489012d.0x4014000000000000.0x4014000000000000 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000001a489012d.0x3bf79aca0.0xc014000000000000.0xc197d78400000000 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x13f79aca0.0x80000004bff9aca0.0x4197d78400000000.0x4197d78400000000 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x800000023ff9aca0.0x731180a8356080.0xc197d78400000000.0x800000004cbebc20 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x5c96faa0d58200.0x80731180ac3a6080.0x800000004cbebc20.0x80000000ccbebc20 ++vmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x805c96fab0e98200.0x800000004cbebc20.0x80000000ccbebc20.0x70debc9a78563412 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x70debc9a78563412.0xbfb999999999999a ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xf0debc9a78563412.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x13433333 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x80000000c0a00000.0x7acac6a ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xc0a00000.0x800000004cbebc20.0x70debc9a78563412 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x4cbebc20.0x70debc9a78563412.0x3fb999999999999a ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0xbff0000000000000.0xbfb999999999999a ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x3ff0000000000000.0x3ff0000000000000.0x3f847ae147ae147c ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0xbff0000000000000.0xbfb999999999999a.0xbf847ae147ae147c ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000010c3ebc20.0x3fb999999999999a.0x3fb999999999999a.0x3f947ae147ae147c ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000ab0686ca.0xbfb999999999999a.0xbfc999999999999a.0xbf947ae147ae147c ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000052464603.0x3fc999999999999a.0x3fc999999999999a.0x3fd3333333333333 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000094d9da60.0xbfc999999999999a.0xc008000000000000.0xbfd3333333333334 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000673fbf3a.0x4008000000000000.0x4008000000000000.0x3fe0000000000000 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x1a7ef6793.0xc008000000000000.0xc014000000000000.0xbfe0000000000000 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000002a67c3460.0x4014000000000000.0x4014000000000000.0x416312d000000000 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x33f79aca0.0xc014000000000000.0xc197d78400000000.0xc16312d000000000 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x800000044059aca0.0x4197d78400000000.0x4197d78400000000.0x80000000ccbebc20 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x731180a6356080.0xc197d78400000000.0x80000000ccbebc20.0xbff0000000000000 ++vmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80731180aa6adb70.0x80000000ccbebc20.0xbff0000000000000.0xf0a896e1f9de900f ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xf0a896e1f9de900f.0x3fb999999999999a ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x70debc9a78563412.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xf0debc9a78563412.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000006766666 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x6766666.0x8000000013433333 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000040a00000.0x13433333.0x70debc9a78563412 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x40a00000.0x80000000c0a00000.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc0a00000.0x70debc9a78563412.0x923456789abcdef0.0xbfb999999999999a ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x3fb999999999999a.0x3fb999999999999a ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0xbff0000000000000.0xbfb999999999999a.0xbf847ae147ae147c ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3ff0000000000000.0x3ff0000000000000.0x3f847ae147ae147c.0x3f847ae147ae147c ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbff0000000000000.0xbfb999999999999a.0xbf847ae147ae147c.0xbf947ae147ae147c ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fb999999999999a.0x3fb999999999999a.0x3f947ae147ae147c.0x3f947ae147ae147c ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb999999999999a.0xbfc999999999999a.0xbf947ae147ae147c.0xbfd3333333333334 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fc999999999999a.0x3fc999999999999a.0x3fd3333333333333.0x3fd3333333333333 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc999999999999a.0xc008000000000000.0xbfd3333333333334.0xbfe0000000000000 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xc014000000000000.0xbfe0000000000000.0xc16312d000000000 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4014000000000000.0x4014000000000000.0x416312d000000000.0x416312d000000000 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xc197d78400000000.0xc16312d000000000.0xbff0000000000000 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4197d78400000000.0x4197d78400000000.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0xbff0000000000000.0x3ff0000000000000.0x70a896e1f9de900f ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x70a896e1f9de900f.0xbfc999999999999a ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xf0a896e1f9de900f.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x70debc9a78563412.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x26733333 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x800000001339999a.0xceccccd ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x1339999a.0x8000000006766666.0x70debc9a78563412 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000c0400000.0x6766666.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000040a00000.0x70debc9a78563412.0x923456789abcdef0.0x80000000168d0d93 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000053f97936.0x3fc999999999999a ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000002b0686ca.0xbfb999999999999a.0xbfc999999999999a ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000010c3ebc20.0x3fb999999999999a.0x3fb999999999999a.0x3f947ae147ae147c ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbff0000000000000.0xbfb999999999999a.0xbf847ae147ae147c.0xbf947ae147ae147c ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3ff0000000000000.0x3f847ae147ae147c.0x3f847ae147ae147c.0x3fa47ae147ae147c ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb999999999999a.0xbf847ae147ae147c.0xbf947ae147ae147c.0xbfa47ae147ae147c ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fb999999999999a.0x3f947ae147ae147c.0x3f947ae147ae147c.0x3fe3333333333333 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc999999999999a.0xbf947ae147ae147c.0xbfd3333333333334.0xbfe3333333333334 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fc999999999999a.0x3fd3333333333333.0x3fd3333333333333.0x3ff0000000000000 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xbfd3333333333334.0xbfe0000000000000.0xbff0000000000000 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000.0x417312d000000000 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xbfe0000000000000.0xc16312d000000000.0xc17312d010000000 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4014000000000000.0x416312d000000000.0x416312cfe0000000.0x3ff0000000000000 ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0xc16312d020000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d783fc000000.0x3ff0000000000000.0xbfb999999999999a.0xf0b896e1f9de900f ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xf0b896e1f9de900f.0x3fc999999999999a ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x70a896e1f9de900f.0x3fc999999999999a.0xc008000000000000 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xf0a896e1f9de900f.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x800000000cd9999a ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xcd9999a.0x8000000026733333 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x80000000066ccccd.0x26733333.0x70debc9a78563412 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x66ccccd.0x800000001339999a.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x1339999a.0x70debc9a78563412.0x923456789abcdef0.0x800000004ed958d3 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x800000003026a72d.0x80000000e872f26d ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x80000000472cac6a.0x80000000968d0d93.0xbfc999999999999a ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000037d35396.0x80000000d3f97936.0x3fc999999999999a.0x3fc999999999999a ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000ab0686ca.0xbfb999999999999a.0xbfc999999999999a.0xbf947ae147ae147c ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3fb999999999999a.0x3fb999999999999a.0x3f947ae147ae147c.0x3f947ae147ae147c ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb999999999999a.0xbf847ae147ae147c.0xbf947ae147ae147c.0xbfa47ae147ae147c ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3f847ae147ae147c.0x3f847ae147ae147c.0x3fa47ae147ae147c.0x3fa47ae147ae147c ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbf847ae147ae147c.0xbf947ae147ae147c.0xbfa47ae147ae147c.0xbfe3333333333334 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3f947ae147ae147c.0x3f947ae147ae147c.0x3fe3333333333333.0x3fe3333333333333 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae147ae147c.0xbfd3333333333334.0xbfe3333333333334.0xbff0000000000000 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fd3333333333333.0x3fd3333333333333.0x3ff0000000000000.0x3ff0000000000000 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333333333334.0xbfe0000000000000.0xbff0000000000000.0xc17312d010000000 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe0000000000000.0x3fe0000000000000.0x417312cff0000000.0x417312d010000000 ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe0000000000000.0xc16312d020000000.0xc17312cff0000000.0xbfb999999999999a ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x416312cfe0000000.0x416312d020000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312cfe0000000.0xbfb999999999999a.0x3fb999999999999a.0x70b896e1f9de900f ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x70b896e1f9de900f.0xc008000000000000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xf0b896e1f9de900f.0xc008000000000000.0x4008000000000000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x70a896e1f9de900f.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x23ae66667 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x80000000260f5c29.0xc0c00000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x260f5c29.0x800000000cd9999a.0x70debc9a78563412 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000001307ae15.0xcd9999a.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000066ccccd.0x70debc9a78563412.0x923456789abcdef0.0x202600000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000066066666.0x26bc3460 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000018f9999a.0x80000000ced958d3.0x2286f6793 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000052c33333.0x80000000b026a72d.0x8000000066bfbf3a.0x4008000000000000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000c72cac6a.0x8000000014d9da60.0xbfc999999999999a.0xc008000000000000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000052464603.0x3fc999999999999a.0x3fc999999999999a.0x3fd3333333333333 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbfb999999999999a.0xbfc999999999999a.0xbf947ae147ae147c.0xbfd3333333333334 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fb999999999999a.0x3f947ae147ae147c.0x3f947ae147ae147c.0x3fe3333333333333 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbf847ae147ae147c.0xbf947ae147ae147c.0xbfa47ae147ae147c.0xbfe3333333333334 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3f847ae147ae147c.0x3fa47ae147ae147c.0x3fa47ae147ae147c.0x4022000000000000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae147ae147c.0xbfa47ae147ae147c.0xbfe3333333333334.0xc022000000000000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3f947ae147ae147c.0x3fe3333333333333.0x3fe3333333333333.0x402e000000000000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333333333334.0xbfe3333333333334.0xbff0000000000000.0xc030000000000000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fd3333333333333.0x3ff0000000000000.0x3c90000000000000.0x41b1e1a301000000 ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe0000000000000.0xc000000000000000.0xc17312cff0000000.0xc1b1e1a30019999a ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfe0000000000000.0x417312d010000000.0x417312cffe666667.0x3fb999999999999a ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312cfe0000000.0xc17312d00199999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x416312cffccccccd.0x3fb999999999999a.0xbfc999999999999a.0xf0f70d73da40a70d ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xf0f70d73da40a70e.0x4008000000000000 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x70b896e1f9de900f.0x4008000000000000.0xc014000000000000 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xf0b896e1f9de900f.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x80000000bae66667 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xbae66667.0x800000023ae66667 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x800000000c75c28f.0x23ae66667.0x70debc9a78563412 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc75c28f.0x80000000260f5c29.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x260f5c29.0x70debc9a78563412.0x923456789abcdef0.0x8000000101600000 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x82600000.0x8000000301600000 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000004c6ccccd.0x182600000.0x800000012409012d ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000032933333.0x80000000e6066666.0xa86f6793.0x800000032409012d ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000098f9999a.0x800000004d2625a0.0x1a86f6793.0xc008000000000000 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000002e7373fa.0x80000000e6bfbf3a.0x4008000000000000.0x4008000000000000 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000094d9da60.0xbfc999999999999a.0xc008000000000000.0xbfd3333333333334 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3fc999999999999a.0x3fc999999999999a.0x3fd3333333333333.0x3fd3333333333333 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc999999999999a.0xbf947ae147ae147c.0xbfd3333333333334.0xbfe3333333333334 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3f947ae147ae147c.0x3f947ae147ae147c.0x3fe3333333333333.0x3fe3333333333333 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae147ae147c.0xbfa47ae147ae147c.0xbfe3333333333334.0xc022000000000000 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fa47ae147ae147c.0x3fa47ae147ae147c.0x4022000000000000.0x4022000000000000 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfa47ae147ae147c.0xbfe3333333333334.0xc022000000000000.0xc030000000000000 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe3333333333333.0x3fe3333333333333.0x402c000000000000.0x4030000000000000 ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333333333334.0xc000000000000000.0xc02c000000000000.0xc1b1e1a30019999a ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3c90000000000000.0x4000000000000000.0x41b1e1a2ffe66666.0x41b1e1a30019999a ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbc90000000000000.0xc17312d00199999a.0xc1b1e1a2ffe66666.0xbfc999999999999a ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x417312cffe666667.0x417312d00199999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312cffe666667.0xbfc999999999999a.0x3fc999999999999a.0x70f70d73da40a70d ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x70f70d73da40a70e.0xc014000000000000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xf0f70d73da40a70d.0xc014000000000000.0x4014000000000000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x70b896e1f9de900f.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x3b5000001 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000239666667.0x137800001 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x239666667.0x80000000bae66667.0x70debc9a78563412 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000025f5c28f.0xbae66667.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x800000000c75c28f.0x70debc9a78563412.0x923456789abcdef0.0x381c00000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000280400000.0x83a00000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x201400000.0x8000000181600000.0x385533333 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000065f33333.0x2600000.0x800000027faccccd.0xc1ecdfd3 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000cc6ccccd.0x204133333.0x80000001a409012d.0x3c16cdfd3 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000064533333.0x286f6793.0x80000002a489012d.0x4014000000000000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000cd2625a0.0x227ef6793.0xc008000000000000.0xc014000000000000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000673fbf3a.0x4008000000000000.0x4008000000000000.0x3fe0000000000000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbfc999999999999a.0xc008000000000000.0xbfd3333333333334.0xbfe0000000000000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3fc999999999999a.0x3fd3333333333333.0x3fd3333333333333.0x3ff0000000000000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf947ae147ae147c.0xbfd3333333333334.0xbfe3333333333334.0xbff0000000000000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3f947ae147ae147c.0x3fe3333333333333.0x3fe3333333333333.0x402e000000000000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfa47ae147ae147c.0xbfe3333333333334.0xc022000000000000.0xc030000000000000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fa47ae147ae147c.0x4022000000000000.0x4020000000000000.0x403a000000000000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333333333334.0xc024000000000000.0xc02c000000000000.0xc03919999999999a ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfd9999999999999.0x4030000000000000.0x402dcccccccccccd.0x41bdcd650019999a ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbc90000000000000.0xc02e333333333333.0xc1b1e1a2ffe66666.0xc1bdcd6500333333 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3feccccccccccccd.0x41b1e1a30019999a.0x41b1e1a2ffcccccd.0x3fc999999999999a ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312cffe666667.0xc1b1e1a300333333.0x3fc999999999999a.0xc008000000000000 ++vmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x417312cffccccccd.0x3fc999999999999a.0xc008000000000000.0xf10335e08b35e08b ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xf10335e08b35e08b.0x4014000000000000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x70f70d73da40a70d.0x4014000000000000.0xc197d78400000000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xf0f70d73da40a70e.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x135000001.0x80000003b5000001 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x80000000b9666667.0x3b5000001.0x70debc9a78563412 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xb9666667.0x8000000239666667.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x239666667.0x70debc9a78563412.0x923456789abcdef0.0x8000000180c00000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x101c00000.0x8000000480c00000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000100400000.0x301c00000.0x8000000180eccccd ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x81400000.0x8000000300400000.0x105533333.0x8000000480eccccd ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x181400000.0x80000000ffaccccd.0x305533333.0x80000001be06796d ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x84133333.0x80000002ffaccccd.0x1416cdfd3.0x80000004be06796d ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x184133333.0x800000012489012d.0x3416cdfd3.0xc014000000000000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xa7ef6793.0x800000032489012d.0x4014000000000000.0x4014000000000000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x1a7ef6793.0xc008000000000000.0xc014000000000000.0xbfe0000000000000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x4008000000000000.0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xbfd3333333333334.0xbfe0000000000000.0xbff0000000000000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3fd3333333333333.0x3fd3333333333333.0x3ff0000000000000.0x3ff0000000000000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333333333334.0xbfe3333333333334.0xbff0000000000000.0xc030000000000000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe3333333333333.0x3fe3333333333333.0x402c000000000000.0x4030000000000000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333333333334.0xc024000000000000.0xc02c000000000000.0xc03919999999999a ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4020000000000000.0x4024000000000000.0x4038e66666666666.0x403919999999999a ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc020000000000000.0xc02e333333333333.0xc038e66666666666.0xc1bdcd6500333333 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x402dcccccccccccd.0x402e333333333333.0x41bdcd64ffcccccd.0x41bdcd6500333333 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02dcccccccccccd.0xc1b1e1a300333333.0xc1bdcd64ffcccccd.0xc008000000000000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x41b1e1a2ffcccccd.0x41b1e1a300333333.0xc008000000000000.0x4008000000000000 ++vmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a2ffcccccd.0xc008000000000000.0x4008000000000000.0x710335e08b35e08b ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x710335e08b35e08b.0xc197d78400000000 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xf10335e08b35e08b.0xc197d78400000000.0x4197d78400000000 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x70f70d73da40a70e.0xc197d78400000000.0x4197d78400000000.0x0 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x3bd800000.0x8000000135000001.0x70debc9a78563412 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000023e800000.0x135000001.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000b9666667.0x70debc9a78563412.0x923456789abcdef0.0x71b91b0506c4b4 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x80000003f7000001.0x57ef5b78080000 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x378000001.0x8000000200c00000.0x71e798e008cccd ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000027a666667.0x81c00000.0x80000003ff0ccccd.0x58131ebe233333 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000180400000.0x383733333.0x8000000200eccccd.0x71f089b186cccd ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000027e8ccccd.0x85533333.0x80000004016ccccd.0x5c96fa98fab533 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x800000017faccccd.0x384d33333.0x800000023e06796d.0x731180a836e080 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000002802ccccd.0xc16cdfd3.0x800000043ff9aca0.0x4197d78400000000 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000001a489012d.0x3bf79aca0.0xc014000000000000.0xc197d78400000000 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000002a67c3460.0x4014000000000000.0x4014000000000000.0x416312d000000000 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc008000000000000.0xc014000000000000.0xbfe0000000000000.0xc16312d000000000 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4008000000000000.0x3fe0000000000000.0x3fe0000000000000.0x417312d000000000 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xbfd3333333333334.0xbfe0000000000000.0xbff0000000000000.0xc17312d010000000 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fd3333333333333.0x3ff0000000000000.0x3c90000000000000.0x41b1e1a301000000 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe3333333333334.0xc000000000000000.0xc02c000000000000.0xc1b1e1a30019999a ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfd9999999999999.0x4030000000000000.0x402dcccccccccccd.0x41bdcd650019999a ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc020000000000000.0xc02e333333333333.0xc038e66666666666.0xc1bdcd6500333333 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x4021cccccccccccd.0x403919999999999a.0x4038cccccccccccd.0x4341c37937e08000 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02dcccccccccccd.0xc039333333333333.0xc1bdcd64ffcccccd.0xc341c37937e08002 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x402d99999999999a.0x41bdcd6500333333.0x41bdcd64fd000000.0x4008000000000000 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a2ffcccccd.0xc1bdcd6503000000.0x4008000000000000.0xc014000000000000 ++vmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41b1e1a2fd000000.0x4008000000000000.0xc014000000000000.0xf286e690fe53a8fe ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xf286e690fe53a8fe.0x4197d78400000000 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x710335e08b35e08b.0x4197d78400000000.0x8000000000000000 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xf10335e08b35e08b.0x4197d78400000000.0x0.0x0 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0x70debc9a78563412 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x13d800000.0x80000003bd800000.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3bd800000.0x70debc9a78563412.0x923456789abcdef0.0x805735641c0b12d0 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x573564141b12d0.0x8071b91b0902c4b4 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000177000001.0x71b91b0306c4b4.0x8057ef5b87dccccd ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xf8000001.0x8000000477000001.0x57ef5b80233333.0x8071e798e3f73333 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x2f8000001.0x800000017f0ccccd.0x71e798de08cccd.0x8058131ecde4cccd ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x103733333.0x800000047f0ccccd.0x58131ec61b3333.0x8071f089b5793333 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x303733333.0x80000001816ccccd.0x71f089af86cccd.0x805c96faa8e38200 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x104d33333.0x80000004816ccccd.0x5c96faa0db8200.0x80731180ac38e080 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x304d33333.0x80000001bff9aca0.0x731180a636e080.0xc197d78400000000 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x13f79aca0.0x80000004bff9aca0.0x4197d78400000000.0x4197d78400000000 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x33f79aca0.0xc014000000000000.0xc197d78400000000.0xc16312d000000000 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x4014000000000000.0x4014000000000000.0x416312d000000000.0x416312d000000000 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xbfe0000000000000.0xc16312d000000000.0xc17312d010000000 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3fe0000000000000.0x3fe0000000000000.0x417312cff0000000.0x417312d010000000 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe0000000000000.0xc000000000000000.0xc17312cff0000000.0xc1b1e1a30019999a ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3c90000000000000.0x4000000000000000.0x41b1e1a2ffe66666.0x41b1e1a30019999a ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbc90000000000000.0xc02e333333333333.0xc1b1e1a2ffe66666.0xc1bdcd6500333333 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x402dcccccccccccd.0x402e333333333333.0x41bdcd64ffcccccd.0x41bdcd6500333333 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02dcccccccccccd.0xc039333333333333.0xc1bdcd64ffcccccd.0xc341c37937e08002 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x4038cccccccccccd.0x4039333333333333.0x4341c37937e07ffe.0x4341c37937e08002 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc038cccccccccccd.0xc1bdcd6503000000.0xc341c37937e07ffe.0xc014000000000000 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41bdcd64fd000000.0x41bdcd6503000000.0xc014000000000000.0x4014000000000000 ++vmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd64fd000000.0xc014000000000000.0x4014000000000000.0x7286e690fe53a8fe ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x7286e690fe53a8fe.0x0 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xf286e690fe53a8fe.0x93de4e3f1c71c703.0x0 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x710335e08b35e08b.0x13de4e3f1c71c703.0x0.0x70debc9a78563412 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x92596c16c16c16ac.0x0.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x800000013d800000.0x70debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8071ad2f4502c4b4.0x80000000bf800000 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x71ad2f4306c4b4.0x80573564240b12d0.0x800000003dcccccd ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000003f4800001.0x5735640c1b12d0.0x8071b91b06fbf7e7.0x80000000bdcccccd ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000001f7000001.0x71b91b050d9181.0x8057ef5b8fdccccd.0x800000003e4ccccd ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000003f54cccce.0x57ef5b78233333.0x8071e798e1f93333.0x80000000be4ccccd ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000001ff0ccccd.0x71e798e006cccd.0x8058131ed5e4cccd.0x8000000040400000 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000003ff8ccccd.0x58131ebe1b3333.0x8071f089b3810000.0x80000000c0400000 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000002016ccccd.0x71f089b17f0000.0x805c96fab0e38200.0x8000000040a00000 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000403600000.0x5c96fa98db8200.0x80731180aa3a6080.0x80000000c0a00000 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x800000023ff9aca0.0x731180a8356080.0xc197d78400000000.0x800000004cbebc20 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x800000044059aca0.0x4197d78400000000.0x4197d78400000000.0x80000000ccbebc20 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc014000000000000.0xc197d78400000000.0xc16312d000000000.0xbff0000000000000 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4014000000000000.0x416312d000000000.0x416312cfe0000000.0x3ff0000000000000 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xbfe0000000000000.0xc16312d020000000.0xc17312cff0000000.0xbfb999999999999a ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfe0000000000000.0x417312d010000000.0x417312cffe666667.0x3fb999999999999a ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbc90000000000000.0xc17312d00199999a.0xc1b1e1a2ffe66666.0xbfc999999999999a ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3feccccccccccccd.0x41b1e1a30019999a.0x41b1e1a2ffcccccd.0x3fc999999999999a ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc02dcccccccccccd.0xc1b1e1a300333333.0xc1bdcd64ffcccccd.0xc008000000000000 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x402d99999999999a.0x41bdcd6500333333.0x41bdcd64fd000000.0x4008000000000000 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc038cccccccccccd.0xc1bdcd6503000000.0xc341c37937e07ffe.0xc014000000000000 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4036000000000000.0x4341c37937e08002.0x4341c37937e07ffe.0x4014000000000000 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd64fd000000.0xc341c37937e08002.0x4014000000000000.0xc197d78400000000 ++vmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x41bdcd64fb000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x0 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x7286e690fe53a8fe.0x0.0x70debc9a78563412 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xf286e690fe53a8fe.0x93de4e3f1c71c703.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x13de4e3f1c71c703.0x70debc9a78563412.0x923456789abcdef0.0x8000000000000000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x805705b5140b12d0.0x80000000bf800000.0x800000003dcccccd ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x5705b50c1b12d0.0x8071ad2f4702c4b4.0x800000003dcccccd.0x80000000bdcccccd ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x71ad2f4106c4b4.0x805735641befdf9d.0x80000000bdcccccd.0x800000003e4ccccd ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x57356414364603.0x8071b91b08fbf7e7.0x800000003e4ccccd.0x80000000be4ccccd ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x71b91b030d9181.0x8057ef5b87e4cccd.0x80000000be4ccccd.0x8000000040400000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x57ef5b801b3333.0x8071e798e3f93333.0x8000000040400000.0x80000000c0400000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x71e798de06cccd.0x8058131ece040000.0x80000000c0400000.0x8000000040a00000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x58131ec5fc0000.0x8071f089b5810000.0x8000000040a00000.0x80000000c0a00000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x71f089af7f0000.0x805c96faa8e98200.0x80000000c0a00000.0x800000004cbebc20 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x5c96faa0d58200.0x80731180ac3a6080.0x800000004cbebc20.0x80000000ccbebc20 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x731180a6356080.0xc197d78400000000.0x80000000ccbebc20.0xbff0000000000000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4197d78400000000.0x4197d78400000000.0xbff0000000000000.0x3ff0000000000000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0xc16312d020000000.0x3ff0000000000000.0xbfb999999999999a ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x416312cfe0000000.0x416312d020000000.0xbfb999999999999a.0x3fb999999999999a ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312cfe0000000.0xc17312d00199999a.0x3fb999999999999a.0xbfc999999999999a ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x417312cffe666667.0x417312d00199999a.0xbfc999999999999a.0x3fc999999999999a ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312cffe666667.0xc1b1e1a300333333.0x3fc999999999999a.0xc008000000000000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x41b1e1a2ffcccccd.0x41b1e1a300333333.0xc008000000000000.0x4008000000000000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a2ffcccccd.0xc1bdcd6503000000.0x4008000000000000.0xc014000000000000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41bdcd64fd000000.0x41bdcd6503000000.0xc014000000000000.0x4014000000000000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd64fd000000.0xc341c37937e08002.0x4014000000000000.0xc197d78400000000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4341c37937e07ffe.0x4341c37937e08002.0xc197d78400000000.0x4197d78400000000 ++vmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc341c37937e07ffe.0xc197d78400000000.0x4197d78400000000.0x0 ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x0.0x70debc9a78563412 ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0x70debc9a78563412.0x923456789abcdef0 ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x7286e690fe53a8fe.0x70debc9a78563412.0x923456789abcdef0.0x8000000000000000 ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000000000000.0x8000000000000000 ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0xafb6c9d4ecd7a8ba ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8071d5b73efe0000.0x80000000bf800000.0x800000003dcccccd.0xaf9deb97f7a2e72c ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x805705b51c0b12d0.0x800000003dcccccd.0x80000000bdcccccd.0xafb6d9333a13d3d4 ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8071ad2f44fbf7e7.0x80000000bdcccccd.0x800000003e4ccccd.0xaf9edb5712ce8a46 ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8057356423efdf9d.0x800000003e4ccccd.0x80000000be4ccccd.0xafb7152300debc9b ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8071b91b06fdf7e7.0x80000000be4ccccd.0x8000000040400000.0xaf9f0971fa830b94 ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8057ef5b8fe4cccd.0x8000000040400000.0x80000000c0400000.0xafb720a9bacbdcee ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8071e798e2010000.0x80000000c0400000.0x8000000040a00000.0xafa26dc8d96fd63d ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8058131ed6040000.0x8000000040a00000.0x80000000c0a00000.0xafb89531a8e30528 ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8071f089b3828000.0x80000000c0a00000.0x800000004cbebc20.0xf0debc9a78563412 ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x805c96fab0e98200.0x800000004cbebc20.0x80000000ccbebc20.0x70debc9a78563412 ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x80731180aa6adb70.0x80000000ccbebc20.0xbff0000000000000.0xf0a896e1f9de900f ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc197d78400000000.0xbff0000000000000.0x3ff0000000000000.0x70a896e1f9de900f ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4197d783fc000000.0x3ff0000000000000.0xbfb999999999999a.0xf0b896e1f9de900f ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xc16312cfe0000000.0xbfb999999999999a.0x3fb999999999999a.0x70b896e1f9de900f ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x416312cffccccccd.0x3fb999999999999a.0xbfc999999999999a.0xf0f70d73da40a70d ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xc17312cffe666667.0xbfc999999999999a.0x3fc999999999999a.0x70f70d73da40a70d ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x417312cffccccccd.0x3fc999999999999a.0xc008000000000000.0xf10335e08b35e08b ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xc1b1e1a2ffcccccd.0xc008000000000000.0x4008000000000000.0x710335e08b35e08b ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x41b1e1a2fd000000.0x4008000000000000.0xc014000000000000.0xf286e690fe53a8fe ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc1bdcd64fd000000.0xc014000000000000.0x4014000000000000.0x7286e690fe53a8fe ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x41bdcd64fb000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc341c37937e07ffe.0xc197d78400000000.0x4197d78400000000.0x0 ++vmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4341c37934e58f80.0x4197d78400000000.0x0.0x7ff0000000000000 ++=== Running test on vnmas=== ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xfff0000000000000.0x0 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xfff0000000000000.0x432388ef40000000.0x0 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x0 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0x4cd820000000.0x20000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0xa0000000.0xf5e60000000.0xa0000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x20000000.0x4cd820000000.0x20000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0xa0000000.0xf5e60000000.0xa0000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x20000000.0x4cd820000000.0x40000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0xa0000000.0x1ebce0000000.0xc0000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x40000000.0x5c3680000000.0x40000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0x1ebce0000000.0xc0000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0x5c3680000000.0x40000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x1ebce0000000.0xc0000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0x5c3680000000.0x3ff0000000000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x40debcda60000000.0xbff0000000000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xc0debcda60000000.0x3fb9999980000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x7ff0000000000000.0xbfb99999a0000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb99999a0000000.0xfff0000000000000.0x3fc99999a0000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb99999a0000000.0xbfb99999a0000000.0x7ff0000000000000.0xbfc99999a0000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0x3fc99999a0000000.0xfff0000000000000.0x4008000000000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0xbfc99999a0000000.0x7ff0000000000000.0xc008000000000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0x4008000000000000.0xfff0000000000000.0x4014000000000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x7ff0000000000000.0xc014000000000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xfff0000000000000.0x4197d78400000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x7ff0000000000000.0xc197d78400000000 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xfff0000000000000.0x0 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x0 ++vnmas 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xfff0000000000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xfff0000000000000.0x432388ef40000000.0x0 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0xfff0000000000000.0x0.0x0 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x3b2388ef20000000.0xa0000000.0x20000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0xf5ee0000000.0x20000000.0xa0000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x4cd7a0000000.0xa0000000.0x20000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0xf5ee0000000.0x20000000.0xa0000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x4cd7a0000000.0xa0000000.0x40000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0xf5ee0000000.0x40000000.0xc0000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x4cd7c0000000.0xc0000000.0x40000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0x1ebd60000000.0x40000000.0xc0000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x5c3600000000.0xc0000000.0x40000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0x1ebd60000000.0x40000000.0xc0000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x5c3600000000.0xc0000000.0x3ff0000000000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0x1ebd60000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x40debc5a60000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xfff0000000000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb99999a0000000.0x7ff0000000000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0xfff0000000000000.0xbfc99999a0000000.0x4008000000000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0x7ff0000000000000.0x4008000000000000.0xc008000000000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0xfff0000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x7ff0000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xfff0000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x7ff0000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xfff0000000000000.0xc197d78400000000.0x0 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xfff0000000000000.0x8000000000000000.0xfff0000000000000 ++vnmas 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xfff0000000000000.0x0 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x0 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x3b2388ef20000000.0xa0000000.0x20000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc1cd85f900000000.0xa0000000.0x20000000.0xa0000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3b2388ef20000000.0x20000000.0xa0000000.0x20000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xf5e60000000.0xa0000000.0x20000000.0xa0000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4cd820000000.0x20000000.0xa0000000.0x40000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xf5e60000000.0xa0000000.0x40000000.0xc0000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4cd820000000.0x40000000.0xc0000000.0x40000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xf5e80000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4cd840000000.0x40000000.0xc0000000.0x40000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x1ebce0000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x5c3680000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x1ebce0000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x5c3680000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x7ff0000000000000.0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xfff0000000000000.0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x7ff0000000000000.0xbfc99999a0000000.0x4008000000000000.0xc008000000000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xfff0000000000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x7ff0000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xfff0000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x7ff0000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xfff0000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7ff0000000000000.0xc197d78400000000.0x0.0x0 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xfff0000000000000.0x0.0x0.0xfff0000000000000 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x0.0xfff0000000000000.0x0 ++vnmas 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0xfff0000000000000.0x0.0x0 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0x4cd820000000.0x20000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0xf5ee0000000.0x20000000.0xa0000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3b2388ef20000000.0x20000000.0xa0000000.0x20000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0xa0000000.0x20000000.0xa0000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x20000000.0xa0000000.0x40000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0xa0000000.0x40000000.0xc0000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x40000000.0xc0000000.0x40000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0xc0000000.0x40000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000.0xc008000000000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xfff0000000000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3a596c16a0000000.0xb847d78400000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbbde4e3f00000000.0xc0debc9a60000000.0x3a34567880000000.0x20000000 ++vnmas 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x0 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0xa0000000.0xf5e60000000.0xa0000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x4cd7a0000000.0xa0000000.0x20000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xf5e60000000.0xa0000000.0x20000000.0xa0000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x20000000.0xa0000000.0x40000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0xa0000000.0x40000000.0xc0000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x40000000.0xc0000000.0x40000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0xc0000000.0x40000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000320000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x80000000a0000000.0x320000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000320000000.0xa0000000.0xc0debc9a60000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000a0000000.0x320000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xa0000000.0xc0debc9a60000000.0x3a34567880000000.0x20000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x20000000.0xa0000000 ++vnmas 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0xa0000000.0x4cd7a0000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x20000000.0x4cd820000000.0x20000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0xf5ee0000000.0x20000000.0xa0000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4cd820000000.0x20000000.0xa0000000.0x40000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0xa0000000.0x40000000.0xc0000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x40000000.0xc0000000.0x40000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0xc0000000.0x40000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x60000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x1e0000000.0x80000000a0000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x60000000.0x8000000320000000.0xc0debc9a60000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x1e0000000.0x80000000a0000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000320000000.0xc0debc9a60000000.0x3a34567880000000.0x3847d78400000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x386dcd6500000000.0xa0000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x3847d78400000000.0xa0000000.0x20000000 ++vnmas 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x386dcd6500000000.0xa0000000.0x20000000.0xf5ee0000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0xa0000000.0xf5e60000000.0xa0000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x4cd7a0000000.0xa0000000.0x40000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xf5e60000000.0xa0000000.0x40000000.0xc0000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x40000000.0xc0000000.0x40000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0xc0000000.0x40000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000001e0000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000060000000.0x1e0000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x80000001e0000000.0x60000000.0xc0debc9a60000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000060000000.0x1e0000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x60000000.0xc0debc9a60000000.0x3a34567880000000.0xb86dcd6500000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0xb847d78400000000.0x386dcd6500000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xb86dcd6500000000.0x3847d78420000000.0x20000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xb847d78400000000.0x386dcd6500000000.0x20000000.0xa0000000 ++vnmas 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3847d78420000000.0x20000000.0xa0000000.0x4cd7a0000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x20000000.0x4cd820000000.0x40000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0xf5ee0000000.0x40000000.0xc0000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4cd820000000.0x40000000.0xc0000000.0x40000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0xc0000000.0x40000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x20000000.0x80000000c0000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x80000001e0000000.0xc0debc9a60000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x20000000.0x8000000060000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000001e0000000.0xc0debc9a60000000.0x3a34567880000000.0x160000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x340000000.0xb857d78400000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xc0000000.0xb86dcd6500000000.0x3857d78400000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x340000000.0xb847d783e0000000.0x386dcd6500000000.0xa0000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xb86dcd6500000000.0x3847d78400000000.0xa0000000.0x20000000 ++vnmas 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x386dcd6500000000.0xa0000000.0x20000000.0x1ebd40000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x20000000.0xa0000000.0x1ebce0000000.0xc0000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x4cd7c0000000.0xc0000000.0x40000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xf5e80000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0xc0000000.0x40000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000020000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000000000000.0x20000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000020000000.0x0.0xc0debc9a60000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x20000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xc0debc9a60000000.0x3a34567880000000.0x80000003a0000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x8000000120000000.0x460000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x8000000300000000.0x1e0000000.0xb871e1a300000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000080000000.0x3c0000000.0xb857d78400000000.0x3871e1a300000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x140000000.0xb86dcd6500000000.0x3857d78400000000.0x20000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xb847d78400000000.0x386dcd6500000000.0x20000000.0xa0000000 ++vnmas 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3847d78420000000.0x20000000.0xa0000000.0x5c3600000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0x40000000.0x5c3680000000.0x40000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0x1ebd60000000.0x40000000.0xc0000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4cd840000000.0x40000000.0xc0000000.0x40000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x20000000.0x8000000000000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000020000000.0xc0debc9a60000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000020000000.0xc0debc9a60000000.0x3a34567880000000.0xe0000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x260000000.0x80000000a0000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xe0000000.0x8000000320000000.0x160000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x200000000.0x80000000a0000000.0x3e0000000.0xb857d78400000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000280000000.0x160000000.0xb871e1a300000000.0x3857d78400000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x340000000.0xb857d78400000000.0x3871e1a300000000.0xa0000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xb86dcd6500000000.0x3857d78400000000.0xa0000000.0x40000000 ++vnmas 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x386dcd6500000000.0xa0000000.0x40000000.0x1ebd60000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40000000.0xc0000000.0x1ebce0000000.0xc0000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x5c3600000000.0xc0000000.0x40000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x1ebce0000000.0xc0000000.0x40000000.0xc0000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000020000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000000000000.0x20000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000020000000.0x0.0xc0debc9a60000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x20000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xc0debc9a60000000.0x3a34567880000000.0x8000000220000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x80000000a0000000.0x2e0000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x8000000220000000.0x160000000.0x80000003a0000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000a0000000.0x2e0000000.0x8000000120000000.0x460000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x160000000.0x80000003a0000000.0x1e0000000.0xb871e1a300000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000120000000.0x460000000.0xb857d78400000000.0x3871e1a300000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x1e0000000.0xb871e1a300000000.0x3857d78400000000.0x40000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xb857d78400000000.0x3871e1a300000000.0x40000000.0xc0000000 ++vnmas 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3857d78400000000.0x40000000.0xc0000000.0x5c3600000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0000000.0x40000000.0x5c3680000000.0x40000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0x1ebd60000000.0x40000000.0xc0000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x5c3680000000.0x40000000.0xc0000000.0x3ff0000000000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x40000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc0000000.0x8000000000000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x40000000.0x8000000020000000.0xc0debc9a60000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0000000.0x8000000000000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000020000000.0xc0debc9a60000000.0x3a34567880000000.0x20000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x40000000.0x8000000020000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0x80000001a0000000.0xe0000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x40000000.0x8000000020000000.0x260000000.0x80000000a0000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000001a0000000.0xe0000000.0x8000000320000000.0x160000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x260000000.0x80000000a0000000.0x3e0000000.0xb857d78400000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000320000000.0x160000000.0xb871e1a300000000.0x3857d78400000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e0000000.0xb857d78400000000.0x3871e1a300000000.0xc0000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xb871e1a300000000.0x3857d78400000000.0xc0000000.0x40000000 ++vnmas 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3871e1a300000000.0xc0000000.0x40000000.0x1ebd60000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40000000.0xc0000000.0x1ebce0000000.0xc0000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x5c3600000000.0xc0000000.0x3ff0000000000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x1ebce0000000.0xc0000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000c0000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000040000000.0xc0000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x80000000c0000000.0x40000000.0xc0debc9a60000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000040000000.0xc0000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40000000.0xc0debc9a60000000.0x3a34567880000000.0x8000000000000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x20000000.0xc0000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x8000000000000000.0xa0000000.0x8000000220000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0xc0000000.0x80000000a0000000.0x2e0000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x8000000220000000.0x160000000.0x80000003a0000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000000a0000000.0x2e0000000.0x8000000120000000.0x460000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x160000000.0x80000003a0000000.0x1e0000000.0xb871e1a300000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000120000000.0x460000000.0xb857d78400000000.0x3871e1a300000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x1e0000000.0xb871e1a300000000.0x3857d78400000000.0x40000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xb857d78400000000.0x3871e1a300000000.0x40000000.0xc0000000 ++vnmas 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3857d78400000000.0x40000000.0xc0000000.0x5c3600000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0000000.0x40000000.0x5c3680000000.0x3ff0000000000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0x1ebd60000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x5c3680000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000c0000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000000000000.0xbff0000000000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x80000000c0000000.0xc0debc5a60000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000040000000.0xc0debc9a60000000.0xbfb9999980000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000c0000000.0xc0debc9a60000000.0x3a34567880000000.0x3fb9999980000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x40000000.0xbfc9999980000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0x80000000.0x3fc9999980000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x40000000.0xa0000000.0x40000000.0xc008000000000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000.0x20000000.0x80000001a0000000.0x4008000000000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x40000000.0x8000000020000000.0x260000000.0xc014000000000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000001a0000000.0xe0000000.0x8000000320000000.0x4014000000000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x260000000.0x80000000a0000000.0x400000000.0xc197d78400000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000320000000.0x180000000.0xb871e1a300000000.0x4197d78400000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x400000000.0xb857d78400000000.0x3871e1a300000000.0xc0000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xb871e1a300000000.0x3857d78400000000.0xc0000000.0x40000000 ++vnmas 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3871e1a300000000.0xc0000000.0x40000000.0x40debc9a60000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40000000.0xc0000000.0x40debcda60000000.0xbff0000000000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x40000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000040000000.0xc0000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x80000000c0000000.0xc0debc5a60000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xc0debcda60000000.0xbff0000000000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xc0debc9a60000000.0x3ff0000000000000.0x3fb9999980000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0xbfb9999980000000.0xbfb9999980000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x0.0x3fb9999980000000.0x3fc9999980000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0xc0000000.0xbfc9999980000000.0xbfc9999980000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x8000000000000000.0x3fc9999980000000.0x4008000000000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0xc0000000.0xc008000000000000.0xc008000000000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x8000000220000000.0x4008000000000000.0x4014000000000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000a0000000.0x2e0000000.0xc014000000000000.0xc014000000000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x160000000.0x8000000380000000.0x4014000000000000.0x4197d78400000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000100000000.0x480000000.0xc197d78400000000.0xc197d78400000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x200000000.0xb871e1a300000000.0x4197d78400000000.0x40000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xb857d78400000000.0x3871e1a300000000.0x40000000.0xc0000000 ++vnmas 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3857d78400000000.0x40000000.0xc0000000.0xc0debc5a60000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0000000.0x3ff0000000000000.0xc0debcda60000000.0x3fb9999980000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x40debc5a60000000.0x3fb9999980000000.0xbfb9999980000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb9999980000000.0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb9999980000000.0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000020000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc0000000.0x8000000000000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x80000000c0000000.0x40000000.0xc0debc9a60000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000040000000.0xc0debc9a60000000.0xbfb9999980000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xc0debc9a60000000.0x3ff0000000000000.0x3fb9999980000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0xbff0000000000000.0xbff0000000000000.0xbf847ae120000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x3ff0000000000000.0x3fb9999980000000.0x3f847ae120000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xe0000000.0xbfb9999980000000.0xbfb9999980000000.0xbf947ae120000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000.0x3fb9999980000000.0x3fc9999980000000.0x3f947ae120000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x40000000.0xbfc9999980000000.0xbfc9999980000000.0xbfd3333320000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000.0x3fc9999980000000.0x4008000000000000.0x3fd3333320000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x40000000.0xc008000000000000.0xc008000000000000.0xbfdfffffe0000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000001a0000000.0x4008000000000000.0x4014000000000000.0x3fdfffffe0000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x280000000.0xc014000000000000.0xc014000000000000.0xc16312cfe0000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000300000000.0x4014000000000000.0x4197d78400000000.0x416312d000000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x400000000.0xc197d78400000000.0xc197d78400000000.0xc0000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xb871e1a300000000.0x4197d78400000000.0xc0000000.0x3ff0000000000000 ++vnmas 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3871e1a300000000.0xc0000000.0x3ff0000000000000.0x40a894e1c0000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x7ff0000000000000.0xbfb99999a0000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xfff0000000000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x7ff0000000000000.0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc9999980000000.0xbfc9999980000000.0x4008000000000000.0xc008000000000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000000000000.0x20000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x40000000.0x8000000020000000.0xc0debc9a60000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000040000000.0xc0000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000c0000000.0xc0debc9a60000000.0x3a34567880000000.0x3fb9999980000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0xbfb9999980000000.0xbfb9999980000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x3ff0000000000000.0x3fb9999980000000.0x3f847ae120000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbff0000000000000.0xbff0000000000000.0xbf847ae120000000.0xbf847ae120000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0x3fb9999980000000.0x3f847ae120000000.0x3f947ae120000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfb9999980000000.0xbfb9999980000000.0xbf947ae120000000.0xbf947ae120000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb9999980000000.0x3fc9999980000000.0x3f947ae120000000.0x3fd3333320000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfc9999980000000.0xbfc9999980000000.0xbfd3333320000000.0xbfd3333320000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc9999980000000.0x4008000000000000.0x3fd3333320000000.0x3fdfffffe0000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc008000000000000.0xc008000000000000.0xbfdfffffe0000000.0xbfdfffffe0000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x4014000000000000.0x3fdfffffe0000000.0x416312d000000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc014000000000000.0xc014000000000000.0xc16312cfe0000000.0xc16312cfe0000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x4197d78400000000.0x416312d000000000.0x3ff0000000000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc197d78400000000.0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0x3ff0000000000000.0xbff0000000000000.0xc0a896aea0000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb99999a0000000.0xfff0000000000000.0x3fc99999a0000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb99999a0000000.0x7ff0000000000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xfff0000000000000.0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0xbfc99999a0000000.0x4008000000000000.0xc008000000000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc9999980000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000020000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x20000000.0x8000000000000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000020000000.0x0.0xc0debc9a60000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0000000.0x8000000000000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40000000.0xc0debc9a60000000.0x3a34567880000000.0x8000000000000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x40000000.0xbfc9999980000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x0.0x3fb9999980000000.0x3fc9999980000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xe0000000.0xbfb9999980000000.0xbfb9999980000000.0xbf947ae120000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0x3fb9999980000000.0x3f847ae120000000.0x3f947ae120000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbff0000000000000.0xbf847ae120000000.0xbf847ae120000000.0xbfa47ae120000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb9999980000000.0x3f847ae120000000.0x3f947ae120000000.0x3fa47ae120000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb9999980000000.0xbf947ae120000000.0xbf947ae120000000.0xbfe3333320000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc9999980000000.0x3f947ae120000000.0x3fd3333320000000.0x3fe3333320000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc9999980000000.0xbfd3333320000000.0xbfd3333320000000.0xbfefffffe0000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x3fd3333320000000.0x3fdfffffe0000000.0x3fefffffe0000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc008000000000000.0xbfdfffffe0000000.0xbfdfffffe0000000.0xc17312cfe0000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x3fdfffffe0000000.0x416312d000000000.0x417312d000000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc014000000000000.0xc16312cfe0000000.0xc16312cfc0000000.0xbff0000000000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0x416312d000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78400000000.0xbff0000000000000.0x3fb99999a0000000.0x7ff0000000000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb99999a0000000.0xbfb99999a0000000.0x7ff0000000000000.0xbfc99999a0000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0xfff0000000000000.0xbfc99999a0000000.0x4008000000000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x7ff0000000000000.0xbfc99999a0000000.0x4008000000000000.0xc008000000000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000000000000.0x20000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000020000000.0xc0debc9a60000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x20000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000020000000.0xc0debc9a60000000.0x3a34567880000000.0x20000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x20000000.0xc0000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0x80000000.0x3fc9999980000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0xc0000000.0xbfc9999980000000.0xbfc9999980000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000.0x3fb9999980000000.0x3fc9999980000000.0x3f947ae120000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfb9999980000000.0xbfb9999980000000.0xbf947ae120000000.0xbf947ae120000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb9999980000000.0x3f847ae120000000.0x3f947ae120000000.0x3fa47ae120000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbf847ae120000000.0xbf847ae120000000.0xbfa47ae120000000.0xbfa47ae120000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3f847ae120000000.0x3f947ae120000000.0x3fa47ae120000000.0x3fe3333320000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbf947ae120000000.0xbf947ae120000000.0xbfe3333320000000.0xbfe3333320000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae120000000.0x3fd3333320000000.0x3fe3333320000000.0x3fefffffe0000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfd3333320000000.0xbfd3333320000000.0xbfefffffe0000000.0xbfefffffe0000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333320000000.0x3fdfffffe0000000.0x3fefffffe0000000.0x417312d000000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfdfffffe0000000.0xbfdfffffe0000000.0xc17312cfe0000000.0xc17312d000000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fdfffffe0000000.0x416312d000000000.0x417312cfe0000000.0x3fb9999980000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc16312cfe0000000.0xc16312d020000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vnmas 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312cfe0000000.0x3fb99999a0000000.0xbfb99999a0000000.0xfff0000000000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb99999a0000000.0x3fc99999a0000000.0xfff0000000000000.0x4008000000000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0x7ff0000000000000.0x4008000000000000.0xc008000000000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xfff0000000000000.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000001e0000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x20000000.0x80000000c0000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000020000000.0x0.0xc0debc9a60000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xc0debc9a60000000.0x3a34567880000000.0x8000000220000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x40000000.0x8000000020000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x8000000000000000.0xa0000000.0x8000000220000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x40000000.0xa0000000.0x40000000.0xc008000000000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x8000000000000000.0x3fc9999980000000.0x4008000000000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x40000000.0xbfc9999980000000.0xbfc9999980000000.0xbfd3333320000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb9999980000000.0x3fc9999980000000.0x3f947ae120000000.0x3fd3333320000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb9999980000000.0xbf947ae120000000.0xbf947ae120000000.0xbfe3333320000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3f847ae120000000.0x3f947ae120000000.0x3fa47ae120000000.0x3fe3333320000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbf847ae120000000.0xbfa47ae120000000.0xbfa47ae120000000.0xc022000000000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae120000000.0x3fa47ae120000000.0x3fe3333320000000.0x4022000000000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbf947ae120000000.0xbfe3333320000000.0xbfe3333320000000.0xc02e000000000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333320000000.0x3fe3333320000000.0x3fefffffe0000000.0x4030000000000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfd3333320000000.0xbfefffffe0000000.0x3e70000000000000.0xc1b1e1a300000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fdfffffe0000000.0x4000000000000000.0x417312cfe0000000.0x41b1e1a300000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fe0000000000000.0xc17312d020000000.0xc17312d000000000.0xbfb99999a0000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312cfe0000000.0x417312d000000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vnmas 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc16312d000000000.0xbfb99999a0000000.0x3fc99999a0000000.0x7ff0000000000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc99999a0000000.0xbfc99999a0000000.0x7ff0000000000000.0xc008000000000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0xfff0000000000000.0xc008000000000000.0x4014000000000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x7ff0000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x60000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000060000000.0x1e0000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x80000001e0000000.0xc0debc9a60000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x20000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000020000000.0xc0debc9a60000000.0x3a34567880000000.0xe0000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x80000000a0000000.0x2e0000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0x80000001a0000000.0xe0000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x20000000.0xc0000000.0x80000000a0000000.0x2e0000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000.0x20000000.0x80000001a0000000.0x4008000000000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x20000000.0xc0000000.0xc008000000000000.0xc008000000000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000.0x3fc9999980000000.0x4008000000000000.0x3fd3333320000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfc9999980000000.0xbfc9999980000000.0xbfd3333320000000.0xbfd3333320000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc9999980000000.0x3f947ae120000000.0x3fd3333320000000.0x3fe3333320000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbf947ae120000000.0xbf947ae120000000.0xbfe3333320000000.0xbfe3333320000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae120000000.0x3fa47ae120000000.0x3fe3333320000000.0x4022000000000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfa47ae120000000.0xbfa47ae120000000.0xc022000000000000.0xc022000000000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fa47ae120000000.0x3fe3333320000000.0x4022000000000000.0x4030000000000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfe3333320000000.0xbfe3333320000000.0xc02c000000000000.0xc030000000000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333320000000.0x4000000000000000.0x402c000000000000.0x41b1e1a300000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbc90000000000000.0xc000000000000000.0xc1b1e1a300000000.0xc1b1e1a300000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3c90000000000000.0x417312d000000000.0x41b1e1a300000000.0x3fc99999a0000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc17312d000000000.0xc17312d000000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vnmas 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312d000000000.0x3fc99999a0000000.0xbfc99999a0000000.0xfff0000000000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc99999a0000000.0x4008000000000000.0xfff0000000000000.0x4014000000000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x7ff0000000000000.0x4014000000000000.0xc014000000000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xfff0000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000320000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x1e0000000.0x80000000a0000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x80000001e0000000.0x60000000.0xc0debc9a60000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x20000000.0x8000000060000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xc0debc9a60000000.0x3a34567880000000.0x80000003a0000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x260000000.0x80000000a0000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x8000000220000000.0x160000000.0x80000003a0000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x40000000.0x8000000020000000.0x260000000.0x80000000a0000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xa0000000.0x8000000220000000.0x160000000.0x80000003a0000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x40000000.0x8000000020000000.0x260000000.0xc014000000000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0x8000000220000000.0x4008000000000000.0x4014000000000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x40000000.0xc008000000000000.0xc008000000000000.0xbfdfffffe0000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc9999980000000.0x4008000000000000.0x3fd3333320000000.0x3fdfffffe0000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc9999980000000.0xbfd3333320000000.0xbfd3333320000000.0xbfefffffe0000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae120000000.0x3fd3333320000000.0x3fe3333320000000.0x3fefffffe0000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbf947ae120000000.0xbfe3333320000000.0xbfe3333320000000.0xc02e000000000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fa47ae120000000.0x3fe3333320000000.0x4022000000000000.0x4030000000000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfa47ae120000000.0xc022000000000000.0xc020000000000000.0xc03a000000000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333320000000.0x4024000000000000.0x402c000000000000.0x40391999a0000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fd99999a0000000.0xc030000000000000.0xc02dccccc0000000.0xc1bdcd6500000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3c90000000000000.0x402e333340000000.0x41b1e1a300000000.0x41bdcd6500000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfecccccc0000000.0xc1b1e1a300000000.0xc1b1e1a300000000.0xbfc99999a0000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312d000000000.0x41b1e1a300000000.0xbfc99999a0000000.0x4008000000000000 ++vnmas 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc17312d000000000.0xbfc99999a0000000.0x4008000000000000.0x7ff0000000000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x7ff0000000000000.0xc014000000000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xfff0000000000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x7ff0000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x80000000a0000000.0x320000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x60000000.0x8000000320000000.0xc0debc9a60000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000060000000.0x1e0000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000001e0000000.0xc0debc9a60000000.0x3a34567880000000.0x160000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x8000000120000000.0x460000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xe0000000.0x8000000320000000.0x160000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000a0000000.0x2e0000000.0x8000000120000000.0x460000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000001a0000000.0xe0000000.0x8000000320000000.0x160000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000000a0000000.0x2e0000000.0x8000000120000000.0x460000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000001a0000000.0xe0000000.0x8000000320000000.0x4014000000000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000a0000000.0x2e0000000.0xc014000000000000.0xc014000000000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000001a0000000.0x4008000000000000.0x4014000000000000.0x3fdfffffe0000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc008000000000000.0xc008000000000000.0xbfdfffffe0000000.0xbfdfffffe0000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x3fd3333320000000.0x3fdfffffe0000000.0x3fefffffe0000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfd3333320000000.0xbfd3333320000000.0xbfefffffe0000000.0xbfefffffe0000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333320000000.0x3fe3333320000000.0x3fefffffe0000000.0x4030000000000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfe3333320000000.0xbfe3333320000000.0xc02c000000000000.0xc030000000000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333320000000.0x4024000000000000.0x402c000000000000.0x40391999a0000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc020000000000000.0xc024000000000000.0xc038e66660000000.0xc0391999a0000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4020000000000000.0x402e333340000000.0x4038e66660000000.0x41bdcd6500000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc02dccccc0000000.0xc02e333340000000.0xc1bdcd6500000000.0xc1bdcd6500000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402dccccc0000000.0x41b1e1a300000000.0x41bdcd6500000000.0x4008000000000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc1b1e1a300000000.0xc1b1e1a300000000.0x4008000000000000.0xc008000000000000 ++vnmas 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a300000000.0x4008000000000000.0xc008000000000000.0xfff0000000000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xfff0000000000000.0x4197d78400000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x7ff0000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xfff0000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000320000000.0xa0000000.0xc0debc9a60000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x1e0000000.0x80000000a0000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x60000000.0xc0debc9a60000000.0x3a34567880000000.0xb86dcd6500000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x340000000.0xb857d78400000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x8000000300000000.0x1e0000000.0xb871e1a300000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x200000000.0x80000000a0000000.0x3e0000000.0xb857d78400000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x160000000.0x80000003a0000000.0x1e0000000.0xb871e1a300000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x260000000.0x80000000a0000000.0x3e0000000.0xb857d78400000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x160000000.0x80000003a0000000.0x1e0000000.0xb871e1a300000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x260000000.0x80000000a0000000.0x400000000.0xc197d78400000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x160000000.0x8000000380000000.0x4014000000000000.0x4197d78400000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x280000000.0xc014000000000000.0xc014000000000000.0xc16312cfe0000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x4014000000000000.0x3fdfffffe0000000.0x416312d000000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc008000000000000.0xbfdfffffe0000000.0xbfdfffffe0000000.0xc17312cfe0000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333320000000.0x3fdfffffe0000000.0x3fefffffe0000000.0x417312d000000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfd3333320000000.0xbfefffffe0000000.0x3e70000000000000.0xc1b1e1a300000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333320000000.0x4000000000000000.0x402c000000000000.0x41b1e1a300000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fd99999a0000000.0xc030000000000000.0xc02dccccc0000000.0xc1bdcd6500000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4020000000000000.0x402e333340000000.0x4038e66660000000.0x41bdcd6500000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc021ccccc0000000.0xc0391999a0000000.0xc038ccccc0000000.0xc341c37940000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402dccccc0000000.0x4039333340000000.0x41bdcd6500000000.0x4341c37940000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc02d9999a0000000.0xc1bdcd6500000000.0xc1bdcd6500000000.0xc008000000000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a300000000.0x41bdcd6500000000.0xc008000000000000.0x4014000000000000 ++vnmas 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1b1e1a300000000.0xc008000000000000.0x4014000000000000.0x7ff0000000000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x7ff0000000000000.0xc197d78400000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xfff0000000000000.0xc197d78400000000.0x0 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7ff0000000000000.0xc197d78400000000.0x0.0x0 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xfff0000000000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000a0000000.0x320000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000320000000.0xc0debc9a60000000.0x3a34567880000000.0x3847d78400000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0xb847d78400000000.0x386dcd6500000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xc0000000.0xb86dcd6500000000.0x3857d78400000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000080000000.0x3c0000000.0xb857d78400000000.0x3871e1a300000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000280000000.0x160000000.0xb871e1a300000000.0x3857d78400000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000120000000.0x460000000.0xb857d78400000000.0x3871e1a300000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000320000000.0x160000000.0xb871e1a300000000.0x3857d78400000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000120000000.0x460000000.0xb857d78400000000.0x3871e1a300000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000320000000.0x180000000.0xb871e1a300000000.0x4197d78400000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000100000000.0x480000000.0xc197d78400000000.0xc197d78400000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000300000000.0x4014000000000000.0x4197d78400000000.0x416312d000000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc014000000000000.0xc014000000000000.0xc16312cfe0000000.0xc16312cfe0000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x3fdfffffe0000000.0x416312d000000000.0x417312d000000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfdfffffe0000000.0xbfdfffffe0000000.0xc17312cfe0000000.0xc17312d000000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fdfffffe0000000.0x4000000000000000.0x417312cfe0000000.0x41b1e1a300000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbc90000000000000.0xc000000000000000.0xc1b1e1a300000000.0xc1b1e1a300000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3c90000000000000.0x402e333340000000.0x41b1e1a300000000.0x41bdcd6500000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc02dccccc0000000.0xc02e333340000000.0xc1bdcd6500000000.0xc1bdcd6500000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402dccccc0000000.0x4039333340000000.0x41bdcd6500000000.0x4341c37940000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc038ccccc0000000.0xc039333340000000.0xc341c37940000000.0xc341c37940000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4038ccccc0000000.0x41bdcd6500000000.0x4341c37940000000.0x4014000000000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1bdcd6500000000.0xc1bdcd6500000000.0x4014000000000000.0xc014000000000000 ++vnmas 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd6500000000.0x4014000000000000.0xc014000000000000.0xfff0000000000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xfff0000000000000.0x0 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x7ff0000000000000.0x0.0x8000000000000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xfff0000000000000.0x0.0x0.0xfff0000000000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3a596c16a0000000.0xb847d78400000000.0xc0debc9a60000000.0x3a34567880000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xa0000000.0xc0debc9a60000000.0x3a34567880000000.0x20000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x386dcd6500000000.0xa0000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0xb86dcd6500000000.0x3847d78420000000.0x20000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x340000000.0xb847d783e0000000.0x386dcd6500000000.0xa0000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x140000000.0xb86dcd6500000000.0x3857d78400000000.0x20000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x340000000.0xb857d78400000000.0x3871e1a300000000.0xa0000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x1e0000000.0xb871e1a300000000.0x3857d78400000000.0x40000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e0000000.0xb857d78400000000.0x3871e1a300000000.0xc0000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x1e0000000.0xb871e1a300000000.0x3857d78400000000.0x40000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x400000000.0xb857d78400000000.0x3871e1a300000000.0xc0000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x200000000.0xb871e1a300000000.0x4197d78400000000.0x40000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x400000000.0xc197d78400000000.0xc197d78400000000.0xc0000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x4197d78400000000.0x416312d000000000.0x3ff0000000000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc014000000000000.0xc16312cfe0000000.0xc16312cfc0000000.0xbff0000000000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fdfffffe0000000.0x416312d000000000.0x417312cfe0000000.0x3fb9999980000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fe0000000000000.0xc17312d020000000.0xc17312d000000000.0xbfb99999a0000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3c90000000000000.0x417312d000000000.0x41b1e1a300000000.0x3fc99999a0000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfecccccc0000000.0xc1b1e1a300000000.0xc1b1e1a300000000.0xbfc99999a0000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402dccccc0000000.0x41b1e1a300000000.0x41bdcd6500000000.0x4008000000000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc02d9999a0000000.0xc1bdcd6500000000.0xc1bdcd6500000000.0xc008000000000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4038ccccc0000000.0x41bdcd6500000000.0x4341c37940000000.0x4014000000000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc036000000000000.0xc341c37940000000.0xc341c37940000000.0xc014000000000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd6500000000.0x4341c37940000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc1bdcd6500000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x0 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xfff0000000000000.0x8000000000000000.0xfff0000000000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x0.0xfff0000000000000.0x0 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbbde4e3f00000000.0xc0debc9a60000000.0x3a34567880000000.0x20000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0debc9a60000000.0x3a34567880000000.0x20000000.0xa0000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x3847d78400000000.0xa0000000.0x20000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xb847d78400000000.0x386dcd6500000000.0x20000000.0xa0000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xb86dcd6500000000.0x3847d78400000000.0xa0000000.0x20000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xb847d78400000000.0x386dcd6500000000.0x20000000.0xa0000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xb86dcd6500000000.0x3857d78400000000.0xa0000000.0x40000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xb857d78400000000.0x3871e1a300000000.0x40000000.0xc0000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xb871e1a300000000.0x3857d78400000000.0xc0000000.0x40000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xb857d78400000000.0x3871e1a300000000.0x40000000.0xc0000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xb871e1a300000000.0x3857d78400000000.0xc0000000.0x40000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xb857d78400000000.0x3871e1a300000000.0x40000000.0xc0000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xb871e1a300000000.0x4197d78400000000.0xc0000000.0x3ff0000000000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc197d78400000000.0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0x416312d000000000.0xbff0000000000000.0x3fb9999980000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc16312cfe0000000.0xc16312d020000000.0x3fb99999a0000000.0xbfb99999a0000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312cfe0000000.0x417312d000000000.0xbfb99999a0000000.0x3fc99999a0000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc17312d000000000.0xc17312d000000000.0x3fc99999a0000000.0xbfc99999a0000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312d000000000.0x41b1e1a300000000.0xbfc99999a0000000.0x4008000000000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc1b1e1a300000000.0xc1b1e1a300000000.0x4008000000000000.0xc008000000000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a300000000.0x41bdcd6500000000.0xc008000000000000.0x4014000000000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1bdcd6500000000.0xc1bdcd6500000000.0x4014000000000000.0xc014000000000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd6500000000.0x4341c37940000000.0xc014000000000000.0x4197d78400000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc341c37940000000.0xc341c37940000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4341c37940000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xfff0000000000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xfff0000000000000.0x0 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0xfff0000000000000.0x0.0x0 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xfff0000000000000.0x0.0x0.0x0 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3a34567880000000.0x20000000.0xa0000000.0x4cd7a0000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x386dcd6500000000.0xa0000000.0x20000000.0xf5ee0000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3847d78420000000.0x20000000.0xa0000000.0x4cd7a0000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x386dcd6500000000.0xa0000000.0x20000000.0x1ebd40000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3847d78420000000.0x20000000.0xa0000000.0x5c3600000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x386dcd6500000000.0xa0000000.0x40000000.0x1ebd60000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3857d78400000000.0x40000000.0xc0000000.0x5c3600000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3871e1a300000000.0xc0000000.0x40000000.0x1ebd60000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3857d78400000000.0x40000000.0xc0000000.0x5c3600000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3871e1a300000000.0xc0000000.0x40000000.0x40debc9a60000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3857d78400000000.0x40000000.0xc0000000.0xc0debc5a60000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3871e1a300000000.0xc0000000.0x3ff0000000000000.0x40a894e1c0000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0x3ff0000000000000.0xbff0000000000000.0xc0a896aea0000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78400000000.0xbff0000000000000.0x3fb99999a0000000.0x7ff0000000000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312cfe0000000.0x3fb99999a0000000.0xbfb99999a0000000.0xfff0000000000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc16312d000000000.0xbfb99999a0000000.0x3fc99999a0000000.0x7ff0000000000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312d000000000.0x3fc99999a0000000.0xbfc99999a0000000.0xfff0000000000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc17312d000000000.0xbfc99999a0000000.0x4008000000000000.0x7ff0000000000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a300000000.0x4008000000000000.0xc008000000000000.0xfff0000000000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1b1e1a300000000.0xc008000000000000.0x4014000000000000.0x7ff0000000000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd6500000000.0x4014000000000000.0xc014000000000000.0xfff0000000000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc1bdcd6500000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4341c37940000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmas 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc341c37940000000.0xc197d78400000000.0x0.0xfff0000000000000 ++=== Running test on vnmad=== ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xfff0000000000000.0x123456789abcdef0 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x432388ef423d9d0c.0x0 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x0.0x0 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x0.0x0.0x0 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x2f9dae1ec2b23ac4.0xbdcccccd ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0x2fb6c9d4ecd7a8ba.0x3e4ccccd ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x2f9deb97f7a2e72c.0xbe4ccccd ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0x2fb6d9333a13d3d4.0x40400000 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x2f9edb5712ce8a46.0xc0400000 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0x2fb7152300debc9b.0x40a00000 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x2f9f0971fa830b94.0xc0a00000 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0x2fb720a9bacbdcee.0x4cbebc20 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x2fa26dc8d96fd63d.0xccbebc20 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0x2fb89531a8e30528.0x3ff0000000000000 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x70debc9a78563412.0xbff0000000000000 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xf0debc9a78563412.0x3fb999999999999a ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x70a896e1f9de900f.0xbfb999999999999a ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xf0a896e1f9de900f.0x3fc999999999999a ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x70b896e1f9de900f.0xbfc999999999999a ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xf0b896e1f9de900f.0x4008000000000000 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x70f70d73da40a70e.0xc008000000000000 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xf0f70d73da40a70e.0x4014000000000000 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x710335e08b35e08b.0xc014000000000000 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xf10335e08b35e08b.0x4197d78400000000 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x7286e690fe53a8fe.0xc197d78400000000 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xf286e690fe53a8fe.0x0 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x0 ++vnmad 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x432388ef423d9d0c.0x0 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xfff0000000000000.0x0.0x0 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x432388ef423d9d0c.0x0.0x0 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x2f9e7f21436587aa.0x3dcccccd.0xbdcccccd ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x2fb6fe158d047bf4.0xbdcccccd.0x3e4ccccd ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x2f9dae1ec2b23ac4.0x3e4ccccd.0xbe4ccccd ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x2fb6c9d4ecd7a8ba.0xbe4ccccd.0x40400000 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x2f9deb97f7a2e72c.0x40400000.0xc0400000 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x2fb6d9333a13d3d4.0xc0400000.0x40a00000 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x2f9edb5712ce8a46.0x40a00000.0xc0a00000 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x2fb7152300debc9b.0xc0a00000.0x4cbebc20 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x2f9f0971fa830b94.0x4cbebc20.0xccbebc20 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x2fb720a9bacbdcee.0xccbebc20.0x3ff0000000000000 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x2fa26dc8d96fd63d.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x70debc9a78563412.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xf0debc9a78563412.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x70a896e1f9de900f.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xf0a896e1f9de900f.0xbfc999999999999a.0x4008000000000000 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x70b896e1f9de900f.0x4008000000000000.0xc008000000000000 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xf0b896e1f9de900f.0xc008000000000000.0x4014000000000000 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x70f70d73da40a70d.0x4014000000000000.0xc014000000000000 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xf0f70d73da40a70d.0xc014000000000000.0x4197d78400000000 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x710335e08b35e08b.0x4197d78400000000.0xc197d78400000000 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xf10335e08b35e08b.0xc197d78400000000.0x0 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x7286e690fe53a8fe.0x13de4e3f1c71c703.0x8000000000000000 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xf286e690fe53a8fe.0x8000000000000000.0xf0debc9a78563412 ++vnmad 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x0.0x0 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x432388ef423d9d0c.0x0.0x0 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0xbf800000.0x3dcccccd.0xbdcccccd ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x432388ef423d9d0c.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x2f9e7f21436587aa.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x2fb6fe158d047bf4.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x2f9dae1ec2b23ac4.0xbe4ccccd.0x40400000.0xc0400000 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x2fb6c9d4ecd7a8ba.0x40400000.0xc0400000.0x40a00000 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x2f9deb97f7a2e72c.0xc0400000.0x40a00000.0xc0a00000 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x2fb6d9333a13d3d4.0x40a00000.0xc0a00000.0x4cbebc20 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x2f9edb5712ce8a46.0xc0a00000.0x4cbebc20.0xccbebc20 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x2fb7152300debc9b.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x2f9f0971fa830b94.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x2fb720a9bacbdcee.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x70debc9a78563412.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xf0debc9a78563412.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x70a896e1f9de900f.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xf0a896e1f9de900f.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x70b896e1f9de900f.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xf0b896e1f9de900f.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x70f70d73da40a70e.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xf0f70d73da40a70e.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x710335e08b35e08b.0xc197d78400000000.0x0.0x0 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xf10335e08b35e08b.0x93de4e3f1c71c703.0x0.0xf0debc9a78563412 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7286e690fe53a8fe.0x13de4e3f1c71c703.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xf286e690fe53a8fe.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x0.0x0.0x0 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x2f9e7f21436587aa.0x3dcccccd.0xbdcccccd ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x432388ef423d9d0c.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x12596c16c16c16ac.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x93de4e3f1c71c703.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vnmad 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x0.0x0 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x2f9dae1ec2b23ac4.0xbdcccccd ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x2fb6fe158d047bf4.0xbdcccccd.0x3e4ccccd ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x2f9e7f21436587aa.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000003b5000001 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000135000001.0x3b5000001 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x80000003bd800000.0x135000001.0xf0debc9a78563412 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000013d800000.0x3bd800000.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x13d800000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vnmad 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x2fb6c9d4ecd7a8ba ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0x2fb6c9d4ecd7a8ba.0x3e4ccccd ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x2f9dae1ec2b23ac4.0x3e4ccccd.0xbe4ccccd ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x2fb6fe158d047bf4.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xbae66667 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x239666667.0x8000000137800001 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xb9666667.0x80000003b5000001.0xf0debc9a78563412 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x23e800000.0x8000000135000001.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000003bd800000.0xf0debc9a78563412.0x123456789abcdef0.0x5735641c0b12d0 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x71ad2f4502c4b4.0xbf800000 ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x5705b5140b12d0.0xbf800000.0x3dcccccd ++vnmad 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x71d5b73efe0000.0xbf800000.0x3dcccccd.0x2f9deb97f7a2e72c ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x2f9deb97f7a2e72c.0xbe4ccccd ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x2fb6c9d4ecd7a8ba.0xbe4ccccd.0x40400000 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x2f9dae1ec2b23ac4.0xbe4ccccd.0x40400000.0xc0400000 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x800000023ae66667 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x80000000bae66667.0x23ae66667 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000239666667.0xbae66667.0xf0debc9a78563412 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000b9666667.0x239666667.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xb9666667.0xf0debc9a78563412.0x123456789abcdef0.0x8071b91b0506c4b4 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x80573564141b12d0.0x71b91b0902c4b4 ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x8071ad2f4306c4b4.0x573564240b12d0.0x3dcccccd ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x805705b50c1b12d0.0x71ad2f4702c4b4.0x3dcccccd.0xbdcccccd ++vnmad 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x5705b51c0b12d0.0x3dcccccd.0xbdcccccd.0x2fb6d9333a13d3d4 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0x2fb6d9333a13d3d4.0x40400000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x2f9deb97f7a2e72c.0x40400000.0xc0400000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x2fb6c9d4ecd7a8ba.0x40400000.0xc0400000.0x40a00000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xcd9999a ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x260f5c29.0x80000000c0c00000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xc75c28f.0x800000023ae66667.0xf0debc9a78563412 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x25f5c28f.0x80000000bae66667.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000239666667.0xf0debc9a78563412.0x123456789abcdef0.0x180c00000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f7000001.0x8057ef5b78080000 ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x177000001.0x8071b91b0306c4b4.0x57ef5b87dccccd ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f4800001.0x805735640c1b12d0.0x71b91b06fbf7e7.0xbdcccccd ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8071ad2f4106c4b4.0x5735641befdf9d.0xbdcccccd.0x3e4ccccd ++vnmad 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x71ad2f44fbf7e7.0xbdcccccd.0x3e4ccccd.0x2f9edb5712ce8a46 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x2f9edb5712ce8a46.0xc0400000 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x2fb6d9333a13d3d4.0xc0400000.0x40a00000 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x2f9deb97f7a2e72c.0xc0400000.0x40a00000.0xc0a00000 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000026733333 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x800000000cd9999a.0x26733333 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x80000000260f5c29.0xcd9999a.0xf0debc9a78563412 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000000c75c28f.0x260f5c29.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc75c28f.0xf0debc9a78563412.0x123456789abcdef0.0x8000000381c00000 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x8000000101c00000.0x480c00000 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x8000000378000001.0x200c00000.0x8071e798e008cccd ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000f8000001.0x477000001.0x8057ef5b80233333.0x71e798e3f73333 ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x1f7000001.0x8071b91b050d9181.0x57ef5b8fdccccd.0x3e4ccccd ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8057356414364603.0x71b91b08fbf7e7.0x3e4ccccd.0xbe4ccccd ++vnmad 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x57356423efdf9d.0x3e4ccccd.0xbe4ccccd.0x2fb7152300debc9b ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0x2fb7152300debc9b.0x40a00000 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x2f9edb5712ce8a46.0x40a00000.0xc0a00000 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x2fb6d9333a13d3d4.0x40a00000.0xc0a00000.0x4cbebc20 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x6766666 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x1339999a.0x800000000ceccccd ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x66ccccd.0x8000000026733333.0xf0debc9a78563412 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x1307ae15.0x800000000cd9999a.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000260f5c29.0xf0debc9a78563412.0x123456789abcdef0.0x101600000 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x280400000.0x8000000083a00000 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x100400000.0x8000000301c00000.0x180eccccd ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x27a666667.0x8000000081c00000.0x3ff0ccccd.0x8058131ebe233333 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000002f8000001.0x17f0ccccd.0x8071e798de08cccd.0x58131ecde4cccd ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3f54cccce.0x8057ef5b78233333.0x71e798e1f93333.0xbe4ccccd ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8071b91b030d9181.0x57ef5b87e4cccd.0xbe4ccccd.0x40400000 ++vnmad 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x71b91b06fdf7e7.0xbe4ccccd.0x40400000.0x2f9f0971fa830b94 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x2f9f0971fa830b94.0xc0a00000 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x2fb7152300debc9b.0xc0a00000.0x4cbebc20 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x2f9edb5712ce8a46.0xc0a00000.0x4cbebc20.0xccbebc20 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000013433333 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000006766666.0x13433333 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x800000001339999a.0x6766666.0xf0debc9a78563412 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000066ccccd.0x1339999a.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x66ccccd.0xf0debc9a78563412.0x123456789abcdef0.0x8000000202600000 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x8000000082600000.0x301600000 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x8000000201400000.0x181600000.0x8000000385533333 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000081400000.0x300400000.0x8000000105533333.0x480eccccd ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x180400000.0x8000000383733333.0x200eccccd.0x8071f089b186cccd ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000103733333.0x47f0ccccd.0x8058131ec61b3333.0x71f089b5793333 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x1ff0ccccd.0x8071e798e006cccd.0x58131ed5e4cccd.0x40400000 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8057ef5b801b3333.0x71e798e3f93333.0x40400000.0xc0400000 ++vnmad 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x57ef5b8fe4cccd.0x40400000.0xc0400000.0x2fb720a9bacbdcee ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0x2fb720a9bacbdcee.0x4cbebc20 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x2f9f0971fa830b94.0x4cbebc20.0xccbebc20 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x2fb7152300debc9b.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x4cbebc20 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc0a00000.0x8000000007acac6a ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x40a00000.0x8000000013433333.0xf0debc9a78563412 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0400000.0x8000000006766666.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x800000001339999a.0xf0debc9a78563412.0x123456789abcdef0.0x4ed958d3 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x66066666.0x8000000026bc3460 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x4c6ccccd.0x8000000182600000.0x12409012d ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x65f33333.0x8000000002600000.0x27faccccd.0x80000000c1ecdfd3 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000181400000.0xffaccccd.0x8000000305533333.0x1be06796d ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x27e8ccccd.0x8000000085533333.0x4016ccccd.0x805c96fa98fab533 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000303733333.0x1816ccccd.0x8071f089af86cccd.0x5c96faa8e38200 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff8ccccd.0x8058131ebe1b3333.0x71f089b3810000.0xc0400000 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8071e798de06cccd.0x58131ece040000.0xc0400000.0x40a00000 ++vnmad 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x71e798e2010000.0xc0400000.0x40a00000.0x2fa26dc8d96fd63d ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x2fa26dc8d96fd63d.0xccbebc20 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x2fb720a9bacbdcee.0xccbebc20.0x3ff0000000000000 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x2f9f0971fa830b94.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000ccbebc20 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x800000004cbebc20.0xccbebc20 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x80000000c0a00000.0x4cbebc20.0xf0debc9a78563412 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000040a00000.0xc0a00000.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40a00000.0xf0debc9a78563412.0x123456789abcdef0.0x168d0d93 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3026a72d.0xe872f26d ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x18f9999a.0xced958d3.0x80000002286f6793 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x32933333.0xe6066666.0x80000000a86f6793.0x32409012d ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xcc6ccccd.0x8000000204133333.0x1a409012d.0x80000003c16cdfd3 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000084133333.0x2ffaccccd.0x80000001416cdfd3.0x4be06796d ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x17faccccd.0x8000000384d33333.0x23e06796d.0x80731180a836e080 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000104d33333.0x4816ccccd.0x805c96faa0db8200.0x731180ac38e080 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x2016ccccd.0x8071f089b17f0000.0x5c96fab0e38200.0x40a00000 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8058131ec5fc0000.0x71f089b5810000.0x40a00000.0xc0a00000 ++vnmad 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x58131ed6040000.0x40a00000.0xc0a00000.0x2fb89531a8e30528 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0x2fb89531a8e30528.0x3ff0000000000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x2fa26dc8d96fd63d.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x2fb720a9bacbdcee.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000000ccbebc20 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000000000000.0xbff0000000000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x80000000ccbebc20.0xf0debc9a78563412 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x800000004cbebc20.0xf0debc9a78563412.0xbfb999999999999a ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000c0a00000.0xf0debc9a78563412.0x123456789abcdef0.0x3fb999999999999a ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x53f97936.0xbfc999999999999a ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x472cac6a.0x968d0d93.0x3fc999999999999a ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x52c33333.0xb026a72d.0x66bfbf3a.0xc008000000000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x98f9999a.0x4d2625a0.0x80000001a86f6793.0x4008000000000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x64533333.0x80000000286f6793.0x2a489012d.0xc014000000000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000184133333.0x12489012d.0x80000003416cdfd3.0x4014000000000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x2802ccccd.0x80000000c16cdfd3.0x43ff9aca0.0xc197d78400000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000304d33333.0x1bff9aca0.0x80731180a636e080.0x4197d78400000000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x403600000.0x805c96fa98db8200.0x731180aa3a6080.0xc0a00000 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8071f089af7f0000.0x5c96faa8e98200.0xc0a00000.0x4cbebc20 ++vnmad 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x71f089b3828000.0xc0a00000.0x4cbebc20.0x70debc9a78563412 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x70debc9a78563412.0xbff0000000000000 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x4cbebc20 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x800000004cbebc20.0xccbebc20 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0x80000000ccbebc20.0xf0debc9a78563412 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xf0debc9a78563412.0xbff0000000000000 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x3ff0000000000000.0x3fb999999999999a ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0xbfb999999999999a.0xbfb999999999999a ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x2b0686ca.0x3fb999999999999a.0x3fc999999999999a ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x37d35396.0xd3f97936.0xbfc999999999999a.0xbfc999999999999a ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc72cac6a.0x14d9da60.0x3fc999999999999a.0x4008000000000000 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x2e7373fa.0xe6bfbf3a.0xc008000000000000.0xc008000000000000 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xcd2625a0.0x8000000227ef6793.0x4008000000000000.0x4014000000000000 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000a7ef6793.0x32489012d.0xc014000000000000.0xc014000000000000 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x1a489012d.0x80000003bf79aca0.0x4014000000000000.0x4197d78400000000 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x800000013f79aca0.0x4bff9aca0.0xc197d78400000000.0xc197d78400000000 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x23ff9aca0.0x80731180a8356080.0x4197d78400000000.0x4cbebc20 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x805c96faa0d58200.0x731180ac3a6080.0x4cbebc20.0xccbebc20 ++vnmad 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x5c96fab0e98200.0x4cbebc20.0xccbebc20.0xf0debc9a78563412 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xf0debc9a78563412.0x3fb999999999999a ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x70debc9a78563412.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000013433333 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc0a00000.0x8000000007acac6a ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x80000000c0a00000.0x4cbebc20.0xf0debc9a78563412 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x800000004cbebc20.0xf0debc9a78563412.0xbfb999999999999a ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x3ff0000000000000.0x3fb999999999999a ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xbff0000000000000.0xbff0000000000000.0xbf847ae147ae147c ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3ff0000000000000.0x3fb999999999999a.0x3f847ae147ae147c ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x10c3ebc20.0xbfb999999999999a.0xbfb999999999999a.0xbf947ae147ae147c ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xab0686ca.0x3fb999999999999a.0x3fc999999999999a.0x3f947ae147ae147c ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x52464603.0xbfc999999999999a.0xbfc999999999999a.0xbfd3333333333333 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x94d9da60.0x3fc999999999999a.0x4008000000000000.0x3fd3333333333334 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x673fbf3a.0xc008000000000000.0xc008000000000000.0xbfe0000000000000 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000001a7ef6793.0x4008000000000000.0x4014000000000000.0x3fe0000000000000 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x2a67c3460.0xc014000000000000.0xc014000000000000.0xc16312d000000000 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x800000033f79aca0.0x4014000000000000.0x4197d78400000000.0x416312d000000000 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x44059aca0.0xc197d78400000000.0xc197d78400000000.0xccbebc20 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80731180a6356080.0x4197d78400000000.0xccbebc20.0x3ff0000000000000 ++vnmad 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x731180aa6adb70.0xccbebc20.0x3ff0000000000000.0x70a896e1f9de900f ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x70a896e1f9de900f.0xbfb999999999999a ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xf0debc9a78563412.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x70debc9a78563412.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x6766666 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000006766666.0x13433333 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x40a00000.0x8000000013433333.0xf0debc9a78563412 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000040a00000.0xc0a00000.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000c0a00000.0xf0debc9a78563412.0x123456789abcdef0.0x3fb999999999999a ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0xbfb999999999999a.0xbfb999999999999a ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3ff0000000000000.0x3fb999999999999a.0x3f847ae147ae147c ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbff0000000000000.0xbff0000000000000.0xbf847ae147ae147c.0xbf847ae147ae147c ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0x3fb999999999999a.0x3f847ae147ae147c.0x3f947ae147ae147c ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfb999999999999a.0xbfb999999999999a.0xbf947ae147ae147c.0xbf947ae147ae147c ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb999999999999a.0x3fc999999999999a.0x3f947ae147ae147c.0x3fd3333333333334 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfc999999999999a.0xbfc999999999999a.0xbfd3333333333333.0xbfd3333333333333 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc999999999999a.0x4008000000000000.0x3fd3333333333334.0x3fe0000000000000 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc008000000000000.0xc008000000000000.0xbfe0000000000000.0xbfe0000000000000 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x4014000000000000.0x3fe0000000000000.0x416312d000000000 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc014000000000000.0xc014000000000000.0xc16312d000000000.0xc16312d000000000 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x4197d78400000000.0x416312d000000000.0x3ff0000000000000 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc197d78400000000.0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0x3ff0000000000000.0xbff0000000000000.0xf0a896e1f9de900f ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xf0a896e1f9de900f.0x3fc999999999999a ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x70a896e1f9de900f.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xf0debc9a78563412.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x8000000026733333 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x1339999a.0x800000000ceccccd ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x800000001339999a.0x6766666.0xf0debc9a78563412 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0400000.0x8000000006766666.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40a00000.0xf0debc9a78563412.0x123456789abcdef0.0x168d0d93 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x53f97936.0xbfc999999999999a ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x2b0686ca.0x3fb999999999999a.0x3fc999999999999a ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x10c3ebc20.0xbfb999999999999a.0xbfb999999999999a.0xbf947ae147ae147c ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0x3fb999999999999a.0x3f847ae147ae147c.0x3f947ae147ae147c ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbff0000000000000.0xbf847ae147ae147c.0xbf847ae147ae147c.0xbfa47ae147ae147c ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb999999999999a.0x3f847ae147ae147c.0x3f947ae147ae147c.0x3fa47ae147ae147c ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb999999999999a.0xbf947ae147ae147c.0xbf947ae147ae147c.0xbfe3333333333333 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc999999999999a.0x3f947ae147ae147c.0x3fd3333333333334.0x3fe3333333333334 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc999999999999a.0xbfd3333333333333.0xbfd3333333333333.0xbff0000000000000 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x3fd3333333333334.0x3fe0000000000000.0x3ff0000000000000 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc008000000000000.0xbfe0000000000000.0xbfe0000000000000.0xc17312d000000000 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x3fe0000000000000.0x416312d000000000.0x417312d010000000 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc014000000000000.0xc16312d000000000.0xc16312cfe0000000.0xbff0000000000000 ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0x416312d020000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d783fc000000.0xbff0000000000000.0x3fb999999999999a.0x70b896e1f9de900f ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x70b896e1f9de900f.0xbfc999999999999a ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xf0a896e1f9de900f.0xbfc999999999999a.0x4008000000000000 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x70a896e1f9de900f.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xcd9999a ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x800000000cd9999a.0x26733333 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x66ccccd.0x8000000026733333.0xf0debc9a78563412 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000066ccccd.0x1339999a.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x800000001339999a.0xf0debc9a78563412.0x123456789abcdef0.0x4ed958d3 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3026a72d.0xe872f26d ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x472cac6a.0x968d0d93.0x3fc999999999999a ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x37d35396.0xd3f97936.0xbfc999999999999a.0xbfc999999999999a ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xab0686ca.0x3fb999999999999a.0x3fc999999999999a.0x3f947ae147ae147c ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfb999999999999a.0xbfb999999999999a.0xbf947ae147ae147c.0xbf947ae147ae147c ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb999999999999a.0x3f847ae147ae147c.0x3f947ae147ae147c.0x3fa47ae147ae147c ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbf847ae147ae147c.0xbf847ae147ae147c.0xbfa47ae147ae147c.0xbfa47ae147ae147c ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3f847ae147ae147c.0x3f947ae147ae147c.0x3fa47ae147ae147c.0x3fe3333333333334 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbf947ae147ae147c.0xbf947ae147ae147c.0xbfe3333333333333.0xbfe3333333333333 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae147ae147c.0x3fd3333333333334.0x3fe3333333333334.0x3ff0000000000000 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfd3333333333333.0xbfd3333333333333.0xbff0000000000000.0xbff0000000000000 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333333333334.0x3fe0000000000000.0x3ff0000000000000.0x417312d010000000 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfe0000000000000.0xbfe0000000000000.0xc17312cff0000000.0xc17312d010000000 ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe0000000000000.0x416312d020000000.0x417312cff0000000.0x3fb999999999999a ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc16312cfe0000000.0xc16312d020000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312cfe0000000.0x3fb999999999999a.0xbfb999999999999a.0xf0b896e1f9de900f ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xf0b896e1f9de900f.0x4008000000000000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x70b896e1f9de900f.0x4008000000000000.0xc008000000000000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xf0a896e1f9de900f.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x800000023ae66667 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x260f5c29.0x80000000c0c00000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x80000000260f5c29.0xcd9999a.0xf0debc9a78563412 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x1307ae15.0x800000000cd9999a.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x66ccccd.0xf0debc9a78563412.0x123456789abcdef0.0x8000000202600000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x66066666.0x8000000026bc3460 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x18f9999a.0xced958d3.0x80000002286f6793 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x52c33333.0xb026a72d.0x66bfbf3a.0xc008000000000000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xc72cac6a.0x14d9da60.0x3fc999999999999a.0x4008000000000000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x52464603.0xbfc999999999999a.0xbfc999999999999a.0xbfd3333333333333 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb999999999999a.0x3fc999999999999a.0x3f947ae147ae147c.0x3fd3333333333334 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb999999999999a.0xbf947ae147ae147c.0xbf947ae147ae147c.0xbfe3333333333333 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3f847ae147ae147c.0x3f947ae147ae147c.0x3fa47ae147ae147c.0x3fe3333333333334 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbf847ae147ae147c.0xbfa47ae147ae147c.0xbfa47ae147ae147c.0xc022000000000000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae147ae147c.0x3fa47ae147ae147c.0x3fe3333333333334.0x4022000000000000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbf947ae147ae147c.0xbfe3333333333333.0xbfe3333333333333.0xc02e000000000000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333333333334.0x3fe3333333333334.0x3ff0000000000000.0x4030000000000000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfd3333333333333.0xbff0000000000000.0xbc90000000000000.0xc1b1e1a301000000 ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe0000000000000.0x4000000000000000.0x417312cff0000000.0x41b1e1a30019999a ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fe0000000000000.0xc17312d010000000.0xc17312cffe666667.0xbfb999999999999a ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312cfe0000000.0x417312d00199999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc16312cffccccccd.0xbfb999999999999a.0x3fc999999999999a.0x70f70d73da40a70d ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x70f70d73da40a70e.0xc008000000000000 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xf0b896e1f9de900f.0xc008000000000000.0x4014000000000000 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x70b896e1f9de900f.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0xbae66667 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x80000000bae66667.0x23ae66667 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xc75c28f.0x800000023ae66667.0xf0debc9a78563412 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000000c75c28f.0x260f5c29.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000260f5c29.0xf0debc9a78563412.0x123456789abcdef0.0x101600000 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x8000000082600000.0x301600000 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x4c6ccccd.0x8000000182600000.0x12409012d ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x32933333.0xe6066666.0x80000000a86f6793.0x32409012d ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x98f9999a.0x4d2625a0.0x80000001a86f6793.0x4008000000000000 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x2e7373fa.0xe6bfbf3a.0xc008000000000000.0xc008000000000000 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x94d9da60.0x3fc999999999999a.0x4008000000000000.0x3fd3333333333334 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfc999999999999a.0xbfc999999999999a.0xbfd3333333333333.0xbfd3333333333333 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc999999999999a.0x3f947ae147ae147c.0x3fd3333333333334.0x3fe3333333333334 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbf947ae147ae147c.0xbf947ae147ae147c.0xbfe3333333333333.0xbfe3333333333333 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae147ae147c.0x3fa47ae147ae147c.0x3fe3333333333334.0x4022000000000000 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfa47ae147ae147c.0xbfa47ae147ae147c.0xc022000000000000.0xc022000000000000 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fa47ae147ae147c.0x3fe3333333333334.0x4022000000000000.0x4030000000000000 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfe3333333333333.0xbfe3333333333333.0xc02c000000000000.0xc030000000000000 ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333333333334.0x4000000000000000.0x402c000000000000.0x41b1e1a30019999a ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbc90000000000000.0xc000000000000000.0xc1b1e1a2ffe66666.0xc1b1e1a30019999a ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3c90000000000000.0x417312d00199999a.0x41b1e1a2ffe66666.0x3fc999999999999a ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc17312cffe666667.0xc17312d00199999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312cffe666667.0x3fc999999999999a.0xbfc999999999999a.0xf0f70d73da40a70d ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xf0f70d73da40a70e.0x4014000000000000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x70f70d73da40a70d.0x4014000000000000.0xc014000000000000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xf0b896e1f9de900f.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x80000003b5000001 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x239666667.0x8000000137800001 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000239666667.0xbae66667.0xf0debc9a78563412 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x25f5c28f.0x80000000bae66667.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc75c28f.0xf0debc9a78563412.0x123456789abcdef0.0x8000000381c00000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x280400000.0x8000000083a00000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x8000000201400000.0x181600000.0x8000000385533333 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x65f33333.0x8000000002600000.0x27faccccd.0x80000000c1ecdfd3 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xcc6ccccd.0x8000000204133333.0x1a409012d.0x80000003c16cdfd3 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x64533333.0x80000000286f6793.0x2a489012d.0xc014000000000000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xcd2625a0.0x8000000227ef6793.0x4008000000000000.0x4014000000000000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x673fbf3a.0xc008000000000000.0xc008000000000000.0xbfe0000000000000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc999999999999a.0x4008000000000000.0x3fd3333333333334.0x3fe0000000000000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc999999999999a.0xbfd3333333333333.0xbfd3333333333333.0xbff0000000000000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae147ae147c.0x3fd3333333333334.0x3fe3333333333334.0x3ff0000000000000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbf947ae147ae147c.0xbfe3333333333333.0xbfe3333333333333.0xc02e000000000000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fa47ae147ae147c.0x3fe3333333333334.0x4022000000000000.0x4030000000000000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfa47ae147ae147c.0xc022000000000000.0xc020000000000000.0xc03a000000000000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333333333334.0x4024000000000000.0x402c000000000000.0x403919999999999a ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fd9999999999999.0xc030000000000000.0xc02dcccccccccccd.0xc1bdcd650019999a ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3c90000000000000.0x402e333333333333.0x41b1e1a2ffe66666.0x41bdcd6500333333 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfeccccccccccccd.0xc1b1e1a30019999a.0xc1b1e1a2ffcccccd.0xbfc999999999999a ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312cffe666667.0x41b1e1a300333333.0xbfc999999999999a.0x4008000000000000 ++vnmad 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc17312cffccccccd.0xbfc999999999999a.0x4008000000000000.0x710335e08b35e08b ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x710335e08b35e08b.0xc014000000000000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xf0f70d73da40a70d.0xc014000000000000.0x4197d78400000000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x70f70d73da40a70e.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x8000000135000001.0x3b5000001 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xb9666667.0x80000003b5000001.0xf0debc9a78563412 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000b9666667.0x239666667.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000239666667.0xf0debc9a78563412.0x123456789abcdef0.0x180c00000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x8000000101c00000.0x480c00000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x100400000.0x8000000301c00000.0x180eccccd ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000081400000.0x300400000.0x8000000105533333.0x480eccccd ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000181400000.0xffaccccd.0x8000000305533333.0x1be06796d ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000084133333.0x2ffaccccd.0x80000001416cdfd3.0x4be06796d ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000184133333.0x12489012d.0x80000003416cdfd3.0x4014000000000000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000a7ef6793.0x32489012d.0xc014000000000000.0xc014000000000000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000001a7ef6793.0x4008000000000000.0x4014000000000000.0x3fe0000000000000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc008000000000000.0xc008000000000000.0xbfe0000000000000.0xbfe0000000000000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x3fd3333333333334.0x3fe0000000000000.0x3ff0000000000000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfd3333333333333.0xbfd3333333333333.0xbff0000000000000.0xbff0000000000000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333333333334.0x3fe3333333333334.0x3ff0000000000000.0x4030000000000000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfe3333333333333.0xbfe3333333333333.0xc02c000000000000.0xc030000000000000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333333333334.0x4024000000000000.0x402c000000000000.0x403919999999999a ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc020000000000000.0xc024000000000000.0xc038e66666666666.0xc03919999999999a ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4020000000000000.0x402e333333333333.0x4038e66666666666.0x41bdcd6500333333 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc02dcccccccccccd.0xc02e333333333333.0xc1bdcd64ffcccccd.0xc1bdcd6500333333 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402dcccccccccccd.0x41b1e1a300333333.0x41bdcd64ffcccccd.0x4008000000000000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc1b1e1a2ffcccccd.0xc1b1e1a300333333.0x4008000000000000.0xc008000000000000 ++vnmad 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a2ffcccccd.0x4008000000000000.0xc008000000000000.0xf10335e08b35e08b ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xf10335e08b35e08b.0x4197d78400000000 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x710335e08b35e08b.0x4197d78400000000.0xc197d78400000000 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xf0f70d73da40a70e.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x80000003bd800000.0x135000001.0xf0debc9a78563412 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x23e800000.0x8000000135000001.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xb9666667.0xf0debc9a78563412.0x123456789abcdef0.0x8071b91b0506c4b4 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f7000001.0x8057ef5b78080000 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x8000000378000001.0x200c00000.0x8071e798e008cccd ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x27a666667.0x8000000081c00000.0x3ff0ccccd.0x8058131ebe233333 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x180400000.0x8000000383733333.0x200eccccd.0x8071f089b186cccd ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x27e8ccccd.0x8000000085533333.0x4016ccccd.0x805c96fa98fab533 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x17faccccd.0x8000000384d33333.0x23e06796d.0x80731180a836e080 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x2802ccccd.0x80000000c16cdfd3.0x43ff9aca0.0xc197d78400000000 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x1a489012d.0x80000003bf79aca0.0x4014000000000000.0x4197d78400000000 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x2a67c3460.0xc014000000000000.0xc014000000000000.0xc16312d000000000 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x4014000000000000.0x3fe0000000000000.0x416312d000000000 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc008000000000000.0xbfe0000000000000.0xbfe0000000000000.0xc17312d000000000 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333333333334.0x3fe0000000000000.0x3ff0000000000000.0x417312d010000000 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfd3333333333333.0xbff0000000000000.0xbc90000000000000.0xc1b1e1a301000000 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333333333334.0x4000000000000000.0x402c000000000000.0x41b1e1a30019999a ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fd9999999999999.0xc030000000000000.0xc02dcccccccccccd.0xc1bdcd650019999a ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4020000000000000.0x402e333333333333.0x4038e66666666666.0x41bdcd6500333333 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc021cccccccccccd.0xc03919999999999a.0xc038cccccccccccd.0xc341c37937e08000 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402dcccccccccccd.0x4039333333333333.0x41bdcd64ffcccccd.0x4341c37937e08002 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc02d99999999999a.0xc1bdcd6500333333.0xc1bdcd64fd000000.0xc008000000000000 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a2ffcccccd.0x41bdcd6503000000.0xc008000000000000.0x4014000000000000 ++vnmad 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1b1e1a2fd000000.0xc008000000000000.0x4014000000000000.0x7286e690fe53a8fe ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x7286e690fe53a8fe.0xc197d78400000000 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xf10335e08b35e08b.0xc197d78400000000.0x0 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x710335e08b35e08b.0xc197d78400000000.0x0.0x0 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000013d800000.0x3bd800000.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000003bd800000.0xf0debc9a78563412.0x123456789abcdef0.0x5735641c0b12d0 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x80573564141b12d0.0x71b91b0902c4b4 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x177000001.0x8071b91b0306c4b4.0x57ef5b87dccccd ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000f8000001.0x477000001.0x8057ef5b80233333.0x71e798e3f73333 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000002f8000001.0x17f0ccccd.0x8071e798de08cccd.0x58131ecde4cccd ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000103733333.0x47f0ccccd.0x8058131ec61b3333.0x71f089b5793333 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000303733333.0x1816ccccd.0x8071f089af86cccd.0x5c96faa8e38200 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000104d33333.0x4816ccccd.0x805c96faa0db8200.0x731180ac38e080 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000304d33333.0x1bff9aca0.0x80731180a636e080.0x4197d78400000000 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x800000013f79aca0.0x4bff9aca0.0xc197d78400000000.0xc197d78400000000 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x800000033f79aca0.0x4014000000000000.0x4197d78400000000.0x416312d000000000 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc014000000000000.0xc014000000000000.0xc16312d000000000.0xc16312d000000000 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x3fe0000000000000.0x416312d000000000.0x417312d010000000 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfe0000000000000.0xbfe0000000000000.0xc17312cff0000000.0xc17312d010000000 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe0000000000000.0x4000000000000000.0x417312cff0000000.0x41b1e1a30019999a ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbc90000000000000.0xc000000000000000.0xc1b1e1a2ffe66666.0xc1b1e1a30019999a ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3c90000000000000.0x402e333333333333.0x41b1e1a2ffe66666.0x41bdcd6500333333 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc02dcccccccccccd.0xc02e333333333333.0xc1bdcd64ffcccccd.0xc1bdcd6500333333 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402dcccccccccccd.0x4039333333333333.0x41bdcd64ffcccccd.0x4341c37937e08002 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc038cccccccccccd.0xc039333333333333.0xc341c37937e07ffe.0xc341c37937e08002 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4038cccccccccccd.0x41bdcd6503000000.0x4341c37937e07ffe.0x4014000000000000 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1bdcd64fd000000.0xc1bdcd6503000000.0x4014000000000000.0xc014000000000000 ++vnmad 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd64fd000000.0x4014000000000000.0xc014000000000000.0xf286e690fe53a8fe ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xf286e690fe53a8fe.0x0 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x7286e690fe53a8fe.0x13de4e3f1c71c703.0x8000000000000000 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xf10335e08b35e08b.0x93de4e3f1c71c703.0x0.0xf0debc9a78563412 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x12596c16c16c16ac.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x13d800000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x71ad2f4502c4b4.0xbf800000 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x8071ad2f4306c4b4.0x573564240b12d0.0x3dcccccd ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f4800001.0x805735640c1b12d0.0x71b91b06fbf7e7.0xbdcccccd ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x1f7000001.0x8071b91b050d9181.0x57ef5b8fdccccd.0x3e4ccccd ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3f54cccce.0x8057ef5b78233333.0x71e798e1f93333.0xbe4ccccd ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x1ff0ccccd.0x8071e798e006cccd.0x58131ed5e4cccd.0x40400000 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3ff8ccccd.0x8058131ebe1b3333.0x71f089b3810000.0xc0400000 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x2016ccccd.0x8071f089b17f0000.0x5c96fab0e38200.0x40a00000 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x403600000.0x805c96fa98db8200.0x731180aa3a6080.0xc0a00000 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x23ff9aca0.0x80731180a8356080.0x4197d78400000000.0x4cbebc20 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x44059aca0.0xc197d78400000000.0xc197d78400000000.0xccbebc20 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x4197d78400000000.0x416312d000000000.0x3ff0000000000000 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc014000000000000.0xc16312d000000000.0xc16312cfe0000000.0xbff0000000000000 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe0000000000000.0x416312d020000000.0x417312cff0000000.0x3fb999999999999a ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3fe0000000000000.0xc17312d010000000.0xc17312cffe666667.0xbfb999999999999a ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3c90000000000000.0x417312d00199999a.0x41b1e1a2ffe66666.0x3fc999999999999a ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfeccccccccccccd.0xc1b1e1a30019999a.0xc1b1e1a2ffcccccd.0xbfc999999999999a ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402dcccccccccccd.0x41b1e1a300333333.0x41bdcd64ffcccccd.0x4008000000000000 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc02d99999999999a.0xc1bdcd6500333333.0xc1bdcd64fd000000.0xc008000000000000 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4038cccccccccccd.0x41bdcd6503000000.0x4341c37937e07ffe.0x4014000000000000 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc036000000000000.0xc341c37937e08002.0xc341c37937e07ffe.0xc014000000000000 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd64fd000000.0x4341c37937e08002.0xc014000000000000.0x4197d78400000000 ++vnmad 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc1bdcd64fb000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x0 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xf286e690fe53a8fe.0x8000000000000000.0xf0debc9a78563412 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7286e690fe53a8fe.0x13de4e3f1c71c703.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x93de4e3f1c71c703.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x5705b5140b12d0.0xbf800000.0x3dcccccd ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x805705b50c1b12d0.0x71ad2f4702c4b4.0x3dcccccd.0xbdcccccd ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8071ad2f4106c4b4.0x5735641befdf9d.0xbdcccccd.0x3e4ccccd ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8057356414364603.0x71b91b08fbf7e7.0x3e4ccccd.0xbe4ccccd ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8071b91b030d9181.0x57ef5b87e4cccd.0xbe4ccccd.0x40400000 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8057ef5b801b3333.0x71e798e3f93333.0x40400000.0xc0400000 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8071e798de06cccd.0x58131ece040000.0xc0400000.0x40a00000 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8058131ec5fc0000.0x71f089b5810000.0x40a00000.0xc0a00000 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8071f089af7f0000.0x5c96faa8e98200.0xc0a00000.0x4cbebc20 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x805c96faa0d58200.0x731180ac3a6080.0x4cbebc20.0xccbebc20 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80731180a6356080.0x4197d78400000000.0xccbebc20.0x3ff0000000000000 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc197d78400000000.0xc197d78400000000.0x3ff0000000000000.0xbff0000000000000 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0x416312d020000000.0xbff0000000000000.0x3fb999999999999a ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc16312cfe0000000.0xc16312d020000000.0x3fb999999999999a.0xbfb999999999999a ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312cfe0000000.0x417312d00199999a.0xbfb999999999999a.0x3fc999999999999a ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc17312cffe666667.0xc17312d00199999a.0x3fc999999999999a.0xbfc999999999999a ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312cffe666667.0x41b1e1a300333333.0xbfc999999999999a.0x4008000000000000 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc1b1e1a2ffcccccd.0xc1b1e1a300333333.0x4008000000000000.0xc008000000000000 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a2ffcccccd.0x41bdcd6503000000.0xc008000000000000.0x4014000000000000 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1bdcd64fd000000.0xc1bdcd6503000000.0x4014000000000000.0xc014000000000000 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd64fd000000.0x4341c37937e08002.0xc014000000000000.0x4197d78400000000 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc341c37937e07ffe.0xc341c37937e08002.0x4197d78400000000.0xc197d78400000000 ++vnmad 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4341c37937e07ffe.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xf286e690fe53a8fe.0xf0debc9a78563412.0x123456789abcdef0.0x0 ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x0.0x0 ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x2fb6c9d4ecd7a8ba ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x71d5b73efe0000.0xbf800000.0x3dcccccd.0x2f9deb97f7a2e72c ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x5705b51c0b12d0.0x3dcccccd.0xbdcccccd.0x2fb6d9333a13d3d4 ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x71ad2f44fbf7e7.0xbdcccccd.0x3e4ccccd.0x2f9edb5712ce8a46 ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x57356423efdf9d.0x3e4ccccd.0xbe4ccccd.0x2fb7152300debc9b ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x71b91b06fdf7e7.0xbe4ccccd.0x40400000.0x2f9f0971fa830b94 ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x57ef5b8fe4cccd.0x40400000.0xc0400000.0x2fb720a9bacbdcee ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x71e798e2010000.0xc0400000.0x40a00000.0x2fa26dc8d96fd63d ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x58131ed6040000.0x40a00000.0xc0a00000.0x2fb89531a8e30528 ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x71f089b3828000.0xc0a00000.0x4cbebc20.0x70debc9a78563412 ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x5c96fab0e98200.0x4cbebc20.0xccbebc20.0xf0debc9a78563412 ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x731180aa6adb70.0xccbebc20.0x3ff0000000000000.0x70a896e1f9de900f ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0x3ff0000000000000.0xbff0000000000000.0xf0a896e1f9de900f ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d783fc000000.0xbff0000000000000.0x3fb999999999999a.0x70b896e1f9de900f ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312cfe0000000.0x3fb999999999999a.0xbfb999999999999a.0xf0b896e1f9de900f ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc16312cffccccccd.0xbfb999999999999a.0x3fc999999999999a.0x70f70d73da40a70d ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312cffe666667.0x3fc999999999999a.0xbfc999999999999a.0xf0f70d73da40a70d ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc17312cffccccccd.0xbfc999999999999a.0x4008000000000000.0x710335e08b35e08b ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a2ffcccccd.0x4008000000000000.0xc008000000000000.0xf10335e08b35e08b ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1b1e1a2fd000000.0xc008000000000000.0x4014000000000000.0x7286e690fe53a8fe ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd64fd000000.0x4014000000000000.0xc014000000000000.0xf286e690fe53a8fe ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc1bdcd64fb000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4341c37937e07ffe.0x4197d78400000000.0xc197d78400000000.0x0 ++vnmad 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc341c37934e58f80.0xc197d78400000000.0x0.0xfff0000000000000 ++=== Running test on vnmss=== ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xfff0000000000000.0x0 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x7ff0000000000000.0x432388ef40000000.0x8000000000000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x0.0x8000000000000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x4cd6e0000000.0x8000000020000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x80000000a0000000.0xf5e20000000.0x80000000a0000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x8000000020000000.0x4cd6e0000000.0x8000000020000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0x80000000a0000000.0xf5e20000000.0x80000000a0000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x8000000020000000.0x4cd6e0000000.0x8000000040000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0x80000000a0000000.0x1ebc60000000.0x80000000c0000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x8000000040000000.0x5c3500000000.0x8000000040000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0x1ebc60000000.0x80000000c0000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x5c3500000000.0x8000000040000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x1ebc60000000.0x80000000c0000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x5c3500000000.0xbff0000000000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0x40debc5a60000000.0x3ff0000000000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0xc0debc5a60000000.0xbfb9999980000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0x7ff0000000000000.0x3fb99999a0000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb99999a0000000.0xfff0000000000000.0xbfc99999a0000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb99999a0000000.0x3fb99999a0000000.0x7ff0000000000000.0x3fc99999a0000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0xbfc99999a0000000.0xfff0000000000000.0xc008000000000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0x3fc99999a0000000.0x7ff0000000000000.0x4008000000000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0xc008000000000000.0xfff0000000000000.0xc014000000000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0x7ff0000000000000.0x4014000000000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0xfff0000000000000.0xc197d78400000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0x7ff0000000000000.0x4197d78400000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0xfff0000000000000.0x8000000000000000 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x0 ++vnmss 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x7ff0000000000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x7ff0000000000000.0x432388ef40000000.0x8000000000000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0xfff0000000000000.0x0.0x8000000000000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x3b2388ef20000000.0x80000000a0000000.0x8000000020000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0xf5da0000000.0x8000000020000000.0x80000000a0000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x4cd760000000.0x80000000a0000000.0x8000000020000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0xf5da0000000.0x8000000020000000.0x80000000a0000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x4cd760000000.0x80000000a0000000.0x8000000040000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0xf5da0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x4cd740000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x1ebbe0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x5c3580000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x1ebbe0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x5c3580000000.0x80000000c0000000.0xbff0000000000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x1ebbe0000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x40debcda60000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xfff0000000000000.0x3fb99999a0000000.0xbfc99999a0000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb99999a0000000.0x7ff0000000000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0xfff0000000000000.0x3fc99999a0000000.0xc008000000000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0x7ff0000000000000.0xc008000000000000.0x4008000000000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0xfff0000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x7ff0000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xfff0000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x7ff0000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xfff0000000000000.0x4197d78400000000.0x0 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x7ff0000000000000.0x0.0x0 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xfff0000000000000.0x0.0x7ff0000000000000 ++vnmss 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0x7ff0000000000000.0x0 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x0.0x8000000000000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x3b2388ef20000000.0x80000000a0000000.0x8000000020000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc1cd85f900000000.0x80000000a0000000.0x8000000020000000.0x80000000a0000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3b2388ef20000000.0x8000000020000000.0x80000000a0000000.0x8000000020000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xf5e20000000.0x80000000a0000000.0x8000000020000000.0x80000000a0000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4cd6e0000000.0x8000000020000000.0x80000000a0000000.0x8000000040000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xf5e20000000.0x80000000a0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4cd6e0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xf5e00000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4cd6c0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x1ebc60000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x5c3500000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x1ebc60000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x5c3500000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x7ff0000000000000.0x3fb99999a0000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xfff0000000000000.0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x7ff0000000000000.0x3fc99999a0000000.0xc008000000000000.0x4008000000000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xfff0000000000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x7ff0000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xfff0000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x7ff0000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xfff0000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7ff0000000000000.0x4197d78400000000.0x8000000000000000.0x0 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xfff0000000000000.0x0.0x0.0x7ff0000000000000 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x0.0x7ff0000000000000.0x0 ++vnmss 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x7ff0000000000000.0x0.0x0 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x4cd6e0000000.0x8000000020000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0xf5da0000000.0x8000000020000000.0x80000000a0000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3b2388ef20000000.0x8000000020000000.0x80000000a0000000.0x8000000020000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0x80000000a0000000.0x8000000020000000.0x80000000a0000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x8000000020000000.0x80000000a0000000.0x8000000040000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0x80000000a0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000.0x4008000000000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x0 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x7ff0000000000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3a596c16a0000000.0xb847d78400000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbbde4e3f00000000.0x40debc9a60000000.0xba34567880000000.0x8000000020000000 ++vnmss 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x0.0x0 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x80000000a0000000.0xf5e20000000.0x80000000a0000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x4cd760000000.0x80000000a0000000.0x8000000020000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xf5e20000000.0x80000000a0000000.0x8000000020000000.0x80000000a0000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x8000000020000000.0x80000000a0000000.0x8000000040000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0x80000000a0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000320000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x80000000a0000000.0x320000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000320000000.0xa0000000.0x40debc9a60000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000a0000000.0x320000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xa0000000.0x40debc9a60000000.0xba34567880000000.0x8000000020000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000020000000.0x80000000a0000000 ++vnmss 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x80000000a0000000.0x4cd760000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x8000000020000000.0x4cd6e0000000.0x8000000020000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0xf5da0000000.0x8000000020000000.0x80000000a0000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4cd6e0000000.0x8000000020000000.0x80000000a0000000.0x8000000040000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0x80000000a0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x60000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x1e0000000.0x80000000a0000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x60000000.0x8000000320000000.0x40debc9a60000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x1e0000000.0x80000000a0000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000320000000.0x40debc9a60000000.0xba34567880000000.0x3847d78400000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x386dcd6500000000.0x80000000a0000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x3847d78400000000.0x80000000a0000000.0x8000000020000000 ++vnmss 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x386dcd6500000000.0x80000000a0000000.0x8000000020000000.0xf5da0000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0x80000000a0000000.0xf5e20000000.0x80000000a0000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x4cd760000000.0x80000000a0000000.0x8000000040000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xf5e20000000.0x80000000a0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x80000001e0000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000060000000.0x1e0000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x80000001e0000000.0x60000000.0x40debc9a60000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000060000000.0x1e0000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x60000000.0x40debc9a60000000.0xba34567880000000.0xb86dcd6500000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0xb847d78400000000.0x386dcd6500000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0xb86dcd6500000000.0x3847d783e0000000.0x8000000020000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xb847d78400000000.0x386dcd6500000000.0x8000000020000000.0x80000000a0000000 ++vnmss 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3847d783e0000000.0x8000000020000000.0x80000000a0000000.0x4cd760000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x8000000020000000.0x4cd6e0000000.0x8000000040000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0xf5da0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4cd6e0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x20000000.0x80000000c0000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x80000001e0000000.0x40debc9a60000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x20000000.0x8000000060000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000001e0000000.0x40debc9a60000000.0xba34567880000000.0x120000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x300000000.0xb857d78400000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x80000000.0xb86dcd6500000000.0x3857d78400000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x300000000.0xb847d78420000000.0x386dcd6500000000.0x80000000a0000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xb86dcd6500000000.0x3847d78400000000.0x80000000a0000000.0x8000000020000000 ++vnmss 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x386dcd6500000000.0x80000000a0000000.0x8000000020000000.0x1ebc00000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000020000000.0x80000000a0000000.0x1ebc60000000.0x80000000c0000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x4cd740000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xf5e00000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000020000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x20000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000020000000.0x0.0x40debc9a60000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x20000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x40debc9a60000000.0xba34567880000000.0x80000003e0000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000160000000.0x320000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000340000000.0xa0000000.0xb871e1a300000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000c0000000.0x280000000.0xb857d78400000000.0x3871e1a300000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0xb86dcd6500000000.0x3857d78400000000.0x8000000020000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xb847d78400000000.0x386dcd6500000000.0x8000000020000000.0x80000000a0000000 ++vnmss 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3847d783e0000000.0x8000000020000000.0x80000000a0000000.0x5c3580000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000a0000000.0x8000000040000000.0x5c3500000000.0x8000000040000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x1ebbe0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4cd6c0000000.0x8000000040000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x20000000.0x8000000000000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x8000000020000000.0x40debc9a60000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000020000000.0x40debc9a60000000.0xba34567880000000.0xa0000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x220000000.0x80000001e0000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0xa0000000.0x8000000460000000.0x120000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x1c0000000.0x80000001e0000000.0x3a0000000.0xb857d78400000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000003c0000000.0x120000000.0xb871e1a300000000.0x3857d78400000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x300000000.0xb857d78400000000.0x3871e1a300000000.0x80000000a0000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xb86dcd6500000000.0x3857d78400000000.0x80000000a0000000.0x8000000040000000 ++vnmss 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x386dcd6500000000.0x80000000a0000000.0x8000000040000000.0x1ebbe0000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040000000.0x80000000c0000000.0x1ebc60000000.0x80000000c0000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x5c3580000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x1ebc60000000.0x80000000c0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000020000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x20000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000020000000.0x0.0x40debc9a60000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x20000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x40debc9a60000000.0xba34567880000000.0x8000000260000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x80000000e0000000.0x1a0000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000260000000.0x20000000.0x80000003e0000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000e0000000.0x1a0000000.0x8000000160000000.0x320000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x20000000.0x80000003e0000000.0xa0000000.0xb871e1a300000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000160000000.0x320000000.0xb857d78400000000.0x3871e1a300000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0xb871e1a300000000.0x3857d78400000000.0x8000000040000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xb857d78400000000.0x3871e1a300000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3857d78400000000.0x8000000040000000.0x80000000c0000000.0x5c3580000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0000000.0x8000000040000000.0x5c3500000000.0x8000000040000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x1ebbe0000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x5c3500000000.0x8000000040000000.0x80000000c0000000.0xbff0000000000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x40000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xc0000000.0x8000000000000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x40000000.0x8000000020000000.0x40debc9a60000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0000000.0x8000000000000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000020000000.0x40debc9a60000000.0xba34567880000000.0x8000000020000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x0.0x8000000160000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x80000002e0000000.0xa0000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x8000000160000000.0x220000000.0x80000001e0000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000002e0000000.0xa0000000.0x8000000460000000.0x120000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x220000000.0x80000001e0000000.0x3a0000000.0xb857d78400000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000460000000.0x120000000.0xb871e1a300000000.0x3857d78400000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3a0000000.0xb857d78400000000.0x3871e1a300000000.0x80000000c0000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xb871e1a300000000.0x3857d78400000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3871e1a300000000.0x80000000c0000000.0x8000000040000000.0x1ebbe0000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040000000.0x80000000c0000000.0x1ebc60000000.0x80000000c0000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x5c3580000000.0x80000000c0000000.0xbff0000000000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x1ebc60000000.0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x80000000c0000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000040000000.0xc0000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x80000000c0000000.0x40000000.0x40debc9a60000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000040000000.0xc0000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40000000.0x40debc9a60000000.0xba34567880000000.0x8000000040000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000020000000.0x8000000080000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000040000000.0x80000000a0000000.0x8000000260000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x8000000080000000.0x80000000e0000000.0x1a0000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x8000000260000000.0x20000000.0x80000003e0000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000000e0000000.0x1a0000000.0x8000000160000000.0x320000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x20000000.0x80000003e0000000.0xa0000000.0xb871e1a300000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000160000000.0x320000000.0xb857d78400000000.0x3871e1a300000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0xb871e1a300000000.0x3857d78400000000.0x8000000040000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xb857d78400000000.0x3871e1a300000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3857d78400000000.0x8000000040000000.0x80000000c0000000.0x5c3580000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0000000.0x8000000040000000.0x5c3500000000.0xbff0000000000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x1ebbe0000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x5c3500000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x80000000c0000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0xbff0000000000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x80000000c0000000.0x40debcda60000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000040000000.0x40debc9a60000000.0xbfb9999980000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000c0000000.0x40debc9a60000000.0xba34567880000000.0x3fb9999980000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000000000000.0xbfc9999980000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x80000000c0000000.0x3fc9999980000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000000000000.0x80000000a0000000.0x0.0xc008000000000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000c0000000.0x8000000020000000.0x80000002e0000000.0x4008000000000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x8000000160000000.0x220000000.0xc014000000000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000002e0000000.0xa0000000.0x8000000460000000.0x4014000000000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x220000000.0x80000001e0000000.0x380000000.0xc197d78400000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000460000000.0x100000000.0xb871e1a300000000.0x4197d78400000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x380000000.0xb857d78400000000.0x3871e1a300000000.0x80000000c0000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xb871e1a300000000.0x3857d78400000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3871e1a300000000.0x80000000c0000000.0x8000000040000000.0x40debc9a60000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x8000000040000000.0x80000000c0000000.0x40debc5a60000000.0x3ff0000000000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x40000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000040000000.0xc0000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x80000000c0000000.0x40debcda60000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x40debc5a60000000.0xbff0000000000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x40debc9a60000000.0x3ff0000000000000.0x3fb9999980000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0xbfb9999980000000.0xbfb9999980000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000040000000.0x3fb9999980000000.0x3fc9999980000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x8000000080000000.0xbfc9999980000000.0xbfc9999980000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x8000000040000000.0x3fc9999980000000.0x4008000000000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0x8000000080000000.0xc008000000000000.0xc008000000000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x8000000260000000.0x4008000000000000.0x4014000000000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000e0000000.0x1a0000000.0xc014000000000000.0xc014000000000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x20000000.0x8000000400000000.0x4014000000000000.0x4197d78400000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000180000000.0x300000000.0xc197d78400000000.0xc197d78400000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000.0xb871e1a300000000.0x4197d78400000000.0x8000000040000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xb857d78400000000.0x3871e1a300000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3857d78400000000.0x8000000040000000.0x80000000c0000000.0xc0debcda60000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000c0000000.0xbff0000000000000.0xc0debc5a60000000.0xbfb9999980000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x40debcda60000000.0xbfb9999980000000.0x3fb9999980000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb9999980000000.0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb9999980000000.0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000020000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xc0000000.0x8000000000000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x80000000c0000000.0x40000000.0x40debc9a60000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000040000000.0x40debc9a60000000.0xbfb9999980000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x40debc9a60000000.0x3ff0000000000000.0x3fb9999980000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xbff0000000000000.0xbff0000000000000.0xbf847ae120000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x3ff0000000000000.0x3fb9999980000000.0x3f847ae120000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xa0000000.0xbfb9999980000000.0xbfb9999980000000.0xbf947ae120000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000c0000000.0x3fb9999980000000.0x3fc9999980000000.0x3f947ae120000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000000000000.0xbfc9999980000000.0xbfc9999980000000.0xbfd3333320000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000c0000000.0x3fc9999980000000.0x4008000000000000.0x3fd3333320000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0xc008000000000000.0xc008000000000000.0xbfdfffffe0000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000002e0000000.0x4008000000000000.0x4014000000000000.0x3fdfffffe0000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x200000000.0xc014000000000000.0xc014000000000000.0xc16312d000000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000480000000.0x4014000000000000.0x4197d78400000000.0x416312cfe0000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x380000000.0xc197d78400000000.0xc197d78400000000.0x80000000c0000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xb871e1a300000000.0x4197d78400000000.0x80000000c0000000.0xbff0000000000000 ++vnmss 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3871e1a300000000.0x80000000c0000000.0xbff0000000000000.0x40a898e1c0000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0x7ff0000000000000.0x3fb99999a0000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xfff0000000000000.0x3fb99999a0000000.0xbfc99999a0000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x7ff0000000000000.0x3fb99999a0000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc9999980000000.0x3fc9999980000000.0xc008000000000000.0x4008000000000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x20000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x40000000.0x8000000020000000.0x40debc9a60000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000040000000.0xc0000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000c0000000.0x40debc9a60000000.0xba34567880000000.0x3fb9999980000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0xbfb9999980000000.0xbfb9999980000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x3ff0000000000000.0x3fb9999980000000.0x3f847ae120000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbff0000000000000.0xbff0000000000000.0xbf847ae120000000.0xbf847ae120000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0x3fb9999980000000.0x3f847ae120000000.0x3f947ae120000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfb9999980000000.0xbfb9999980000000.0xbf947ae120000000.0xbf947ae120000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb9999980000000.0x3fc9999980000000.0x3f947ae120000000.0x3fd3333320000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfc9999980000000.0xbfc9999980000000.0xbfd3333320000000.0xbfd3333320000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc9999980000000.0x4008000000000000.0x3fd3333320000000.0x3fdfffffe0000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc008000000000000.0xc008000000000000.0xbfdfffffe0000000.0xbfdfffffe0000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x4014000000000000.0x3fdfffffe0000000.0x416312cfe0000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc014000000000000.0xc014000000000000.0xc16312d000000000.0xc16312d000000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x4197d78400000000.0x416312cfe0000000.0xbff0000000000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc197d78400000000.0xc197d78400000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0xbff0000000000000.0x3ff0000000000000.0xc0a8971500000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb99999a0000000.0xfff0000000000000.0xbfc99999a0000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb99999a0000000.0x7ff0000000000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xfff0000000000000.0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0x3fc99999a0000000.0xc008000000000000.0x4008000000000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc9999980000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000020000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x20000000.0x8000000000000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000020000000.0x0.0x40debc9a60000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0000000.0x8000000000000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40000000.0x40debc9a60000000.0xba34567880000000.0x8000000040000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000000000000.0xbfc9999980000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000040000000.0x3fb9999980000000.0x3fc9999980000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xa0000000.0xbfb9999980000000.0xbfb9999980000000.0xbf947ae120000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0x3fb9999980000000.0x3f847ae120000000.0x3f947ae120000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbff0000000000000.0xbf847ae120000000.0xbf847ae120000000.0xbfa47ae120000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb9999980000000.0x3f847ae120000000.0x3f947ae120000000.0x3fa47ae120000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb9999980000000.0xbf947ae120000000.0xbf947ae120000000.0xbfe3333320000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc9999980000000.0x3f947ae120000000.0x3fd3333320000000.0x3fe3333320000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc9999980000000.0xbfd3333320000000.0xbfd3333320000000.0xbfefffffe0000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x3fd3333320000000.0x3fdfffffe0000000.0x3fefffffe0000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc008000000000000.0xbfdfffffe0000000.0xbfdfffffe0000000.0xc17312d000000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x3fdfffffe0000000.0x416312cfe0000000.0x417312cfe0000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc014000000000000.0xc16312d000000000.0xc16312d000000000.0x3ff0000000000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0x416312cfc0000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78400000000.0x3ff0000000000000.0xbfb99999a0000000.0x7ff0000000000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb99999a0000000.0x3fb99999a0000000.0x7ff0000000000000.0x3fc99999a0000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0xfff0000000000000.0x3fc99999a0000000.0xc008000000000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x7ff0000000000000.0x3fc99999a0000000.0xc008000000000000.0x4008000000000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0x20000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x8000000020000000.0x40debc9a60000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x20000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000020000000.0x40debc9a60000000.0xba34567880000000.0x8000000020000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000020000000.0x8000000080000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x80000000c0000000.0x3fc9999980000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x8000000080000000.0xbfc9999980000000.0xbfc9999980000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000c0000000.0x3fb9999980000000.0x3fc9999980000000.0x3f947ae120000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfb9999980000000.0xbfb9999980000000.0xbf947ae120000000.0xbf947ae120000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb9999980000000.0x3f847ae120000000.0x3f947ae120000000.0x3fa47ae120000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbf847ae120000000.0xbf847ae120000000.0xbfa47ae120000000.0xbfa47ae120000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3f847ae120000000.0x3f947ae120000000.0x3fa47ae120000000.0x3fe3333320000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbf947ae120000000.0xbf947ae120000000.0xbfe3333320000000.0xbfe3333320000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae120000000.0x3fd3333320000000.0x3fe3333320000000.0x3fefffffe0000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfd3333320000000.0xbfd3333320000000.0xbfefffffe0000000.0xbfefffffe0000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333320000000.0x3fdfffffe0000000.0x3fefffffe0000000.0x417312cfe0000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfdfffffe0000000.0xbfdfffffe0000000.0xc17312d000000000.0xc17312cfe0000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fdfffffe0000000.0x416312cfc0000000.0x417312d000000000.0xbfb9999980000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc16312d020000000.0xc16312cfe0000000.0xbfb99999a0000000.0x3fb99999a0000000 ++vnmss 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312d020000000.0xbfb99999a0000000.0x3fb99999a0000000.0xfff0000000000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb99999a0000000.0xbfc99999a0000000.0xfff0000000000000.0xc008000000000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0x7ff0000000000000.0xc008000000000000.0x4008000000000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xfff0000000000000.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x80000001e0000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x20000000.0x80000000c0000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000020000000.0x0.0x40debc9a60000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x40debc9a60000000.0xba34567880000000.0x8000000260000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x0.0x8000000160000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000040000000.0x80000000a0000000.0x8000000260000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000000000000.0x80000000a0000000.0x0.0xc008000000000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x8000000040000000.0x3fc9999980000000.0x4008000000000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000000000000.0xbfc9999980000000.0xbfc9999980000000.0xbfd3333320000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb9999980000000.0x3fc9999980000000.0x3f947ae120000000.0x3fd3333320000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb9999980000000.0xbf947ae120000000.0xbf947ae120000000.0xbfe3333320000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3f847ae120000000.0x3f947ae120000000.0x3fa47ae120000000.0x3fe3333320000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbf847ae120000000.0xbfa47ae120000000.0xbfa47ae120000000.0xc022000000000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae120000000.0x3fa47ae120000000.0x3fe3333320000000.0x4022000000000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbf947ae120000000.0xbfe3333320000000.0xbfe3333320000000.0xc02e000000000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333320000000.0x3fe3333320000000.0x3fefffffe0000000.0x402c000000000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfd3333320000000.0xbfefffffe0000000.0xc000000000000000.0xc1b1e1a300000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fdfffffe0000000.0xbe70000000000000.0x417312d000000000.0x41b1e1a300000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff8000000000000.0xc17312d000000000.0xc17312d000000000.0x3fb99999a0000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312d020000000.0x417312d000000000.0x3fb99999a0000000.0xbfc99999a0000000 ++vnmss 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc16312d000000000.0x3fb99999a0000000.0xbfc99999a0000000.0x7ff0000000000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc99999a0000000.0x3fc99999a0000000.0x7ff0000000000000.0x4008000000000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0xfff0000000000000.0x4008000000000000.0xc014000000000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x7ff0000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x60000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000060000000.0x1e0000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x80000001e0000000.0x40debc9a60000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x20000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000020000000.0x40debc9a60000000.0xba34567880000000.0xa0000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x80000000e0000000.0x1a0000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x80000002e0000000.0xa0000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000020000000.0x8000000080000000.0x80000000e0000000.0x1a0000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000c0000000.0x8000000020000000.0x80000002e0000000.0x4008000000000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000020000000.0x8000000080000000.0xc008000000000000.0xc008000000000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000c0000000.0x3fc9999980000000.0x4008000000000000.0x3fd3333320000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfc9999980000000.0xbfc9999980000000.0xbfd3333320000000.0xbfd3333320000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc9999980000000.0x3f947ae120000000.0x3fd3333320000000.0x3fe3333320000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbf947ae120000000.0xbf947ae120000000.0xbfe3333320000000.0xbfe3333320000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae120000000.0x3fa47ae120000000.0x3fe3333320000000.0x4022000000000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfa47ae120000000.0xbfa47ae120000000.0xc022000000000000.0xc022000000000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fa47ae120000000.0x3fe3333320000000.0x4022000000000000.0x402c000000000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfe3333320000000.0xbfe3333320000000.0xc030000000000000.0xc02c000000000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333320000000.0xbe70000000000000.0x4030000000000000.0x41b1e1a300000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc000000000000000.0xbc90000000000000.0xc1b1e1a300000000.0xc1b1e1a300000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x417312d000000000.0x41b1e1a300000000.0xbfc99999a0000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc17312d000000000.0xc17312d000000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vnmss 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312d000000000.0xbfc99999a0000000.0x3fc99999a0000000.0xfff0000000000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc99999a0000000.0xc008000000000000.0xfff0000000000000.0xc014000000000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x7ff0000000000000.0xc014000000000000.0x4014000000000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xfff0000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000320000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x1e0000000.0x80000000a0000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x80000001e0000000.0x60000000.0x40debc9a60000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x20000000.0x8000000060000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x40debc9a60000000.0xba34567880000000.0x80000003e0000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x220000000.0x80000001e0000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000260000000.0x20000000.0x80000003e0000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x0.0x8000000160000000.0x220000000.0x80000001e0000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000a0000000.0x8000000260000000.0x20000000.0x80000003e0000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x0.0x8000000160000000.0x220000000.0xc014000000000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000a0000000.0x8000000260000000.0x4008000000000000.0x4014000000000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x0.0xc008000000000000.0xc008000000000000.0xbfdfffffe0000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc9999980000000.0x4008000000000000.0x3fd3333320000000.0x3fdfffffe0000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc9999980000000.0xbfd3333320000000.0xbfd3333320000000.0xbfefffffe0000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae120000000.0x3fd3333320000000.0x3fe3333320000000.0x3fefffffe0000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbf947ae120000000.0xbfe3333320000000.0xbfe3333320000000.0xc02e000000000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fa47ae120000000.0x3fe3333320000000.0x4022000000000000.0x402c000000000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfa47ae120000000.0xc022000000000000.0xc024000000000000.0xc038000000000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333320000000.0x4020000000000000.0x4030000000000000.0x4038e66660000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff99999a0000000.0xc02c000000000000.0xc02e333340000000.0xc1bdcd6500000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x402dccccc0000000.0x41b1e1a300000000.0x41bdcd6500000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbff19999a0000000.0xc1b1e1a300000000.0xc1b1e1a300000000.0x3fc99999a0000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312d000000000.0x41b1e1a300000000.0x3fc99999a0000000.0xc008000000000000 ++vnmss 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc17312d000000000.0x3fc99999a0000000.0xc008000000000000.0x7ff0000000000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0x7ff0000000000000.0x4014000000000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xfff0000000000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x7ff0000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x80000000a0000000.0x320000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x60000000.0x8000000320000000.0x40debc9a60000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000060000000.0x1e0000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000001e0000000.0x40debc9a60000000.0xba34567880000000.0x120000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000160000000.0x320000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0xa0000000.0x8000000460000000.0x120000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000e0000000.0x1a0000000.0x8000000160000000.0x320000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000002e0000000.0xa0000000.0x8000000460000000.0x120000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000000e0000000.0x1a0000000.0x8000000160000000.0x320000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000002e0000000.0xa0000000.0x8000000460000000.0x4014000000000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000000e0000000.0x1a0000000.0xc014000000000000.0xc014000000000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000002e0000000.0x4008000000000000.0x4014000000000000.0x3fdfffffe0000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc008000000000000.0xc008000000000000.0xbfdfffffe0000000.0xbfdfffffe0000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x3fd3333320000000.0x3fdfffffe0000000.0x3fefffffe0000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfd3333320000000.0xbfd3333320000000.0xbfefffffe0000000.0xbfefffffe0000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333320000000.0x3fe3333320000000.0x3fefffffe0000000.0x402c000000000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfe3333320000000.0xbfe3333320000000.0xc030000000000000.0xc02c000000000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333320000000.0x4020000000000000.0x4030000000000000.0x4038e66660000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc024000000000000.0xc020000000000000.0xc0391999a0000000.0xc038e66660000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4024000000000000.0x402dccccc0000000.0x40391999a0000000.0x41bdcd6500000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc02e333340000000.0xc02dccccc0000000.0xc1bdcd6500000000.0xc1bdcd6500000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402e333340000000.0x41b1e1a300000000.0x41bdcd6500000000.0xc008000000000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc1b1e1a300000000.0xc1b1e1a300000000.0xc008000000000000.0x4008000000000000 ++vnmss 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a300000000.0xc008000000000000.0x4008000000000000.0xfff0000000000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0xfff0000000000000.0xc197d78400000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x7ff0000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xfff0000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x0 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000320000000.0xa0000000.0x40debc9a60000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x1e0000000.0x80000000a0000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x60000000.0x40debc9a60000000.0xba34567880000000.0xb86dcd6500000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x300000000.0xb857d78400000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000340000000.0xa0000000.0xb871e1a300000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x1c0000000.0x80000001e0000000.0x3a0000000.0xb857d78400000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x20000000.0x80000003e0000000.0xa0000000.0xb871e1a300000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x220000000.0x80000001e0000000.0x3a0000000.0xb857d78400000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x20000000.0x80000003e0000000.0xa0000000.0xb871e1a300000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x220000000.0x80000001e0000000.0x380000000.0xc197d78400000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x20000000.0x8000000400000000.0x4014000000000000.0x4197d78400000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x200000000.0xc014000000000000.0xc014000000000000.0xc16312d000000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x4014000000000000.0x3fdfffffe0000000.0x416312cfe0000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc008000000000000.0xbfdfffffe0000000.0xbfdfffffe0000000.0xc17312d000000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333320000000.0x3fdfffffe0000000.0x3fefffffe0000000.0x417312cfe0000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfd3333320000000.0xbfefffffe0000000.0xc000000000000000.0xc1b1e1a300000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333320000000.0xbe70000000000000.0x4030000000000000.0x41b1e1a300000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff99999a0000000.0xc02c000000000000.0xc02e333340000000.0xc1bdcd6500000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4024000000000000.0x402dccccc0000000.0x40391999a0000000.0x41bdcd6500000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc022333340000000.0xc038e66660000000.0xc039333340000000.0xc341c37940000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402e333340000000.0x4038ccccc0000000.0x41bdcd6500000000.0x4341c37940000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc02e666660000000.0xc1bdcd6500000000.0xc1bdcd6500000000.0x4008000000000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a300000000.0x41bdcd6500000000.0x4008000000000000.0xc014000000000000 ++vnmss 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1b1e1a300000000.0x4008000000000000.0xc014000000000000.0x7ff0000000000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0x7ff0000000000000.0x4197d78400000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xfff0000000000000.0x4197d78400000000.0x0 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x7ff0000000000000.0x4197d78400000000.0x8000000000000000.0x0 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x7ff0000000000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000a0000000.0x320000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000320000000.0x40debc9a60000000.0xba34567880000000.0x3847d78400000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0xb847d78400000000.0x386dcd6500000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x80000000.0xb86dcd6500000000.0x3857d78400000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000c0000000.0x280000000.0xb857d78400000000.0x3871e1a300000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000003c0000000.0x120000000.0xb871e1a300000000.0x3857d78400000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000160000000.0x320000000.0xb857d78400000000.0x3871e1a300000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8000000460000000.0x120000000.0xb871e1a300000000.0x3857d78400000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8000000160000000.0x320000000.0xb857d78400000000.0x3871e1a300000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8000000460000000.0x100000000.0xb871e1a300000000.0x4197d78400000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000180000000.0x300000000.0xc197d78400000000.0xc197d78400000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8000000480000000.0x4014000000000000.0x4197d78400000000.0x416312cfe0000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc014000000000000.0xc014000000000000.0xc16312d000000000.0xc16312d000000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x3fdfffffe0000000.0x416312cfe0000000.0x417312cfe0000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfdfffffe0000000.0xbfdfffffe0000000.0xc17312d000000000.0xc17312cfe0000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fdfffffe0000000.0xbe70000000000000.0x417312d000000000.0x41b1e1a300000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc000000000000000.0xbc90000000000000.0xc1b1e1a300000000.0xc1b1e1a300000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x402dccccc0000000.0x41b1e1a300000000.0x41bdcd6500000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc02e333340000000.0xc02dccccc0000000.0xc1bdcd6500000000.0xc1bdcd6500000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402e333340000000.0x4038ccccc0000000.0x41bdcd6500000000.0x4341c37940000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc039333340000000.0xc038ccccc0000000.0xc341c37940000000.0xc341c37940000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4039333340000000.0x41bdcd6500000000.0x4341c37940000000.0xc014000000000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1bdcd6500000000.0xc1bdcd6500000000.0xc014000000000000.0x4014000000000000 ++vnmss 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd6500000000.0xc014000000000000.0x4014000000000000.0xfff0000000000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0xfff0000000000000.0x8000000000000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x7ff0000000000000.0x0.0x0 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xfff0000000000000.0x0.0x0.0x7ff0000000000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x3a596c16a0000000.0xb847d78400000000.0x40debc9a60000000.0xba34567880000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xa0000000.0x40debc9a60000000.0xba34567880000000.0x8000000020000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x386dcd6500000000.0x80000000a0000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0xb86dcd6500000000.0x3847d783e0000000.0x8000000020000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x300000000.0xb847d78420000000.0x386dcd6500000000.0x80000000a0000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x0.0xb86dcd6500000000.0x3857d78400000000.0x8000000020000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x300000000.0xb857d78400000000.0x3871e1a300000000.0x80000000a0000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xa0000000.0xb871e1a300000000.0x3857d78400000000.0x8000000040000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3a0000000.0xb857d78400000000.0x3871e1a300000000.0x80000000c0000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xa0000000.0xb871e1a300000000.0x3857d78400000000.0x8000000040000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x380000000.0xb857d78400000000.0x3871e1a300000000.0x80000000c0000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000.0xb871e1a300000000.0x4197d78400000000.0x8000000040000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x380000000.0xc197d78400000000.0xc197d78400000000.0x80000000c0000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x4197d78400000000.0x416312cfe0000000.0xbff0000000000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc014000000000000.0xc16312d000000000.0xc16312d000000000.0x3ff0000000000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fdfffffe0000000.0x416312cfc0000000.0x417312d000000000.0xbfb9999980000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff8000000000000.0xc17312d000000000.0xc17312d000000000.0x3fb99999a0000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x417312d000000000.0x41b1e1a300000000.0xbfc99999a0000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbff19999a0000000.0xc1b1e1a300000000.0xc1b1e1a300000000.0x3fc99999a0000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402e333340000000.0x41b1e1a300000000.0x41bdcd6500000000.0xc008000000000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc02e666660000000.0xc1bdcd6500000000.0xc1bdcd6500000000.0x4008000000000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4039333340000000.0x41bdcd6500000000.0x4341c37940000000.0xc014000000000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc03c000000000000.0xc341c37940000000.0xc341c37940000000.0x4014000000000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd6500000000.0x4341c37940000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc1bdcd6500000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x0 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xfff0000000000000.0x0.0x7ff0000000000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7ff0000000000000.0x0.0x7ff0000000000000.0x0 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xbbde4e3f00000000.0x40debc9a60000000.0xba34567880000000.0x8000000020000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x40debc9a60000000.0xba34567880000000.0x8000000020000000.0x80000000a0000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x3847d78400000000.0x80000000a0000000.0x8000000020000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xb847d78400000000.0x386dcd6500000000.0x8000000020000000.0x80000000a0000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xb86dcd6500000000.0x3847d78400000000.0x80000000a0000000.0x8000000020000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xb847d78400000000.0x386dcd6500000000.0x8000000020000000.0x80000000a0000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xb86dcd6500000000.0x3857d78400000000.0x80000000a0000000.0x8000000040000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xb857d78400000000.0x3871e1a300000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xb871e1a300000000.0x3857d78400000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xb857d78400000000.0x3871e1a300000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xb871e1a300000000.0x3857d78400000000.0x80000000c0000000.0x8000000040000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xb857d78400000000.0x3871e1a300000000.0x8000000040000000.0x80000000c0000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xb871e1a300000000.0x4197d78400000000.0x80000000c0000000.0xbff0000000000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc197d78400000000.0xc197d78400000000.0xbff0000000000000.0x3ff0000000000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0x416312cfc0000000.0x3ff0000000000000.0xbfb9999980000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc16312d020000000.0xc16312cfe0000000.0xbfb99999a0000000.0x3fb99999a0000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312d020000000.0x417312d000000000.0x3fb99999a0000000.0xbfc99999a0000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc17312d000000000.0xc17312d000000000.0xbfc99999a0000000.0x3fc99999a0000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312d000000000.0x41b1e1a300000000.0x3fc99999a0000000.0xc008000000000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc1b1e1a300000000.0xc1b1e1a300000000.0xc008000000000000.0x4008000000000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a300000000.0x41bdcd6500000000.0x4008000000000000.0xc014000000000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1bdcd6500000000.0xc1bdcd6500000000.0xc014000000000000.0x4014000000000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd6500000000.0x4341c37940000000.0x4014000000000000.0xc197d78400000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc341c37940000000.0xc341c37940000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4341c37940000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x7ff0000000000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0x7ff0000000000000.0x0 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xfff0000000000000.0x7ff0000000000000.0x0.0x0 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x7ff0000000000000.0x0.0x0.0x0 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xba34567880000000.0x8000000020000000.0x80000000a0000000.0x4cd760000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x386dcd6500000000.0x80000000a0000000.0x8000000020000000.0xf5da0000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3847d783e0000000.0x8000000020000000.0x80000000a0000000.0x4cd760000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x386dcd6500000000.0x80000000a0000000.0x8000000020000000.0x1ebc00000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3847d783e0000000.0x8000000020000000.0x80000000a0000000.0x5c3580000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x386dcd6500000000.0x80000000a0000000.0x8000000040000000.0x1ebbe0000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3857d78400000000.0x8000000040000000.0x80000000c0000000.0x5c3580000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3871e1a300000000.0x80000000c0000000.0x8000000040000000.0x1ebbe0000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3857d78400000000.0x8000000040000000.0x80000000c0000000.0x5c3580000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3871e1a300000000.0x80000000c0000000.0x8000000040000000.0x40debc9a60000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3857d78400000000.0x8000000040000000.0x80000000c0000000.0xc0debcda60000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x3871e1a300000000.0x80000000c0000000.0xbff0000000000000.0x40a898e1c0000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0xbff0000000000000.0x3ff0000000000000.0xc0a8971500000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78400000000.0x3ff0000000000000.0xbfb99999a0000000.0x7ff0000000000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312d020000000.0xbfb99999a0000000.0x3fb99999a0000000.0xfff0000000000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc16312d000000000.0x3fb99999a0000000.0xbfc99999a0000000.0x7ff0000000000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312d000000000.0xbfc99999a0000000.0x3fc99999a0000000.0xfff0000000000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc17312d000000000.0x3fc99999a0000000.0xc008000000000000.0x7ff0000000000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a300000000.0xc008000000000000.0x4008000000000000.0xfff0000000000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1b1e1a300000000.0x4008000000000000.0xc014000000000000.0x7ff0000000000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd6500000000.0xc014000000000000.0x4014000000000000.0xfff0000000000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc1bdcd6500000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4341c37940000000.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vnmss 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc341c37940000000.0x4197d78400000000.0x8000000000000000.0xfff0000000000000 ++=== Running test on vnmsd=== ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0xfff0000000000000.0x923456789abcdef0 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x432388ef423d9d0c.0x8000000000000000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x0.0x8000000000000000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x0.0x0.0x8000000000000000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x2f9dae1ec2b23ac3.0x80000000bdcccccd ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0x2fb6c9d4ecd7a8ba.0x800000003e4ccccd ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x2f9deb97f7a2e72b.0x80000000be4ccccd ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x2fb6d9333a13d3d4.0x8000000040400000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x2f9edb5712ce8a46.0x80000000c0400000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x2fb7152300debc9a.0x8000000040a00000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x2f9f0971fa830b94.0x80000000c0a00000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x2fb720a9bacbdcee.0x800000004cbebc20 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x2fa26dc8d96fd63c.0x80000000ccbebc20 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x2fb89531a8e30527.0xbff0000000000000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0x70debc9a78563412.0x3ff0000000000000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xf0debc9a78563412.0xbfb999999999999a ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0x70a896e1f9de900f.0x3fb999999999999a ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0xf0a896e1f9de900f.0xbfc999999999999a ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0x70b896e1f9de900f.0x3fc999999999999a ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0xf0b896e1f9de900f.0xc008000000000000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0x70f70d73da40a70d.0x4008000000000000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0xf0f70d73da40a70d.0xc014000000000000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0x710335e08b35e08b.0x4014000000000000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0xf10335e08b35e08b.0xc197d78400000000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0x7286e690fe53a8fe.0x4197d78400000000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0xf286e690fe53a8fe.0x8000000000000000 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x0 ++vnmsd 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x70debc9a78563412.0x432388ef423d9d0c.0x8000000000000000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0xfff0000000000000.0x0.0x8000000000000000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x432388ef423d9d0c.0x8000000000000000.0x8000000000000000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x2f9e7f21436587aa.0x800000003dcccccd.0x80000000bdcccccd ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x2fb6fe158d047bf3.0x80000000bdcccccd.0x800000003e4ccccd ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x2f9dae1ec2b23ac3.0x800000003e4ccccd.0x80000000be4ccccd ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x2fb6c9d4ecd7a8ba.0x80000000be4ccccd.0x8000000040400000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x2f9deb97f7a2e72b.0x8000000040400000.0x80000000c0400000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x2fb6d9333a13d3d4.0x80000000c0400000.0x8000000040a00000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x2f9edb5712ce8a46.0x8000000040a00000.0x80000000c0a00000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x2fb7152300debc9a.0x80000000c0a00000.0x800000004cbebc20 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x2f9f0971fa830b94.0x800000004cbebc20.0x80000000ccbebc20 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x2fb720a9bacbdcee.0x80000000ccbebc20.0xbff0000000000000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x2fa26dc8d96fd63c.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x70debc9a78563412.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xf0debc9a78563412.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x70a896e1f9de900f.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xf0a896e1f9de900f.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x70b896e1f9de900f.0xc008000000000000.0x4008000000000000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xf0b896e1f9de900f.0x4008000000000000.0xc014000000000000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x70f70d73da40a70e.0xc014000000000000.0x4014000000000000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xf0f70d73da40a70e.0x4014000000000000.0xc197d78400000000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x710335e08b35e08b.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xf10335e08b35e08b.0x4197d78400000000.0x0 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x7286e690fe53a8fe.0x13de4e3f1c71c703.0x0 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xf286e690fe53a8fe.0x0.0x70debc9a78563412 ++vnmsd 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x0.0x8000000000000000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x432388ef423d9d0c.0x8000000000000000.0x8000000000000000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xfff0000000000000.0x80000000bf800000.0x800000003dcccccd.0x80000000bdcccccd ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x432388ef423d9d0c.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x2f9e7f21436587aa.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x2fb6fe158d047bf3.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x2f9dae1ec2b23ac3.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x2fb6c9d4ecd7a8ba.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x2f9deb97f7a2e72b.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x2fb6d9333a13d3d4.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x2f9edb5712ce8a46.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x2fb7152300debc9a.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x2f9f0971fa830b94.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x2fb720a9bacbdcee.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x70debc9a78563412.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xf0debc9a78563412.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x70a896e1f9de900f.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xf0a896e1f9de900f.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x70b896e1f9de900f.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xf0b896e1f9de900f.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x70f70d73da40a70d.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xf0f70d73da40a70d.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x710335e08b35e08b.0x4197d78400000000.0x8000000000000000.0x0 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xf10335e08b35e08b.0x93de4e3f1c71c703.0x0.0x70debc9a78563412 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7286e690fe53a8fe.0x13de4e3f1c71c703.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xf286e690fe53a8fe.0x70debc9a78563412.0x923456789abcdef0.0x0 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x0.0x0.0x8000000000000000 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x2f9e7f21436587aa.0x800000003dcccccd.0x80000000bdcccccd ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x432388ef423d9d0c.0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x0 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x12596c16c16c16ac.0x0.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x93de4e3f1c71c703.0x70debc9a78563412.0x923456789abcdef0.0x0 ++vnmsd 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x0.0x0 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000003f800000.0x80000000bf800000.0x2f9dae1ec2b23ac3.0x80000000bdcccccd ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x2fb6fe158d047bf3.0x80000000bdcccccd.0x800000003e4ccccd ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x2f9e7f21436587aa.0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x80000003b5000001 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000135000001.0x3b5000001 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x80000003bd800000.0x135000001.0x70debc9a78563412 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000013d800000.0x3bd800000.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x13d800000.0x70debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vnmsd 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0x2fb6c9d4ecd7a8ba ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000bf800000.0x800000003dcccccd.0x2fb6c9d4ecd7a8ba.0x800000003e4ccccd ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x2f9dae1ec2b23ac3.0x800000003e4ccccd.0x80000000be4ccccd ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x2fb6fe158d047bf3.0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xbae66667 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x239666667.0x8000000137800001 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xb9666667.0x80000003b5000001.0x70debc9a78563412 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x23e800000.0x8000000135000001.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000003bd800000.0x70debc9a78563412.0x923456789abcdef0.0x573564141b12d0 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x71ad2f4306c4b4.0x80000000bf800000 ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x5705b50c1b12d0.0x80000000bf800000.0x800000003dcccccd ++vnmsd 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x71d5b73d020000.0x80000000bf800000.0x800000003dcccccd.0x2f9deb97f7a2e72b ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000003dcccccd.0x80000000bdcccccd.0x2f9deb97f7a2e72b.0x80000000be4ccccd ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x2fb6c9d4ecd7a8ba.0x80000000be4ccccd.0x8000000040400000 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x2f9dae1ec2b23ac3.0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x800000023ae66667 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x80000000bae66667.0x23ae66667 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000239666667.0xbae66667.0x70debc9a78563412 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000b9666667.0x239666667.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xb9666667.0x70debc9a78563412.0x923456789abcdef0.0x8071b91b0702c4b4 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x805735641c0b12d0.0x71b91b0306c4b4 ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8071ad2f4502c4b4.0x5735640c1b12d0.0x800000003dcccccd ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x805705b5140b12d0.0x71ad2f4106c4b4.0x800000003dcccccd.0x80000000bdcccccd ++vnmsd 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x5705b5041b12d0.0x800000003dcccccd.0x80000000bdcccccd.0x2fb6d9333a13d3d4 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000bdcccccd.0x800000003e4ccccd.0x2fb6d9333a13d3d4.0x8000000040400000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x2f9deb97f7a2e72b.0x8000000040400000.0x80000000c0400000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x2fb6c9d4ecd7a8ba.0x8000000040400000.0x80000000c0400000.0x8000000040a00000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xcd9999a ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x260f5c29.0x80000000c0c00000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xc75c28f.0x800000023ae66667.0x70debc9a78563412 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x25f5c28f.0x80000000bae66667.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000239666667.0x70debc9a78563412.0x923456789abcdef0.0x101c00000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x378000001.0x8057ef5b8ff80000 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0xf8000001.0x8071b91b0902c4b4.0x57ef5b80233333 ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x375800001.0x80573564240b12d0.0x71b91b050d9181.0x80000000bdcccccd ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8071ad2f4702c4b4.0x57356414364603.0x80000000bdcccccd.0x800000003e4ccccd ++vnmsd 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x71ad2f430d9181.0x80000000bdcccccd.0x800000003e4ccccd.0x2f9edb5712ce8a46 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000003e4ccccd.0x80000000be4ccccd.0x2f9edb5712ce8a46.0x80000000c0400000 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x2fb6d9333a13d3d4.0x80000000c0400000.0x8000000040a00000 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x2f9deb97f7a2e72b.0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000026733333 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x800000000cd9999a.0x26733333 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x80000000260f5c29.0xcd9999a.0x70debc9a78563412 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000000c75c28f.0x260f5c29.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc75c28f.0x70debc9a78563412.0x923456789abcdef0.0x8000000400c00000 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000180c00000.0x301c00000 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x80000003f7000001.0x81c00000.0x8071e798e1f73333 ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000177000001.0x2f8000001.0x8057ef5b87dccccd.0x71e798de08cccd ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x78000001.0x8071b91b06fbf7e7.0x57ef5b78233333.0x800000003e4ccccd ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x805735641befdf9d.0x71b91b030d9181.0x800000003e4ccccd.0x80000000be4ccccd ++vnmsd 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x5735640c364603.0x800000003e4ccccd.0x80000000be4ccccd.0x2fb7152300debc9a ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000000be4ccccd.0x8000000040400000.0x2fb7152300debc9a.0x8000000040a00000 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x2f9edb5712ce8a46.0x8000000040a00000.0x80000000c0a00000 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x2fb6d9333a13d3d4.0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x6766666 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x1339999a.0x800000000ceccccd ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x66ccccd.0x8000000026733333.0x70debc9a78563412 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x1307ae15.0x800000000cd9999a.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000260f5c29.0x70debc9a78563412.0x923456789abcdef0.0x82600000 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x201400000.0x8000000202a00000 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x81400000.0x8000000480c00000.0x105533333 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x1fb666667.0x8000000200c00000.0x383733333.0x8058131ed5dccccd ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000477000001.0x103733333.0x8071e798e3f73333.0x58131ec61b3333 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x379b33334.0x8057ef5b8fdccccd.0x71e798e006cccd.0x80000000be4ccccd ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8071b91b08fbf7e7.0x57ef5b801b3333.0x80000000be4ccccd.0x8000000040400000 ++vnmsd 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x71b91b050b9181.0x80000000be4ccccd.0x8000000040400000.0x2f9f0971fa830b94 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8000000040400000.0x80000000c0400000.0x2f9f0971fa830b94.0x80000000c0a00000 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x2fb7152300debc9a.0x80000000c0a00000.0x800000004cbebc20 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x2f9edb5712ce8a46.0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000013433333 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000006766666.0x13433333 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x800000001339999a.0x6766666.0x70debc9a78563412 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000066ccccd.0x1339999a.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x66ccccd.0x70debc9a78563412.0x923456789abcdef0.0x8000000281600000 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000101600000.0x182600000 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000280400000.0x2600000.0x8000000400eccccd ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000100400000.0x181400000.0x8000000180eccccd.0x305533333 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x1400000.0x80000003ff0ccccd.0x85533333.0x8071f089b3793333 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000017f0ccccd.0x303733333.0x8058131ecde4cccd.0x71f089af86cccd ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x83733333.0x8071e798e1f93333.0x58131ebe1b3333.0x8000000040400000 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8057ef5b87e4cccd.0x71e798de06cccd.0x8000000040400000.0x80000000c0400000 ++vnmsd 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x57ef5b781b3333.0x8000000040400000.0x80000000c0400000.0x2fb720a9bacbdcee ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000000c0400000.0x8000000040a00000.0x2fb720a9bacbdcee.0x800000004cbebc20 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x2f9f0971fa830b94.0x800000004cbebc20.0x80000000ccbebc20 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x2fb7152300debc9a.0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x4cbebc20 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xc0a00000.0x8000000007acac6a ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x40a00000.0x8000000013433333.0x70debc9a78563412 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0400000.0x8000000006766666.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x800000001339999a.0x70debc9a78563412.0x923456789abcdef0.0x800000003026a72d ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000018f9999a.0x80000001a5bc3460 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000032933333.0x8000000301600000.0xa86f6793 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000190ccccd.0x8000000181600000.0x204133333.0x800000023d86796d ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000300400000.0x84133333.0x8000000480eccccd.0x1416cdfd3 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x202f33333.0x8000000200eccccd.0x384d33333.0x805c96fab0c44ecd ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x800000047f0ccccd.0x104d33333.0x8071f089b5793333.0x5c96faa0db8200 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x382f33333.0x8058131ed5e4cccd.0x71f089b17f0000.0x80000000c0400000 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8071e798e3f93333.0x58131ec5fc0000.0x80000000c0400000.0x8000000040a00000 ++vnmsd 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x71e798dfff0000.0x80000000c0400000.0x8000000040a00000.0x2fa26dc8d96fd63c ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x8000000040a00000.0x80000000c0a00000.0x2fa26dc8d96fd63c.0x80000000ccbebc20 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x2fb720a9bacbdcee.0x80000000ccbebc20.0xbff0000000000000 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x2f9f0971fa830b94.0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x80000000ccbebc20 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x800000004cbebc20.0xccbebc20 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x80000000c0a00000.0x4cbebc20.0x70debc9a78563412 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000040a00000.0xc0a00000.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40a00000.0x70debc9a78563412.0x923456789abcdef0.0x800000006872f26d ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x800000004ed958d3.0x80000000968d0d93 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000066066666.0x80000000b026a72d.0x80000002a409012d ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000004c6ccccd.0x8000000098f9999a.0x800000012409012d.0x1a86f6793 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000b2933333.0x800000027faccccd.0x286f6793.0x800000043e06796d ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000000ffaccccd.0x184133333.0x80000001be06796d.0x3416cdfd3 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4133333.0x80000004016ccccd.0xc16cdfd3.0x80731180aa38e080 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000001816ccccd.0x304d33333.0x805c96faa8e38200.0x731180a636e080 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x84d33333.0x8071f089b3810000.0x5c96fa98db8200.0x8000000040a00000 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8058131ece040000.0x71f089af7f0000.0x8000000040a00000.0x80000000c0a00000 ++vnmsd 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x58131ebdfc0000.0x8000000040a00000.0x80000000c0a00000.0x2fb89531a8e30527 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80000000c0a00000.0x800000004cbebc20.0x2fb89531a8e30527.0xbff0000000000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x2fa26dc8d96fd63c.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x2fb720a9bacbdcee.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x80000000ccbebc20 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000000000000.0xbff0000000000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x80000000ccbebc20.0x70debc9a78563412 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x800000004cbebc20.0x70debc9a78563412.0xbfb999999999999a ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000c0a00000.0x70debc9a78563412.0x923456789abcdef0.0x3fb999999999999a ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x800000002b0686ca.0xbfc999999999999a ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000037d35396.0x80000000e872f26d.0x3fc999999999999a ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000002c3ccccd.0x80000000ced958d3.0x8000000014d9da60.0xc008000000000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000e6066666.0x800000002e7373fa.0x800000032409012d.0x4008000000000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000017466667.0x80000001a409012d.0x227ef6793.0xc014000000000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000002ffaccccd.0xa7ef6793.0x80000004be06796d.0x4014000000000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x203933333.0x800000023e06796d.0x3bf79aca0.0xc197d78400000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000004816ccccd.0x13f79aca0.0x80731180ac38e080.0x4197d78400000000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x382e00000.0x805c96fab0e38200.0x731180a8356080.0x80000000c0a00000 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8071f089b5810000.0x5c96faa0d58200.0x80000000c0a00000.0x800000004cbebc20 ++vnmsd 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x71f089b17d8000.0x80000000c0a00000.0x800000004cbebc20.0x70debc9a78563412 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x800000004cbebc20.0x80000000ccbebc20.0x70debc9a78563412.0x3ff0000000000000 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x4cbebc20 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x800000004cbebc20.0xccbebc20 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000000000000.0x80000000ccbebc20.0x70debc9a78563412 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0x70debc9a78563412.0xbff0000000000000 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x3ff0000000000000.0x3fb999999999999a ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0xbfb999999999999a.0xbfb999999999999a ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000053f97936.0x3fb999999999999a.0x3fc999999999999a ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000472cac6a.0x80000000ab0686ca.0xbfc999999999999a.0xbfc999999999999a ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000b7d35396.0x8000000066bfbf3a.0x3fc999999999999a.0x4008000000000000 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000004d2625a0.0x8000000094d9da60.0xc008000000000000.0xc008000000000000 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000ae7373fa.0x80000002a489012d.0x4008000000000000.0x4014000000000000 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000012489012d.0x1a7ef6793.0xc014000000000000.0xc014000000000000 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x27ef6793.0x800000043ff9aca0.0x4014000000000000.0x4197d78400000000 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000001bff9aca0.0x33f79aca0.0xc197d78400000000.0xc197d78400000000 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf79aca0.0x80731180aa3a6080.0x4197d78400000000.0x800000004cbebc20 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x805c96faa8e98200.0x731180a6356080.0x800000004cbebc20.0x80000000ccbebc20 ++vnmsd 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x5c96fa98d58200.0x800000004cbebc20.0x80000000ccbebc20.0xf0debc9a78563412 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x80000000ccbebc20.0xbff0000000000000.0xf0debc9a78563412.0xbfb999999999999a ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x70debc9a78563412.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000013433333 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0xc0a00000.0x8000000007acac6a ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x80000000c0a00000.0x4cbebc20.0x70debc9a78563412 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x800000004cbebc20.0x70debc9a78563412.0xbfb999999999999a ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x70debc9a78563412.0x3ff0000000000000.0x3fb999999999999a ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0xbff0000000000000.0xbff0000000000000.0xbf847ae147ae147c ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3ff0000000000000.0x3fb999999999999a.0x3f847ae147ae147c ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8d3ebc20.0xbfb999999999999a.0xbfb999999999999a.0xbf947ae147ae147c ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000d3f97936.0x3fb999999999999a.0x3fc999999999999a.0x3f947ae147ae147c ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000029535397.0xbfc999999999999a.0xbfc999999999999a.0xbfd3333333333334 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000e6bfbf3a.0x3fc999999999999a.0x4008000000000000.0x3fd3333333333333 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000001559da60.0xc008000000000000.0xc008000000000000.0xbfe0000000000000 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x800000032489012d.0x4008000000000000.0x4014000000000000.0x3fe0000000000000 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x225fc3460.0xc014000000000000.0xc014000000000000.0xc16312d000000000 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000004bff9aca0.0x4014000000000000.0x4197d78400000000.0x416312d000000000 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3bf19aca0.0xc197d78400000000.0xc197d78400000000.0x80000000ccbebc20 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80731180ac3a6080.0x4197d78400000000.0x80000000ccbebc20.0xbff0000000000000 ++vnmsd 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x731180a804e590.0x80000000ccbebc20.0xbff0000000000000.0x70a896e1f9de900f ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3ff0000000000000.0x70a896e1f9de900f.0x3fb999999999999a ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xf0debc9a78563412.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x70debc9a78563412.0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x6766666 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000006766666.0x13433333 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x40a00000.0x8000000013433333.0x70debc9a78563412 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000040a00000.0xc0a00000.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000c0a00000.0x70debc9a78563412.0x923456789abcdef0.0x3fb999999999999a ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0xbfb999999999999a.0xbfb999999999999a ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x3ff0000000000000.0x3fb999999999999a.0x3f847ae147ae147c ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbff0000000000000.0xbff0000000000000.0xbf847ae147ae147c.0xbf847ae147ae147c ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0x3fb999999999999a.0x3f847ae147ae147c.0x3f947ae147ae147c ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfb999999999999a.0xbfb999999999999a.0xbf947ae147ae147c.0xbf947ae147ae147c ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb999999999999a.0x3fc999999999999a.0x3f947ae147ae147c.0x3fd3333333333333 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfc999999999999a.0xbfc999999999999a.0xbfd3333333333334.0xbfd3333333333334 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc999999999999a.0x4008000000000000.0x3fd3333333333333.0x3fe0000000000000 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc008000000000000.0xc008000000000000.0xbfe0000000000000.0xbfe0000000000000 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x4014000000000000.0x3fe0000000000000.0x416312d000000000 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc014000000000000.0xc014000000000000.0xc16312d000000000.0xc16312d000000000 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x4197d78400000000.0x416312d000000000.0xbff0000000000000 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc197d78400000000.0xc197d78400000000.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0xbff0000000000000.0x3ff0000000000000.0xf0a896e1f9de900f ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0xf0a896e1f9de900f.0xbfc999999999999a ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x70a896e1f9de900f.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xf0debc9a78563412.0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x8000000026733333 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x1339999a.0x800000000ceccccd ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x800000001339999a.0x6766666.0x70debc9a78563412 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0400000.0x8000000006766666.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40a00000.0x70debc9a78563412.0x923456789abcdef0.0x800000006872f26d ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x800000002b0686ca.0xbfc999999999999a ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000053f97936.0x3fb999999999999a.0x3fc999999999999a ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8d3ebc20.0xbfb999999999999a.0xbfb999999999999a.0xbf947ae147ae147c ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0x3fb999999999999a.0x3f847ae147ae147c.0x3f947ae147ae147c ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbff0000000000000.0xbf847ae147ae147c.0xbf847ae147ae147c.0xbfa47ae147ae147c ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb999999999999a.0x3f847ae147ae147c.0x3f947ae147ae147c.0x3fa47ae147ae147c ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb999999999999a.0xbf947ae147ae147c.0xbf947ae147ae147c.0xbfe3333333333334 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc999999999999a.0x3f947ae147ae147c.0x3fd3333333333333.0x3fe3333333333333 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc999999999999a.0xbfd3333333333334.0xbfd3333333333334.0xbff0000000000000 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x3fd3333333333333.0x3fe0000000000000.0x3ff0000000000000 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc008000000000000.0xbfe0000000000000.0xbfe0000000000000.0xc17312d000000000 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x3fe0000000000000.0x416312d000000000.0x417312cff0000000 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc014000000000000.0xc16312d000000000.0xc16312d020000000.0x3ff0000000000000 ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0x416312cfe0000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78404000000.0x3ff0000000000000.0xbfb999999999999a.0x70b896e1f9de900f ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fb999999999999a.0x70b896e1f9de900f.0x3fc999999999999a ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xf0a896e1f9de900f.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x70a896e1f9de900f.0x3fc999999999999a.0xc008000000000000.0x4008000000000000 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xcd9999a ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x800000000cd9999a.0x26733333 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x66ccccd.0x8000000026733333.0x70debc9a78563412 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000066ccccd.0x1339999a.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x800000001339999a.0x70debc9a78563412.0x923456789abcdef0.0x800000003026a72d ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x800000004ed958d3.0x80000000968d0d93 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000037d35396.0x80000000e872f26d.0x3fc999999999999a ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000472cac6a.0x80000000ab0686ca.0xbfc999999999999a.0xbfc999999999999a ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000d3f97936.0x3fb999999999999a.0x3fc999999999999a.0x3f947ae147ae147c ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbfb999999999999a.0xbfb999999999999a.0xbf947ae147ae147c.0xbf947ae147ae147c ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb999999999999a.0x3f847ae147ae147c.0x3f947ae147ae147c.0x3fa47ae147ae147c ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbf847ae147ae147c.0xbf847ae147ae147c.0xbfa47ae147ae147c.0xbfa47ae147ae147c ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3f847ae147ae147c.0x3f947ae147ae147c.0x3fa47ae147ae147c.0x3fe3333333333333 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbf947ae147ae147c.0xbf947ae147ae147c.0xbfe3333333333334.0xbfe3333333333334 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae147ae147c.0x3fd3333333333333.0x3fe3333333333333.0x3ff0000000000000 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfd3333333333334.0xbfd3333333333334.0xbff0000000000000.0xbff0000000000000 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333333333333.0x3fe0000000000000.0x3ff0000000000000.0x417312cff0000000 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfe0000000000000.0xbfe0000000000000.0xc17312d010000000.0xc17312cff0000000 ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe0000000000000.0x416312cfe0000000.0x417312d010000000.0xbfb999999999999a ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc16312d020000000.0xc16312cfe0000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312d020000000.0xbfb999999999999a.0x3fb999999999999a.0xf0b896e1f9de900f ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0xf0b896e1f9de900f.0xc008000000000000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x70b896e1f9de900f.0xc008000000000000.0x4008000000000000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xf0a896e1f9de900f.0xc008000000000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x800000023ae66667 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x260f5c29.0x80000000c0c00000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x80000000260f5c29.0xcd9999a.0x70debc9a78563412 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x1307ae15.0x800000000cd9999a.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x66ccccd.0x70debc9a78563412.0x923456789abcdef0.0x8000000281600000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000018f9999a.0x80000001a5bc3460 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000066066666.0x80000000b026a72d.0x80000002a409012d ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000002c3ccccd.0x80000000ced958d3.0x8000000014d9da60.0xc008000000000000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000b7d35396.0x8000000066bfbf3a.0x3fc999999999999a.0x4008000000000000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000029535397.0xbfc999999999999a.0xbfc999999999999a.0xbfd3333333333334 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb999999999999a.0x3fc999999999999a.0x3f947ae147ae147c.0x3fd3333333333333 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb999999999999a.0xbf947ae147ae147c.0xbf947ae147ae147c.0xbfe3333333333334 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3f847ae147ae147c.0x3f947ae147ae147c.0x3fa47ae147ae147c.0x3fe3333333333333 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbf847ae147ae147c.0xbfa47ae147ae147c.0xbfa47ae147ae147c.0xc022000000000000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae147ae147c.0x3fa47ae147ae147c.0x3fe3333333333333.0x4022000000000000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbf947ae147ae147c.0xbfe3333333333334.0xbfe3333333333334.0xc02e000000000000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333333333333.0x3fe3333333333333.0x3ff0000000000000.0x402c000000000000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfd3333333333334.0xbff0000000000000.0xc000000000000000.0xc1b1e1a2ff000000 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe0000000000000.0x3c90000000000000.0x417312d010000000.0x41b1e1a2ffe66666 ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff8000000000000.0xc17312cff0000000.0xc17312d00199999a.0x3fb999999999999a ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312d020000000.0x417312cffe666667.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc16312d003333333.0x3fb999999999999a.0xbfc999999999999a.0x70f70d73da40a70e ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x3fc999999999999a.0x70f70d73da40a70d.0x4008000000000000 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xf0b896e1f9de900f.0x4008000000000000.0xc014000000000000 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x70b896e1f9de900f.0x4008000000000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xbae66667 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x80000000bae66667.0x23ae66667 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xc75c28f.0x800000023ae66667.0x70debc9a78563412 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000000c75c28f.0x260f5c29.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000000260f5c29.0x70debc9a78563412.0x923456789abcdef0.0x82600000 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000101600000.0x182600000 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000032933333.0x8000000301600000.0xa86f6793 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x800000004c6ccccd.0x8000000098f9999a.0x800000012409012d.0x1a86f6793 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000e6066666.0x800000002e7373fa.0x800000032409012d.0x4008000000000000 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000004d2625a0.0x8000000094d9da60.0xc008000000000000.0xc008000000000000 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000e6bfbf3a.0x3fc999999999999a.0x4008000000000000.0x3fd3333333333333 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfc999999999999a.0xbfc999999999999a.0xbfd3333333333334.0xbfd3333333333334 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc999999999999a.0x3f947ae147ae147c.0x3fd3333333333333.0x3fe3333333333333 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbf947ae147ae147c.0xbf947ae147ae147c.0xbfe3333333333334.0xbfe3333333333334 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae147ae147c.0x3fa47ae147ae147c.0x3fe3333333333333.0x4022000000000000 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfa47ae147ae147c.0xbfa47ae147ae147c.0xc022000000000000.0xc022000000000000 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fa47ae147ae147c.0x3fe3333333333333.0x4022000000000000.0x402c000000000000 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfe3333333333334.0xbfe3333333333334.0xc030000000000000.0xc02c000000000000 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333333333333.0x3c90000000000000.0x4030000000000000.0x41b1e1a2ffe66666 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc000000000000000.0xbc90000000000000.0xc1b1e1a30019999a.0xc1b1e1a2ffe66666 ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x417312cffe666667.0x41b1e1a30019999a.0xbfc999999999999a ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc17312d00199999a.0xc17312cffe666667.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312d00199999a.0xbfc999999999999a.0x3fc999999999999a.0xf0f70d73da40a70e ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xc008000000000000.0xf0f70d73da40a70d.0xc014000000000000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x70f70d73da40a70e.0xc014000000000000.0x4014000000000000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xf0b896e1f9de900f.0xc014000000000000.0x4014000000000000.0xc197d78400000000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x80000003b5000001 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x239666667.0x8000000137800001 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x8000000239666667.0xbae66667.0x70debc9a78563412 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x25f5c28f.0x80000000bae66667.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc75c28f.0x70debc9a78563412.0x923456789abcdef0.0x8000000400c00000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x201400000.0x8000000202a00000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8000000280400000.0x2600000.0x8000000400eccccd ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x80000000190ccccd.0x8000000181600000.0x204133333.0x800000023d86796d ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x80000000b2933333.0x800000027faccccd.0x286f6793.0x800000043e06796d ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x8000000017466667.0x80000001a409012d.0x227ef6793.0xc014000000000000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000000ae7373fa.0x80000002a489012d.0x4008000000000000.0x4014000000000000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000001559da60.0xc008000000000000.0xc008000000000000.0xbfe0000000000000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc999999999999a.0x4008000000000000.0x3fd3333333333333.0x3fe0000000000000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc999999999999a.0xbfd3333333333334.0xbfd3333333333334.0xbff0000000000000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3f947ae147ae147c.0x3fd3333333333333.0x3fe3333333333333.0x3ff0000000000000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbf947ae147ae147c.0xbfe3333333333334.0xbfe3333333333334.0xc02e000000000000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fa47ae147ae147c.0x3fe3333333333333.0x4022000000000000.0x402c000000000000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfa47ae147ae147c.0xc022000000000000.0xc024000000000000.0xc038000000000000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333333333333.0x4020000000000000.0x4030000000000000.0x4038e66666666666 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff999999999999a.0xc02c000000000000.0xc02e333333333333.0xc1bdcd64ffe66666 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x402dcccccccccccd.0x41b1e1a30019999a.0x41bdcd64ffcccccd ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbff199999999999a.0xc1b1e1a2ffe66666.0xc1b1e1a300333333.0x3fc999999999999a ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312d00199999a.0x41b1e1a2ffcccccd.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc17312d003333333.0x3fc999999999999a.0xc008000000000000.0x710335e08b35e08b ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4008000000000000.0x710335e08b35e08b.0x4014000000000000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xf0f70d73da40a70e.0x4014000000000000.0xc197d78400000000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x70f70d73da40a70d.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0x0 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x8000000135000001.0x3b5000001 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xb9666667.0x80000003b5000001.0x70debc9a78563412 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x80000000b9666667.0x239666667.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000239666667.0x70debc9a78563412.0x923456789abcdef0.0x101c00000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x8000000180c00000.0x301c00000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x81400000.0x8000000480c00000.0x105533333 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000100400000.0x181400000.0x8000000180eccccd.0x305533333 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000300400000.0x84133333.0x8000000480eccccd.0x1416cdfd3 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x80000000ffaccccd.0x184133333.0x80000001be06796d.0x3416cdfd3 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x80000002ffaccccd.0xa7ef6793.0x80000004be06796d.0x4014000000000000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x800000012489012d.0x1a7ef6793.0xc014000000000000.0xc014000000000000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x800000032489012d.0x4008000000000000.0x4014000000000000.0x3fe0000000000000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc008000000000000.0xc008000000000000.0xbfe0000000000000.0xbfe0000000000000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x3fd3333333333333.0x3fe0000000000000.0x3ff0000000000000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfd3333333333334.0xbfd3333333333334.0xbff0000000000000.0xbff0000000000000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333333333333.0x3fe3333333333333.0x3ff0000000000000.0x402c000000000000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfe3333333333334.0xbfe3333333333334.0xc030000000000000.0xc02c000000000000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333333333333.0x4020000000000000.0x4030000000000000.0x4038e66666666666 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc024000000000000.0xc020000000000000.0xc03919999999999a.0xc038e66666666666 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4024000000000000.0x402dcccccccccccd.0x403919999999999a.0x41bdcd64ffcccccd ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc02e333333333333.0xc02dcccccccccccd.0xc1bdcd6500333333.0xc1bdcd64ffcccccd ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402e333333333333.0x41b1e1a2ffcccccd.0x41bdcd6500333333.0xc008000000000000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc1b1e1a300333333.0xc1b1e1a2ffcccccd.0xc008000000000000.0x4008000000000000 ++vnmsd 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a300333333.0xc008000000000000.0x4008000000000000.0xf10335e08b35e08b ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc014000000000000.0xf10335e08b35e08b.0xc197d78400000000 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x710335e08b35e08b.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xf0f70d73da40a70d.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x0 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x80000003bd800000.0x135000001.0x70debc9a78563412 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x23e800000.0x8000000135000001.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xb9666667.0x70debc9a78563412.0x923456789abcdef0.0x8071b91b0702c4b4 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x378000001.0x8057ef5b8ff80000 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x80000003f7000001.0x81c00000.0x8071e798e1f73333 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x1fb666667.0x8000000200c00000.0x383733333.0x8058131ed5dccccd ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x1400000.0x80000003ff0ccccd.0x85533333.0x8071f089b3793333 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x202f33333.0x8000000200eccccd.0x384d33333.0x805c96fab0c44ecd ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4133333.0x80000004016ccccd.0xc16cdfd3.0x80731180aa38e080 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x203933333.0x800000023e06796d.0x3bf79aca0.0xc197d78400000000 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x27ef6793.0x800000043ff9aca0.0x4014000000000000.0x4197d78400000000 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x225fc3460.0xc014000000000000.0xc014000000000000.0xc16312d000000000 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x4014000000000000.0x3fe0000000000000.0x416312d000000000 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc008000000000000.0xbfe0000000000000.0xbfe0000000000000.0xc17312d000000000 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fd3333333333333.0x3fe0000000000000.0x3ff0000000000000.0x417312cff0000000 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfd3333333333334.0xbff0000000000000.0xc000000000000000.0xc1b1e1a2ff000000 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe3333333333333.0x3c90000000000000.0x4030000000000000.0x41b1e1a2ffe66666 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff999999999999a.0xc02c000000000000.0xc02e333333333333.0xc1bdcd64ffe66666 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4024000000000000.0x402dcccccccccccd.0x403919999999999a.0x41bdcd64ffcccccd ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc022333333333333.0xc038e66666666666.0xc039333333333333.0xc341c37937e08000 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402e333333333333.0x4038cccccccccccd.0x41bdcd6500333333.0x4341c37937e07ffe ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc02e666666666666.0xc1bdcd64ffcccccd.0xc1bdcd6503000000.0x4008000000000000 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a300333333.0x41bdcd64fd000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1b1e1a303000000.0x4008000000000000.0xc014000000000000.0x7286e690fe53a8fe ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4014000000000000.0x7286e690fe53a8fe.0x4197d78400000000 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xf10335e08b35e08b.0x4197d78400000000.0x0 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x710335e08b35e08b.0x4197d78400000000.0x8000000000000000.0x0 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x800000013d800000.0x3bd800000.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x80000003bd800000.0x70debc9a78563412.0x923456789abcdef0.0x573564141b12d0 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x805735641c0b12d0.0x71b91b0306c4b4 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0xf8000001.0x8071b91b0902c4b4.0x57ef5b80233333 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x8000000177000001.0x2f8000001.0x8057ef5b87dccccd.0x71e798de08cccd ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8000000477000001.0x103733333.0x8071e798e3f73333.0x58131ec61b3333 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x800000017f0ccccd.0x303733333.0x8058131ecde4cccd.0x71f089af86cccd ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x800000047f0ccccd.0x104d33333.0x8071f089b5793333.0x5c96faa0db8200 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x80000001816ccccd.0x304d33333.0x805c96faa8e38200.0x731180a636e080 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x80000004816ccccd.0x13f79aca0.0x80731180ac38e080.0x4197d78400000000 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x80000001bff9aca0.0x33f79aca0.0xc197d78400000000.0xc197d78400000000 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x80000004bff9aca0.0x4014000000000000.0x4197d78400000000.0x416312d000000000 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc014000000000000.0xc014000000000000.0xc16312d000000000.0xc16312d000000000 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x3fe0000000000000.0x416312d000000000.0x417312cff0000000 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfe0000000000000.0xbfe0000000000000.0xc17312d010000000.0xc17312cff0000000 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe0000000000000.0x3c90000000000000.0x417312d010000000.0x41b1e1a2ffe66666 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc000000000000000.0xbc90000000000000.0xc1b1e1a30019999a.0xc1b1e1a2ffe66666 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x402dcccccccccccd.0x41b1e1a30019999a.0x41bdcd64ffcccccd ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc02e333333333333.0xc02dcccccccccccd.0xc1bdcd6500333333.0xc1bdcd64ffcccccd ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402e333333333333.0x4038cccccccccccd.0x41bdcd6500333333.0x4341c37937e07ffe ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc039333333333333.0xc038cccccccccccd.0xc341c37937e08002.0xc341c37937e07ffe ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4039333333333333.0x41bdcd64fd000000.0x4341c37937e08002.0xc014000000000000 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1bdcd6503000000.0xc1bdcd64fd000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd6503000000.0xc014000000000000.0x4014000000000000.0xf286e690fe53a8fe ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc197d78400000000.0xf286e690fe53a8fe.0x8000000000000000 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x7286e690fe53a8fe.0x13de4e3f1c71c703.0x0 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xf10335e08b35e08b.0x93de4e3f1c71c703.0x0.0x70debc9a78563412 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x12596c16c16c16ac.0x0.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x13d800000.0x70debc9a78563412.0x923456789abcdef0.0x800000003f800000 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x71ad2f4306c4b4.0x80000000bf800000 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x8071ad2f4502c4b4.0x5735640c1b12d0.0x800000003dcccccd ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x375800001.0x80573564240b12d0.0x71b91b050d9181.0x80000000bdcccccd ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x78000001.0x8071b91b06fbf7e7.0x57ef5b78233333.0x800000003e4ccccd ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x379b33334.0x8057ef5b8fdccccd.0x71e798e006cccd.0x80000000be4ccccd ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x83733333.0x8071e798e1f93333.0x58131ebe1b3333.0x8000000040400000 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x382f33333.0x8058131ed5e4cccd.0x71f089b17f0000.0x80000000c0400000 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x84d33333.0x8071f089b3810000.0x5c96fa98db8200.0x8000000040a00000 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x382e00000.0x805c96fab0e38200.0x731180a8356080.0x80000000c0a00000 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbf79aca0.0x80731180aa3a6080.0x4197d78400000000.0x800000004cbebc20 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x3bf19aca0.0xc197d78400000000.0xc197d78400000000.0x80000000ccbebc20 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x4197d78400000000.0x416312d000000000.0xbff0000000000000 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc014000000000000.0xc16312d000000000.0xc16312d020000000.0x3ff0000000000000 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fe0000000000000.0x416312cfe0000000.0x417312d010000000.0xbfb999999999999a ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff8000000000000.0xc17312cff0000000.0xc17312d00199999a.0x3fb999999999999a ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4000000000000000.0x417312cffe666667.0x41b1e1a30019999a.0xbfc999999999999a ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbff199999999999a.0xc1b1e1a2ffe66666.0xc1b1e1a300333333.0x3fc999999999999a ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x402e333333333333.0x41b1e1a2ffcccccd.0x41bdcd6500333333.0xc008000000000000 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc02e666666666666.0xc1bdcd64ffcccccd.0xc1bdcd6503000000.0x4008000000000000 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4039333333333333.0x41bdcd64fd000000.0x4341c37937e08002.0xc014000000000000 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc03c000000000000.0xc341c37937e07ffe.0xc341c37937e08002.0x4014000000000000 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd6503000000.0x4341c37937e07ffe.0x4014000000000000.0xc197d78400000000 ++vnmsd 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc1bdcd6505000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x4197d78400000000.0x0.0x0 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xf286e690fe53a8fe.0x0.0x70debc9a78563412 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x7286e690fe53a8fe.0x13de4e3f1c71c703.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x93de4e3f1c71c703.0x70debc9a78563412.0x923456789abcdef0.0x0 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x800000003f800000.0x80000000bf800000 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x5705b50c1b12d0.0x80000000bf800000.0x800000003dcccccd ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x805705b5140b12d0.0x71ad2f4106c4b4.0x800000003dcccccd.0x80000000bdcccccd ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x8071ad2f4702c4b4.0x57356414364603.0x80000000bdcccccd.0x800000003e4ccccd ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x805735641befdf9d.0x71b91b030d9181.0x800000003e4ccccd.0x80000000be4ccccd ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x8071b91b08fbf7e7.0x57ef5b801b3333.0x80000000be4ccccd.0x8000000040400000 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x8057ef5b87e4cccd.0x71e798de06cccd.0x8000000040400000.0x80000000c0400000 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x8071e798e3f93333.0x58131ec5fc0000.0x80000000c0400000.0x8000000040a00000 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x8058131ece040000.0x71f089af7f0000.0x8000000040a00000.0x80000000c0a00000 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x8071f089b5810000.0x5c96faa0d58200.0x80000000c0a00000.0x800000004cbebc20 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x805c96faa8e98200.0x731180a6356080.0x800000004cbebc20.0x80000000ccbebc20 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x80731180ac3a6080.0x4197d78400000000.0x80000000ccbebc20.0xbff0000000000000 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc197d78400000000.0xc197d78400000000.0xbff0000000000000.0x3ff0000000000000 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0x416312cfe0000000.0x3ff0000000000000.0xbfb999999999999a ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc16312d020000000.0xc16312cfe0000000.0xbfb999999999999a.0x3fb999999999999a ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312d020000000.0x417312cffe666667.0x3fb999999999999a.0xbfc999999999999a ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc17312d00199999a.0xc17312cffe666667.0xbfc999999999999a.0x3fc999999999999a ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312d00199999a.0x41b1e1a2ffcccccd.0x3fc999999999999a.0xc008000000000000 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc1b1e1a300333333.0xc1b1e1a2ffcccccd.0xc008000000000000.0x4008000000000000 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a300333333.0x41bdcd64fd000000.0x4008000000000000.0xc014000000000000 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1bdcd6503000000.0xc1bdcd64fd000000.0xc014000000000000.0x4014000000000000 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd6503000000.0x4341c37937e07ffe.0x4014000000000000.0xc197d78400000000 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc341c37937e08002.0xc341c37937e07ffe.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4341c37937e08002.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x0.0x70debc9a78563412 ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x0.0x70debc9a78563412.0x923456789abcdef0 ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xf286e690fe53a8fe.0x70debc9a78563412.0x923456789abcdef0.0x0 ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x70debc9a78563412.0x923456789abcdef0.0x0.0x0 ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x923456789abcdef0.0x800000003f800000.0x80000000bf800000.0x2fb6c9d4ecd7a8ba ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x71d5b73d020000.0x80000000bf800000.0x800000003dcccccd.0x2f9deb97f7a2e72b ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x5705b5041b12d0.0x800000003dcccccd.0x80000000bdcccccd.0x2fb6d9333a13d3d4 ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x71ad2f430d9181.0x80000000bdcccccd.0x800000003e4ccccd.0x2f9edb5712ce8a46 ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x5735640c364603.0x800000003e4ccccd.0x80000000be4ccccd.0x2fb7152300debc9a ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x71b91b050b9181.0x80000000be4ccccd.0x8000000040400000.0x2f9f0971fa830b94 ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x57ef5b781b3333.0x8000000040400000.0x80000000c0400000.0x2fb720a9bacbdcee ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x71e798dfff0000.0x80000000c0400000.0x8000000040a00000.0x2fa26dc8d96fd63c ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x58131ebdfc0000.0x8000000040a00000.0x80000000c0a00000.0x2fb89531a8e30527 ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x71f089b17d8000.0x80000000c0a00000.0x800000004cbebc20.0x70debc9a78563412 ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x5c96fa98d58200.0x800000004cbebc20.0x80000000ccbebc20.0xf0debc9a78563412 ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x731180a804e590.0x80000000ccbebc20.0xbff0000000000000.0x70a896e1f9de900f ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0xbff0000000000000.0x3ff0000000000000.0xf0a896e1f9de900f ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78404000000.0x3ff0000000000000.0xbfb999999999999a.0x70b896e1f9de900f ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x416312d020000000.0xbfb999999999999a.0x3fb999999999999a.0xf0b896e1f9de900f ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc16312d003333333.0x3fb999999999999a.0xbfc999999999999a.0x70f70d73da40a70e ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x417312d00199999a.0xbfc999999999999a.0x3fc999999999999a.0xf0f70d73da40a70e ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc17312d003333333.0x3fc999999999999a.0xc008000000000000.0x710335e08b35e08b ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x41b1e1a300333333.0xc008000000000000.0x4008000000000000.0xf10335e08b35e08b ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc1b1e1a303000000.0x4008000000000000.0xc014000000000000.0x7286e690fe53a8fe ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x41bdcd6503000000.0xc014000000000000.0x4014000000000000.0xf286e690fe53a8fe ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc1bdcd6505000000.0x4014000000000000.0xc197d78400000000.0x4197d78400000000 ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4341c37937e08002.0xc197d78400000000.0x4197d78400000000.0x8000000000000000 ++vnmsd 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc341c3793adb7080.0x4197d78400000000.0x8000000000000000.0xfff0000000000000 ++=== Running test on vfseleq=== ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xf0debc9a78563412.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x123456789abcdef0.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3f800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbf800000.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3dcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbdcccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3e4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbe4ccccd.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x40400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc0400000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x40a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc0a00000.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4cbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xccbebc20.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbfc999999999999a.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc008000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc014000000000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc197d78400000000.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfseleq 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x123456789abcdef0 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x3f800000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xbf800000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x3dcccccd ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0xbdcccccd ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0x3e4ccccd ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0xbe4ccccd ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0x40400000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0xc0400000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0x40a00000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0xc0a00000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0x4cbebc20 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0xccbebc20 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0x3ff0000000000000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0xbff0000000000000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0x3fb999999999999a ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0xbfb999999999999a ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0x3fc999999999999a ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0xbfc999999999999a ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0x4008000000000000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0xc008000000000000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0x4014000000000000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0xc014000000000000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0x4197d78400000000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0xc197d78400000000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0x0 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x8000000000000000 ++vfseleq 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xf0debc9a78563412 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x123456789abcdef0.0x3f800000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0x3f800000.0xbf800000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0xbf800000.0x3dcccccd ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3dcccccd.0xbdcccccd ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbdcccccd.0x3e4ccccd ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3e4ccccd.0xbe4ccccd ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbe4ccccd.0x40400000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x40400000.0xc0400000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xc0400000.0x40a00000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40a00000.0xc0a00000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0a00000.0x4cbebc20 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x4cbebc20.0xccbebc20 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xccbebc20.0x3ff0000000000000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x3ff0000000000000.0xbff0000000000000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xbff0000000000000.0x3fb999999999999a ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3fb999999999999a.0xbfb999999999999a ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbfb999999999999a.0x3fc999999999999a ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fc999999999999a.0xbfc999999999999a ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x4008000000000000.0xc008000000000000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xc008000000000000.0x4014000000000000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4014000000000000.0xc014000000000000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc014000000000000.0x4197d78400000000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4197d78400000000.0xc197d78400000000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc197d78400000000.0x0 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x0.0x8000000000000000 ++vfseleq 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0x8000000000000000.0xf0debc9a78563412 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x8000000000000000.0xf0debc9a78563412.0xf0debc9a78563412 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0xf0debc9a78563412.0x123456789abcdef0.0x123456789abcdef0 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x123456789abcdef0.0x3f800000.0x3f800000 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x3f800000.0xbf800000.0xbf800000 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0xbf800000.0x3dcccccd.0x3dcccccd ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x3dcccccd.0xbdcccccd.0xbdcccccd ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0xbdcccccd.0x3e4ccccd.0x3e4ccccd ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x3e4ccccd.0xbe4ccccd.0xbe4ccccd ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0xbe4ccccd.0x40400000.0x40400000 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x40400000.0xc0400000.0xc0400000 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0xc0400000.0x40a00000.0x40a00000 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x40a00000.0xc0a00000.0xc0a00000 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0xc0a00000.0x4cbebc20.0x4cbebc20 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x4cbebc20.0xccbebc20.0xccbebc20 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0xccbebc20.0x3ff0000000000000.0x3ff0000000000000 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x3ff0000000000000.0xbff0000000000000.0xbff0000000000000 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xbff0000000000000.0x3fb999999999999a.0x3fb999999999999a ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0xbfb999999999999a ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbfb999999999999a.0x3fc999999999999a.0x3fc999999999999a ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0xbfc999999999999a ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfc999999999999a.0x4008000000000000.0x4008000000000000 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x4008000000000000.0xc008000000000000.0xc008000000000000 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xc008000000000000.0x4014000000000000.0x4014000000000000 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4014000000000000.0xc014000000000000.0xc014000000000000 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc014000000000000.0x4197d78400000000.0x4197d78400000000 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4197d78400000000.0xc197d78400000000.0xc197d78400000000 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc197d78400000000.0x0.0x0 ++vfseleq 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x0.0x8000000000000000.0x8000000000000000 ++=== Running test on vfsellt=== ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfsellt 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x8000000000000000.0x123456789abcdef0.0x3f800000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xf0debc9a78563412.0x3f800000.0xbf800000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x123456789abcdef0.0xbf800000.0x3dcccccd ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0x3f800000.0x3dcccccd.0xbdcccccd ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0xbf800000.0xbdcccccd.0x3e4ccccd ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0x3dcccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0xbdcccccd.0xbe4ccccd.0x40400000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0x3e4ccccd.0x40400000.0xc0400000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0xbe4ccccd.0xc0400000.0x40a00000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0x40400000.0x40a00000.0xc0a00000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0xc0400000.0xc0a00000.0x4cbebc20 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0x40a00000.0x4cbebc20.0xccbebc20 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0xc0a00000.0xccbebc20.0x3ff0000000000000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0x4cbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0xccbebc20.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xbff0000000000000.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0x4008000000000000.0xc008000000000000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0xc008000000000000.0x4014000000000000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x4008000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xc008000000000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x4014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xc014000000000000.0xc197d78400000000.0x0 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x4197d78400000000.0x0.0x8000000000000000 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xc197d78400000000.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x8000000000000000.0x3f800000.0xbf800000.0x3dcccccd ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xf0debc9a78563412.0xbf800000.0x3dcccccd.0xbdcccccd ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x123456789abcdef0.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3f800000.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbf800000.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3dcccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbdcccccd.0x40400000.0xc0400000.0x40a00000 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3e4ccccd.0xc0400000.0x40a00000.0xc0a00000 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbe4ccccd.0x40a00000.0xc0a00000.0x4cbebc20 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40400000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0400000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40a00000.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0a00000.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4cbebc20.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xccbebc20.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbff0000000000000.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfb999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbfc999999999999a.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc008000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4014000000000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc014000000000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4197d78400000000.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc197d78400000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfsellt 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfsellt 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfsellt 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfsellt 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfsellt 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfsellt 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfsellt 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfsellt 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfsellt 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfsellt 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0x123456789abcdef0 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3f800000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbf800000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3dcccccd ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbdcccccd ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x3e4ccccd ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xbe4ccccd ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x40400000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc0400000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x40a00000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc0a00000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x4cbebc20 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0xccbebc20 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0x3ff0000000000000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0xbff0000000000000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3fb999999999999a ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbfb999999999999a ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3fc999999999999a ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbfc999999999999a ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x4008000000000000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xc008000000000000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x4014000000000000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc014000000000000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x4197d78400000000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc197d78400000000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x0 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0x8000000000000000 ++vfsellt 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0xf0debc9a78563412 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xf0debc9a78563412.0x3fb999999999999a ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x123456789abcdef0.0xbfb999999999999a ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0x3f800000.0x3fc999999999999a ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0xbf800000.0xbfc999999999999a ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0x3dcccccd.0x4008000000000000 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0xbdcccccd.0xc008000000000000 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0x3e4ccccd.0x4014000000000000 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0xbe4ccccd.0xc014000000000000 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0x40400000.0x4197d78400000000 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0xc0400000.0xc197d78400000000 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0x40a00000.0x0 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc0a00000.0x8000000000000000 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x4cbebc20.0xf0debc9a78563412 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xccbebc20.0x123456789abcdef0 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x3ff0000000000000.0x3f800000 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0xbff0000000000000.0xbf800000 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0x3fb999999999999a.0x3dcccccd ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0xbfb999999999999a.0xbdcccccd ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0x3fc999999999999a.0x3e4ccccd ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0xbfc999999999999a.0xbe4ccccd ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0x4008000000000000.0x40400000 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0xc008000000000000.0xc0400000 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0x4014000000000000.0x40a00000 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0xc014000000000000.0xc0a00000 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0x4197d78400000000.0x4cbebc20 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0xc197d78400000000.0xccbebc20 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0x0.0x3ff0000000000000 ++vfsellt 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x8000000000000000.0xbff0000000000000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x8000000000000000.0x3fb999999999999a.0x123456789abcdef0 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xf0debc9a78563412.0xbfb999999999999a.0x3f800000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x123456789abcdef0.0x3fc999999999999a.0xbf800000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3f800000.0xbfc999999999999a.0x3dcccccd ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbf800000.0x4008000000000000.0xbdcccccd ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x3dcccccd.0xc008000000000000.0x3e4ccccd ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xbdcccccd.0x4014000000000000.0xbe4ccccd ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x3e4ccccd.0xc014000000000000.0x40400000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xbe4ccccd.0x4197d78400000000.0xc0400000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x40400000.0xc197d78400000000.0x40a00000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc0400000.0x0.0xc0a00000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x40a00000.0x8000000000000000.0x4cbebc20 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0xc0a00000.0xf0debc9a78563412.0xccbebc20 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x4cbebc20.0x123456789abcdef0.0x3ff0000000000000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xccbebc20.0x3f800000.0xbff0000000000000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3ff0000000000000.0xbf800000.0x3fb999999999999a ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbff0000000000000.0x3dcccccd.0xbfb999999999999a ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3fb999999999999a.0xbdcccccd.0x3fc999999999999a ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbfb999999999999a.0x3e4ccccd.0xbfc999999999999a ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3fc999999999999a.0xbe4ccccd.0x4008000000000000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbfc999999999999a.0x40400000.0xc008000000000000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x4008000000000000.0xc0400000.0x4014000000000000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc008000000000000.0x40a00000.0xc014000000000000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x4014000000000000.0xc0a00000.0x4197d78400000000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc014000000000000.0x4cbebc20.0xc197d78400000000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4197d78400000000.0xccbebc20.0x0 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xc197d78400000000.0x3ff0000000000000.0x8000000000000000 ++vfsellt 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x0.0xbff0000000000000.0xf0debc9a78563412 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x3fb999999999999a.0xf0debc9a78563412.0x3fc999999999999a ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x8000000000000000.0xbfb999999999999a.0x123456789abcdef0.0xbfc999999999999a ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xf0debc9a78563412.0x3fc999999999999a.0x3f800000.0x4008000000000000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x123456789abcdef0.0xbfc999999999999a.0xbf800000.0xc008000000000000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3f800000.0x4008000000000000.0x3dcccccd.0x4014000000000000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbf800000.0xc008000000000000.0xbdcccccd.0xc014000000000000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3dcccccd.0x4014000000000000.0x3e4ccccd.0x4197d78400000000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbdcccccd.0xc014000000000000.0xbe4ccccd.0xc197d78400000000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3e4ccccd.0x4197d78400000000.0x40400000.0x0 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbe4ccccd.0xc197d78400000000.0xc0400000.0x8000000000000000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x40400000.0x0.0x40a00000.0xf0debc9a78563412 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0400000.0x8000000000000000.0xc0a00000.0x123456789abcdef0 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40a00000.0xf0debc9a78563412.0x4cbebc20.0x3f800000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0a00000.0x123456789abcdef0.0xccbebc20.0xbf800000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4cbebc20.0x3f800000.0x3ff0000000000000.0x3dcccccd ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xccbebc20.0xbf800000.0xbff0000000000000.0xbdcccccd ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0x3dcccccd.0x3fb999999999999a.0x3e4ccccd ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbff0000000000000.0xbdcccccd.0xbfb999999999999a.0xbe4ccccd ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb999999999999a.0x3e4ccccd.0x3fc999999999999a.0x40400000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb999999999999a.0xbe4ccccd.0xbfc999999999999a.0xc0400000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc999999999999a.0x40400000.0x4008000000000000.0x40a00000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc999999999999a.0xc0400000.0xc008000000000000.0xc0a00000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x40a00000.0x4014000000000000.0x4cbebc20 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc008000000000000.0xc0a00000.0xc014000000000000.0xccbebc20 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x4cbebc20.0x4197d78400000000.0x3ff0000000000000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc014000000000000.0xccbebc20.0xc197d78400000000.0xbff0000000000000 ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0x3ff0000000000000.0x0.0x3fb999999999999a ++vfsellt 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78400000000.0xbff0000000000000.0x8000000000000000.0xbfb999999999999a ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x8000000000000000.0x3fc999999999999a.0x123456789abcdef0 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xf0debc9a78563412.0xbfc999999999999a.0x3f800000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x123456789abcdef0.0x4008000000000000.0xbf800000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x3f800000.0xc008000000000000.0x3dcccccd ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xbf800000.0x4014000000000000.0xbdcccccd ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x3dcccccd.0xc014000000000000.0x3e4ccccd ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xbdcccccd.0x4197d78400000000.0xbe4ccccd ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x3e4ccccd.0xc197d78400000000.0x40400000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xbe4ccccd.0x0.0xc0400000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x40400000.0x8000000000000000.0x40a00000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0xc0400000.0xf0debc9a78563412.0xc0a00000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x40a00000.0x123456789abcdef0.0x4cbebc20 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xc0a00000.0x3f800000.0xccbebc20 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x4cbebc20.0xbf800000.0x3ff0000000000000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xccbebc20.0x3dcccccd.0xbff0000000000000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3ff0000000000000.0xbdcccccd.0x3fb999999999999a ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbff0000000000000.0x3e4ccccd.0xbfb999999999999a ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3fb999999999999a.0xbe4ccccd.0x3fc999999999999a ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbfb999999999999a.0x40400000.0xbfc999999999999a ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x3fc999999999999a.0xc0400000.0x4008000000000000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xbfc999999999999a.0x40a00000.0xc008000000000000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x4008000000000000.0xc0a00000.0x4014000000000000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc008000000000000.0x4cbebc20.0xc014000000000000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4014000000000000.0xccbebc20.0x4197d78400000000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xc014000000000000.0x3ff0000000000000.0xc197d78400000000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x4197d78400000000.0xbff0000000000000.0x0 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xc197d78400000000.0x3fb999999999999a.0x8000000000000000 ++vfsellt 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x0.0xbfb999999999999a.0xf0debc9a78563412 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x3fc999999999999a.0xf0debc9a78563412.0x4008000000000000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x8000000000000000.0xbfc999999999999a.0x123456789abcdef0.0xc008000000000000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xf0debc9a78563412.0x4008000000000000.0x3f800000.0x4014000000000000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x123456789abcdef0.0xc008000000000000.0xbf800000.0xc014000000000000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3f800000.0x4014000000000000.0x3dcccccd.0x4197d78400000000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbf800000.0xc014000000000000.0xbdcccccd.0xc197d78400000000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3dcccccd.0x4197d78400000000.0x3e4ccccd.0x0 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbdcccccd.0xc197d78400000000.0xbe4ccccd.0x8000000000000000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3e4ccccd.0x0.0x40400000.0xf0debc9a78563412 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbe4ccccd.0x8000000000000000.0xc0400000.0x123456789abcdef0 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40400000.0xf0debc9a78563412.0x40a00000.0x3f800000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0400000.0x123456789abcdef0.0xc0a00000.0xbf800000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x40a00000.0x3f800000.0x4cbebc20.0x3dcccccd ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc0a00000.0xbf800000.0xccbebc20.0xbdcccccd ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4cbebc20.0x3dcccccd.0x3ff0000000000000.0x3e4ccccd ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xccbebc20.0xbdcccccd.0xbff0000000000000.0xbe4ccccd ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff0000000000000.0x3e4ccccd.0x3fb999999999999a.0x40400000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbff0000000000000.0xbe4ccccd.0xbfb999999999999a.0xc0400000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fb999999999999a.0x40400000.0x3fc999999999999a.0x40a00000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfb999999999999a.0xc0400000.0xbfc999999999999a.0xc0a00000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fc999999999999a.0x40a00000.0x4008000000000000.0x4cbebc20 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfc999999999999a.0xc0a00000.0xc008000000000000.0xccbebc20 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4008000000000000.0x4cbebc20.0x4014000000000000.0x3ff0000000000000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc008000000000000.0xccbebc20.0xc014000000000000.0xbff0000000000000 ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4014000000000000.0x3ff0000000000000.0x4197d78400000000.0x3fb999999999999a ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc014000000000000.0xbff0000000000000.0xc197d78400000000.0xbfb999999999999a ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4197d78400000000.0x3fb999999999999a.0x0.0x3fc999999999999a ++vfsellt 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc197d78400000000.0xbfb999999999999a.0x8000000000000000.0xbfc999999999999a ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x8000000000000000.0x4008000000000000.0x123456789abcdef0 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xf0debc9a78563412.0xc008000000000000.0x3f800000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x123456789abcdef0.0x4014000000000000.0xbf800000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x3f800000.0xc014000000000000.0x3dcccccd ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xbf800000.0x4197d78400000000.0xbdcccccd ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x3dcccccd.0xc197d78400000000.0x3e4ccccd ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xbdcccccd.0x0.0xbe4ccccd ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x3e4ccccd.0x8000000000000000.0x40400000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0xbe4ccccd.0xf0debc9a78563412.0xc0400000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x40400000.0x123456789abcdef0.0x40a00000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xc0400000.0x3f800000.0xc0a00000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x40a00000.0xbf800000.0x4cbebc20 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xc0a00000.0x3dcccccd.0xccbebc20 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x4cbebc20.0xbdcccccd.0x3ff0000000000000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xccbebc20.0x3e4ccccd.0xbff0000000000000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3ff0000000000000.0xbe4ccccd.0x3fb999999999999a ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbff0000000000000.0x40400000.0xbfb999999999999a ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x3fb999999999999a.0xc0400000.0x3fc999999999999a ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xbfb999999999999a.0x40a00000.0xbfc999999999999a ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x3fc999999999999a.0xc0a00000.0x4008000000000000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xbfc999999999999a.0x4cbebc20.0xc008000000000000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4008000000000000.0xccbebc20.0x4014000000000000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xc008000000000000.0x3ff0000000000000.0xc014000000000000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x4014000000000000.0xbff0000000000000.0x4197d78400000000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xc014000000000000.0x3fb999999999999a.0xc197d78400000000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x4197d78400000000.0xbfb999999999999a.0x0 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xc197d78400000000.0x3fc999999999999a.0x8000000000000000 ++vfsellt 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x0.0xbfc999999999999a.0xf0debc9a78563412 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4008000000000000.0xf0debc9a78563412.0x4014000000000000 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000000.0xc008000000000000.0x123456789abcdef0.0xc014000000000000 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xf0debc9a78563412.0x4014000000000000.0x3f800000.0x4197d78400000000 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x123456789abcdef0.0xc014000000000000.0xbf800000.0xc197d78400000000 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3f800000.0x4197d78400000000.0x3dcccccd.0x0 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbf800000.0xc197d78400000000.0xbdcccccd.0x8000000000000000 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3dcccccd.0x0.0x3e4ccccd.0xf0debc9a78563412 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbdcccccd.0x8000000000000000.0xbe4ccccd.0x123456789abcdef0 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3e4ccccd.0xf0debc9a78563412.0x40400000.0x3f800000 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xbe4ccccd.0x123456789abcdef0.0xc0400000.0xbf800000 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x40400000.0x3f800000.0x40a00000.0x3dcccccd ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc0400000.0xbf800000.0xc0a00000.0xbdcccccd ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x40a00000.0x3dcccccd.0x4cbebc20.0x3e4ccccd ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc0a00000.0xbdcccccd.0xccbebc20.0xbe4ccccd ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4cbebc20.0x3e4ccccd.0x3ff0000000000000.0x40400000 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xccbebc20.0xbe4ccccd.0xbff0000000000000.0xc0400000 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff0000000000000.0x40400000.0x3fb999999999999a.0x40a00000 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbff0000000000000.0xc0400000.0xbfb999999999999a.0xc0a00000 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fb999999999999a.0x40a00000.0x3fc999999999999a.0x4cbebc20 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfb999999999999a.0xc0a00000.0xbfc999999999999a.0xccbebc20 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fc999999999999a.0x4cbebc20.0x4008000000000000.0x3ff0000000000000 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfc999999999999a.0xccbebc20.0xc008000000000000.0xbff0000000000000 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4008000000000000.0x3ff0000000000000.0x4014000000000000.0x3fb999999999999a ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc008000000000000.0xbff0000000000000.0xc014000000000000.0xbfb999999999999a ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4014000000000000.0x3fb999999999999a.0x4197d78400000000.0x3fc999999999999a ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc014000000000000.0xbfb999999999999a.0xc197d78400000000.0xbfc999999999999a ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4197d78400000000.0x3fc999999999999a.0x0.0x4008000000000000 ++vfsellt 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc197d78400000000.0xbfc999999999999a.0x8000000000000000.0xc008000000000000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x8000000000000000.0x4014000000000000.0x123456789abcdef0 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xf0debc9a78563412.0xc014000000000000.0x3f800000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x123456789abcdef0.0x4197d78400000000.0xbf800000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x3f800000.0xc197d78400000000.0x3dcccccd ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xbf800000.0x0.0xbdcccccd ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x3dcccccd.0x8000000000000000.0x3e4ccccd ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0xbdcccccd.0xf0debc9a78563412.0xbe4ccccd ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x3e4ccccd.0x123456789abcdef0.0x40400000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xbe4ccccd.0x3f800000.0xc0400000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x40400000.0xbf800000.0x40a00000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xc0400000.0x3dcccccd.0xc0a00000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x40a00000.0xbdcccccd.0x4cbebc20 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xc0a00000.0x3e4ccccd.0xccbebc20 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x4cbebc20.0xbe4ccccd.0x3ff0000000000000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xccbebc20.0x40400000.0xbff0000000000000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x3ff0000000000000.0xc0400000.0x3fb999999999999a ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xbff0000000000000.0x40a00000.0xbfb999999999999a ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x3fb999999999999a.0xc0a00000.0x3fc999999999999a ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xbfb999999999999a.0x4cbebc20.0xbfc999999999999a ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x3fc999999999999a.0xccbebc20.0x4008000000000000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xbfc999999999999a.0x3ff0000000000000.0xc008000000000000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x4008000000000000.0xbff0000000000000.0x4014000000000000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xc008000000000000.0x3fb999999999999a.0xc014000000000000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x4014000000000000.0xbfb999999999999a.0x4197d78400000000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xc014000000000000.0x3fc999999999999a.0xc197d78400000000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x4197d78400000000.0xbfc999999999999a.0x0 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xc197d78400000000.0x4008000000000000.0x8000000000000000 ++vfsellt 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x0.0xc008000000000000.0xf0debc9a78563412 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4014000000000000.0xf0debc9a78563412.0x4197d78400000000 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x8000000000000000.0xc014000000000000.0x123456789abcdef0.0xc197d78400000000 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xf0debc9a78563412.0x4197d78400000000.0x3f800000.0x0 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x123456789abcdef0.0xc197d78400000000.0xbf800000.0x8000000000000000 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3f800000.0x0.0x3dcccccd.0xf0debc9a78563412 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbf800000.0x8000000000000000.0xbdcccccd.0x123456789abcdef0 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3dcccccd.0xf0debc9a78563412.0x3e4ccccd.0x3f800000 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xbdcccccd.0x123456789abcdef0.0xbe4ccccd.0xbf800000 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3e4ccccd.0x3f800000.0x40400000.0x3dcccccd ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbe4ccccd.0xbf800000.0xc0400000.0xbdcccccd ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x40400000.0x3dcccccd.0x40a00000.0x3e4ccccd ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc0400000.0xbdcccccd.0xc0a00000.0xbe4ccccd ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x40a00000.0x3e4ccccd.0x4cbebc20.0x40400000 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc0a00000.0xbe4ccccd.0xccbebc20.0xc0400000 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4cbebc20.0x40400000.0x3ff0000000000000.0x40a00000 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xccbebc20.0xc0400000.0xbff0000000000000.0xc0a00000 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3ff0000000000000.0x40a00000.0x3fb999999999999a.0x4cbebc20 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbff0000000000000.0xc0a00000.0xbfb999999999999a.0xccbebc20 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fb999999999999a.0x4cbebc20.0x3fc999999999999a.0x3ff0000000000000 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfb999999999999a.0xccbebc20.0xbfc999999999999a.0xbff0000000000000 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fc999999999999a.0x3ff0000000000000.0x4008000000000000.0x3fb999999999999a ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfc999999999999a.0xbff0000000000000.0xc008000000000000.0xbfb999999999999a ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4008000000000000.0x3fb999999999999a.0x4014000000000000.0x3fc999999999999a ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc008000000000000.0xbfb999999999999a.0xc014000000000000.0xbfc999999999999a ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4014000000000000.0x3fc999999999999a.0x4197d78400000000.0x4008000000000000 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc014000000000000.0xbfc999999999999a.0xc197d78400000000.0xc008000000000000 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4197d78400000000.0x4008000000000000.0x0.0x4014000000000000 ++vfsellt 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc197d78400000000.0xc008000000000000.0x8000000000000000.0xc014000000000000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x8000000000000000.0x4197d78400000000.0x123456789abcdef0 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xf0debc9a78563412.0xc197d78400000000.0x3f800000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x123456789abcdef0.0x0.0xbf800000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x3f800000.0x8000000000000000.0x3dcccccd ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0xbf800000.0xf0debc9a78563412.0xbdcccccd ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x3dcccccd.0x123456789abcdef0.0x3e4ccccd ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xbdcccccd.0x3f800000.0xbe4ccccd ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3e4ccccd.0xbf800000.0x40400000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbe4ccccd.0x3dcccccd.0xc0400000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x40400000.0xbdcccccd.0x40a00000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xc0400000.0x3e4ccccd.0xc0a00000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x40a00000.0xbe4ccccd.0x4cbebc20 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xc0a00000.0x40400000.0xccbebc20 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x4cbebc20.0xc0400000.0x3ff0000000000000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xccbebc20.0x40a00000.0xbff0000000000000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x3ff0000000000000.0xc0a00000.0x3fb999999999999a ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xbff0000000000000.0x4cbebc20.0xbfb999999999999a ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x3fb999999999999a.0xccbebc20.0x3fc999999999999a ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xbfb999999999999a.0x3ff0000000000000.0xbfc999999999999a ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3fc999999999999a.0xbff0000000000000.0x4008000000000000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbfc999999999999a.0x3fb999999999999a.0xc008000000000000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x4008000000000000.0xbfb999999999999a.0x4014000000000000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xc008000000000000.0x3fc999999999999a.0xc014000000000000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x4014000000000000.0xbfc999999999999a.0x4197d78400000000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xc014000000000000.0x4008000000000000.0xc197d78400000000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4197d78400000000.0xc008000000000000.0x0 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc197d78400000000.0x4014000000000000.0x8000000000000000 ++vfsellt 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x0.0xc014000000000000.0xf0debc9a78563412 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4197d78400000000.0xf0debc9a78563412.0x0 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x8000000000000000.0xc197d78400000000.0x123456789abcdef0.0x8000000000000000 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xf0debc9a78563412.0x0.0x3f800000.0xf0debc9a78563412 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x123456789abcdef0.0x8000000000000000.0xbf800000.0x123456789abcdef0 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3f800000.0xf0debc9a78563412.0x3dcccccd.0x3f800000 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xbf800000.0x123456789abcdef0.0xbdcccccd.0xbf800000 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3dcccccd.0x3f800000.0x3e4ccccd.0x3dcccccd ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbdcccccd.0xbf800000.0xbe4ccccd.0xbdcccccd ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3e4ccccd.0x3dcccccd.0x40400000.0x3e4ccccd ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbe4ccccd.0xbdcccccd.0xc0400000.0xbe4ccccd ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x40400000.0x3e4ccccd.0x40a00000.0x40400000 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc0400000.0xbe4ccccd.0xc0a00000.0xc0400000 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x40a00000.0x40400000.0x4cbebc20.0x40a00000 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc0a00000.0xc0400000.0xccbebc20.0xc0a00000 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4cbebc20.0x40a00000.0x3ff0000000000000.0x4cbebc20 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xccbebc20.0xc0a00000.0xbff0000000000000.0xccbebc20 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3ff0000000000000.0x4cbebc20.0x3fb999999999999a.0x3ff0000000000000 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbff0000000000000.0xccbebc20.0xbfb999999999999a.0xbff0000000000000 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fb999999999999a.0x3ff0000000000000.0x3fc999999999999a.0x3fb999999999999a ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfb999999999999a.0xbff0000000000000.0xbfc999999999999a.0xbfb999999999999a ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fc999999999999a.0x3fb999999999999a.0x4008000000000000.0x3fc999999999999a ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfc999999999999a.0xbfb999999999999a.0xc008000000000000.0xbfc999999999999a ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4008000000000000.0x3fc999999999999a.0x4014000000000000.0x4008000000000000 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc008000000000000.0xbfc999999999999a.0xc014000000000000.0xc008000000000000 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4014000000000000.0x4008000000000000.0x4197d78400000000.0x4014000000000000 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc014000000000000.0xc008000000000000.0xc197d78400000000.0xc014000000000000 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4197d78400000000.0x4014000000000000.0x0.0x4197d78400000000 ++vfsellt 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc197d78400000000.0xc014000000000000.0x8000000000000000.0xc197d78400000000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x8000000000000000.0x0.0x8000000000000000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xf0debc9a78563412.0x8000000000000000.0xf0debc9a78563412 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x123456789abcdef0.0xf0debc9a78563412.0x123456789abcdef0 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x3f800000.0x123456789abcdef0.0x3f800000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xbf800000.0x3f800000.0xbf800000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3dcccccd.0xbf800000.0x3dcccccd ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbdcccccd.0x3dcccccd.0xbdcccccd ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3e4ccccd.0xbdcccccd.0x3e4ccccd ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbe4ccccd.0x3e4ccccd.0xbe4ccccd ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x40400000.0xbe4ccccd.0x40400000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xc0400000.0x40400000.0xc0400000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40a00000.0xc0400000.0x40a00000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0a00000.0x40a00000.0xc0a00000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x4cbebc20.0xc0a00000.0x4cbebc20 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xccbebc20.0x4cbebc20.0xccbebc20 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x3ff0000000000000.0xccbebc20.0x3ff0000000000000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xbff0000000000000.0x3ff0000000000000.0xbff0000000000000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3fb999999999999a.0xbff0000000000000.0x3fb999999999999a ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fb999999999999a.0xbfb999999999999a ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fc999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfc999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x4008000000000000.0xbfc999999999999a.0x4008000000000000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4008000000000000.0xc008000000000000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4014000000000000.0xc008000000000000.0x4014000000000000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc014000000000000.0x4014000000000000.0xc014000000000000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4197d78400000000.0xc014000000000000.0x4197d78400000000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc197d78400000000.0x4197d78400000000.0xc197d78400000000 ++vfsellt 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x0.0xc197d78400000000.0x0 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x0.0x8000000000000000.0x123456789abcdef0 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0x8000000000000000.0xf0debc9a78563412.0x3f800000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xf0debc9a78563412.0xf0debc9a78563412.0x123456789abcdef0.0xbf800000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x123456789abcdef0.0x123456789abcdef0.0x3f800000.0x3dcccccd ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3f800000.0x3f800000.0xbf800000.0xbdcccccd ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbf800000.0xbf800000.0x3dcccccd.0x3e4ccccd ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3dcccccd.0x3dcccccd.0xbdcccccd.0xbe4ccccd ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbdcccccd.0xbdcccccd.0x3e4ccccd.0x40400000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3e4ccccd.0x3e4ccccd.0xbe4ccccd.0xc0400000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbe4ccccd.0xbe4ccccd.0x40400000.0x40a00000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x40400000.0x40400000.0xc0400000.0xc0a00000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc0400000.0xc0400000.0x40a00000.0x4cbebc20 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x40a00000.0x40a00000.0xc0a00000.0xccbebc20 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc0a00000.0xc0a00000.0x4cbebc20.0x3ff0000000000000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4cbebc20.0x4cbebc20.0xccbebc20.0xbff0000000000000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xccbebc20.0xccbebc20.0x3ff0000000000000.0x3fb999999999999a ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3ff0000000000000.0x3ff0000000000000.0xbff0000000000000.0xbfb999999999999a ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0xbff0000000000000.0x3fb999999999999a.0x3fc999999999999a ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fb999999999999a.0x3fb999999999999a.0xbfb999999999999a.0xbfc999999999999a ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0x4008000000000000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fc999999999999a.0x3fc999999999999a.0xbfc999999999999a.0xc008000000000000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0xbfc999999999999a.0x4008000000000000.0x4014000000000000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4008000000000000.0x4008000000000000.0xc008000000000000.0xc014000000000000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0xc008000000000000.0x4014000000000000.0x4197d78400000000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4014000000000000.0x4014000000000000.0xc014000000000000.0xc197d78400000000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0xc014000000000000.0x4197d78400000000.0x0 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4197d78400000000.0x4197d78400000000.0xc197d78400000000.0x8000000000000000 ++vfsellt 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0xc197d78400000000.0x0.0xf0debc9a78563412 ++=== Running test on vfselle=== ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x0.0x8000000000000000.0x123456789abcdef0.0x3f800000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x8000000000000000.0xf0debc9a78563412.0x3f800000.0xbf800000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0xf0debc9a78563412.0x123456789abcdef0.0xbf800000.0x3dcccccd ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x123456789abcdef0.0x3f800000.0x3dcccccd.0xbdcccccd ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3f800000.0xbf800000.0xbdcccccd.0x3e4ccccd ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbf800000.0x3dcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3dcccccd.0xbdcccccd.0xbe4ccccd.0x40400000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbdcccccd.0x3e4ccccd.0x40400000.0xc0400000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3e4ccccd.0xbe4ccccd.0xc0400000.0x40a00000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbe4ccccd.0x40400000.0x40a00000.0xc0a00000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x40400000.0xc0400000.0xc0a00000.0x4cbebc20 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc0400000.0x40a00000.0x4cbebc20.0xccbebc20 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x40a00000.0xc0a00000.0xccbebc20.0x3ff0000000000000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc0a00000.0x4cbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4cbebc20.0xccbebc20.0xbff0000000000000.0x3fb999999999999a ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xccbebc20.0x3ff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3ff0000000000000.0xbff0000000000000.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fb999999999999a.0xbfb999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0xc008000000000000.0x4014000000000000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbfc999999999999a.0x4008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4008000000000000.0xc008000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc008000000000000.0x4014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4014000000000000.0xc014000000000000.0xc197d78400000000.0x0 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc014000000000000.0x4197d78400000000.0x0.0x8000000000000000 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x4197d78400000000.0xc197d78400000000.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc197d78400000000.0x0.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x0.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x8000000000000000.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xf0debc9a78563412.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x123456789abcdef0.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3f800000.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbf800000.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3dcccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbdcccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x3e4ccccd.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xbe4ccccd.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40400000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0400000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x40a00000.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xc0a00000.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x4cbebc20.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xccbebc20.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbff0000000000000.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fb999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfb999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xbfc999999999999a.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4008000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc008000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4014000000000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc014000000000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x4197d78400000000.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xc197d78400000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0x123456789abcdef0 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3f800000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbf800000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3dcccccd ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbdcccccd ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x3e4ccccd ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xbe4ccccd ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x40400000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc0400000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x40a00000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc0a00000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x4cbebc20 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0x0.0xccbebc20 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x8000000000000000.0x3ff0000000000000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xf0debc9a78563412.0xbff0000000000000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3fb999999999999a ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbfb999999999999a ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3fc999999999999a ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbfc999999999999a ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x4008000000000000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xc008000000000000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x4014000000000000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc014000000000000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0xc0400000.0x4197d78400000000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0x40a00000.0xc197d78400000000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0xc0a00000.0x0 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0x8000000000000000 ++vfselle 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0xccbebc20.0xf0debc9a78563412 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3ff0000000000000.0xf0debc9a78563412.0x3fb999999999999a ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x123456789abcdef0.0xbfb999999999999a ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fb999999999999a.0x3f800000.0x3fc999999999999a ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0xbf800000.0xbfc999999999999a ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3fc999999999999a.0x3dcccccd.0x4008000000000000 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0xbdcccccd.0xc008000000000000 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4008000000000000.0x3e4ccccd.0x4014000000000000 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc008000000000000.0xbe4ccccd.0xc014000000000000 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4014000000000000.0x40400000.0x4197d78400000000 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc014000000000000.0xc0400000.0xc197d78400000000 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x4197d78400000000.0x40a00000.0x0 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc197d78400000000.0xc0a00000.0x8000000000000000 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x0.0x4cbebc20.0xf0debc9a78563412 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x8000000000000000.0xccbebc20.0x123456789abcdef0 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0xf0debc9a78563412.0x3ff0000000000000.0x3f800000 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0x123456789abcdef0.0xbff0000000000000.0xbf800000 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3f800000.0x3fb999999999999a.0x3dcccccd ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbf800000.0xbfb999999999999a.0xbdcccccd ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3dcccccd.0x3fc999999999999a.0x3e4ccccd ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbdcccccd.0xbfc999999999999a.0xbe4ccccd ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3e4ccccd.0x4008000000000000.0x40400000 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbe4ccccd.0xc008000000000000.0xc0400000 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40400000.0x4014000000000000.0x40a00000 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0400000.0xc014000000000000.0xc0a00000 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x40a00000.0x4197d78400000000.0x4cbebc20 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc0a00000.0xc197d78400000000.0xccbebc20 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4cbebc20.0x0.0x3ff0000000000000 ++vfselle 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xccbebc20.0x8000000000000000.0xbff0000000000000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0x8000000000000000.0x3fb999999999999a.0x123456789abcdef0 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0xf0debc9a78563412.0xbfb999999999999a.0x3f800000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x123456789abcdef0.0x3fc999999999999a.0xbf800000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x3f800000.0xbfc999999999999a.0x3dcccccd ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xbf800000.0x4008000000000000.0xbdcccccd ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x3dcccccd.0xc008000000000000.0x3e4ccccd ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xbdcccccd.0x4014000000000000.0xbe4ccccd ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x3e4ccccd.0xc014000000000000.0x40400000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xbe4ccccd.0x4197d78400000000.0xc0400000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x40400000.0xc197d78400000000.0x40a00000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xc0400000.0x0.0xc0a00000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x40a00000.0x8000000000000000.0x4cbebc20 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0xc0a00000.0xf0debc9a78563412.0xccbebc20 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x4cbebc20.0x123456789abcdef0.0x3ff0000000000000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xccbebc20.0x3f800000.0xbff0000000000000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3ff0000000000000.0xbf800000.0x3fb999999999999a ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbff0000000000000.0x3dcccccd.0xbfb999999999999a ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3fb999999999999a.0xbdcccccd.0x3fc999999999999a ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbfb999999999999a.0x3e4ccccd.0xbfc999999999999a ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3fc999999999999a.0xbe4ccccd.0x4008000000000000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbfc999999999999a.0x40400000.0xc008000000000000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x4008000000000000.0xc0400000.0x4014000000000000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc008000000000000.0x40a00000.0xc014000000000000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x4014000000000000.0xc0a00000.0x4197d78400000000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc014000000000000.0x4cbebc20.0xc197d78400000000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4197d78400000000.0xccbebc20.0x0 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xc197d78400000000.0x3ff0000000000000.0x8000000000000000 ++vfselle 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x0.0xbff0000000000000.0xf0debc9a78563412 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x0.0x3fb999999999999a.0xf0debc9a78563412.0x3fc999999999999a ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x8000000000000000.0xbfb999999999999a.0x123456789abcdef0.0xbfc999999999999a ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xf0debc9a78563412.0x3fc999999999999a.0x3f800000.0x4008000000000000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x123456789abcdef0.0xbfc999999999999a.0xbf800000.0xc008000000000000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x3f800000.0x4008000000000000.0x3dcccccd.0x4014000000000000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xbf800000.0xc008000000000000.0xbdcccccd.0xc014000000000000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3dcccccd.0x4014000000000000.0x3e4ccccd.0x4197d78400000000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbdcccccd.0xc014000000000000.0xbe4ccccd.0xc197d78400000000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3e4ccccd.0x4197d78400000000.0x40400000.0x0 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbe4ccccd.0xc197d78400000000.0xc0400000.0x8000000000000000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x40400000.0x0.0x40a00000.0xf0debc9a78563412 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xc0400000.0x8000000000000000.0xc0a00000.0x123456789abcdef0 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40a00000.0xf0debc9a78563412.0x4cbebc20.0x3f800000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0a00000.0x123456789abcdef0.0xccbebc20.0xbf800000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x4cbebc20.0x3f800000.0x3ff0000000000000.0x3dcccccd ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xccbebc20.0xbf800000.0xbff0000000000000.0xbdcccccd ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3ff0000000000000.0x3dcccccd.0x3fb999999999999a.0x3e4ccccd ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbff0000000000000.0xbdcccccd.0xbfb999999999999a.0xbe4ccccd ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3fb999999999999a.0x3e4ccccd.0x3fc999999999999a.0x40400000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbfb999999999999a.0xbe4ccccd.0xbfc999999999999a.0xc0400000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fc999999999999a.0x40400000.0x4008000000000000.0x40a00000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfc999999999999a.0xc0400000.0xc008000000000000.0xc0a00000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4008000000000000.0x40a00000.0x4014000000000000.0x4cbebc20 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc008000000000000.0xc0a00000.0xc014000000000000.0xccbebc20 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4014000000000000.0x4cbebc20.0x4197d78400000000.0x3ff0000000000000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc014000000000000.0xccbebc20.0xc197d78400000000.0xbff0000000000000 ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4197d78400000000.0x3ff0000000000000.0x0.0x3fb999999999999a ++vfselle 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc197d78400000000.0xbff0000000000000.0x8000000000000000.0xbfb999999999999a ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0x8000000000000000.0x3fc999999999999a.0x123456789abcdef0 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0xf0debc9a78563412.0xbfc999999999999a.0x3f800000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x123456789abcdef0.0x4008000000000000.0xbf800000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x3f800000.0xc008000000000000.0x3dcccccd ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xbf800000.0x4014000000000000.0xbdcccccd ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x3dcccccd.0xc014000000000000.0x3e4ccccd ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xbdcccccd.0x4197d78400000000.0xbe4ccccd ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x3e4ccccd.0xc197d78400000000.0x40400000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xbe4ccccd.0x0.0xc0400000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x40400000.0x8000000000000000.0x40a00000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0xc0400000.0xf0debc9a78563412.0xc0a00000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x40a00000.0x123456789abcdef0.0x4cbebc20 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xc0a00000.0x3f800000.0xccbebc20 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x4cbebc20.0xbf800000.0x3ff0000000000000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xccbebc20.0x3dcccccd.0xbff0000000000000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3ff0000000000000.0xbdcccccd.0x3fb999999999999a ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbff0000000000000.0x3e4ccccd.0xbfb999999999999a ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3fb999999999999a.0xbe4ccccd.0x3fc999999999999a ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbfb999999999999a.0x40400000.0xbfc999999999999a ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x3fc999999999999a.0xc0400000.0x4008000000000000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xbfc999999999999a.0x40a00000.0xc008000000000000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x4008000000000000.0xc0a00000.0x4014000000000000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xc008000000000000.0x4cbebc20.0xc014000000000000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4014000000000000.0xccbebc20.0x4197d78400000000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xc014000000000000.0x3ff0000000000000.0xc197d78400000000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x4197d78400000000.0xbff0000000000000.0x0 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xc197d78400000000.0x3fb999999999999a.0x8000000000000000 ++vfselle 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x0.0xbfb999999999999a.0xf0debc9a78563412 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x0.0x3fc999999999999a.0xf0debc9a78563412.0x4008000000000000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x8000000000000000.0xbfc999999999999a.0x123456789abcdef0.0xc008000000000000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xf0debc9a78563412.0x4008000000000000.0x3f800000.0x4014000000000000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x123456789abcdef0.0xc008000000000000.0xbf800000.0xc014000000000000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x3f800000.0x4014000000000000.0x3dcccccd.0x4197d78400000000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xbf800000.0xc014000000000000.0xbdcccccd.0xc197d78400000000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3dcccccd.0x4197d78400000000.0x3e4ccccd.0x0 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbdcccccd.0xc197d78400000000.0xbe4ccccd.0x8000000000000000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3e4ccccd.0x0.0x40400000.0xf0debc9a78563412 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbe4ccccd.0x8000000000000000.0xc0400000.0x123456789abcdef0 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x40400000.0xf0debc9a78563412.0x40a00000.0x3f800000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xc0400000.0x123456789abcdef0.0xc0a00000.0xbf800000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x40a00000.0x3f800000.0x4cbebc20.0x3dcccccd ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc0a00000.0xbf800000.0xccbebc20.0xbdcccccd ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x4cbebc20.0x3dcccccd.0x3ff0000000000000.0x3e4ccccd ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xccbebc20.0xbdcccccd.0xbff0000000000000.0xbe4ccccd ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3ff0000000000000.0x3e4ccccd.0x3fb999999999999a.0x40400000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbff0000000000000.0xbe4ccccd.0xbfb999999999999a.0xc0400000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3fb999999999999a.0x40400000.0x3fc999999999999a.0x40a00000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbfb999999999999a.0xc0400000.0xbfc999999999999a.0xc0a00000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fc999999999999a.0x40a00000.0x4008000000000000.0x4cbebc20 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfc999999999999a.0xc0a00000.0xc008000000000000.0xccbebc20 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4008000000000000.0x4cbebc20.0x4014000000000000.0x3ff0000000000000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xc008000000000000.0xccbebc20.0xc014000000000000.0xbff0000000000000 ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4014000000000000.0x3ff0000000000000.0x4197d78400000000.0x3fb999999999999a ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc014000000000000.0xbff0000000000000.0xc197d78400000000.0xbfb999999999999a ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4197d78400000000.0x3fb999999999999a.0x0.0x3fc999999999999a ++vfselle 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc197d78400000000.0xbfb999999999999a.0x8000000000000000.0xbfc999999999999a ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0x8000000000000000.0x4008000000000000.0x123456789abcdef0 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0xf0debc9a78563412.0xc008000000000000.0x3f800000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x123456789abcdef0.0x4014000000000000.0xbf800000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x3f800000.0xc014000000000000.0x3dcccccd ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xbf800000.0x4197d78400000000.0xbdcccccd ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x3dcccccd.0xc197d78400000000.0x3e4ccccd ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xbdcccccd.0x0.0xbe4ccccd ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x3e4ccccd.0x8000000000000000.0x40400000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0xbe4ccccd.0xf0debc9a78563412.0xc0400000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x40400000.0x123456789abcdef0.0x40a00000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xc0400000.0x3f800000.0xc0a00000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x40a00000.0xbf800000.0x4cbebc20 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xc0a00000.0x3dcccccd.0xccbebc20 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x4cbebc20.0xbdcccccd.0x3ff0000000000000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xccbebc20.0x3e4ccccd.0xbff0000000000000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x3ff0000000000000.0xbe4ccccd.0x3fb999999999999a ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xbff0000000000000.0x40400000.0xbfb999999999999a ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x3fb999999999999a.0xc0400000.0x3fc999999999999a ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xbfb999999999999a.0x40a00000.0xbfc999999999999a ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x3fc999999999999a.0xc0a00000.0x4008000000000000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xbfc999999999999a.0x4cbebc20.0xc008000000000000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x4008000000000000.0xccbebc20.0x4014000000000000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xc008000000000000.0x3ff0000000000000.0xc014000000000000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x4014000000000000.0xbff0000000000000.0x4197d78400000000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xc014000000000000.0x3fb999999999999a.0xc197d78400000000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x4197d78400000000.0xbfb999999999999a.0x0 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xc197d78400000000.0x3fc999999999999a.0x8000000000000000 ++vfselle 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x0.0xbfc999999999999a.0xf0debc9a78563412 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x0.0x4008000000000000.0xf0debc9a78563412.0x4014000000000000 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x8000000000000000.0xc008000000000000.0x123456789abcdef0.0xc014000000000000 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xf0debc9a78563412.0x4014000000000000.0x3f800000.0x4197d78400000000 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x123456789abcdef0.0xc014000000000000.0xbf800000.0xc197d78400000000 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x3f800000.0x4197d78400000000.0x3dcccccd.0x0 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xbf800000.0xc197d78400000000.0xbdcccccd.0x8000000000000000 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3dcccccd.0x0.0x3e4ccccd.0xf0debc9a78563412 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbdcccccd.0x8000000000000000.0xbe4ccccd.0x123456789abcdef0 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3e4ccccd.0xf0debc9a78563412.0x40400000.0x3f800000 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xbe4ccccd.0x123456789abcdef0.0xc0400000.0xbf800000 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x40400000.0x3f800000.0x40a00000.0x3dcccccd ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xc0400000.0xbf800000.0xc0a00000.0xbdcccccd ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x40a00000.0x3dcccccd.0x4cbebc20.0x3e4ccccd ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc0a00000.0xbdcccccd.0xccbebc20.0xbe4ccccd ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x4cbebc20.0x3e4ccccd.0x3ff0000000000000.0x40400000 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xccbebc20.0xbe4ccccd.0xbff0000000000000.0xc0400000 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x3ff0000000000000.0x40400000.0x3fb999999999999a.0x40a00000 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xbff0000000000000.0xc0400000.0xbfb999999999999a.0xc0a00000 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3fb999999999999a.0x40a00000.0x3fc999999999999a.0x4cbebc20 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbfb999999999999a.0xc0a00000.0xbfc999999999999a.0xccbebc20 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fc999999999999a.0x4cbebc20.0x4008000000000000.0x3ff0000000000000 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfc999999999999a.0xccbebc20.0xc008000000000000.0xbff0000000000000 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x4008000000000000.0x3ff0000000000000.0x4014000000000000.0x3fb999999999999a ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xc008000000000000.0xbff0000000000000.0xc014000000000000.0xbfb999999999999a ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4014000000000000.0x3fb999999999999a.0x4197d78400000000.0x3fc999999999999a ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc014000000000000.0xbfb999999999999a.0xc197d78400000000.0xbfc999999999999a ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4197d78400000000.0x3fc999999999999a.0x0.0x4008000000000000 ++vfselle 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc197d78400000000.0xbfc999999999999a.0x8000000000000000.0xc008000000000000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0x8000000000000000.0x4014000000000000.0x123456789abcdef0 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0xf0debc9a78563412.0xc014000000000000.0x3f800000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x123456789abcdef0.0x4197d78400000000.0xbf800000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x3f800000.0xc197d78400000000.0x3dcccccd ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0xbf800000.0x0.0xbdcccccd ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x3dcccccd.0x8000000000000000.0x3e4ccccd ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0xbdcccccd.0xf0debc9a78563412.0xbe4ccccd ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x3e4ccccd.0x123456789abcdef0.0x40400000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xbe4ccccd.0x3f800000.0xc0400000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x40400000.0xbf800000.0x40a00000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xc0400000.0x3dcccccd.0xc0a00000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x40a00000.0xbdcccccd.0x4cbebc20 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xc0a00000.0x3e4ccccd.0xccbebc20 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x4cbebc20.0xbe4ccccd.0x3ff0000000000000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xccbebc20.0x40400000.0xbff0000000000000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x3ff0000000000000.0xc0400000.0x3fb999999999999a ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xbff0000000000000.0x40a00000.0xbfb999999999999a ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x3fb999999999999a.0xc0a00000.0x3fc999999999999a ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xbfb999999999999a.0x4cbebc20.0xbfc999999999999a ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x3fc999999999999a.0xccbebc20.0x4008000000000000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xbfc999999999999a.0x3ff0000000000000.0xc008000000000000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x4008000000000000.0xbff0000000000000.0x4014000000000000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xc008000000000000.0x3fb999999999999a.0xc014000000000000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x4014000000000000.0xbfb999999999999a.0x4197d78400000000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xc014000000000000.0x3fc999999999999a.0xc197d78400000000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x4197d78400000000.0xbfc999999999999a.0x0 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xc197d78400000000.0x4008000000000000.0x8000000000000000 ++vfselle 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x0.0xc008000000000000.0xf0debc9a78563412 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x0.0x4014000000000000.0xf0debc9a78563412.0x4197d78400000000 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x8000000000000000.0xc014000000000000.0x123456789abcdef0.0xc197d78400000000 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xf0debc9a78563412.0x4197d78400000000.0x3f800000.0x0 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x123456789abcdef0.0xc197d78400000000.0xbf800000.0x8000000000000000 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x3f800000.0x0.0x3dcccccd.0xf0debc9a78563412 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0xbf800000.0x8000000000000000.0xbdcccccd.0x123456789abcdef0 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3dcccccd.0xf0debc9a78563412.0x3e4ccccd.0x3f800000 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xbdcccccd.0x123456789abcdef0.0xbe4ccccd.0xbf800000 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3e4ccccd.0x3f800000.0x40400000.0x3dcccccd ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbe4ccccd.0xbf800000.0xc0400000.0xbdcccccd ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x40400000.0x3dcccccd.0x40a00000.0x3e4ccccd ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xc0400000.0xbdcccccd.0xc0a00000.0xbe4ccccd ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x40a00000.0x3e4ccccd.0x4cbebc20.0x40400000 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc0a00000.0xbe4ccccd.0xccbebc20.0xc0400000 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x4cbebc20.0x40400000.0x3ff0000000000000.0x40a00000 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xccbebc20.0xc0400000.0xbff0000000000000.0xc0a00000 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x3ff0000000000000.0x40a00000.0x3fb999999999999a.0x4cbebc20 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xbff0000000000000.0xc0a00000.0xbfb999999999999a.0xccbebc20 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3fb999999999999a.0x4cbebc20.0x3fc999999999999a.0x3ff0000000000000 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbfb999999999999a.0xccbebc20.0xbfc999999999999a.0xbff0000000000000 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fc999999999999a.0x3ff0000000000000.0x4008000000000000.0x3fb999999999999a ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfc999999999999a.0xbff0000000000000.0xc008000000000000.0xbfb999999999999a ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x4008000000000000.0x3fb999999999999a.0x4014000000000000.0x3fc999999999999a ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xc008000000000000.0xbfb999999999999a.0xc014000000000000.0xbfc999999999999a ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4014000000000000.0x3fc999999999999a.0x4197d78400000000.0x4008000000000000 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc014000000000000.0xbfc999999999999a.0xc197d78400000000.0xc008000000000000 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4197d78400000000.0x4008000000000000.0x0.0x4014000000000000 ++vfselle 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc197d78400000000.0xc008000000000000.0x8000000000000000.0xc014000000000000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0x8000000000000000.0x4197d78400000000.0x123456789abcdef0 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0xf0debc9a78563412.0xc197d78400000000.0x3f800000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x123456789abcdef0.0x0.0xbf800000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0x3f800000.0x8000000000000000.0x3dcccccd ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0xbf800000.0xf0debc9a78563412.0xbdcccccd ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x3dcccccd.0x123456789abcdef0.0x3e4ccccd ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xbdcccccd.0x3f800000.0xbe4ccccd ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3e4ccccd.0xbf800000.0x40400000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbe4ccccd.0x3dcccccd.0xc0400000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x40400000.0xbdcccccd.0x40a00000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xc0400000.0x3e4ccccd.0xc0a00000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x40a00000.0xbe4ccccd.0x4cbebc20 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xc0a00000.0x40400000.0xccbebc20 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x4cbebc20.0xc0400000.0x3ff0000000000000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xccbebc20.0x40a00000.0xbff0000000000000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x3ff0000000000000.0xc0a00000.0x3fb999999999999a ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xbff0000000000000.0x4cbebc20.0xbfb999999999999a ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x3fb999999999999a.0xccbebc20.0x3fc999999999999a ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xbfb999999999999a.0x3ff0000000000000.0xbfc999999999999a ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3fc999999999999a.0xbff0000000000000.0x4008000000000000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbfc999999999999a.0x3fb999999999999a.0xc008000000000000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x4008000000000000.0xbfb999999999999a.0x4014000000000000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xc008000000000000.0x3fc999999999999a.0xc014000000000000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x4014000000000000.0xbfc999999999999a.0x4197d78400000000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xc014000000000000.0x4008000000000000.0xc197d78400000000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4197d78400000000.0xc008000000000000.0x0 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc197d78400000000.0x4014000000000000.0x8000000000000000 ++vfselle 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x0.0xc014000000000000.0xf0debc9a78563412 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x0.0x4197d78400000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x8000000000000000.0xc197d78400000000.0x123456789abcdef0.0x3f800000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xf0debc9a78563412.0x0.0x3f800000.0xbf800000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x123456789abcdef0.0x8000000000000000.0xbf800000.0x3dcccccd ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x3f800000.0xf0debc9a78563412.0x3dcccccd.0xbdcccccd ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xbf800000.0x123456789abcdef0.0xbdcccccd.0x3e4ccccd ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3dcccccd.0x3f800000.0x3e4ccccd.0xbe4ccccd ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbdcccccd.0xbf800000.0xbe4ccccd.0x40400000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3e4ccccd.0x3dcccccd.0x40400000.0xc0400000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbe4ccccd.0xbdcccccd.0xc0400000.0x40a00000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x40400000.0x3e4ccccd.0x40a00000.0xc0a00000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xc0400000.0xbe4ccccd.0xc0a00000.0x4cbebc20 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x40a00000.0x40400000.0x4cbebc20.0xccbebc20 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc0a00000.0xc0400000.0xccbebc20.0x3ff0000000000000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x4cbebc20.0x40a00000.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xccbebc20.0xc0a00000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x3ff0000000000000.0x4cbebc20.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xbff0000000000000.0xccbebc20.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3fb999999999999a.0x3ff0000000000000.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbfb999999999999a.0xbff0000000000000.0xbfc999999999999a.0x4008000000000000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fc999999999999a.0x3fb999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfc999999999999a.0xbfb999999999999a.0xc008000000000000.0x4014000000000000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x4008000000000000.0x3fc999999999999a.0x4014000000000000.0xc014000000000000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xc008000000000000.0xbfc999999999999a.0xc014000000000000.0x4197d78400000000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4014000000000000.0x4008000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc014000000000000.0xc008000000000000.0xc197d78400000000.0x0 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4197d78400000000.0x4014000000000000.0x0.0x8000000000000000 ++vfselle 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc197d78400000000.0xc014000000000000.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0x4197d78400000000.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0xc197d78400000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x0.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0x8000000000000000.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0xf0debc9a78563412.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x123456789abcdef0.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0x3f800000.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0xbf800000.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0x3dcccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0xbdcccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0x3e4ccccd.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0xbe4ccccd.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0x40400000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0xc0400000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0x40a00000.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0xc0a00000.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0x4cbebc20.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0xccbebc20.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0x3ff0000000000000.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0xbff0000000000000.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0x3fb999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0xbfb999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0x3fc999999999999a.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0xbfc999999999999a.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0x4008000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0xc008000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0x4014000000000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0xc014000000000000.0x0.0x8000000000000000.0xf0debc9a78563412 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 = 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 | 0x0.0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0 = 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 | 0x8000000000000000.0xf0debc9a78563412.0x123456789abcdef0.0x3f800000 = 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd | 0xf0debc9a78563412.0x123456789abcdef0.0x3f800000.0xbf800000 = 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd | 0x123456789abcdef0.0x3f800000.0xbf800000.0x3dcccccd = 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd | 0x3f800000.0xbf800000.0x3dcccccd.0xbdcccccd = 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd | 0xbf800000.0x3dcccccd.0xbdcccccd.0x3e4ccccd = 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 | 0x3dcccccd.0xbdcccccd.0x3e4ccccd.0xbe4ccccd = 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 | 0xbdcccccd.0x3e4ccccd.0xbe4ccccd.0x40400000 = 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 | 0x3e4ccccd.0xbe4ccccd.0x40400000.0xc0400000 = 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 | 0xbe4ccccd.0x40400000.0xc0400000.0x40a00000 = 0x40400000.0xc0400000.0x40a00000.0xc0a00000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 | 0x40400000.0xc0400000.0x40a00000.0xc0a00000 = 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 | 0xc0400000.0x40a00000.0xc0a00000.0x4cbebc20 = 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 | 0x40a00000.0xc0a00000.0x4cbebc20.0xccbebc20 = 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 | 0xc0a00000.0x4cbebc20.0xccbebc20.0x3ff0000000000000 = 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a | 0x4cbebc20.0xccbebc20.0x3ff0000000000000.0xbff0000000000000 = 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a | 0xccbebc20.0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a = 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a | 0x3ff0000000000000.0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a = 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a | 0xbff0000000000000.0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a = 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 | 0x3fb999999999999a.0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a = 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 | 0xbfb999999999999a.0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000 = 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 | 0x3fc999999999999a.0xbfc999999999999a.0x4008000000000000.0xc008000000000000 = 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 | 0xbfc999999999999a.0x4008000000000000.0xc008000000000000.0x4014000000000000 = 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 | 0x4008000000000000.0xc008000000000000.0x4014000000000000.0xc014000000000000 = 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 | 0xc008000000000000.0x4014000000000000.0xc014000000000000.0x4197d78400000000 = 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 | 0x4014000000000000.0xc014000000000000.0x4197d78400000000.0xc197d78400000000 = 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 | 0xc014000000000000.0x4197d78400000000.0xc197d78400000000.0x0 = 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 ++vfselle 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 | 0x4197d78400000000.0xc197d78400000000.0x0.0x8000000000000000 = 0xc197d78400000000.0x0.0x8000000000000000.0xf0debc9a78563412 +diff --git a/none/tests/sw64/simd-fp.vgtest.disable b/none/tests/sw64/simd-fp.vgtest.disable +new file mode 100644 +index 000000000..0c15d45bf +--- /dev/null ++++ b/none/tests/sw64/simd-fp.vgtest.disable +@@ -0,0 +1,2 @@ ++prog: simd-fp ++vgopts: -q +diff --git a/none/tests/sw64/simd-int.c b/none/tests/sw64/simd-int.c +new file mode 100644 +index 000000000..799a91cc7 +--- /dev/null ++++ b/none/tests/sw64/simd-int.c +@@ -0,0 +1,209 @@ ++#include ++#include ++#include ++ ++const unsigned int cases[] = { ++ 0, ++ 1, ++ 2, ++ 3, ++ 15, ++ 16, ++ 100, ++ 10000, ++ -1, ++ -2, ++ -3, ++ -15, ++ -16, ++ -100, ++ -10000, ++ INT32_MAX, ++ INT32_MIN, ++ UINT32_MAX, ++ 0x12345670, ++ 0x07654321, ++ 0, ++ 1, ++ 2, ++ 3, ++ 15, ++ 16, ++ 100, ++ 10000, ++ -1, ++ -2, ++ -3, ++ -15, ++ -16, ++ -100, ++ -10000, ++ INT32_MAX, ++ INT32_MIN, ++ UINT32_MAX, ++ 0x12345670, ++ 0x07654321 ++}; ++const int ncases = sizeof(cases) / sizeof(*cases) / 2; ++ ++#define STRINGIFY(x) STRINGIFY2(x) ++#define STRINGIFY2(x) #x ++ ++#define CREATE_4_OP_TEST(ins) \ ++ void test_4_op_##ins(void *a, void *b, void *c, void *r) { \ ++ __asm__ volatile ( \ ++ ".set noreorder\n" \ ++ "vldd $f10, 0(%0)\n" \ ++ "vldd $f11, 0(%1)\n" \ ++ "vldd $f12, 0(%2)\n" \ ++ STRINGIFY(ins) " $f10, $f11, $f12, $f13\n" \ ++ "vstd $f13, 0(%3)\n" \ ++ : \ ++ : "r"(a), "r"(b), "r"(c), "r"(r) \ ++ : "memory", "$f10", "$f11", "$f12", "$f13" \ ++ ); \ ++ } ++ ++#define CREATE_3_OP_TEST(ins) \ ++ void test_3_op_##ins(void *a, void *b, void *r) { \ ++ __asm__ volatile ( \ ++ ".set noreorder\n" \ ++ "vldd $f10, 0(%0)\n" \ ++ "vldd $f11, 0(%1)\n" \ ++ STRINGIFY(ins) " $f10, $f11, $f12\n" \ ++ "vstd $f12, 0(%2)\n" \ ++ : \ ++ : "r"(a), "r"(b), "r"(r) \ ++ : "memory", "$f10", "$f11", "$f12" \ ++ ); \ ++ } ++ ++#define CREATE_2_OP_TEST(ins) \ ++ void test_2_op_##ins(void *a, void *r) { \ ++ __asm__ volatile ( \ ++ ".set noreorder\n" \ ++ "vldd $f10, 0(%0)\n" \ ++ STRINGIFY(ins) " $f10, $f11\n" \ ++ "vstd $f11, 0(%1)\n" \ ++ : \ ++ : "r"(a), "r"(r) \ ++ : "memory", "$f10", "$f11" \ ++ ); \ ++ } ++ ++#define RUN_4_OP_TEST(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < ncases; i++) { \ ++ for (int j = 0; j < ncases; j++) { \ ++ memset(r, 0, sizeof(r)); \ ++ memcpy(a, cases + i, sizeof(a)); \ ++ memcpy(b, cases + j, sizeof(b)); \ ++ memcpy(c, cases + (i + j) % ncases, sizeof(c)); \ ++ test_4_op_##ins(a, b, c, r); \ ++ printf(STRINGIFY(ins) \ ++ " 0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x" \ ++ " | 0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x" \ ++ " | 0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x" \ ++ " = 0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x\n", \ ++ a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], \ ++ b[0], b[1], b[2], b[3], b[4], b[5], b[6], b[7], \ ++ c[0], c[1], c[2], c[3], c[4], c[5], c[6], c[7], \ ++ r[0], r[1], r[2], r[3], r[4], r[5], r[6], r[7]); \ ++ } \ ++ } ++ ++#define RUN_3_OP_TEST(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < ncases; i++) { \ ++ for (int j = 0; j < ncases; j++) { \ ++ memset(r, 0, sizeof(r)); \ ++ memcpy(a, cases + i, sizeof(a)); \ ++ memcpy(b, cases + j, sizeof(b)); \ ++ test_3_op_##ins(a, b, r); \ ++ printf(STRINGIFY(ins) \ ++ " 0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x" \ ++ " | 0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x" \ ++ " = 0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x\n", \ ++ a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], \ ++ b[0], b[1], b[2], b[3], b[4], b[5], b[6], b[7], \ ++ r[0], r[1], r[2], r[3], r[4], r[5], r[6], r[7]); \ ++ } \ ++ } ++ ++#define RUN_2_OP_TEST(ins) \ ++ puts("=== Running test on " STRINGIFY(ins) "==="); \ ++ for (int i = 0; i < ncases; i++) { \ ++ memset(r, 0, sizeof(r)); \ ++ memcpy(a, cases + i, sizeof(a)); \ ++ test_2_op_##ins(a, r); \ ++ printf(STRINGIFY(ins) \ ++ " 0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x" \ ++ " = 0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x.0x%x\n", \ ++ a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], \ ++ r[0], r[1], r[2], r[3], r[4], r[5], r[6], r[7]); \ ++ } ++ ++CREATE_3_OP_TEST(vaddw) ++CREATE_3_OP_TEST(vsubw) ++CREATE_3_OP_TEST(vcmpgew) ++CREATE_3_OP_TEST(vcmpeqw) ++CREATE_3_OP_TEST(vcmplew) ++CREATE_3_OP_TEST(vcmpltw) ++CREATE_3_OP_TEST(vcmpulew) ++CREATE_3_OP_TEST(vcmpultw) ++CREATE_3_OP_TEST(vsllw) ++CREATE_3_OP_TEST(vsrlw) ++CREATE_3_OP_TEST(vsraw) ++CREATE_3_OP_TEST(vrolw) ++CREATE_3_OP_TEST(sllow) ++CREATE_3_OP_TEST(srlow) ++CREATE_3_OP_TEST(vaddl) ++CREATE_3_OP_TEST(vsubl) ++CREATE_2_OP_TEST(ctpopow) ++CREATE_2_OP_TEST(ctlzow) ++CREATE_3_OP_TEST(vucaddw) ++CREATE_3_OP_TEST(vucsubw) ++CREATE_3_OP_TEST(vucaddh) ++CREATE_3_OP_TEST(vucsubh) ++CREATE_3_OP_TEST(vucaddb) ++CREATE_3_OP_TEST(vucsubb) ++CREATE_4_OP_TEST(vseleqw) ++CREATE_4_OP_TEST(vsellbcw) ++CREATE_4_OP_TEST(vselltw) ++CREATE_4_OP_TEST(vsellew) ++ ++int main(void) { ++ int a[8] __attribute__ ((aligned (32))); ++ int b[8] __attribute__ ((aligned (32))); ++ int c[8] __attribute__ ((aligned (32))); ++ int r[8] __attribute__ ((aligned (32))); ++ ++ RUN_3_OP_TEST(vaddw) ++ RUN_3_OP_TEST(vsubw) ++ RUN_3_OP_TEST(vcmpgew) ++ RUN_3_OP_TEST(vcmpeqw) ++ RUN_3_OP_TEST(vcmplew) ++ RUN_3_OP_TEST(vcmpltw) ++ RUN_3_OP_TEST(vcmpulew) ++ RUN_3_OP_TEST(vcmpultw) ++ RUN_3_OP_TEST(vsllw) ++ RUN_3_OP_TEST(vsrlw) ++ RUN_3_OP_TEST(vsraw) ++ RUN_3_OP_TEST(vrolw) ++ RUN_3_OP_TEST(sllow) ++ RUN_3_OP_TEST(srlow) ++ RUN_3_OP_TEST(vaddl) ++ RUN_3_OP_TEST(vsubl) ++ RUN_2_OP_TEST(ctpopow) ++ RUN_2_OP_TEST(ctlzow) ++ RUN_3_OP_TEST(vucaddw) ++ RUN_3_OP_TEST(vucsubw) ++ RUN_3_OP_TEST(vucaddh) ++ RUN_3_OP_TEST(vucsubh) ++ RUN_3_OP_TEST(vucaddb) ++ RUN_3_OP_TEST(vucsubb) ++ RUN_4_OP_TEST(vseleqw) ++ RUN_4_OP_TEST(vsellbcw) ++ RUN_4_OP_TEST(vselltw) ++ RUN_4_OP_TEST(vsellew) ++} +diff --git a/none/tests/sw64/simd-int.stderr.exp b/none/tests/sw64/simd-int.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/simd-int.stdout.exp b/none/tests/sw64/simd-int.stdout.exp +new file mode 100644 +index 000000000..ac857d0a5 +--- /dev/null ++++ b/none/tests/sw64/simd-int.stdout.exp +@@ -0,0 +1,10468 @@ ++=== Running test on vaddw=== ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x2.0x4.0x6.0x1e.0x20.0xc8.0x4e20 ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x4.0x11.0x13.0x73.0x2720.0x63.0x270e ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0x10.0x12.0x67.0x271f.0xf.0x62.0x270d ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x11.0x66.0x2713.0xe.0xe.0x61.0x2701 ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x65.0x2712.0x2.0xd.0xd.0x55.0x2700 ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2711.0x1.0x1.0xc.0x1.0x54.0x26ac ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710 ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80 ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31 ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680.0x7654385.0x2710 ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x80000000.0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711 ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000001.0x1.0x12345673.0x7654330.0x10.0x65.0x2712 ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x0.0x12345672.0x7654324.0xf.0x11.0x66.0x2713 ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720 ++vaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74.0x2774 ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2.0x4.0x6.0x1e.0x20.0xc8.0x4e20.0xfffffffe ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f.0xfffffffd ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x4.0x11.0x13.0x73.0x2720.0x63.0x270e.0xfffffffc ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x10.0x12.0x67.0x271f.0xf.0x62.0x270d.0xfffffff0 ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x11.0x66.0x2713.0xe.0xe.0x61.0x2701.0xffffffef ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x65.0x2712.0x2.0xd.0xd.0x55.0x2700.0xffffff9b ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2711.0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x7ffffffe ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x1234566f ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80.0x7654320 ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0 ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711.0x1 ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000001.0x1.0x12345673.0x7654330.0x10.0x65.0x2712.0x2 ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xe ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f.0xf ++vaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720.0x63 ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2.0x4.0x11.0x13.0x73.0x2720.0x63.0x270e ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f.0xfffffffd ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x4.0x6.0x1e.0x20.0xc8.0x4e20.0xfffffffe.0xfffffffc ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x5.0x12.0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffb ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x11.0x13.0x73.0x2720.0x63.0x270e.0xfffffffc.0xffffffef ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12.0x67.0x271f.0xf.0x62.0x270d.0xfffffff0.0xffffffee ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x66.0x2713.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2712.0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x7ffffffe.0x7ffffffe ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffd ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566e ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x1234566f.0x765431f ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000001.0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0.0x0 ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711.0x1.0x1 ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x12345673.0x7654330.0x10.0x65.0x2712.0x2.0xd ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xe.0xe ++vaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654323.0x3.0x10.0x12.0x67.0x271f.0xf.0x62 ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x3.0x10.0x12.0x67.0x271f.0xf.0x62.0x270d ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x4.0x11.0x13.0x73.0x2720.0x63.0x270e.0xfffffffc ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x5.0x12.0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffb ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x6.0x1e.0x20.0xc8.0x4e20.0xfffffffe.0xfffffffc.0xfffffffa ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12.0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x13.0x73.0x2720.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x67.0x271f.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99 ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2713.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x7ffffffd ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x7ffffffe.0x7ffffffe.0xfffffffc ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffd.0x1234566d ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566e.0x765431e ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0.0x0.0x0 ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x2.0x1234567f.0x7654331.0x64.0x2711.0x1.0x1.0xc ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345673.0x7654330.0x10.0x65.0x2712.0x2.0xd.0xd ++vaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654324.0xf.0x11.0x66.0x2713.0xe.0xe.0x61 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf.0x11.0x66.0x2713.0xe.0xe.0x61.0x2701 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x10.0x12.0x67.0x271f.0xf.0x62.0x270d.0xfffffff0 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x11.0x13.0x73.0x2720.0x63.0x270e.0xfffffffc.0xffffffef ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x12.0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1e.0x20.0xc8.0x4e20.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x73.0x2720.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x271f.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xc.0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffd.0x1234566d.0x7654312 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ff.0x8000000f.0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8000000e.0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xe.0x12345680.0x7654385.0x2710.0x0.0x0.0x0.0x0 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234567f.0x7654331.0x64.0x2711.0x1.0x1.0xc.0x1 ++vaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654330.0x10.0x65.0x2712.0x2.0xd.0xd.0x55 ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x10.0x65.0x2712.0x2.0xd.0xd.0x55.0x2700 ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x11.0x66.0x2713.0xe.0xe.0x61.0x2701.0xffffffef ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x12.0x67.0x271f.0xf.0x62.0x270d.0xfffffff0.0xffffffee ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x13.0x73.0x2720.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1 ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20.0xc8.0x4e20.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0 ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x74.0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2720.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0 ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0 ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660 ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311 ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0 ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1 ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8000000f.0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2 ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3 ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345680.0x7654385.0x2710.0x0.0x0.0x0.0x0.0x0 ++vaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654331.0x64.0x2711.0x1.0x1.0xc.0x1.0x54 ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x64.0x2711.0x1.0x1.0xc.0x1.0x54.0x26ac ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x65.0x2712.0x2.0xd.0xd.0x55.0x2700.0xffffff9b ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x66.0x2713.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x67.0x271f.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99 ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x73.0x2720.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x74.0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xc8.0x4e20.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38 ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd954.0x8000270f.0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000063.0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac ++vaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654385.0x2710.0x0.0x0.0x0.0x0.0x0.0x0 ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2710.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2711.0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2712.0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2713.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x271f.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1 ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2720.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0 ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x4e20.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0 ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0 ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60 ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11 ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x26ac.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0 ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1 ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8000270f.0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2 ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3 ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900 ++vaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954 ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x7ffffffe ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0 ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0xfffffffe ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x7ffffffe ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x9234566f ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x87654320 ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x7fffffff ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x80000000 ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x80000001 ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002 ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f ++vaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063 ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710 ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x7ffffffe.0x7ffffffe ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x7ffffffd ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1 ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0 ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0 ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0xfffffffe.0x0 ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x7fffffff ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x7ffffffe.0x92345670 ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x9234566f.0x87654321 ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x87654320.0x80000000 ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001 ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x80000000.0x80000002 ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x80000001.0x80000003 ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010 ++vaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064 ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffd ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x7ffffffe.0x7ffffffe.0xfffffffc ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xc.0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0 ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x7ffffffe ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x7fffffff ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0xfffffffe.0x0.0xfffffffe ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x7fffffff.0x1234566f ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x7ffffffe.0x92345670.0x7654320 ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x9234566f.0x87654321.0xffffffff ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x87654320.0x80000000.0x0 ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1 ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x80000000.0x80000002.0x2 ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x80000001.0x80000003.0xe ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf ++vaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63 ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80 ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x1234566f ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566e ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffd.0x1234566d ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661 ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660 ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60 ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x9234566f ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x7ffffffe.0x92345670 ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x7fffffff.0x1234566f ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0xfffffffe.0x0.0xfffffffe.0x2468ace0 ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x7fffffff.0x1234566f.0x19999991 ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x7ffffffe.0x92345670.0x7654320.0x12345670 ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x9234566f.0x87654321.0xffffffff.0x12345671 ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x87654320.0x80000000.0x0.0x12345672 ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673 ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x80000000.0x80000002.0x2.0x1234567f ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680 ++vaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80.0x7654320 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x1234566f.0x765431f ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566e.0x765431e ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffd.0x1234566d.0x7654312 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x87654320 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x9234566f.0x87654321 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x7ffffffe.0x92345670.0x7654320 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x7fffffff.0x1234566f.0x19999991 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffe0.0xffffff38.0xffffb1e0.0xfffffffe.0x0.0xfffffffe.0x2468ace0.0xeca8642 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x7fffffff.0x1234566f.0x19999991.0x7654321 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffef.0x7fffff9c.0xffffd8ef.0x9234566f.0x87654321.0xffffffff.0x12345671.0x7654323 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffff0.0xffffff9b.0x12342f60.0x87654320.0x80000000.0x0.0x12345672.0x7654324 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673.0x7654330 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345660.0x76542bd.0xffffd8f0.0x80000000.0x80000002.0x2.0x1234567f.0x7654331 ++vaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654311.0xffffff9c.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680.0x7654385 ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff9c.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680.0x7654385.0x2710 ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1 ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0 ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x26ac.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0 ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x7fffffff ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x87654320.0x80000000 ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x9234566f.0x87654321.0xffffffff ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x7ffffffe.0x92345670.0x7654320.0x12345670 ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x7fffffff.0x1234566f.0x19999991.0x7654321 ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff38.0xffffb1e0.0xfffffffe.0x0.0xfffffffe.0x2468ace0.0xeca8642.0x0 ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd88c.0x7fffd8ef.0xffffffff.0x7fffffff.0x1234566f.0x19999991.0x7654321.0x1 ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffff9b.0x7fffd8f0.0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322.0x2 ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffff9c.0xffffd8ef.0x9234566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3 ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff9b.0x12342f60.0x87654320.0x80000000.0x0.0x12345672.0x7654324.0xf ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673.0x7654330.0x10 ++vaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x76542bd.0xffffd8f0.0x80000000.0x80000002.0x2.0x1234567f.0x7654331.0x64 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffd8f0.0x80000000.0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8ff.0x8000000f.0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd954.0x8000270f.0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x80000000 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x87654320.0x80000000.0x0 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x9234566f.0x87654321.0xffffffff.0x12345671 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffd88c.0x7fffd8ef.0xffffffff.0x7fffffff.0x1234566f.0x19999991.0x7654321.0x1 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffb1e0.0xfffffffe.0x0.0xfffffffe.0x2468ace0.0xeca8642.0x0.0x2 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffd8ef.0xffffffff.0x7fffffff.0x1234566f.0x19999991.0x7654321.0x1.0x3 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffd8f0.0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffd8ef.0x9234566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12342f60.0x87654320.0x80000000.0x0.0x12345672.0x7654324.0xf.0x11 ++vaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673.0x7654330.0x10.0x65 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7fffffff.0x80000001.0x1.0x12345673.0x7654330.0x10.0x65.0x2712 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x80000000.0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711.0x1 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x80000001.0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0.0x0 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x8000000e.0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x8000000f.0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000063.0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x8000270f.0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x80000001 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x80000000.0x80000002 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x87654320.0x80000000.0x0.0x12345672 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7fffffef.0x7fffff9c.0xffffd8ef.0x9234566f.0x87654321.0xffffffff.0x12345671.0x7654323 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7fffff9b.0x7fffd8f0.0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322.0x2 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7fffd8ef.0xffffffff.0x7fffffff.0x1234566f.0x19999991.0x7654321.0x1.0x3 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffffe.0x0.0xfffffffe.0x2468ace0.0xeca8642.0x0.0x2.0x4 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0x7fffffff.0x1234566f.0x19999991.0x7654321.0x1.0x3.0x5 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4.0x11 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x9234566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12 ++vaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x87654320.0x80000000.0x0.0x12345672.0x7654324.0xf.0x11.0x66 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x80000000.0x0.0x12345672.0x7654324.0xf.0x11.0x66.0x2713 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x80000001.0x1.0x12345673.0x7654330.0x10.0x65.0x2712.0x2 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711.0x1.0x1 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0.0x0.0x0 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x80000001.0x80000003 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x80000000.0x80000002.0x2 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7ffffff0.0xffffff9b.0x12342f60.0x87654320.0x80000000.0x0.0x12345672.0x7654324 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7fffff9c.0xffffd8ef.0x9234566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7fffd8f0.0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffff.0x7fffffff.0x1234566f.0x19999991.0x7654321.0x1.0x3.0x5 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0xfffffffe.0x2468ace0.0xeca8642.0x0.0x2.0x4.0x6 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7fffffff.0x1234566f.0x19999991.0x7654321.0x1.0x3.0x5.0x12 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4.0x11.0x13 ++vaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67 ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xe ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x12345673.0x7654330.0x10.0x65.0x2712.0x2.0xd ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2.0x1234567f.0x7654331.0x64.0x2711.0x1.0x1.0xc ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xe.0x12345680.0x7654385.0x2710.0x0.0x0.0x0.0x0 ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x80000001.0x80000003.0xe ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x80000000.0x80000002.0x2.0x1234567f ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673.0x7654330 ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9b.0x12342f60.0x87654320.0x80000000.0x0.0x12345672.0x7654324.0xf ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ef.0x9234566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10 ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4.0x11 ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x1234566f.0x19999991.0x7654321.0x1.0x3.0x5.0x12 ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffe.0x2468ace0.0xeca8642.0x0.0x2.0x4.0x6.0x1e ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234566f.0x19999991.0x7654321.0x1.0x3.0x5.0x12.0x1f ++vaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654320.0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73 ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720 ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f.0xf ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xe.0xe ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x12345673.0x7654330.0x10.0x65.0x2712.0x2.0xd.0xd ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1234567f.0x7654331.0x64.0x2711.0x1.0x1.0xc.0x1 ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345680.0x7654385.0x2710.0x0.0x0.0x0.0x0.0x0 ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900 ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010 ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680 ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12345660.0x76542bd.0xffffd8f0.0x80000000.0x80000002.0x2.0x1234567f.0x7654331 ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673.0x7654330.0x10 ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12342f60.0x87654320.0x80000000.0x0.0x12345672.0x7654324.0xf.0x11 ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x9234566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12 ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4.0x11.0x13 ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1234566f.0x19999991.0x7654321.0x1.0x3.0x5.0x12.0x1f ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x2468ace0.0xeca8642.0x0.0x2.0x4.0x6.0x1e.0x20 ++vaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x19999991.0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74.0x2774 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720.0x63 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7654323.0x3.0x10.0x12.0x67.0x271f.0xf.0x62 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7654324.0xf.0x11.0x66.0x2713.0xe.0xe.0x61 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654330.0x10.0x65.0x2712.0x2.0xd.0xd.0x55 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654331.0x64.0x2711.0x1.0x1.0xc.0x1.0x54 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7654385.0x2710.0x0.0x0.0x0.0x0.0x0.0x0 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7654311.0xffffff9c.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680.0x7654385 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x76542bd.0xffffd8f0.0x80000000.0x80000002.0x2.0x1234567f.0x7654331.0x64 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673.0x7654330.0x10.0x65 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x87654320.0x80000000.0x0.0x12345672.0x7654324.0xf.0x11.0x66 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7654320.0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x19999991.0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74 ++vaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xeca8642.0x0.0x2.0x4.0x6.0x1e.0x20.0xc8 ++=== Running test on vsubw=== ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x2711 ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x65.0x2712 ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x11.0x66.0x2713 ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x10.0x12.0x67.0x271f ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff0.0xffffff9d.0xffffd8f2.0x4.0x11.0x13.0x73.0x2720 ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9c.0xffffd8f1.0x3.0x5.0x12.0x1f.0x74.0x2774 ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f0.0x2.0x4.0x6.0x1e.0x20.0xc8.0x4e20 ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x3.0x5.0x12.0x1f.0x74.0x2774.0x80002711 ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x2.0x4.0x11.0x13.0x73.0x2720.0x80000065.0x80002710 ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x3.0x10.0x12.0x67.0x271f.0x80000011.0x80000064.0x2711 ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xf.0x11.0x66.0x2713.0x80000010.0x80000010.0x65.0xedcbd0a0 ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x10.0x65.0x2712.0x80000004.0x8000000f.0x11.0xedcba9f4.0xf89ae3ef ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x64.0x2711.0x80000003.0x80000003.0x10.0xedcba9a0.0xf89abd43.0x2710 ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2710.0x80000002.0x80000002.0x4.0xedcba99f.0xf89abcef.0x64.0x270f ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000001.0x80000001.0x3.0xedcba993.0xf89abcee.0x10.0x63.0x270e ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x2.0xedcba992.0xf89abce2.0xf.0xf.0x62.0x270d ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0xedcba991.0xf89abce1.0x3.0xe.0xe.0x61.0x2701 ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba990.0xf89abce0.0x2.0x2.0xd.0xd.0x55.0x2700 ++vsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcdf.0x1.0x1.0x1.0xc.0x1.0x54.0x26ac ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x2711.0x1 ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x65.0x2712.0x2 ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x11.0x66.0x2713.0xe ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff1.0xffffff9e.0xffffd8f3.0x10.0x12.0x67.0x271f.0xf ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9d.0xffffd8f2.0x4.0x11.0x13.0x73.0x2720.0x63 ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f1.0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x2.0x4.0x6.0x1e.0x20.0xc8.0x4e20.0x80000000 ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x3.0x5.0x12.0x1f.0x74.0x2774.0x80002711.0x7fffffff ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x4.0x11.0x13.0x73.0x2720.0x80000065.0x80002710.0x0 ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x10.0x12.0x67.0x271f.0x80000011.0x80000064.0x2711.0xedcba98f ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x11.0x66.0x2713.0x80000010.0x80000010.0x65.0xedcbd0a0.0xf89abcde ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x65.0x2712.0x80000004.0x8000000f.0x11.0xedcba9f4.0xf89ae3ef.0xffffffff ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2711.0x80000003.0x80000003.0x10.0xedcba9a0.0xf89abd43.0x2710.0xfffffffe ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000002.0x80000002.0x4.0xedcba99f.0xf89abcef.0x64.0x270f.0xfffffffd ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000001.0x3.0xedcba993.0xf89abcee.0x10.0x63.0x270e.0xfffffffc ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x2.0xedcba992.0xf89abce2.0xf.0xf.0x62.0x270d.0xfffffff0 ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba991.0xf89abce1.0x3.0xe.0xe.0x61.0x2701.0xffffffef ++vsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abce0.0x2.0x2.0xd.0xd.0x55.0x2700.0xffffff9b ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2.0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0xffffffff ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x2711.0x1.0x1 ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x65.0x2712.0x2.0xd ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff2.0xffffff9f.0xffffd8ff.0x11.0x66.0x2713.0xe.0xe ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9e.0xffffd8f3.0x10.0x12.0x67.0x271f.0xf.0x62 ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f2.0x4.0x11.0x13.0x73.0x2720.0x63.0x270e ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f.0x7fffffff ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x4.0x6.0x1e.0x20.0xc8.0x4e20.0x80000000.0x7ffffffe ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x5.0x12.0x1f.0x74.0x2774.0x80002711.0x7fffffff.0xffffffff ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x11.0x13.0x73.0x2720.0x80000065.0x80002710.0x0.0xedcba98e ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12.0x67.0x271f.0x80000011.0x80000064.0x2711.0xedcba98f.0xf89abcdd ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x66.0x2713.0x80000010.0x80000010.0x65.0xedcbd0a0.0xf89abcde.0xfffffffe ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2712.0x80000004.0x8000000f.0x11.0xedcba9f4.0xf89ae3ef.0xffffffff.0xfffffffd ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000003.0x80000003.0x10.0xedcba9a0.0xf89abd43.0x2710.0xfffffffe.0xfffffffc ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000002.0x4.0xedcba99f.0xf89abcef.0x64.0x270f.0xfffffffd.0xfffffffb ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x3.0xedcba993.0xf89abcee.0x10.0x63.0x270e.0xfffffffc.0xffffffef ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba992.0xf89abce2.0xf.0xf.0x62.0x270d.0xfffffff0.0xffffffee ++vsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abce1.0x3.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x3.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffffffe ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0xffffffff.0xffffffff ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x2711.0x1.0x1.0xc ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff3.0xffffffab.0xffffd900.0x65.0x2712.0x2.0xd.0xd ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9f.0xffffd8ff.0x11.0x66.0x2713.0xe.0xe.0x61 ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f3.0x10.0x12.0x67.0x271f.0xf.0x62.0x270d ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x4.0x11.0x13.0x73.0x2720.0x63.0x270e.0x7ffffffe ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x5.0x12.0x1f.0x74.0x2774.0x270f.0x7fffffff.0x7ffffffd ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x6.0x1e.0x20.0xc8.0x4e20.0x80000000.0x7ffffffe.0xfffffffe ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x12.0x1f.0x74.0x2774.0x80002711.0x7fffffff.0xffffffff.0xedcba98d ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x13.0x73.0x2720.0x80000065.0x80002710.0x0.0xedcba98e.0xf89abcdc ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x67.0x271f.0x80000011.0x80000064.0x2711.0xedcba98f.0xf89abcdd.0xfffffffd ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2713.0x80000010.0x80000010.0x65.0xedcbd0a0.0xf89abcde.0xfffffffe.0xfffffffc ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000004.0x8000000f.0x11.0xedcba9f4.0xf89ae3ef.0xffffffff.0xfffffffd.0xfffffffb ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000003.0x10.0xedcba9a0.0xf89abd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x4.0xedcba99f.0xf89abcef.0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba993.0xf89abcee.0x10.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed ++vsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abce2.0xf.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff3 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xc.0x1.0x54.0x26ac.0xffffd8ef.0xffffffff.0xffffffff.0xfffffff4 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0xffffffac.0xffffd954.0x2711.0x1.0x1.0xc.0x1 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffab.0xffffd900.0x65.0x2712.0x2.0xd.0xd.0x55 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ff.0x11.0x66.0x2713.0xe.0xe.0x61.0x2701 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x10.0x12.0x67.0x271f.0xf.0x62.0x270d.0x7ffffff2 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x11.0x13.0x73.0x2720.0x63.0x270e.0x7ffffffe.0x7ffffff1 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x12.0x1f.0x74.0x2774.0x270f.0x7fffffff.0x7ffffffd.0xfffffff2 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1e.0x20.0xc8.0x4e20.0x80000000.0x7ffffffe.0xfffffffe.0xedcba981 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1f.0x74.0x2774.0x80002711.0x7fffffff.0xffffffff.0xedcba98d.0xf89abcd0 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x73.0x2720.0x80000065.0x80002710.0x0.0xedcba98e.0xf89abcdc.0xfffffff1 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x271f.0x80000011.0x80000064.0x2711.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000010.0x80000010.0x65.0xedcbd0a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000000f.0x11.0xedcba9f4.0xf89ae3ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x10.0xedcba9a0.0xf89abd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba99f.0xf89abcef.0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1 ++vsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcee.0x10.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x10.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0 ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1 ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff2 ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff3.0xfffffff3 ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x54.0x26ac.0xffffd8ef.0xffffffff.0xffffffff.0xfffffff4.0xffffffff ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffac.0xffffd954.0x2711.0x1.0x1.0xc.0x1.0x54 ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd900.0x65.0x2712.0x2.0xd.0xd.0x55.0x2700 ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x11.0x66.0x2713.0xe.0xe.0x61.0x2701.0x7ffffff1 ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x12.0x67.0x271f.0xf.0x62.0x270d.0x7ffffff2.0x7ffffff0 ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x13.0x73.0x2720.0x63.0x270e.0x7ffffffe.0x7ffffff1.0xfffffff1 ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1f.0x74.0x2774.0x270f.0x7fffffff.0x7ffffffd.0xfffffff2.0xedcba980 ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20.0xc8.0x4e20.0x80000000.0x7ffffffe.0xfffffffe.0xedcba981.0xf89abccf ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x74.0x2774.0x80002711.0x7fffffff.0xffffffff.0xedcba98d.0xf89abcd0.0xfffffff0 ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2720.0x80000065.0x80002710.0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000011.0x80000064.0x2711.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000010.0x65.0xedcbd0a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x11.0xedcba9f4.0xf89ae3ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1 ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba9a0.0xf89abd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0 ++vsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcef.0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9e ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff2.0xffffff9f ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x54.0x26ac.0xffffd8ef.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd954.0x2711.0x1.0x1.0xc.0x1.0x54.0x26ac ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x65.0x2712.0x2.0xd.0xd.0x55.0x2700.0x7fffff9d ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x66.0x2713.0xe.0xe.0x61.0x2701.0x7ffffff1.0x7fffff9c ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x67.0x271f.0xf.0x62.0x270d.0x7ffffff2.0x7ffffff0.0xffffff9d ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x73.0x2720.0x63.0x270e.0x7ffffffe.0x7ffffff1.0xfffffff1.0xedcba92c ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x74.0x2774.0x270f.0x7fffffff.0x7ffffffd.0xfffffff2.0xedcba980.0xf89abc7b ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xc8.0x4e20.0x80000000.0x7ffffffe.0xfffffffe.0xedcba981.0xf89abccf.0xffffff9c ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2774.0x80002711.0x7fffffff.0xffffffff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000065.0x80002710.0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000064.0x2711.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99 ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x65.0xedcbd0a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba9f4.0xf89ae3ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c ++vsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f2 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9e.0xffffd8f3 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2700.0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x26ac.0xffffd8ef.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x2711.0x1.0x1.0xc.0x1.0x54.0x26ac.0x7fffd8f1 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x2712.0x2.0xd.0xd.0x55.0x2700.0x7fffff9d.0x7fffd8f0 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2713.0xe.0xe.0x61.0x2701.0x7ffffff1.0x7fffff9c.0xffffd8f1 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x271f.0xf.0x62.0x270d.0x7ffffff2.0x7ffffff0.0xffffff9d.0xedcb8280 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x2720.0x63.0x270e.0x7ffffffe.0x7ffffff1.0xfffffff1.0xedcba92c.0xf89a95cf ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x2774.0x270f.0x7fffffff.0x7ffffffd.0xfffffff2.0xedcba980.0xf89abc7b.0xffffd8f0 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x4e20.0x80000000.0x7ffffffe.0xfffffffe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80002711.0x7fffffff.0xffffffff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80002710.0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x2711.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcbd0a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0 ++vsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89ae3ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x80000000 ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1.0x80000001 ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f2.0x80000002 ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063 ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ef.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0xc.0x1.0x54.0x26ac.0x7fffd8f1.0xffffffff ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2.0xd.0xd.0x55.0x2700.0x7fffff9d.0x7fffd8f0.0x80000000 ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xe.0xe.0x61.0x2701.0x7ffffff1.0x7fffff9c.0xffffd8f1.0x6dcba98f ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xf.0x62.0x270d.0x7ffffff2.0x7ffffff0.0xffffff9d.0xedcb8280.0x789abcde ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x63.0x270e.0x7ffffffe.0x7ffffff1.0xfffffff1.0xedcba92c.0xf89a95cf.0x7fffffff ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270f.0x7fffffff.0x7ffffffd.0xfffffff2.0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7ffffffe.0xfffffffe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0xffffffff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0 ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef ++vsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0 ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001 ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x80000000.0x80000002 ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1.0x80000001.0x80000003 ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010 ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064 ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ee.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710 ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x1 ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0xc.0x1.0x54.0x26ac.0x7fffd8f1.0xffffffff.0x80000001 ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xd.0xd.0x55.0x2700.0x7fffff9d.0x7fffd8f0.0x80000000.0x6dcba990 ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xe.0x61.0x2701.0x7ffffff1.0x7fffff9c.0xffffd8f1.0x6dcba98f.0x789abcdf ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x62.0x270d.0x7ffffff2.0x7ffffff0.0xffffff9d.0xedcb8280.0x789abcde.0x80000000 ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270e.0x7ffffffe.0x7ffffff1.0xfffffff1.0xedcba92c.0xf89a95cf.0x7fffffff.0x7fffffff ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x7ffffffd.0xfffffff2.0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x7ffffffe ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffffe.0xfffffffe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x7ffffffd ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1 ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0 ++vsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x0 ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001.0x1 ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x80000000.0x80000002.0x2 ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1.0x80000001.0x80000003.0xe ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63 ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ed.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0x80000000 ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x1.0x7fffffff ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xc.0x1.0x54.0x26ac.0x7fffd8f1.0xffffffff.0x80000001.0xedcba98f ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xd.0x55.0x2700.0x7fffff9d.0x7fffd8f0.0x80000000.0x6dcba990.0xf89abcde ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x61.0x2701.0x7ffffff1.0x7fffff9c.0xffffd8f1.0x6dcba98f.0x789abcdf.0xffffffff ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270d.0x7ffffff2.0x7ffffff0.0xffffff9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffe.0x7ffffff1.0xfffffff1.0xedcba92c.0xf89a95cf.0x7fffffff.0x7fffffff.0xfffffffd ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffffd.0xfffffff2.0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x7ffffffe.0xfffffffc ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0 ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef ++vsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60 ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x12345671 ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x0.0x12345672 ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001.0x1.0x12345673 ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x80000000.0x80000002.0x2.0x1234567f ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680 ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4 ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8e1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80 ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x92345671 ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0x80000000.0x92345670 ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x1.0x7fffffff.0x12345671 ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x54.0x26ac.0x7fffd8f1.0xffffffff.0x80000001.0xedcba98f.0xacf134f ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x55.0x2700.0x7fffff9d.0x7fffd8f0.0x80000000.0x6dcba990.0xf89abcde.0x12345670 ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2701.0x7ffffff1.0x7fffff9c.0xffffd8f1.0x6dcba98f.0x789abcdf.0xffffffff.0x1234566f ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffff2.0x7ffffff0.0xffffff9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffff1.0xfffffff1.0xedcba92c.0xf89a95cf.0x7fffffff.0x7fffffff.0xfffffffd.0x1234566d ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffff2.0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661 ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660 ++vsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x7654322 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x12345671.0x7654323 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x0.0x12345672.0x7654324 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001.0x1.0x12345673.0x7654330 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffe0.0xffffff38.0xffffb1e0.0x80000000.0x80000002.0x2.0x1234567f.0x7654331 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff8c.0xffffd88c.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680.0x7654385 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8e0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80.0x87654322 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x92345671.0x87654321 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0x80000000.0x92345670.0x7654322 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x1.0x7fffffff.0x12345671.0xf530ecb1 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x54.0x26ac.0x7fffd8f1.0xffffffff.0x80000001.0xedcba98f.0xacf134f.0x7654321 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2700.0x7fffff9d.0x7fffd8f0.0x80000000.0x6dcba990.0xf89abcde.0x12345670.0x7654320 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffff1.0x7fffff9c.0xffffd8f1.0x6dcba98f.0x789abcdf.0xffffffff.0x1234566f.0x765431f ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffff0.0xffffff9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffff1.0xedcba92c.0xf89a95cf.0x7fffffff.0x7fffffff.0xfffffffd.0x1234566d.0x7654312 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311 ++vsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff9c.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0 ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x1 ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x7654322.0x2 ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x12345671.0x7654323.0x3 ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x0.0x12345672.0x7654324.0xf ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001.0x1.0x12345673.0x7654330.0x10 ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff38.0xffffb1e0.0x80000000.0x80000002.0x2.0x1234567f.0x7654331.0x64 ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd88c.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680.0x7654385.0x2710 ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31.0x80000001 ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80.0x87654322.0x80000000 ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x92345671.0x87654321.0x1 ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffab.0xffffd900.0x80000063.0x80002710.0x80000000.0x92345670.0x7654322.0xedcba990 ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffac.0xffffd954.0x8000270f.0x1.0x7fffffff.0x12345671.0xf530ecb1.0xf89abcdf ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x26ac.0x7fffd8f1.0xffffffff.0x80000001.0xedcba98f.0xacf134f.0x7654321.0xffffffff ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffff9d.0x7fffd8f0.0x80000000.0x6dcba990.0xf89abcde.0x12345670.0x7654320.0xfffffffe ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffff9c.0xffffd8f1.0x6dcba98f.0x789abcdf.0xffffffff.0x1234566f.0x765431f.0xfffffffd ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfffffff1 ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba92c.0xf89a95cf.0x7fffffff.0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0 ++vsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abc7b.0xffffd8f0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffd8f0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x2 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x1.0x3 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x7654322.0x2.0x4 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x12345671.0x7654323.0x3.0x10 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x0.0x12345672.0x7654324.0xf.0x11 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd88c.0x7fffd8ef.0x80000001.0x1.0x12345673.0x7654330.0x10.0x65 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffb1e0.0x80000000.0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680.0x7654385.0x2710.0x80000002 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31.0x80000001.0x80000001 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80.0x87654322.0x80000000.0x2 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffd8ff.0x8000000f.0x80000064.0x270f.0x92345671.0x87654321.0x1.0xedcba991 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffd900.0x80000063.0x80002710.0x80000000.0x92345670.0x7654322.0xedcba990.0xf89abce0 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffd954.0x8000270f.0x1.0x7fffffff.0x12345671.0xf530ecb1.0xf89abcdf.0x1 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffd8f1.0xffffffff.0x80000001.0xedcba98f.0xacf134f.0x7654321.0xffffffff.0xffffffff ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffd8f0.0x80000000.0x6dcba990.0xf89abcde.0x12345670.0x7654320.0xfffffffe.0xfffffffe ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffd8f1.0x6dcba98f.0x789abcdf.0xffffffff.0x1234566f.0x765431f.0xfffffffd.0xfffffff2 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1 ++vsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89a95cf.0x7fffffff.0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7fffffff.0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x3 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x2.0x4 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x1.0x3.0x5 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x7654322.0x2.0x4.0x11 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fffffef.0x7fffff9c.0xffffd8ef.0x12345671.0x7654323.0x3.0x10.0x12 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffff9b.0x7fffd8f0.0x0.0x12345672.0x7654324.0xf.0x11.0x66 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7fffd8ef.0x80000001.0x1.0x12345673.0x7654330.0x10.0x65.0x2712 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x80000000.0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711.0x80000003 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x80000001.0x80000003.0xe.0x12345680.0x7654385.0x2710.0x80000002.0x80000002 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31.0x80000001.0x80000001.0x3 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x8000000e.0x80000010.0x63.0x12347d80.0x87654322.0x80000000.0x2.0xedcba992 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x8000000f.0x80000064.0x270f.0x92345671.0x87654321.0x1.0xedcba991.0xf89abce1 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x80000063.0x80002710.0x80000000.0x92345670.0x7654322.0xedcba990.0xf89abce0.0x2 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x8000270f.0x1.0x7fffffff.0x12345671.0xf530ecb1.0xf89abcdf.0x1.0x1 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0x80000001.0xedcba98f.0xacf134f.0x7654321.0xffffffff.0xffffffff.0xffffffff ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x80000000.0x6dcba990.0xf89abcde.0x12345670.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x6dcba98f.0x789abcdf.0xffffffff.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2 ++vsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x4 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x3.0x5 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x2.0x4.0x6 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x1.0x3.0x5.0x12 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7ffffff0.0xffffff9b.0x12342f60.0x7654322.0x2.0x4.0x11.0x13 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffff9c.0xffffd8ef.0x12345671.0x7654323.0x3.0x10.0x12.0x67 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7fffd8f0.0x0.0x12345672.0x7654324.0xf.0x11.0x66.0x2713 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x80000001.0x1.0x12345673.0x7654330.0x10.0x65.0x2712.0x80000004 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711.0x80000003.0x80000003 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x80000003.0xe.0x12345680.0x7654385.0x2710.0x80000002.0x80000002.0x4 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x8000000f.0xf.0x123456d4.0x7656a31.0x80000001.0x80000001.0x3.0xedcba993 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x80000010.0x63.0x12347d80.0x87654322.0x80000000.0x2.0xedcba992.0xf89abce2 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x80000064.0x270f.0x92345671.0x87654321.0x1.0xedcba991.0xf89abce1.0x3 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80002710.0x80000000.0x92345670.0x7654322.0xedcba990.0xf89abce0.0x2.0x2 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x7fffffff.0x12345671.0xf530ecb1.0xf89abcdf.0x1.0x1.0x1 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x80000001.0xedcba98f.0xacf134f.0x7654321.0xffffffff.0xffffffff.0xffffffff.0xfffffff4 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x6dcba990.0xf89abcde.0x12345670.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3 ++vsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x789abcdf.0xffffffff.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x10 ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x4.0x11 ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x3.0x5.0x12 ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x2.0x4.0x6.0x1e ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffef.0x1234560c.0x7651c11.0x1.0x3.0x5.0x12.0x1f ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9b.0x12342f60.0x7654322.0x2.0x4.0x11.0x13.0x73 ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ef.0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0x80000010 ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x12345673.0x7654330.0x10.0x65.0x2712.0x80000004.0x8000000f ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2.0x1234567f.0x7654331.0x64.0x2711.0x80000003.0x80000003.0x10 ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xe.0x12345680.0x7654385.0x2710.0x80000002.0x80000002.0x4.0xedcba99f ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xf.0x123456d4.0x7656a31.0x80000001.0x80000001.0x3.0xedcba993.0xf89abcee ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x63.0x12347d80.0x87654322.0x80000000.0x2.0xedcba992.0xf89abce2.0xf ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270f.0x92345671.0x87654321.0x1.0xedcba991.0xf89abce1.0x3.0xe ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x92345670.0x7654322.0xedcba990.0xf89abce0.0x2.0x2.0xd ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x12345671.0xf530ecb1.0xf89abcdf.0x1.0x1.0x1.0xc ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98f.0xacf134f.0x7654321.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff ++vsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcde.0x12345670.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x12345670.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900 ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x11 ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x10.0x12 ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x4.0x11.0x13 ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x3.0x5.0x12.0x1f ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345660.0x76542bd.0xffffd8f0.0x2.0x4.0x6.0x1e.0x20 ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1234560c.0x7651c11.0x1.0x3.0x5.0x12.0x1f.0x74 ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12342f60.0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720 ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f.0x80000011 ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0x80000010.0x80000010 ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x12345673.0x7654330.0x10.0x65.0x2712.0x80000004.0x8000000f.0x11 ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1234567f.0x7654331.0x64.0x2711.0x80000003.0x80000003.0x10.0xedcba9a0 ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12345680.0x7654385.0x2710.0x80000002.0x80000002.0x4.0xedcba99f.0xf89abcef ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x123456d4.0x7656a31.0x80000001.0x80000001.0x3.0xedcba993.0xf89abcee.0x10 ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12347d80.0x87654322.0x80000000.0x2.0xedcba992.0xf89abce2.0xf.0xf ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x92345671.0x87654321.0x1.0xedcba991.0xf89abce1.0x3.0xe.0xe ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x92345670.0x7654322.0xedcba990.0xf89abce0.0x2.0x2.0xd.0xd ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x12345671.0xf530ecb1.0xf89abcdf.0x1.0x1.0x1.0xc.0x1 ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xacf134f.0x7654321.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7654321.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x65 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x11.0x66 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x10.0x12.0x67 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x4.0x11.0x13.0x73 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654311.0xffffff9c.0xffffd8f1.0x3.0x5.0x12.0x1f.0x74 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x76542bd.0xffffd8f0.0x2.0x4.0x6.0x1e.0x20.0xc8 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7651c11.0x1.0x3.0x5.0x12.0x1f.0x74.0x2774 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720.0x80000065 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7654323.0x3.0x10.0x12.0x67.0x271f.0x80000011.0x80000064 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7654324.0xf.0x11.0x66.0x2713.0x80000010.0x80000010.0x65 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7654330.0x10.0x65.0x2712.0x80000004.0x8000000f.0x11.0xedcba9f4 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7654331.0x64.0x2711.0x80000003.0x80000003.0x10.0xedcba9a0.0xf89abd43 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7654385.0x2710.0x80000002.0x80000002.0x4.0xedcba99f.0xf89abcef.0x64 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7656a31.0x80000001.0x80000001.0x3.0xedcba993.0xf89abcee.0x10.0x63 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x87654322.0x80000000.0x2.0xedcba992.0xf89abce2.0xf.0xf.0x62 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x87654321.0x1.0xedcba991.0xf89abce1.0x3.0xe.0xe.0x61 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7654322.0xedcba990.0xf89abce0.0x2.0x2.0xd.0xd.0x55 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf530ecb1.0xf89abcdf.0x1.0x1.0x1.0xc.0x1.0x54 ++vsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++=== Running test on vcmpgew=== ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpgew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++=== Running test on vcmpeqw=== ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpeqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpeqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++=== Running test on vcmplew=== ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x0.0x1 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x0.0x0.0x1 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x1.0x1 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x0.0x0.0x1.0x1 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmplew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x1.0x1.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmplew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x0.0x1.0x1 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x1.0x0.0x1.0x1 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmplew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x1 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x0.0x1.0x1.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmplew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x1 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x0.0x1.0x0.0x1.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x1 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x0.0x1.0x0.0x0.0x0.0x1 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x0.0x1.0x0.0x0.0x1.0x0 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x0.0x1.0x0.0x1.0x0.0x0 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmplew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x0.0x1.0x1.0x0.0x0.0x1.0x0 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x0.0x1.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x0.0x1.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x0.0x1.0x0.0x0.0x1.0x0.0x0 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x0.0x1.0x0.0x1.0x0.0x0.0x1 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x0.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x1.0x1.0x0.0x0.0x1.0x0.0x0 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x1.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x1.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x1.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x1.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmplew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x0.0x0.0x1.0x1.0x1.0x0 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x0.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x0.0x0.0x1.0x1.0x1.0x0.0x0 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmplew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++=== Running test on vcmpltw=== ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x0.0x1 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x0.0x0.0x1 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x1.0x1 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x0.0x0.0x1.0x1 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x1.0x1.0x1 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x0.0x1.0x1 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x1.0x0.0x1.0x1 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x1 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x0.0x1.0x1.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmpltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x1 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x0.0x1.0x0.0x1.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x1 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x0.0x1.0x0.0x0.0x0.0x1 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x0.0x1.0x0.0x0.0x1.0x0 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x0.0x1.0x0.0x1.0x0.0x0 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmpltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x1 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x0.0x1.0x1.0x0.0x0.0x1.0x0 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x0.0x1.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x0.0x1.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x0.0x1.0x0.0x0.0x1.0x0.0x0 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x0.0x1.0x0.0x1.0x0.0x0.0x1 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x0.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x1.0x1.0x0.0x0.0x1.0x0.0x0 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x1.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x1.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x1.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x1.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x1.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x0.0x0.0x1.0x1.0x1.0x0 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x0.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x0.0x0.0x1.0x1.0x1.0x0.0x0 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x1 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x1.0x0.0x0.0x1.0x1 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x1.0x0.0x0.0x1.0x1.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++=== Running test on vcmpulew=== ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x1 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x1 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x0.0x0.0x1.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x0.0x0.0x0.0x1.0x0 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x0.0x0.0x1.0x0.0x0 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x0 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x0.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x0.0x1 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x0.0x1 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x1 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x0.0x1.0x1 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x0.0x1.0x1.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x0.0x1.0x1.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x1.0x1.0x0.0x0.0x0.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x0.0x0.0x1.0x1.0x1.0x0 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x1.0x1.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x0.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x0.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpulew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++=== Running test on vcmpultw=== ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x1 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x1 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x0.0x0.0x1.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x0.0x1.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x0.0x0.0x0.0x1.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x0.0x0.0x1.0x0.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x0.0x1.0x0.0x0.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x0.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x0.0x1 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x0.0x1 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x0.0x1 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x1 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x1.0x1.0x0.0x0 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x1.0x0.0x0.0x0 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x0.0x1.0x1 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x0.0x1.0x1 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x0.0x0.0x1.0x1 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x0.0x1.0x1.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x0.0x1.0x1.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x0.0x1.0x1.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x1.0x1.0x0.0x0.0x0.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x0.0x0.0x1.0x1.0x1.0x0 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x1.0x1.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x0.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x0.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x0.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x0 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x1.0x1.0x1.0x1.0x0.0x0.0x0 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x1.0x1.0x1.0x0.0x0.0x0.0x0 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vcmpultw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++=== Running test on vsllw=== ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x100.0x200.0x300.0xf00.0x1000.0x6400.0x271000 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x10000.0x20000.0x30000.0xf0000.0x100000.0x640000.0x27100000 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x800000.0x1000000.0x1800000.0x7800000.0x8000000.0x32000000.0x88000000 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x8000.0x10000.0x18000.0x78000.0x80000.0x320000.0x13880000 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x8000.0x10000.0x18000.0x78000.0x80000.0x320000.0x13880000 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x80.0x100.0x180.0x780.0x800.0x3200.0x138800 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x80.0x100.0x180.0x780.0x800.0x3200.0x138800 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x80.0x100.0x180.0x780.0x800.0x3200.0x138800 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x80000000.0x0.0x80000000.0x80000000.0x0.0x0.0x0 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x8.0x10.0x18.0x78.0x80.0x320.0x13880 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x10000000.0x20000000.0x30000000.0xf0000000.0x0.0x40000000.0x0 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x80.0x100.0x180.0x780.0x800.0x3200.0x138800 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x100.0x200.0x300.0xf00.0x1000.0x6400.0x271000 ++vsllw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x100.0x200.0x300.0xf00.0x1000.0x6400.0x271000.0xffffff00 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x10000.0x20000.0x30000.0xf0000.0x100000.0x640000.0x27100000.0xffff0000 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000000 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000000 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000000 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x800000.0x1000000.0x1800000.0x7800000.0x8000000.0x32000000.0x88000000.0xff800000 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x8000.0x10000.0x18000.0x78000.0x80000.0x320000.0x13880000.0xffff8000 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x8000.0x10000.0x18000.0x78000.0x80000.0x320000.0x13880000.0xffff8000 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x80.0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffff80 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x80.0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffff80 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x80.0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffff80 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80000000.0x0.0x80000000.0x80000000.0x0.0x0.0x0.0x80000000 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8.0x10.0x18.0x78.0x80.0x320.0x13880.0xfffffff8 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x10000000.0x20000000.0x30000000.0xf0000000.0x0.0x40000000.0x0.0xf0000000 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x80.0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffff80 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x100.0x200.0x300.0xf00.0x1000.0x6400.0x271000.0xffffff00 ++vsllw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x200.0x300.0xf00.0x1000.0x6400.0x271000.0xffffff00.0xfffffe00 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000.0x30000.0xf0000.0x100000.0x640000.0x27100000.0xffff0000.0xfffe0000 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000000.0xfe000000 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000000.0xfe000000 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000000.0xfe000000 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1000000.0x1800000.0x7800000.0x8000000.0x32000000.0x88000000.0xff800000.0xff000000 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x10000.0x18000.0x78000.0x80000.0x320000.0x13880000.0xffff8000.0xffff0000 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x10000.0x18000.0x78000.0x80000.0x320000.0x13880000.0xffff8000.0xffff0000 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffff80.0xffffff00 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffff80.0xffffff00 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffff80.0xffffff00 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x80000000.0x80000000.0x0.0x0.0x0.0x80000000.0x0 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x10.0x18.0x78.0x80.0x320.0x13880.0xfffffff8.0xfffffff0 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x30000000.0xf0000000.0x0.0x40000000.0x0.0xf0000000.0xe0000000 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffff80.0xffffff00 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x200.0x300.0xf00.0x1000.0x6400.0x271000.0xffffff00.0xfffffe00 ++vsllw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x300.0xf00.0x1000.0x6400.0x271000.0xffffff00.0xfffffe00.0xfffffd00 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x30000.0xf0000.0x100000.0x640000.0x27100000.0xffff0000.0xfffe0000.0xfffd0000 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000000.0xfe000000.0xfd000000 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000000.0xfe000000.0xfd000000 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000000.0xfe000000.0xfd000000 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1800000.0x7800000.0x8000000.0x32000000.0x88000000.0xff800000.0xff000000.0xfe800000 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x18000.0x78000.0x80000.0x320000.0x13880000.0xffff8000.0xffff0000.0xfffe8000 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x18000.0x78000.0x80000.0x320000.0x13880000.0xffff8000.0xffff0000.0xfffe8000 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x180.0x780.0x800.0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x180.0x780.0x800.0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x180.0x780.0x800.0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80000000.0x80000000.0x0.0x0.0x0.0x80000000.0x0.0x80000000 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x18.0x78.0x80.0x320.0x13880.0xfffffff8.0xfffffff0.0xffffffe8 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x30000000.0xf0000000.0x0.0x40000000.0x0.0xf0000000.0xe0000000.0xd0000000 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x180.0x780.0x800.0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x300.0xf00.0x1000.0x6400.0x271000.0xffffff00.0xfffffe00.0xfffffd00 ++vsllw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf00.0x1000.0x6400.0x271000.0xffffff00.0xfffffe00.0xfffffd00.0xfffff100 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xf0000.0x100000.0x640000.0x27100000.0xffff0000.0xfffe0000.0xfffd0000.0xfff10000 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xf000000.0x10000000.0x64000000.0x10000000.0xff000000.0xfe000000.0xfd000000.0xf1000000 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xf000000.0x10000000.0x64000000.0x10000000.0xff000000.0xfe000000.0xfd000000.0xf1000000 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xf000000.0x10000000.0x64000000.0x10000000.0xff000000.0xfe000000.0xfd000000.0xf1000000 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7800000.0x8000000.0x32000000.0x88000000.0xff800000.0xff000000.0xfe800000.0xf8800000 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x78000.0x80000.0x320000.0x13880000.0xffff8000.0xffff0000.0xfffe8000.0xfff88000 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x78000.0x80000.0x320000.0x13880000.0xffff8000.0xffff0000.0xfffe8000.0xfff88000 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x780.0x800.0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x780.0x800.0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x780.0x800.0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80000000.0x0.0x0.0x0.0x80000000.0x0.0x80000000.0x80000000 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x78.0x80.0x320.0x13880.0xfffffff8.0xfffffff0.0xffffffe8.0xffffff88 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf0000000.0x0.0x40000000.0x0.0xf0000000.0xe0000000.0xd0000000.0x10000000 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x780.0x800.0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf00.0x1000.0x6400.0x271000.0xffffff00.0xfffffe00.0xfffffd00.0xfffff100 ++vsllw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1000.0x6400.0x271000.0xffffff00.0xfffffe00.0xfffffd00.0xfffff100.0xfffff000 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x100000.0x640000.0x27100000.0xffff0000.0xfffe0000.0xfffd0000.0xfff10000.0xfff00000 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x10000000.0x64000000.0x10000000.0xff000000.0xfe000000.0xfd000000.0xf1000000.0xf0000000 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x10000000.0x64000000.0x10000000.0xff000000.0xfe000000.0xfd000000.0xf1000000.0xf0000000 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x10000000.0x64000000.0x10000000.0xff000000.0xfe000000.0xfd000000.0xf1000000.0xf0000000 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x8000000.0x32000000.0x88000000.0xff800000.0xff000000.0xfe800000.0xf8800000.0xf8000000 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x80000.0x320000.0x13880000.0xffff8000.0xffff0000.0xfffe8000.0xfff88000.0xfff80000 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x80000.0x320000.0x13880000.0xffff8000.0xffff0000.0xfffe8000.0xfff88000.0xfff80000 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x800.0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x800.0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x800.0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x80000000.0x0.0x80000000.0x80000000.0x0 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80.0x320.0x13880.0xfffffff8.0xfffffff0.0xffffffe8.0xffffff88.0xffffff80 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x40000000.0x0.0xf0000000.0xe0000000.0xd0000000.0x10000000.0x0 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x800.0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1000.0x6400.0x271000.0xffffff00.0xfffffe00.0xfffffd00.0xfffff100.0xfffff000 ++vsllw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x6400.0x271000.0xffffff00.0xfffffe00.0xfffffd00.0xfffff100.0xfffff000.0xffff9c00 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x640000.0x27100000.0xffff0000.0xfffe0000.0xfffd0000.0xfff10000.0xfff00000.0xff9c0000 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x64000000.0x10000000.0xff000000.0xfe000000.0xfd000000.0xf1000000.0xf0000000.0x9c000000 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x64000000.0x10000000.0xff000000.0xfe000000.0xfd000000.0xf1000000.0xf0000000.0x9c000000 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x64000000.0x10000000.0xff000000.0xfe000000.0xfd000000.0xf1000000.0xf0000000.0x9c000000 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x32000000.0x88000000.0xff800000.0xff000000.0xfe800000.0xf8800000.0xf8000000.0xce000000 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x320000.0x13880000.0xffff8000.0xffff0000.0xfffe8000.0xfff88000.0xfff80000.0xffce0000 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x320000.0x13880000.0xffff8000.0xffff0000.0xfffe8000.0xfff88000.0xfff80000.0xffce0000 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x80000000.0x0.0x80000000.0x80000000.0x0.0x0 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x320.0x13880.0xfffffff8.0xfffffff0.0xffffffe8.0xffffff88.0xffffff80.0xfffffce0 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x40000000.0x0.0xf0000000.0xe0000000.0xd0000000.0x10000000.0x0.0xc0000000 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x3200.0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x6400.0x271000.0xffffff00.0xfffffe00.0xfffffd00.0xfffff100.0xfffff000.0xffff9c00 ++vsllw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x271000.0xffffff00.0xfffffe00.0xfffffd00.0xfffff100.0xfffff000.0xffff9c00.0xffd8f000 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x27100000.0xffff0000.0xfffe0000.0xfffd0000.0xfff10000.0xfff00000.0xff9c0000.0xd8f00000 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x10000000.0xff000000.0xfe000000.0xfd000000.0xf1000000.0xf0000000.0x9c000000.0xf0000000 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x10000000.0xff000000.0xfe000000.0xfd000000.0xf1000000.0xf0000000.0x9c000000.0xf0000000 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x10000000.0xff000000.0xfe000000.0xfd000000.0xf1000000.0xf0000000.0x9c000000.0xf0000000 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x88000000.0xff800000.0xff000000.0xfe800000.0xf8800000.0xf8000000.0xce000000.0x78000000 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x13880000.0xffff8000.0xffff0000.0xfffe8000.0xfff88000.0xfff80000.0xffce0000.0xec780000 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x13880000.0xffff8000.0xffff0000.0xfffe8000.0xfff88000.0xfff80000.0xffce0000.0xec780000 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x80000000.0x0.0x80000000.0x80000000.0x0.0x0.0x0 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x13880.0xfffffff8.0xfffffff0.0xffffffe8.0xffffff88.0xffffff80.0xfffffce0.0xfffec780 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0xf0000000.0xe0000000.0xd0000000.0x10000000.0x0.0xc0000000.0x0 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x138800.0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x271000.0xffffff00.0xfffffe00.0xfffffd00.0xfffff100.0xfffff000.0xffff9c00.0xffd8f000 ++vsllw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff00.0xfffffe00.0xfffffd00.0xfffff100.0xfffff000.0xffff9c00.0xffd8f000.0xffffff00 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff0000.0xfffe0000.0xfffd0000.0xfff10000.0xfff00000.0xff9c0000.0xd8f00000.0xffff0000 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff000000.0xfe000000.0xfd000000.0xf1000000.0xf0000000.0x9c000000.0xf0000000.0xff000000 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xff000000.0xfe000000.0xfd000000.0xf1000000.0xf0000000.0x9c000000.0xf0000000.0xff000000 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff000000.0xfe000000.0xfd000000.0xf1000000.0xf0000000.0x9c000000.0xf0000000.0xff000000 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xff800000.0xff000000.0xfe800000.0xf8800000.0xf8000000.0xce000000.0x78000000.0xff800000 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff8000.0xffff0000.0xfffe8000.0xfff88000.0xfff80000.0xffce0000.0xec780000.0xffff8000 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff8000.0xffff0000.0xfffe8000.0xfff88000.0xfff80000.0xffce0000.0xec780000.0xffff8000 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80000000.0x0.0x80000000.0x80000000.0x0.0x0.0x0.0x80000000 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffff8.0xfffffff0.0xffffffe8.0xffffff88.0xffffff80.0xfffffce0.0xfffec780.0xfffffff8 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf0000000.0xe0000000.0xd0000000.0x10000000.0x0.0xc0000000.0x0.0xf0000000 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff80.0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff00.0xfffffe00.0xfffffd00.0xfffff100.0xfffff000.0xffff9c00.0xffd8f000.0xffffff00 ++vsllw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffe00.0xfffffd00.0xfffff100.0xfffff000.0xffff9c00.0xffd8f000.0xffffff00.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffe0000.0xfffd0000.0xfff10000.0xfff00000.0xff9c0000.0xd8f00000.0xffff0000.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfe000000.0xfd000000.0xf1000000.0xf0000000.0x9c000000.0xf0000000.0xff000000.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfe000000.0xfd000000.0xf1000000.0xf0000000.0x9c000000.0xf0000000.0xff000000.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xfe000000.0xfd000000.0xf1000000.0xf0000000.0x9c000000.0xf0000000.0xff000000.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xff000000.0xfe800000.0xf8800000.0xf8000000.0xce000000.0x78000000.0xff800000.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff0000.0xfffe8000.0xfff88000.0xfff80000.0xffce0000.0xec780000.0xffff8000.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff0000.0xfffe8000.0xfff88000.0xfff80000.0xffce0000.0xec780000.0xffff8000.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x80000000.0x80000000.0x0.0x0.0x0.0x80000000.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffff0.0xffffffe8.0xffffff88.0xffffff80.0xfffffce0.0xfffec780.0xfffffff8.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xe0000000.0xd0000000.0x10000000.0x0.0xc0000000.0x0.0xf0000000.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff00.0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffffe00.0xfffffd00.0xfffff100.0xfffff000.0xffff9c00.0xffd8f000.0xffffff00.0x0 ++vsllw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffd00.0xfffff100.0xfffff000.0xffff9c00.0xffd8f000.0xffffff00.0x0.0xffffff00 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffd0000.0xfff10000.0xfff00000.0xff9c0000.0xd8f00000.0xffff0000.0x0.0xffff0000 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfd000000.0xf1000000.0xf0000000.0x9c000000.0xf0000000.0xff000000.0x0.0xff000000 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfd000000.0xf1000000.0xf0000000.0x9c000000.0xf0000000.0xff000000.0x0.0xff000000 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xfd000000.0xf1000000.0xf0000000.0x9c000000.0xf0000000.0xff000000.0x0.0xff000000 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfe800000.0xf8800000.0xf8000000.0xce000000.0x78000000.0xff800000.0x0.0xff800000 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffe8000.0xfff88000.0xfff80000.0xffce0000.0xec780000.0xffff8000.0x0.0xffff8000 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffe8000.0xfff88000.0xfff80000.0xffce0000.0xec780000.0xffff8000.0x0.0xffff8000 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80000000.0x80000000.0x0.0x0.0x0.0x80000000.0x0.0x80000000 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffe8.0xffffff88.0xffffff80.0xfffffce0.0xfffec780.0xfffffff8.0x0.0xfffffff8 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xd0000000.0x10000000.0x0.0xc0000000.0x0.0xf0000000.0x0.0xf0000000 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffe80.0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffffd00.0xfffff100.0xfffff000.0xffff9c00.0xffd8f000.0xffffff00.0x0.0xffffff00 ++vsllw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffff100.0xfffff000.0xffff9c00.0xffd8f000.0xffffff00.0x0.0xffffff00.0x34567000 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfff10000.0xfff00000.0xff9c0000.0xd8f00000.0xffff0000.0x0.0xffff0000.0x56700000 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xf1000000.0xf0000000.0x9c000000.0xf0000000.0xff000000.0x0.0xff000000.0x70000000 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xf1000000.0xf0000000.0x9c000000.0xf0000000.0xff000000.0x0.0xff000000.0x70000000 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xf1000000.0xf0000000.0x9c000000.0xf0000000.0xff000000.0x0.0xff000000.0x70000000 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xf8800000.0xf8000000.0xce000000.0x78000000.0xff800000.0x0.0xff800000.0x38000000 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfff88000.0xfff80000.0xffce0000.0xec780000.0xffff8000.0x0.0xffff8000.0x2b380000 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfff88000.0xfff80000.0xffce0000.0xec780000.0xffff8000.0x0.0xffff8000.0x2b380000 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80000000.0x0.0x0.0x0.0x80000000.0x0.0x80000000.0x0 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffff88.0xffffff80.0xfffffce0.0xfffec780.0xfffffff8.0x0.0xfffffff8.0x91a2b380 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x10000000.0x0.0xc0000000.0x0.0xf0000000.0x0.0xf0000000.0x0 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffff880.0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffff100.0xfffff000.0xffff9c00.0xffd8f000.0xffffff00.0x0.0xffffff00.0x34567000 ++vsllw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffff000.0xffff9c00.0xffd8f000.0xffffff00.0x0.0xffffff00.0x34567000.0x65432100 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfff00000.0xff9c0000.0xd8f00000.0xffff0000.0x0.0xffff0000.0x56700000.0x43210000 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xf0000000.0x9c000000.0xf0000000.0xff000000.0x0.0xff000000.0x70000000.0x21000000 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xf0000000.0x9c000000.0xf0000000.0xff000000.0x0.0xff000000.0x70000000.0x21000000 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xf0000000.0x9c000000.0xf0000000.0xff000000.0x0.0xff000000.0x70000000.0x21000000 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xf8000000.0xce000000.0x78000000.0xff800000.0x0.0xff800000.0x38000000.0x90800000 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfff80000.0xffce0000.0xec780000.0xffff8000.0x0.0xffff8000.0x2b380000.0xa1908000 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfff80000.0xffce0000.0xec780000.0xffff8000.0x0.0xffff8000.0x2b380000.0xa1908000 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x80000000.0x0.0x80000000.0x0.0x80000000 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffff80.0xfffffce0.0xfffec780.0xfffffff8.0x0.0xfffffff8.0x91a2b380.0x3b2a1908 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0xc0000000.0x0.0xf0000000.0x0.0xf0000000.0x0.0x10000000 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffff800.0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffff000.0xffff9c00.0xffd8f000.0xffffff00.0x0.0xffffff00.0x34567000.0x65432100 ++vsllw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffff9c00.0xffd8f000.0xffffff00.0x0.0xffffff00.0x34567000.0x65432100.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xff9c0000.0xd8f00000.0xffff0000.0x0.0xffff0000.0x56700000.0x43210000.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x9c000000.0xf0000000.0xff000000.0x0.0xff000000.0x70000000.0x21000000.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x9c000000.0xf0000000.0xff000000.0x0.0xff000000.0x70000000.0x21000000.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x9c000000.0xf0000000.0xff000000.0x0.0xff000000.0x70000000.0x21000000.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xce000000.0x78000000.0xff800000.0x0.0xff800000.0x38000000.0x90800000.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffce0000.0xec780000.0xffff8000.0x0.0xffff8000.0x2b380000.0xa1908000.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffce0000.0xec780000.0xffff8000.0x0.0xffff8000.0x2b380000.0xa1908000.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x80000000.0x0.0x80000000.0x0.0x80000000.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffce0.0xfffec780.0xfffffff8.0x0.0xfffffff8.0x91a2b380.0x3b2a1908.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xc0000000.0x0.0xf0000000.0x0.0xf0000000.0x0.0x10000000.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffce00.0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffff9c00.0xffd8f000.0xffffff00.0x0.0xffffff00.0x34567000.0x65432100.0x0 ++vsllw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffd8f000.0xffffff00.0x0.0xffffff00.0x34567000.0x65432100.0x0.0x100 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xd8f00000.0xffff0000.0x0.0xffff0000.0x56700000.0x43210000.0x0.0x10000 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xf0000000.0xff000000.0x0.0xff000000.0x70000000.0x21000000.0x0.0x1000000 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xf0000000.0xff000000.0x0.0xff000000.0x70000000.0x21000000.0x0.0x1000000 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xf0000000.0xff000000.0x0.0xff000000.0x70000000.0x21000000.0x0.0x1000000 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x78000000.0xff800000.0x0.0xff800000.0x38000000.0x90800000.0x0.0x800000 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xec780000.0xffff8000.0x0.0xffff8000.0x2b380000.0xa1908000.0x0.0x8000 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xec780000.0xffff8000.0x0.0xffff8000.0x2b380000.0xa1908000.0x0.0x8000 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x80000000.0x0.0x80000000.0x0.0x80000000.0x0.0x80000000 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffec780.0xfffffff8.0x0.0xfffffff8.0x91a2b380.0x3b2a1908.0x0.0x8 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0xf0000000.0x0.0xf0000000.0x0.0x10000000.0x0.0x10000000 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffec7800.0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffd8f000.0xffffff00.0x0.0xffffff00.0x34567000.0x65432100.0x0.0x100 ++vsllw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff00.0x0.0xffffff00.0x34567000.0x65432100.0x0.0x100.0x200 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff0000.0x0.0xffff0000.0x56700000.0x43210000.0x0.0x10000.0x20000 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff000000.0x0.0xff000000.0x70000000.0x21000000.0x0.0x1000000.0x2000000 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xff000000.0x0.0xff000000.0x70000000.0x21000000.0x0.0x1000000.0x2000000 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff000000.0x0.0xff000000.0x70000000.0x21000000.0x0.0x1000000.0x2000000 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xff800000.0x0.0xff800000.0x38000000.0x90800000.0x0.0x800000.0x1000000 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff8000.0x0.0xffff8000.0x2b380000.0xa1908000.0x0.0x8000.0x10000 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff8000.0x0.0xffff8000.0x2b380000.0xa1908000.0x0.0x8000.0x10000 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80.0x100 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80.0x100 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80.0x100 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80000000.0x0.0x80000000.0x0.0x80000000.0x0.0x80000000.0x0 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffff8.0x0.0xfffffff8.0x91a2b380.0x3b2a1908.0x0.0x8.0x10 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf0000000.0x0.0xf0000000.0x0.0x10000000.0x0.0x10000000.0x20000000 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff80.0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80.0x100 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff00.0x0.0xffffff00.0x34567000.0x65432100.0x0.0x100.0x200 ++vsllw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0xffffff00.0x34567000.0x65432100.0x0.0x100.0x200.0x300 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0xffff0000.0x56700000.0x43210000.0x0.0x10000.0x20000.0x30000 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0xff000000.0x70000000.0x21000000.0x0.0x1000000.0x2000000.0x3000000 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0xff000000.0x70000000.0x21000000.0x0.0x1000000.0x2000000.0x3000000 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0xff000000.0x70000000.0x21000000.0x0.0x1000000.0x2000000.0x3000000 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0xff800000.0x38000000.0x90800000.0x0.0x800000.0x1000000.0x1800000 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0xffff8000.0x2b380000.0xa1908000.0x0.0x8000.0x10000.0x18000 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0xffff8000.0x2b380000.0xa1908000.0x0.0x8000.0x10000.0x18000 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80.0x100.0x180 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80.0x100.0x180 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80.0x100.0x180 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x80000000.0x0.0x80000000.0x0.0x80000000.0x0.0x80000000 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0xfffffff8.0x91a2b380.0x3b2a1908.0x0.0x8.0x10.0x18 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0xf0000000.0x0.0x10000000.0x0.0x10000000.0x20000000.0x30000000 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80.0x100.0x180 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0xffffff00.0x34567000.0x65432100.0x0.0x100.0x200.0x300 ++vsllw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff00.0x34567000.0x65432100.0x0.0x100.0x200.0x300.0xf00 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff0000.0x56700000.0x43210000.0x0.0x10000.0x20000.0x30000.0xf0000 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff000000.0x70000000.0x21000000.0x0.0x1000000.0x2000000.0x3000000.0xf000000 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xff000000.0x70000000.0x21000000.0x0.0x1000000.0x2000000.0x3000000.0xf000000 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff000000.0x70000000.0x21000000.0x0.0x1000000.0x2000000.0x3000000.0xf000000 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xff800000.0x38000000.0x90800000.0x0.0x800000.0x1000000.0x1800000.0x7800000 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff8000.0x2b380000.0xa1908000.0x0.0x8000.0x10000.0x18000.0x78000 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff8000.0x2b380000.0xa1908000.0x0.0x8000.0x10000.0x18000.0x78000 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80.0x100.0x180.0x780 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80.0x100.0x180.0x780 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80.0x100.0x180.0x780 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80000000.0x0.0x80000000.0x0.0x80000000.0x0.0x80000000.0x80000000 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffff8.0x91a2b380.0x3b2a1908.0x0.0x8.0x10.0x18.0x78 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf0000000.0x0.0x10000000.0x0.0x10000000.0x20000000.0x30000000.0xf0000000 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff80.0x1a2b3800.0xb2a19080.0x0.0x80.0x100.0x180.0x780 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff00.0x34567000.0x65432100.0x0.0x100.0x200.0x300.0xf00 ++vsllw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x34567000.0x65432100.0x0.0x100.0x200.0x300.0xf00.0x1000 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x56700000.0x43210000.0x0.0x10000.0x20000.0x30000.0xf0000.0x100000 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x70000000.0x21000000.0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x70000000.0x21000000.0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x70000000.0x21000000.0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x38000000.0x90800000.0x0.0x800000.0x1000000.0x1800000.0x7800000.0x8000000 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x2b380000.0xa1908000.0x0.0x8000.0x10000.0x18000.0x78000.0x80000 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2b380000.0xa1908000.0x0.0x8000.0x10000.0x18000.0x78000.0x80000 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1a2b3800.0xb2a19080.0x0.0x80.0x100.0x180.0x780.0x800 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1a2b3800.0xb2a19080.0x0.0x80.0x100.0x180.0x780.0x800 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1a2b3800.0xb2a19080.0x0.0x80.0x100.0x180.0x780.0x800 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x80000000.0x0.0x80000000.0x0.0x80000000.0x80000000.0x0 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x91a2b380.0x3b2a1908.0x0.0x8.0x10.0x18.0x78.0x80 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x10000000.0x0.0x10000000.0x20000000.0x30000000.0xf0000000.0x0 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1a2b3800.0xb2a19080.0x0.0x80.0x100.0x180.0x780.0x800 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x34567000.0x65432100.0x0.0x100.0x200.0x300.0xf00.0x1000 ++vsllw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x65432100.0x0.0x100.0x200.0x300.0xf00.0x1000.0x6400 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x43210000.0x0.0x10000.0x20000.0x30000.0xf0000.0x100000.0x640000 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x21000000.0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x21000000.0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x21000000.0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x90800000.0x0.0x800000.0x1000000.0x1800000.0x7800000.0x8000000.0x32000000 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xa1908000.0x0.0x8000.0x10000.0x18000.0x78000.0x80000.0x320000 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xa1908000.0x0.0x8000.0x10000.0x18000.0x78000.0x80000.0x320000 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xb2a19080.0x0.0x80.0x100.0x180.0x780.0x800.0x3200 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xb2a19080.0x0.0x80.0x100.0x180.0x780.0x800.0x3200 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xb2a19080.0x0.0x80.0x100.0x180.0x780.0x800.0x3200 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80000000.0x0.0x80000000.0x0.0x80000000.0x80000000.0x0.0x0 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x3b2a1908.0x0.0x8.0x10.0x18.0x78.0x80.0x320 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x10000000.0x0.0x10000000.0x20000000.0x30000000.0xf0000000.0x0.0x40000000 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xb2a19080.0x0.0x80.0x100.0x180.0x780.0x800.0x3200 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x65432100.0x0.0x100.0x200.0x300.0xf00.0x1000.0x6400 ++vsllw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++=== Running test on vsrlw=== ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x27 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x4e ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x4e ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x4e ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x1.0x2.0xc.0x4e2 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x4e ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x27 ++vsrlw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x27.0xffffff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1ff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1ffff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1ffff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x4e.0x1ffffff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x4e.0x1ffffff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x4e.0x1ffffff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1 ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x1.0x2.0xc.0x4e2.0x1fffffff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xf ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x4e.0x1ffffff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x27.0xffffff ++vsrlw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x27.0xffffff.0xffffff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0xffff.0xffff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0xff.0xff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0xff.0xff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0xff.0xff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x1ff.0x1ff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1ffff.0x1ffff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x1ffff.0x1ffff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x4e.0x1ffffff.0x1ffffff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x4e.0x1ffffff.0x1ffffff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x4e.0x1ffffff.0x1ffffff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x1.0x1 ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x2.0xc.0x4e2.0x1fffffff.0x1fffffff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0xf.0xf ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x4e.0x1ffffff.0x1ffffff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x27.0xffffff.0xffffff ++vsrlw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x27.0xffffff.0xffffff.0xffffff ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0xffff.0xffff.0xffff ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0xff.0xff.0xff ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0xff.0xff.0xff ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0xff.0xff.0xff ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x1ff.0x1ff.0x1ff ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x1ffff.0x1ffff.0x1ffff ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x1ffff.0x1ffff.0x1ffff ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x1.0x1.0x1 ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x1.0x2.0xc.0x4e2.0x1fffffff.0x1fffffff.0x1fffffff ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0xf.0xf.0xf ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x27.0xffffff.0xffffff.0xffffff ++vsrlw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x27.0xffffff.0xffffff.0xffffff.0xffffff ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0xffff.0xffff.0xffff.0xffff ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0xff.0xff.0xff.0xff ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0xff.0xff.0xff.0xff ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0xff.0xff.0xff.0xff ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x1ff.0x1ff.0x1ff.0x1ff ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x1ffff.0x1ffff.0x1ffff.0x1ffff ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x1ffff.0x1ffff.0x1ffff.0x1ffff ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x1.0x1.0x1.0x1 ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x2.0xc.0x4e2.0x1fffffff.0x1fffffff.0x1fffffff.0x1ffffffe ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0xf.0xf.0xf.0xf ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x27.0xffffff.0xffffff.0xffffff.0xffffff ++vsrlw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x27.0xffffff.0xffffff.0xffffff.0xffffff.0xffffff ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0xffff.0xffff.0xffff.0xffff.0xffff ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0xff.0xff.0xff.0xff.0xff ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0xff.0xff.0xff.0xff.0xff ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0xff.0xff.0xff.0xff.0xff ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x1ff.0x1ff.0x1ff.0x1ff.0x1ff ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x1.0x1.0x1.0x1.0x1 ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x2.0xc.0x4e2.0x1fffffff.0x1fffffff.0x1fffffff.0x1ffffffe.0x1ffffffe ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0xf.0xf.0xf.0xf.0xf ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x27.0xffffff.0xffffff.0xffffff.0xffffff.0xffffff ++vsrlw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x27.0xffffff.0xffffff.0xffffff.0xffffff.0xffffff.0xffffff ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0xffff.0xffff.0xffff.0xffff.0xffff.0xffff ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0xff.0xff.0xff.0xff.0xff.0xff ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0xff.0xff.0xff.0xff.0xff.0xff ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0xff.0xff.0xff.0xff.0xff.0xff ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x1ff.0x1ff.0x1ff.0x1ff.0x1ff.0x1ff ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x1.0x1.0x1.0x1.0x1.0x1 ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xc.0x4e2.0x1fffffff.0x1fffffff.0x1fffffff.0x1ffffffe.0x1ffffffe.0x1ffffff3 ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0xf.0xf.0xf.0xf.0xf.0xf ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x27.0xffffff.0xffffff.0xffffff.0xffffff.0xffffff.0xffffff ++vsrlw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x27.0xffffff.0xffffff.0xffffff.0xffffff.0xffffff.0xffffff.0xffffd8 ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0xffff.0xffff.0xffff.0xffff.0xffff.0xffff.0xffff ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0xff.0xff.0xff.0xff.0xff.0xff.0xff ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0xff.0xff.0xff.0xff.0xff.0xff.0xff ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0xff.0xff.0xff.0xff.0xff.0xff.0xff ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x1ff.0x1ff.0x1ff.0x1ff.0x1ff.0x1ff.0x1ff ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1 ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1 ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1 ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x1.0x1.0x1.0x1.0x1.0x1 ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x4e2.0x1fffffff.0x1fffffff.0x1fffffff.0x1ffffffe.0x1ffffffe.0x1ffffff3.0x1ffffb1e ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0xf.0xf.0xf.0xf.0xf.0xf.0xf ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x4e.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1 ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x27.0xffffff.0xffffff.0xffffff.0xffffff.0xffffff.0xffffff.0xffffd8 ++vsrlw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff.0xffffff.0xffffff.0xffffff.0xffffff.0xffffff.0xffffd8.0x7fffff ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff.0xffff.0xffff.0xffff.0xffff.0xffff.0xffff.0x7fff ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff.0xff.0xff.0xff.0xff.0xff.0xff.0x7f ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xff.0xff.0xff.0xff.0xff.0xff.0xff.0x7f ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0xff.0xff.0xff.0xff.0xff.0xff.0x7f ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x1ff.0x1ff.0x1ff.0x1ff.0x1ff.0x1ff.0xff ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0xffff ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0xffff ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x1.0x0 ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1fffffff.0x1fffffff.0x1fffffff.0x1ffffffe.0x1ffffffe.0x1ffffff3.0x1ffffb1e.0xfffffff ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0xf.0xf.0xf.0xf.0xf.0xf.0x7 ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff.0xffffff.0xffffff.0xffffff.0xffffff.0xffffff.0xffffd8.0x7fffff ++vsrlw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff.0xffffff.0xffffff.0xffffff.0xffffff.0xffffd8.0x7fffff.0x800000 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff.0xffff.0xffff.0xffff.0xffff.0xffff.0x7fff.0x8000 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff.0xff.0xff.0xff.0xff.0xff.0x7f.0x80 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xff.0xff.0xff.0xff.0xff.0xff.0x7f.0x80 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0xff.0xff.0xff.0xff.0xff.0x7f.0x80 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x1ff.0x1ff.0x1ff.0x1ff.0x1ff.0xff.0x100 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0xffff.0x10000 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0xffff.0x10000 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x1.0x0.0x1 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1fffffff.0x1fffffff.0x1ffffffe.0x1ffffffe.0x1ffffff3.0x1ffffb1e.0xfffffff.0x10000000 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0xf.0xf.0xf.0xf.0xf.0x7.0x8 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff.0xffffff.0xffffff.0xffffff.0xffffff.0xffffd8.0x7fffff.0x800000 ++vsrlw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff.0xffffff.0xffffff.0xffffff.0xffffd8.0x7fffff.0x800000.0xffffff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff.0xffff.0xffff.0xffff.0xffff.0x7fff.0x8000.0xffff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff.0xff.0xff.0xff.0xff.0x7f.0x80.0xff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xff.0xff.0xff.0xff.0xff.0x7f.0x80.0xff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0xff.0xff.0xff.0xff.0x7f.0x80.0xff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x1ff.0x1ff.0x1ff.0x1ff.0xff.0x100.0x1ff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0xffff.0x10000.0x1ffff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1ffff.0x1ffff.0x1ffff.0x1ffff.0x1ffff.0xffff.0x10000.0x1ffff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x1.0x0.0x1.0x1 ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1fffffff.0x1ffffffe.0x1ffffffe.0x1ffffff3.0x1ffffb1e.0xfffffff.0x10000000.0x1fffffff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0xf.0xf.0xf.0xf.0x7.0x8.0xf ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff.0xffffff.0xffffff.0xffffff.0xffffd8.0x7fffff.0x800000.0xffffff ++vsrlw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff.0xffffff.0xffffff.0xffffd8.0x7fffff.0x800000.0xffffff.0x123456 ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff.0xffff.0xffff.0xffff.0x7fff.0x8000.0xffff.0x1234 ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff.0xff.0xff.0xff.0x7f.0x80.0xff.0x12 ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xff.0xff.0xff.0xff.0x7f.0x80.0xff.0x12 ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0xff.0xff.0xff.0x7f.0x80.0xff.0x12 ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x1ff.0x1ff.0x1ff.0xff.0x100.0x1ff.0x24 ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x1ffff.0x1ffff.0x1ffff.0xffff.0x10000.0x1ffff.0x2468 ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1ffff.0x1ffff.0x1ffff.0x1ffff.0xffff.0x10000.0x1ffff.0x2468 ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x1.0x0.0x1.0x1.0x0 ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1ffffffe.0x1ffffffe.0x1ffffff3.0x1ffffb1e.0xfffffff.0x10000000.0x1fffffff.0x2468ace ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0xf.0xf.0xf.0x7.0x8.0xf.0x1 ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1ffffff.0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff.0xffffff.0xffffff.0xffffd8.0x7fffff.0x800000.0xffffff.0x123456 ++vsrlw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff.0xffffff.0xffffd8.0x7fffff.0x800000.0xffffff.0x123456.0x76543 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff.0xffff.0xffff.0x7fff.0x8000.0xffff.0x1234.0x765 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff.0xff.0xff.0x7f.0x80.0xff.0x12.0x7 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xff.0xff.0xff.0x7f.0x80.0xff.0x12.0x7 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0xff.0xff.0x7f.0x80.0xff.0x12.0x7 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x1ff.0x1ff.0xff.0x100.0x1ff.0x24.0xe ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x1ffff.0x1ffff.0xffff.0x10000.0x1ffff.0x2468.0xeca ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1ffff.0x1ffff.0x1ffff.0xffff.0x10000.0x1ffff.0x2468.0xeca ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x1.0x0.0x1.0x1.0x0.0x0 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1ffffffe.0x1ffffff3.0x1ffffb1e.0xfffffff.0x10000000.0x1fffffff.0x2468ace.0xeca864 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0xf.0xf.0x7.0x8.0xf.0x1.0x0 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1ffffff.0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff.0xffffff.0xffffd8.0x7fffff.0x800000.0xffffff.0x123456.0x76543 ++vsrlw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff.0xffffd8.0x7fffff.0x800000.0xffffff.0x123456.0x76543.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff.0xffff.0x7fff.0x8000.0xffff.0x1234.0x765.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff.0xff.0x7f.0x80.0xff.0x12.0x7.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xff.0xff.0x7f.0x80.0xff.0x12.0x7.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0xff.0x7f.0x80.0xff.0x12.0x7.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x1ff.0xff.0x100.0x1ff.0x24.0xe.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x1ffff.0xffff.0x10000.0x1ffff.0x2468.0xeca.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1ffff.0x1ffff.0xffff.0x10000.0x1ffff.0x2468.0xeca.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x0.0x1.0x1.0x0.0x0.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1ffffff3.0x1ffffb1e.0xfffffff.0x10000000.0x1fffffff.0x2468ace.0xeca864.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0xf.0x7.0x8.0xf.0x1.0x0.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1ffffff.0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff.0xffffd8.0x7fffff.0x800000.0xffffff.0x123456.0x76543.0x0 ++vsrlw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffd8.0x7fffff.0x800000.0xffffff.0x123456.0x76543.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff.0x7fff.0x8000.0xffff.0x1234.0x765.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff.0x7f.0x80.0xff.0x12.0x7.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xff.0x7f.0x80.0xff.0x12.0x7.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0x7f.0x80.0xff.0x12.0x7.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0xff.0x100.0x1ff.0x24.0xe.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0xffff.0x10000.0x1ffff.0x2468.0xeca.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1ffff.0xffff.0x10000.0x1ffff.0x2468.0xeca.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x1.0x1.0x0.0x0.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1ffffb1e.0xfffffff.0x10000000.0x1fffffff.0x2468ace.0xeca864.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0x7.0x8.0xf.0x1.0x0.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1ffffb1.0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffd8.0x7fffff.0x800000.0xffffff.0x123456.0x76543.0x0.0x0 ++vsrlw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7fffff.0x800000.0xffffff.0x123456.0x76543.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7fff.0x8000.0xffff.0x1234.0x765.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7f.0x80.0xff.0x12.0x7.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7f.0x80.0xff.0x12.0x7.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7f.0x80.0xff.0x12.0x7.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xff.0x100.0x1ff.0x24.0xe.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff.0x10000.0x1ffff.0x2468.0xeca.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff.0x10000.0x1ffff.0x2468.0xeca.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x1.0x1.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffff.0x10000000.0x1fffffff.0x2468ace.0xeca864.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7.0x8.0xf.0x1.0x0.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff.0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x7fffff.0x800000.0xffffff.0x123456.0x76543.0x0.0x0.0x0 ++vsrlw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x800000.0xffffff.0x123456.0x76543.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x8000.0xffff.0x1234.0x765.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x80.0xff.0x12.0x7.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x80.0xff.0x12.0x7.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x80.0xff.0x12.0x7.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x100.0x1ff.0x24.0xe.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x10000.0x1ffff.0x2468.0xeca.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x10000.0x1ffff.0x2468.0xeca.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x10000000.0x1fffffff.0x2468ace.0xeca864.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8.0xf.0x1.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1000000.0x1ffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x800000.0xffffff.0x123456.0x76543.0x0.0x0.0x0.0x0 ++vsrlw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff.0x123456.0x76543.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff.0x1234.0x765.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff.0x12.0x7.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xff.0x12.0x7.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0x12.0x7.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x24.0xe.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x2468.0xeca.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1ffff.0x2468.0xeca.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1ffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1ffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1fffffff.0x2468ace.0xeca864.0x0.0x0.0x0.0x0.0x1 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1ffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff.0x123456.0x76543.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x123456.0x76543.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1234.0x765.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x12.0x7.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x12.0x7.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12.0x7.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x24.0xe.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x2468.0xeca.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2468.0xeca.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x2468ace.0xeca864.0x0.0x0.0x0.0x0.0x1.0x2 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x123456.0x76543.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x76543.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x765.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xe.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xeca.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xeca.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xeca86.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xeca86.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xeca86.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xeca864.0x0.0x0.0x0.0x0.0x1.0x2.0xc ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xeca86.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x76543.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsrlw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++=== Running test on vsraw=== ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x27 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x4e ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x4e ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x4e ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x1.0x2.0xc.0x4e2 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x4e ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x27 ++vsraw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x27.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x4e.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x4e.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x4e.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x1.0x2.0xc.0x4e2.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x4e.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x27.0xffffffff ++vsraw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x27.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x4e.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x4e.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x4e.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x1.0x2.0xc.0x4e2.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x4e.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x27.0xffffffff.0xffffffff ++vsraw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x27.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x4e.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x4e.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x4e.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x1.0x2.0xc.0x4e2.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x4e.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x27.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x27.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x2.0xc.0x4e2.0xffffffff.0xffffffff.0xffffffff.0xfffffffe ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x27.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x27.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x2.0xc.0x4e2.0xffffffff.0xffffffff.0xffffffff.0xfffffffe.0xfffffffe ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x27.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x27.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xc.0x4e2.0xffffffff.0xffffffff.0xffffffff.0xfffffffe.0xfffffffe.0xfffffff3 ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x27.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x27.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffd8 ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1 ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1 ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1 ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x4e2.0xffffffff.0xffffffff.0xffffffff.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffb1e ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x4e.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1 ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x27.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffd8 ++vsraw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffd8.0x7fffff ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7fff ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7f ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7f ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7f ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xff ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffff ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffff ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x0 ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffff.0xffffffff.0xffffffff.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffb1e.0xfffffff ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7 ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffd8.0x7fffff ++vsraw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffd8.0x7fffff.0xff800000 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7fff.0xffff8000 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7f.0xffffff80 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7f.0xffffff80 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7f.0xffffff80 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xff.0xffffff00 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffff.0xffff0000 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffff.0xffff0000 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x0.0xffffffff ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffff.0xffffffff.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffb1e.0xfffffff.0xf0000000 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7.0xfffffff8 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffd8.0x7fffff.0xff800000 ++vsraw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffd8.0x7fffff.0xff800000.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7fff.0xffff8000.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7f.0xffffff80.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7f.0xffffff80.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7f.0xffffff80.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xff.0xffffff00.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffff.0xffff0000.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffff.0xffff0000.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x0.0xffffffff.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffff.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffb1e.0xfffffff.0xf0000000.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7.0xfffffff8.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffffffd8.0x7fffff.0xff800000.0xffffffff ++vsraw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xffffffff.0xffffffff.0xffffffd8.0x7fffff.0xff800000.0xffffffff.0x123456 ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7fff.0xffff8000.0xffffffff.0x1234 ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7f.0xffffff80.0xffffffff.0x12 ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7f.0xffffff80.0xffffffff.0x12 ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7f.0xffffff80.0xffffffff.0x12 ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xff.0xffffff00.0xffffffff.0x24 ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffff.0xffff0000.0xffffffff.0x2468 ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0xffff.0xffff0000.0xffffffff.0x2468 ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x0.0xffffffff.0xffffffff.0x0 ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffffe.0xfffffffe.0xfffffff3.0xfffffb1e.0xfffffff.0xf0000000.0xffffffff.0x2468ace ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0xffffffff.0xffffffff.0xffffffff.0x7.0xfffffff8.0xffffffff.0x1 ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffffff.0xffffffff.0xffffffff.0xffffffd8.0x7fffff.0xff800000.0xffffffff.0x123456 ++vsraw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xffffffff.0xffffffd8.0x7fffff.0xff800000.0xffffffff.0x123456.0x76543 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xffffffff.0xffffffff.0x7fff.0xffff8000.0xffffffff.0x1234.0x765 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xffffffff.0xffffffff.0x7f.0xffffff80.0xffffffff.0x12.0x7 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0xffffffff.0xffffffff.0x7f.0xffffff80.0xffffffff.0x12.0x7 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffffff.0xffffffff.0xffffffff.0x7f.0xffffff80.0xffffffff.0x12.0x7 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffffff.0xffffffff.0xff.0xffffff00.0xffffffff.0x24.0xe ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xffffffff.0xffffffff.0xffff.0xffff0000.0xffffffff.0x2468.0xeca ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xffffffff.0xffffffff.0xffff.0xffff0000.0xffffffff.0x2468.0xeca ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffffff.0xffffffff.0xffffffff.0x0.0xffffffff.0xffffffff.0x0.0x0 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffffe.0xfffffff3.0xfffffb1e.0xfffffff.0xf0000000.0xffffffff.0x2468ace.0xeca864 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0xffffffff.0xffffffff.0x7.0xfffffff8.0xffffffff.0x1.0x0 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffffff.0xffffffff.0xffffffd8.0x7fffff.0xff800000.0xffffffff.0x123456.0x76543 ++vsraw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xffffffd8.0x7fffff.0xff800000.0xffffffff.0x123456.0x76543.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xffffffff.0x7fff.0xffff8000.0xffffffff.0x1234.0x765.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xffffffff.0x7f.0xffffff80.0xffffffff.0x12.0x7.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0xffffffff.0x7f.0xffffff80.0xffffffff.0x12.0x7.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffffff.0xffffffff.0x7f.0xffffff80.0xffffffff.0x12.0x7.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffffff.0xff.0xffffff00.0xffffffff.0x24.0xe.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xffffffff.0xffff.0xffff0000.0xffffffff.0x2468.0xeca.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xffffffff.0xffff.0xffff0000.0xffffffff.0x2468.0xeca.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffffff.0xffffffff.0x0.0xffffffff.0xffffffff.0x0.0x0.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffff3.0xfffffb1e.0xfffffff.0xf0000000.0xffffffff.0x2468ace.0xeca864.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0xffffffff.0x7.0xfffffff8.0xffffffff.0x1.0x0.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffffff.0xffffffd8.0x7fffff.0xff800000.0xffffffff.0x123456.0x76543.0x0 ++vsraw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffd8.0x7fffff.0xff800000.0xffffffff.0x123456.0x76543.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0x7fff.0xffff8000.0xffffffff.0x1234.0x765.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0x7f.0xffffff80.0xffffffff.0x12.0x7.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0x7f.0xffffff80.0xffffffff.0x12.0x7.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffffff.0x7f.0xffffff80.0xffffffff.0x12.0x7.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xff.0xffffff00.0xffffffff.0x24.0xe.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xffff.0xffff0000.0xffffffff.0x2468.0xeca.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xffff.0xffff0000.0xffffffff.0x2468.0xeca.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffffff.0x0.0xffffffff.0xffffffff.0x0.0x0.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffb1e.0xfffffff.0xf0000000.0xffffffff.0x2468ace.0xeca864.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0x7.0xfffffff8.0xffffffff.0x1.0x0.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffb1.0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffffd8.0x7fffff.0xff800000.0xffffffff.0x123456.0x76543.0x0.0x0 ++vsraw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7fffff.0xff800000.0xffffffff.0x123456.0x76543.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7fff.0xffff8000.0xffffffff.0x1234.0x765.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7f.0xffffff80.0xffffffff.0x12.0x7.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7f.0xffffff80.0xffffffff.0x12.0x7.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7f.0xffffff80.0xffffffff.0x12.0x7.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xff.0xffffff00.0xffffffff.0x24.0xe.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff.0xffff0000.0xffffffff.0x2468.0xeca.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff.0xffff0000.0xffffffff.0x2468.0xeca.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0xffffffff.0xffffffff.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffff.0xf0000000.0xffffffff.0x2468ace.0xeca864.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7.0xfffffff8.0xffffffff.0x1.0x0.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff.0xff000000.0xffffffff.0x2468ac.0xeca86.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x7fffff.0xff800000.0xffffffff.0x123456.0x76543.0x0.0x0.0x0 ++vsraw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xff800000.0xffffffff.0x123456.0x76543.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff8000.0xffffffff.0x1234.0x765.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff80.0xffffffff.0x12.0x7.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff80.0xffffffff.0x12.0x7.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffff80.0xffffffff.0x12.0x7.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffff00.0xffffffff.0x24.0xe.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff0000.0xffffffff.0x2468.0xeca.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff0000.0xffffffff.0x2468.0xeca.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xff000000.0xffffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xff000000.0xffffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xff000000.0xffffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffffff.0xffffffff.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xf0000000.0xffffffff.0x2468ace.0xeca864.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xfffffff8.0xffffffff.0x1.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xff000000.0xffffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xff800000.0xffffffff.0x123456.0x76543.0x0.0x0.0x0.0x0 ++vsraw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0x123456.0x76543.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0x1234.0x765.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0x12.0x7.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0x12.0x7.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffffff.0x12.0x7.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0x24.0xe.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0x2468.0xeca.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0x2468.0xeca.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffff.0x2468ace.0xeca864.0x0.0x0.0x0.0x0.0x1 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0x1.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffffff.0x123456.0x76543.0x0.0x0.0x0.0x0.0x0 ++vsraw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x123456.0x76543.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1234.0x765.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x12.0x7.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x12.0x7.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12.0x7.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x24.0xe.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x2468.0xeca.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2468.0xeca.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x2468ace.0xeca864.0x0.0x0.0x0.0x0.0x1.0x2 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x2468ac.0xeca86.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x123456.0x76543.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x76543.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x765.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xe.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xeca.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xeca.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xeca86.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xeca86.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xeca86.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xeca864.0x0.0x0.0x0.0x0.0x1.0x2.0xc ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xeca86.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x76543.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsraw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++=== Running test on vrolw=== ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x100.0x200.0x300.0xf00.0x1000.0x6400.0x271000 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x10000.0x20000.0x30000.0xf0000.0x100000.0x640000.0x27100000 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000027 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000027 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000027 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x800000.0x1000000.0x1800000.0x7800000.0x8000000.0x32000000.0x88000013 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x8000.0x10000.0x18000.0x78000.0x80000.0x320000.0x13880000 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x8000.0x10000.0x18000.0x78000.0x80000.0x320000.0x13880000 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x80.0x100.0x180.0x780.0x800.0x3200.0x138800 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x80.0x100.0x180.0x780.0x800.0x3200.0x138800 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x80.0x100.0x180.0x780.0x800.0x3200.0x138800 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x80000000.0x1.0x80000001.0x80000007.0x8.0x32.0x1388 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x8.0x10.0x18.0x78.0x80.0x320.0x13880 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x10000000.0x20000000.0x30000000.0xf0000000.0x1.0x40000006.0x271 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x80.0x100.0x180.0x780.0x800.0x3200.0x138800 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x100.0x200.0x300.0xf00.0x1000.0x6400.0x271000 ++vrolw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x100.0x200.0x300.0xf00.0x1000.0x6400.0x271000.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x10000.0x20000.0x30000.0xf0000.0x100000.0x640000.0x27100000.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000027.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000027.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000027.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x800000.0x1000000.0x1800000.0x7800000.0x8000000.0x32000000.0x88000013.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x8000.0x10000.0x18000.0x78000.0x80000.0x320000.0x13880000.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x8000.0x10000.0x18000.0x78000.0x80000.0x320000.0x13880000.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x80.0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x80.0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x80.0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80000000.0x1.0x80000001.0x80000007.0x8.0x32.0x1388.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8.0x10.0x18.0x78.0x80.0x320.0x13880.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x10000000.0x20000000.0x30000000.0xf0000000.0x1.0x40000006.0x271.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x80.0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x100.0x200.0x300.0xf00.0x1000.0x6400.0x271000.0xffffffff ++vrolw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x200.0x300.0xf00.0x1000.0x6400.0x271000.0xffffffff.0xfffffeff ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000.0x30000.0xf0000.0x100000.0x640000.0x27100000.0xffffffff.0xfffeffff ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000027.0xffffffff.0xfeffffff ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000027.0xffffffff.0xfeffffff ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000027.0xffffffff.0xfeffffff ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1000000.0x1800000.0x7800000.0x8000000.0x32000000.0x88000013.0xffffffff.0xff7fffff ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x10000.0x18000.0x78000.0x80000.0x320000.0x13880000.0xffffffff.0xffff7fff ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x10000.0x18000.0x78000.0x80000.0x320000.0x13880000.0xffffffff.0xffff7fff ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffffff.0xffffff7f ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffffff.0xffffff7f ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffffff.0xffffff7f ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x80000001.0x80000007.0x8.0x32.0x1388.0xffffffff.0x7fffffff ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x10.0x18.0x78.0x80.0x320.0x13880.0xffffffff.0xfffffff7 ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x20000000.0x30000000.0xf0000000.0x1.0x40000006.0x271.0xffffffff.0xefffffff ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x100.0x180.0x780.0x800.0x3200.0x138800.0xffffffff.0xffffff7f ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x200.0x300.0xf00.0x1000.0x6400.0x271000.0xffffffff.0xfffffeff ++vrolw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x300.0xf00.0x1000.0x6400.0x271000.0xffffffff.0xfffffeff.0xfffffdff ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x30000.0xf0000.0x100000.0x640000.0x27100000.0xffffffff.0xfffeffff.0xfffdffff ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x3000000.0xf000000.0x10000000.0x64000000.0x10000027.0xffffffff.0xfeffffff.0xfdffffff ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3000000.0xf000000.0x10000000.0x64000000.0x10000027.0xffffffff.0xfeffffff.0xfdffffff ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x3000000.0xf000000.0x10000000.0x64000000.0x10000027.0xffffffff.0xfeffffff.0xfdffffff ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1800000.0x7800000.0x8000000.0x32000000.0x88000013.0xffffffff.0xff7fffff.0xfeffffff ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x18000.0x78000.0x80000.0x320000.0x13880000.0xffffffff.0xffff7fff.0xfffeffff ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x18000.0x78000.0x80000.0x320000.0x13880000.0xffffffff.0xffff7fff.0xfffeffff ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x180.0x780.0x800.0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x180.0x780.0x800.0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x180.0x780.0x800.0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80000001.0x80000007.0x8.0x32.0x1388.0xffffffff.0x7fffffff.0xfffffffe ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x18.0x78.0x80.0x320.0x13880.0xffffffff.0xfffffff7.0xffffffef ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x30000000.0xf0000000.0x1.0x40000006.0x271.0xffffffff.0xefffffff.0xdfffffff ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x180.0x780.0x800.0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x300.0xf00.0x1000.0x6400.0x271000.0xffffffff.0xfffffeff.0xfffffdff ++vrolw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf00.0x1000.0x6400.0x271000.0xffffffff.0xfffffeff.0xfffffdff.0xfffff1ff ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xf0000.0x100000.0x640000.0x27100000.0xffffffff.0xfffeffff.0xfffdffff.0xfff1ffff ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xf000000.0x10000000.0x64000000.0x10000027.0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xf000000.0x10000000.0x64000000.0x10000027.0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xf000000.0x10000000.0x64000000.0x10000027.0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7800000.0x8000000.0x32000000.0x88000013.0xffffffff.0xff7fffff.0xfeffffff.0xf8ffffff ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x78000.0x80000.0x320000.0x13880000.0xffffffff.0xffff7fff.0xfffeffff.0xfff8ffff ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x78000.0x80000.0x320000.0x13880000.0xffffffff.0xffff7fff.0xfffeffff.0xfff8ffff ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x780.0x800.0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x780.0x800.0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x780.0x800.0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80000007.0x8.0x32.0x1388.0xffffffff.0x7fffffff.0xfffffffe.0xfffffff8 ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x78.0x80.0x320.0x13880.0xffffffff.0xfffffff7.0xffffffef.0xffffff8f ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf0000000.0x1.0x40000006.0x271.0xffffffff.0xefffffff.0xdfffffff.0x1fffffff ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x780.0x800.0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf00.0x1000.0x6400.0x271000.0xffffffff.0xfffffeff.0xfffffdff.0xfffff1ff ++vrolw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1000.0x6400.0x271000.0xffffffff.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x100000.0x640000.0x27100000.0xffffffff.0xfffeffff.0xfffdffff.0xfff1ffff.0xfff0ffff ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x10000000.0x64000000.0x10000027.0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x10000000.0x64000000.0x10000027.0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x10000000.0x64000000.0x10000027.0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x8000000.0x32000000.0x88000013.0xffffffff.0xff7fffff.0xfeffffff.0xf8ffffff.0xf87fffff ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x80000.0x320000.0x13880000.0xffffffff.0xffff7fff.0xfffeffff.0xfff8ffff.0xfff87fff ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x80000.0x320000.0x13880000.0xffffffff.0xffff7fff.0xfffeffff.0xfff8ffff.0xfff87fff ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x800.0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x800.0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x800.0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x8.0x32.0x1388.0xffffffff.0x7fffffff.0xfffffffe.0xfffffff8.0x7ffffff8 ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80.0x320.0x13880.0xffffffff.0xfffffff7.0xffffffef.0xffffff8f.0xffffff87 ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x40000006.0x271.0xffffffff.0xefffffff.0xdfffffff.0x1fffffff.0xfffffff ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x800.0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1000.0x6400.0x271000.0xffffffff.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff ++vrolw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x6400.0x271000.0xffffffff.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x640000.0x27100000.0xffffffff.0xfffeffff.0xfffdffff.0xfff1ffff.0xfff0ffff.0xff9cffff ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x64000000.0x10000027.0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x64000000.0x10000027.0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x64000000.0x10000027.0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x32000000.0x88000013.0xffffffff.0xff7fffff.0xfeffffff.0xf8ffffff.0xf87fffff.0xce7fffff ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x320000.0x13880000.0xffffffff.0xffff7fff.0xfffeffff.0xfff8ffff.0xfff87fff.0xffce7fff ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x320000.0x13880000.0xffffffff.0xffff7fff.0xfffeffff.0xfff8ffff.0xfff87fff.0xffce7fff ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x32.0x1388.0xffffffff.0x7fffffff.0xfffffffe.0xfffffff8.0x7ffffff8.0x7fffffce ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x320.0x13880.0xffffffff.0xfffffff7.0xffffffef.0xffffff8f.0xffffff87.0xfffffce7 ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x40000006.0x271.0xffffffff.0xefffffff.0xdfffffff.0x1fffffff.0xfffffff.0xcffffff9 ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x3200.0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x6400.0x271000.0xffffffff.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff ++vrolw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x271000.0xffffffff.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x27100000.0xffffffff.0xfffeffff.0xfffdffff.0xfff1ffff.0xfff0ffff.0xff9cffff.0xd8f0ffff ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x10000027.0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8 ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x10000027.0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8 ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x10000027.0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8 ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x88000013.0xffffffff.0xff7fffff.0xfeffffff.0xf8ffffff.0xf87fffff.0xce7fffff.0x787fffec ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x13880000.0xffffffff.0xffff7fff.0xfffeffff.0xfff8ffff.0xfff87fff.0xffce7fff.0xec787fff ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x13880000.0xffffffff.0xffff7fff.0xfffeffff.0xfff8ffff.0xfff87fff.0xffce7fff.0xec787fff ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1388.0xffffffff.0x7fffffff.0xfffffffe.0xfffffff8.0x7ffffff8.0x7fffffce.0x7fffec78 ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x13880.0xffffffff.0xfffffff7.0xffffffef.0xffffff8f.0xffffff87.0xfffffce7.0xfffec787 ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x271.0xffffffff.0xefffffff.0xdfffffff.0x1fffffff.0xfffffff.0xcffffff9.0xffffd8f ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x138800.0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x271000.0xffffffff.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff ++vrolw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffff7f ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xfffeffff.0xfffdffff.0xfff1ffff.0xfff0ffff.0xff9cffff.0xd8f0ffff.0xffff7fff ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffffff.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xff7fffff.0xfeffffff.0xf8ffffff.0xf87fffff.0xce7fffff.0x787fffec.0xffbfffff ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xffff7fff.0xfffeffff.0xfff8ffff.0xfff87fff.0xffce7fff.0xec787fff.0xffffbfff ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xffff7fff.0xfffeffff.0xfff8ffff.0xfff87fff.0xffce7fff.0xec787fff.0xffffbfff ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffffff.0x7fffffff.0xfffffffe.0xfffffff8.0x7ffffff8.0x7fffffce.0x7fffec78.0xbfffffff ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffff.0xfffffff7.0xffffffef.0xffffff8f.0xffffff87.0xfffffce7.0xfffec787.0xfffffffb ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0xefffffff.0xdfffffff.0x1fffffff.0xfffffff.0xcffffff9.0xffffd8f.0xf7ffffff ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffffff.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffff7f ++vrolw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffff7f.0x80 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffeffff.0xfffdffff.0xfff1ffff.0xfff0ffff.0xff9cffff.0xd8f0ffff.0xffff7fff.0x8000 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xff7fffff.0xfeffffff.0xf8ffffff.0xf87fffff.0xce7fffff.0x787fffec.0xffbfffff.0x400000 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff7fff.0xfffeffff.0xfff8ffff.0xfff87fff.0xffce7fff.0xec787fff.0xffffbfff.0x4000 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff7fff.0xfffeffff.0xfff8ffff.0xfff87fff.0xffce7fff.0xec787fff.0xffffbfff.0x4000 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7fffffff.0xfffffffe.0xfffffff8.0x7ffffff8.0x7fffffce.0x7fffec78.0xbfffffff.0x40000000 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffff7.0xffffffef.0xffffff8f.0xffffff87.0xfffffce7.0xfffec787.0xfffffffb.0x4 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xefffffff.0xdfffffff.0x1fffffff.0xfffffff.0xcffffff9.0xffffd8f.0xf7ffffff.0x8000000 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff7f.0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffff7f.0x80 ++vrolw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffff7f.0x80.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffdffff.0xfff1ffff.0xfff0ffff.0xff9cffff.0xd8f0ffff.0xffff7fff.0x8000.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfeffffff.0xf8ffffff.0xf87fffff.0xce7fffff.0x787fffec.0xffbfffff.0x400000.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffeffff.0xfff8ffff.0xfff87fff.0xffce7fff.0xec787fff.0xffffbfff.0x4000.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffeffff.0xfff8ffff.0xfff87fff.0xffce7fff.0xec787fff.0xffffbfff.0x4000.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfffffffe.0xfffffff8.0x7ffffff8.0x7fffffce.0x7fffec78.0xbfffffff.0x40000000.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffef.0xffffff8f.0xffffff87.0xfffffce7.0xfffec787.0xfffffffb.0x4.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xdfffffff.0x1fffffff.0xfffffff.0xcffffff9.0xffffd8f.0xf7ffffff.0x8000000.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffeff.0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffff7f.0x80.0xffffffff ++vrolw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffff7f.0x80.0xffffffff.0x34567012 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfff1ffff.0xfff0ffff.0xff9cffff.0xd8f0ffff.0xffff7fff.0x8000.0xffffffff.0x56701234 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000.0xffffffff.0x70123456 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000.0xffffffff.0x70123456 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000.0xffffffff.0x70123456 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xf8ffffff.0xf87fffff.0xce7fffff.0x787fffec.0xffbfffff.0x400000.0xffffffff.0x38091a2b ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfff8ffff.0xfff87fff.0xffce7fff.0xec787fff.0xffffbfff.0x4000.0xffffffff.0x2b38091a ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfff8ffff.0xfff87fff.0xffce7fff.0xec787fff.0xffffbfff.0x4000.0xffffffff.0x2b38091a ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfffffff8.0x7ffffff8.0x7fffffce.0x7fffec78.0xbfffffff.0x40000000.0xffffffff.0x91a2b38 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffff8f.0xffffff87.0xfffffce7.0xfffec787.0xfffffffb.0x4.0xffffffff.0x91a2b380 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1fffffff.0xfffffff.0xcffffff9.0xffffd8f.0xf7ffffff.0x8000000.0xffffffff.0x1234567 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffff8ff.0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffff7f.0x80.0xffffffff.0x34567012 ++vrolw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffff7f.0x80.0xffffffff.0x34567012.0x65432107 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfff0ffff.0xff9cffff.0xd8f0ffff.0xffff7fff.0x8000.0xffffffff.0x56701234.0x43210765 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000.0xffffffff.0x70123456.0x21076543 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000.0xffffffff.0x70123456.0x21076543 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xf0ffffff.0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000.0xffffffff.0x70123456.0x21076543 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xf87fffff.0xce7fffff.0x787fffec.0xffbfffff.0x400000.0xffffffff.0x38091a2b.0x9083b2a1 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfff87fff.0xffce7fff.0xec787fff.0xffffbfff.0x4000.0xffffffff.0x2b38091a.0xa19083b2 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfff87fff.0xffce7fff.0xec787fff.0xffffbfff.0x4000.0xffffffff.0x2b38091a.0xa19083b2 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7ffffff8.0x7fffffce.0x7fffec78.0xbfffffff.0x40000000.0xffffffff.0x91a2b38.0x83b2a190 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffff87.0xfffffce7.0xfffec787.0xfffffffb.0x4.0xffffffff.0x91a2b380.0x3b2a1908 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xfffffff.0xcffffff9.0xffffd8f.0xf7ffffff.0x8000000.0xffffffff.0x1234567.0x10765432 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffff87f.0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffff7f.0x80.0xffffffff.0x34567012.0x65432107 ++vrolw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffff9cff.0xffd8f0ff.0xffffff7f.0x80.0xffffffff.0x34567012.0x65432107.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xff9cffff.0xd8f0ffff.0xffff7fff.0x8000.0xffffffff.0x56701234.0x43210765.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000.0xffffffff.0x70123456.0x21076543.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000.0xffffffff.0x70123456.0x21076543.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x9cffffff.0xf0ffffd8.0xff7fffff.0x800000.0xffffffff.0x70123456.0x21076543.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xce7fffff.0x787fffec.0xffbfffff.0x400000.0xffffffff.0x38091a2b.0x9083b2a1.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffce7fff.0xec787fff.0xffffbfff.0x4000.0xffffffff.0x2b38091a.0xa19083b2.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffce7fff.0xec787fff.0xffffbfff.0x4000.0xffffffff.0x2b38091a.0xa19083b2.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7fffffce.0x7fffec78.0xbfffffff.0x40000000.0xffffffff.0x91a2b38.0x83b2a190.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffce7.0xfffec787.0xfffffffb.0x4.0xffffffff.0x91a2b380.0x3b2a1908.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xcffffff9.0xffffd8f.0xf7ffffff.0x8000000.0xffffffff.0x1234567.0x10765432.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffce7f.0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffff9cff.0xffd8f0ff.0xffffff7f.0x80.0xffffffff.0x34567012.0x65432107.0x0 ++vrolw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffd8f0ff.0xffffff7f.0x80.0xffffffff.0x34567012.0x65432107.0x0.0x100 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xd8f0ffff.0xffff7fff.0x8000.0xffffffff.0x56701234.0x43210765.0x0.0x10000 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xf0ffffd8.0xff7fffff.0x800000.0xffffffff.0x70123456.0x21076543.0x0.0x1000000 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xf0ffffd8.0xff7fffff.0x800000.0xffffffff.0x70123456.0x21076543.0x0.0x1000000 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xf0ffffd8.0xff7fffff.0x800000.0xffffffff.0x70123456.0x21076543.0x0.0x1000000 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x787fffec.0xffbfffff.0x400000.0xffffffff.0x38091a2b.0x9083b2a1.0x0.0x800000 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xec787fff.0xffffbfff.0x4000.0xffffffff.0x2b38091a.0xa19083b2.0x0.0x8000 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xec787fff.0xffffbfff.0x4000.0xffffffff.0x2b38091a.0xa19083b2.0x0.0x8000 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7fffec78.0xbfffffff.0x40000000.0xffffffff.0x91a2b38.0x83b2a190.0x0.0x80000000 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffec787.0xfffffffb.0x4.0xffffffff.0x91a2b380.0x3b2a1908.0x0.0x8 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffd8f.0xf7ffffff.0x8000000.0xffffffff.0x1234567.0x10765432.0x0.0x10000000 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffec787f.0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffd8f0ff.0xffffff7f.0x80.0xffffffff.0x34567012.0x65432107.0x0.0x100 ++vrolw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff7f.0x80.0xffffffff.0x34567012.0x65432107.0x0.0x100.0x200 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff7fff.0x8000.0xffffffff.0x56701234.0x43210765.0x0.0x10000.0x20000 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff7fffff.0x800000.0xffffffff.0x70123456.0x21076543.0x0.0x1000000.0x2000000 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xff7fffff.0x800000.0xffffffff.0x70123456.0x21076543.0x0.0x1000000.0x2000000 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff7fffff.0x800000.0xffffffff.0x70123456.0x21076543.0x0.0x1000000.0x2000000 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffbfffff.0x400000.0xffffffff.0x38091a2b.0x9083b2a1.0x0.0x800000.0x1000000 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffbfff.0x4000.0xffffffff.0x2b38091a.0xa19083b2.0x0.0x8000.0x10000 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffbfff.0x4000.0xffffffff.0x2b38091a.0xa19083b2.0x0.0x8000.0x10000 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80.0x100 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80.0x100 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80.0x100 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xbfffffff.0x40000000.0xffffffff.0x91a2b38.0x83b2a190.0x0.0x80000000.0x1 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffffb.0x4.0xffffffff.0x91a2b380.0x3b2a1908.0x0.0x8.0x10 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf7ffffff.0x8000000.0xffffffff.0x1234567.0x10765432.0x0.0x10000000.0x20000000 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffbf.0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80.0x100 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff7f.0x80.0xffffffff.0x34567012.0x65432107.0x0.0x100.0x200 ++vrolw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x80.0xffffffff.0x34567012.0x65432107.0x0.0x100.0x200.0x300 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x8000.0xffffffff.0x56701234.0x43210765.0x0.0x10000.0x20000.0x30000 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x800000.0xffffffff.0x70123456.0x21076543.0x0.0x1000000.0x2000000.0x3000000 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x800000.0xffffffff.0x70123456.0x21076543.0x0.0x1000000.0x2000000.0x3000000 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x800000.0xffffffff.0x70123456.0x21076543.0x0.0x1000000.0x2000000.0x3000000 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x400000.0xffffffff.0x38091a2b.0x9083b2a1.0x0.0x800000.0x1000000.0x1800000 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x4000.0xffffffff.0x2b38091a.0xa19083b2.0x0.0x8000.0x10000.0x18000 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x4000.0xffffffff.0x2b38091a.0xa19083b2.0x0.0x8000.0x10000.0x18000 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80.0x100.0x180 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80.0x100.0x180 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80.0x100.0x180 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x40000000.0xffffffff.0x91a2b38.0x83b2a190.0x0.0x80000000.0x1.0x80000001 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x4.0xffffffff.0x91a2b380.0x3b2a1908.0x0.0x8.0x10.0x18 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000000.0xffffffff.0x1234567.0x10765432.0x0.0x10000000.0x20000000.0x30000000 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x40.0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80.0x100.0x180 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x80.0xffffffff.0x34567012.0x65432107.0x0.0x100.0x200.0x300 ++vrolw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0x34567012.0x65432107.0x0.0x100.0x200.0x300.0xf00 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0x56701234.0x43210765.0x0.0x10000.0x20000.0x30000.0xf0000 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0x70123456.0x21076543.0x0.0x1000000.0x2000000.0x3000000.0xf000000 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0x70123456.0x21076543.0x0.0x1000000.0x2000000.0x3000000.0xf000000 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffffff.0x70123456.0x21076543.0x0.0x1000000.0x2000000.0x3000000.0xf000000 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0x38091a2b.0x9083b2a1.0x0.0x800000.0x1000000.0x1800000.0x7800000 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0x2b38091a.0xa19083b2.0x0.0x8000.0x10000.0x18000.0x78000 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0x2b38091a.0xa19083b2.0x0.0x8000.0x10000.0x18000.0x78000 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80.0x100.0x180.0x780 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80.0x100.0x180.0x780 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80.0x100.0x180.0x780 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffffff.0x91a2b38.0x83b2a190.0x0.0x80000000.0x1.0x80000001.0x80000007 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffff.0x91a2b380.0x3b2a1908.0x0.0x8.0x10.0x18.0x78 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0x1234567.0x10765432.0x0.0x10000000.0x20000000.0x30000000.0xf0000000 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x1a2b3809.0xb2a19083.0x0.0x80.0x100.0x180.0x780 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffffff.0x34567012.0x65432107.0x0.0x100.0x200.0x300.0xf00 ++vrolw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x34567012.0x65432107.0x0.0x100.0x200.0x300.0xf00.0x1000 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x56701234.0x43210765.0x0.0x10000.0x20000.0x30000.0xf0000.0x100000 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x70123456.0x21076543.0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x70123456.0x21076543.0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x70123456.0x21076543.0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x38091a2b.0x9083b2a1.0x0.0x800000.0x1000000.0x1800000.0x7800000.0x8000000 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x2b38091a.0xa19083b2.0x0.0x8000.0x10000.0x18000.0x78000.0x80000 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2b38091a.0xa19083b2.0x0.0x8000.0x10000.0x18000.0x78000.0x80000 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1a2b3809.0xb2a19083.0x0.0x80.0x100.0x180.0x780.0x800 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1a2b3809.0xb2a19083.0x0.0x80.0x100.0x180.0x780.0x800 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1a2b3809.0xb2a19083.0x0.0x80.0x100.0x180.0x780.0x800 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x91a2b38.0x83b2a190.0x0.0x80000000.0x1.0x80000001.0x80000007.0x8 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x91a2b380.0x3b2a1908.0x0.0x8.0x10.0x18.0x78.0x80 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1234567.0x10765432.0x0.0x10000000.0x20000000.0x30000000.0xf0000000.0x1 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1a2b3809.0xb2a19083.0x0.0x80.0x100.0x180.0x780.0x800 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x34567012.0x65432107.0x0.0x100.0x200.0x300.0xf00.0x1000 ++vrolw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x65432107.0x0.0x100.0x200.0x300.0xf00.0x1000.0x6400 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x43210765.0x0.0x10000.0x20000.0x30000.0xf0000.0x100000.0x640000 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x21076543.0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x21076543.0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x21076543.0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x9083b2a1.0x0.0x800000.0x1000000.0x1800000.0x7800000.0x8000000.0x32000000 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xa19083b2.0x0.0x8000.0x10000.0x18000.0x78000.0x80000.0x320000 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xa19083b2.0x0.0x8000.0x10000.0x18000.0x78000.0x80000.0x320000 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xb2a19083.0x0.0x80.0x100.0x180.0x780.0x800.0x3200 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xb2a19083.0x0.0x80.0x100.0x180.0x780.0x800.0x3200 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xb2a19083.0x0.0x80.0x100.0x180.0x780.0x800.0x3200 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x83b2a190.0x0.0x80000000.0x1.0x80000001.0x80000007.0x8.0x32 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x3b2a1908.0x0.0x8.0x10.0x18.0x78.0x80.0x320 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x10765432.0x0.0x10000000.0x20000000.0x30000000.0xf0000000.0x1.0x40000006 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xb2a19083.0x0.0x80.0x100.0x180.0x780.0x800.0x3200 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x65432107.0x0.0x100.0x200.0x300.0xf00.0x1000.0x6400 ++vrolw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++=== Running test on sllow=== ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x100.0x200.0x300.0xf00.0x1000.0x6400.0x271000 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x10000.0x20000.0x30000.0xf0000.0x100000.0x640000.0x27100000 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x1000000.0x2000000.0x3000000.0xf000000 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x1.0x2.0x3 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x1.0x2.0x3 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x8000.0x10000.0x18000 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x80.0x100.0x180 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x80.0x100.0x180 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x8.0x10.0x18.0x78.0x80.0x320.0x13880 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x80.0x100.0x180 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x100.0x200.0x300.0xf00.0x1000.0x6400.0x271000 ++sllow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x100.0x200.0x300.0xf00.0x1000.0x6400.0x271000.0xffffff00 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x10000.0x20000.0x30000.0xf0000.0x100000.0x640000.0x27100000.0xffff0000 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000027 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x1.0x2.0x3.0xf ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x1.0x2.0x3.0xf ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1000000 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x800000 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x8000 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x8000.0x10000.0x18000.0x78000 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x80.0x100.0x180.0x780 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x80 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x80.0x100.0x180.0x780 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x80000000 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8.0x10.0x18.0x78.0x80.0x320.0x13880.0xfffffff8 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x10000000 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x80.0x100.0x180.0x780 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x100.0x200.0x300.0xf00.0x1000.0x6400.0x271000.0xffffff00 ++sllow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x200.0x300.0xf00.0x1000.0x6400.0x271000.0xffffff00.0xfffffeff ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000.0x30000.0xf0000.0x100000.0x640000.0x27100000.0xffff0000.0xfffeffff ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000027.0xfeffffff ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000 ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x2.0x3.0xf.0x10 ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x2.0x3.0xf.0x10 ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x2000000 ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1000000 ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x10000 ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x10000.0x18000.0x78000.0x80000 ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x100.0x180.0x780.0x800 ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x100 ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x100.0x180.0x780.0x800 ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x10.0x18.0x78.0x80.0x320.0x13880.0xfffffff8.0xfffffff7 ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x20000000 ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x100.0x180.0x780.0x800 ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x200.0x300.0xf00.0x1000.0x6400.0x271000.0xffffff00.0xfffffeff ++sllow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x300.0xf00.0x1000.0x6400.0x271000.0xffffff00.0xfffffeff.0xfffffdff ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x30000.0xf0000.0x100000.0x640000.0x27100000.0xffff0000.0xfffeffff.0xfffdffff ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000027.0xfeffffff.0xfdffffff ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000 ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x3.0xf.0x10.0x64 ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x3.0xf.0x10.0x64 ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x3000000 ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1800000 ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x18000 ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x18000.0x78000.0x80000.0x320000 ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x180.0x780.0x800.0x3200 ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x180 ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x180.0x780.0x800.0x3200 ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x80000000 ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x18.0x78.0x80.0x320.0x13880.0xfffffff8.0xfffffff7.0xffffffef ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x30000000 ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x180.0x780.0x800.0x3200 ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x300.0xf00.0x1000.0x6400.0x271000.0xffffff00.0xfffffeff.0xfffffdff ++sllow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf00.0x1000.0x6400.0x271000.0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xf0000.0x100000.0x640000.0x27100000.0xffff0000.0xfffeffff.0xfffdffff.0xfff1ffff ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xf000000.0x10000000.0x64000000.0x10000000.0xff000027.0xfeffffff.0xfdffffff.0xf1ffffff ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0xf000000.0x10000000.0x64000000.0x10000000.0xff000027 ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0xf.0x10.0x64.0x2710 ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0xf.0x10.0x64.0x2710 ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xf000000 ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x7800000 ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x78000 ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x78000.0x80000.0x320000.0x13880000 ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x780.0x800.0x3200.0x138800 ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x780 ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x780.0x800.0x3200.0x138800 ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x80000000 ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x78.0x80.0x320.0x13880.0xfffffff8.0xfffffff7.0xffffffef.0xffffff8f ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xf0000000 ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x780.0x800.0x3200.0x138800 ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf00.0x1000.0x6400.0x271000.0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff ++sllow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1000.0x6400.0x271000.0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x100000.0x640000.0x27100000.0xffff0000.0xfffeffff.0xfffdffff.0xfff1ffff.0xfff0ffff ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x10000000.0x64000000.0x10000000.0xff000027.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x10000000.0x64000000.0x10000000.0xff000027.0xfeffffff ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x10.0x64.0x2710.0xffffffff ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x10.0x64.0x2710.0xffffffff ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x10000000 ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x8000000 ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x80000 ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x80000.0x320000.0x13880000.0xffff8000 ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x800.0x3200.0x138800.0xffffff80 ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x800 ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x800.0x3200.0x138800.0xffffff80 ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80.0x320.0x13880.0xfffffff8.0xfffffff7.0xffffffef.0xffffff8f.0xffffff87 ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x800.0x3200.0x138800.0xffffff80 ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1000.0x6400.0x271000.0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff ++sllow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x6400.0x271000.0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x640000.0x27100000.0xffff0000.0xfffeffff.0xfffdffff.0xfff1ffff.0xfff0ffff.0xff9cffff ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x64000000.0x10000000.0xff000027.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x64000000.0x10000000.0xff000027.0xfeffffff.0xfdffffff ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x64.0x2710.0xffffffff.0xfffffffe ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x64.0x2710.0xffffffff.0xfffffffe ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x64000000 ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x32000000 ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x320000 ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x320000.0x13880000.0xffff8000.0xffff7fff ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x3200.0x138800.0xffffff80.0xffffff7f ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x3200 ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x3200.0x138800.0xffffff80.0xffffff7f ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x320.0x13880.0xfffffff8.0xfffffff7.0xffffffef.0xffffff8f.0xffffff87.0xfffffce7 ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x40000000 ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x3200.0x138800.0xffffff80.0xffffff7f ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x6400.0x271000.0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff ++sllow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x271000.0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x27100000.0xffff0000.0xfffeffff.0xfffdffff.0xfff1ffff.0xfff0ffff.0xff9cffff.0xd8f0ffff ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x10000000.0xff000027.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffff ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x10000000.0xff000027.0xfeffffff.0xfdffffff.0xf1ffffff ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x10000000 ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x88000000 ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x13880000 ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x13880000.0xffff8000.0xffff7fff.0xfffeffff ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x138800.0xffffff80.0xffffff7f.0xfffffeff ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x138800 ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x138800.0xffffff80.0xffffff7f.0xfffffeff ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x13880.0xfffffff8.0xfffffff7.0xffffffef.0xffffff8f.0xffffff87.0xfffffce7.0xfffec787 ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x138800.0xffffff80.0xffffff7f.0xfffffeff ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x271000.0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff ++sllow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffffff ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff0000.0xfffeffff.0xfffdffff.0xfff1ffff.0xfff0ffff.0xff9cffff.0xd8f0ffff.0xffffffff ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff000000.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffffd8 ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0xff000000.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xff000000 ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xff800000 ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffff8000 ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0xffff8000.0xffff7fff.0xfffeffff.0xfff8ffff ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0xffffff80.0xffffff7f.0xfffffeff.0xfffff8ff ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffffff80 ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0xffffff80.0xffffff7f.0xfffffeff.0xfffff8ff ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x80000000 ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffff8.0xfffffff7.0xffffffef.0xffffff8f.0xffffff87.0xfffffce7.0xfffec787.0xffffffff ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xf0000000 ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0xffffff80.0xffffff7f.0xfffffeff.0xfffff8ff ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffffff ++sllow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffe00.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffffff.0x7f ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffe0000.0xfffdffff.0xfff1ffff.0xfff0ffff.0xff9cffff.0xd8f0ffff.0xffffffff.0x7fff ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfe000000.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0xfe000000.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xfe000000 ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xff000000 ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffff0000 ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0xffff0000.0xfffeffff.0xfff8ffff.0xfff87fff ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0xffffff00.0xfffffeff.0xfffff8ff.0xfffff87f ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffffff00 ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0xffffff00.0xfffffeff.0xfffff8ff.0xfffff87f ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffff0.0xffffffef.0xffffff8f.0xffffff87.0xfffffce7.0xfffec787.0xffffffff.0x3 ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xe0000000 ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0xffffff00.0xfffffeff.0xfffff8ff.0xfffff87f ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffffe00.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffffff.0x7f ++sllow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffd00.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffffff.0x7f.0xffffff80 ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffd0000.0xfff1ffff.0xfff0ffff.0xff9cffff.0xd8f0ffff.0xffffffff.0x7fff.0xffff8000 ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfd000000.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff.0xff800000 ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0xfd000000.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffff ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xfd000000 ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xfe800000 ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xfffe8000 ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0xfffe8000.0xfff8ffff.0xfff87fff.0xffce7fff ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0xfffffe80.0xfffff8ff.0xfffff87f.0xffffce7f ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xfffffe80 ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0xfffffe80.0xfffff8ff.0xfffff87f.0xffffce7f ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x80000000 ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffe8.0xffffff8f.0xffffff87.0xfffffce7.0xfffec787.0xffffffff.0x3.0xfffffffc ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xd0000000 ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0xfffffe80.0xfffff8ff.0xfffff87f.0xffffce7f ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffffd00.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffffff.0x7f.0xffffff80 ++sllow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffff100.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffffff.0x7f.0xffffff80.0x345670ff ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfff10000.0xfff0ffff.0xff9cffff.0xd8f0ffff.0xffffffff.0x7fff.0xffff8000.0x5670ffff ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xf1000000.0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff.0xff800000.0x70ffffff ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0xf1000000.0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffffd8 ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xf1000000 ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xf8800000 ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xfff88000 ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0xfff88000.0xfff87fff.0xffce7fff.0xec787fff ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0xfffff880.0xfffff87f.0xffffce7f.0xffec787f ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xfffff880 ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0xfffff880.0xfffff87f.0xffffce7f.0xffec787f ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x80000000 ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffff88.0xffffff87.0xfffffce7.0xfffec787.0xffffffff.0x3.0xfffffffc.0x91a2b387 ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x10000000 ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0xfffff880.0xfffff87f.0xffffce7f.0xffec787f ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffff100.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffffff.0x7f.0xffffff80.0x345670ff ++sllow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffff000.0xffff9cff.0xffd8f0ff.0xffffffff.0x7f.0xffffff80.0x345670ff.0x65432112 ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfff00000.0xff9cffff.0xd8f0ffff.0xffffffff.0x7fff.0xffff8000.0x5670ffff.0x43211234 ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xf0000000.0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff.0xff800000.0x70ffffff.0x21123456 ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0xf0000000.0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xf0000000 ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xf8000000 ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xfff80000 ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0xfff80000.0xffce7fff.0xec787fff.0xffffffff ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0xfffff800.0xffffce7f.0xffec787f.0xffffffff ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xfffff800 ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0xfffff800.0xffffce7f.0xffec787f.0xffffffff ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffff80.0xfffffce7.0xfffec787.0xffffffff.0x3.0xfffffffc.0x91a2b387.0x3b2a1908 ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0xfffff800.0xffffce7f.0xffec787f.0xffffffff ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffff000.0xffff9cff.0xffd8f0ff.0xffffffff.0x7f.0xffffff80.0x345670ff.0x65432112 ++sllow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffff9c00.0xffd8f0ff.0xffffffff.0x7f.0xffffff80.0x345670ff.0x65432112.0x7 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xff9c0000.0xd8f0ffff.0xffffffff.0x7fff.0xffff8000.0x5670ffff.0x43211234.0x765 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x9c000000.0xf0ffffff.0xffffffd8.0x7fffff.0xff800000.0x70ffffff.0x21123456.0x76543 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x9c000000.0xf0ffffff.0xffffffd8.0x7fffff.0xff800000 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x9c000000 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xce000000 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffce0000 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0xffce0000.0xec787fff.0xffffffff.0x3fff ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0xffffce00.0xffec787f.0xffffffff.0x3f ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffffce00 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0xffffce00.0xffec787f.0xffffffff.0x3f ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffce0.0xfffec787.0xffffffff.0x3.0xfffffffc.0x91a2b387.0x3b2a1908.0x0 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xc0000000 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0xffffce00.0xffec787f.0xffffffff.0x3f ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffff9c00.0xffd8f0ff.0xffffffff.0x7f.0xffffff80.0x345670ff.0x65432112.0x7 ++sllow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffd8f000.0xffffffff.0x7f.0xffffff80.0x345670ff.0x65432112.0x7.0x100 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xd8f00000.0xffffffff.0x7fff.0xffff8000.0x5670ffff.0x43211234.0x765.0x10000 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xf0000000.0xffffffd8.0x7fffff.0xff800000.0x70ffffff.0x21123456.0x76543.0x1000000 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0xf0000000.0xffffffd8.0x7fffff.0xff800000.0x70ffffff ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xf0000000 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x78000000 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xec780000 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0xec780000.0xffffffff.0x3fff.0xffffc000 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0xffec7800.0xffffffff.0x3f.0xffffffc0 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffec7800 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0xffec7800.0xffffffff.0x3f.0xffffffc0 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffec780.0xffffffff.0x3.0xfffffffc.0x91a2b387.0x3b2a1908.0x0.0x8 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0xffec7800.0xffffffff.0x3f.0xffffffc0 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffd8f000.0xffffffff.0x7f.0xffffff80.0x345670ff.0x65432112.0x7.0x100 ++sllow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff00.0x7f.0xffffff80.0x345670ff.0x65432112.0x7.0x100.0x200 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff0000.0x7fff.0xffff8000.0x5670ffff.0x43211234.0x765.0x10000.0x20000 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff000000.0x7fffff.0xff800000.0x70ffffff.0x21123456.0x76543.0x1000000.0x2000000 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0xff000000.0x7fffff.0xff800000.0x70ffffff.0x21123456 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xff000000 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xff800000 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffff8000 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0xffff8000.0x3fff.0xffffc000.0x2b387fff ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0xffffff80.0x3f.0xffffffc0.0x1a2b387f ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffffff80 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0xffffff80.0x3f.0xffffffc0.0x1a2b387f ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x80000000 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffff8.0x3.0xfffffffc.0x91a2b387.0x3b2a1908.0x0.0x8.0x10 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xf0000000 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0xffffff80.0x3f.0xffffffc0.0x1a2b387f ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff00.0x7f.0xffffff80.0x345670ff.0x65432112.0x7.0x100.0x200 ++sllow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0xffffff80.0x345670ff.0x65432112.0x7.0x100.0x200.0x300 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0xffff8000.0x5670ffff.0x43211234.0x765.0x10000.0x20000.0x30000 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0xff800000.0x70ffffff.0x21123456.0x76543.0x1000000.0x2000000.0x3000000 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0xff800000.0x70ffffff.0x21123456.0x76543 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x80000000.0xffffffff.0x12345670.0x7654321 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x80000000.0xffffffff.0x12345670.0x7654321 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0xffffc000.0x2b387fff.0xa190891a ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0xffffffc0.0x1a2b387f.0xb2a19089 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0xffffffc0.0x1a2b387f.0xb2a19089 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0xfffffffc.0x91a2b387.0x3b2a1908.0x0.0x8.0x10.0x18 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0xffffffc0.0x1a2b387f.0xb2a19089 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0xffffff80.0x345670ff.0x65432112.0x7.0x100.0x200.0x300 ++sllow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff00.0x345670ff.0x65432112.0x7.0x100.0x200.0x300.0xf00 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff0000.0x5670ffff.0x43211234.0x765.0x10000.0x20000.0x30000.0xf0000 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff000000.0x70ffffff.0x21123456.0x76543.0x1000000.0x2000000.0x3000000.0xf000000 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0xff000000.0x70ffffff.0x21123456.0x76543.0x1000000 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0xffffffff.0x12345670.0x7654321.0x0 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0xffffffff.0x12345670.0x7654321.0x0 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xff000000 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xff800000 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffff8000 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0xffff8000.0x2b387fff.0xa190891a.0x3b2 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0xffffff80.0x1a2b387f.0xb2a19089.0x3 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xffffff80 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0xffffff80.0x1a2b387f.0xb2a19089.0x3 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x80000000 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffff8.0x91a2b387.0x3b2a1908.0x0.0x8.0x10.0x18.0x78 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xf0000000 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0xffffff80.0x1a2b387f.0xb2a19089.0x3 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff00.0x345670ff.0x65432112.0x7.0x100.0x200.0x300.0xf00 ++sllow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x34567000.0x65432112.0x7.0x100.0x200.0x300.0xf00.0x1000 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x56700000.0x43211234.0x765.0x10000.0x20000.0x30000.0xf0000.0x100000 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x70000000.0x21123456.0x76543.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x70000000.0x21123456.0x76543.0x1000000.0x2000000 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x12345670.0x7654321.0x0.0x1 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x12345670.0x7654321.0x0.0x1 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x70000000 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x38000000 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x2b380000 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x2b380000.0xa190891a.0x3b2.0x8000 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x1a2b3800.0xb2a19089.0x3.0x80 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x1a2b3800 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x1a2b3800.0xb2a19089.0x3.0x80 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x91a2b380.0x3b2a1908.0x0.0x8.0x10.0x18.0x78.0x80 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x1a2b3800.0xb2a19089.0x3.0x80 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x34567000.0x65432112.0x7.0x100.0x200.0x300.0xf00.0x1000 ++sllow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x65432100.0x7.0x100.0x200.0x300.0xf00.0x1000.0x6400 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x43210000.0x765.0x10000.0x20000.0x30000.0xf0000.0x100000.0x640000 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x21000000.0x76543.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x21000000.0x76543.0x1000000.0x2000000.0x3000000 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x7654321.0x0.0x1.0x2 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x7654321.0x0.0x1.0x2 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x21000000 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x90800000 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xa1908000 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0xa1908000.0x3b2.0x8000.0x10000 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0xb2a19080.0x3.0x80.0x100 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0xb2a19080 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0xb2a19080.0x3.0x80.0x100 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x80000000 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x3b2a1908.0x0.0x8.0x10.0x18.0x78.0x80.0x320 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x10000000 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0xb2a19080.0x3.0x80.0x100 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x65432100.0x7.0x100.0x200.0x300.0xf00.0x1000.0x6400 ++sllow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++=== Running test on srlow=== ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0x27 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x10000.0x20000.0x30000.0xf0000.0x100000.0x640000.0x27100000.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x100.0x200.0x300.0xf00.0x1000.0x6400.0x271000.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xf00.0x1000.0x6400.0x271000.0x0.0x0.0x0.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0x0.0x0.0x0.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xf.0x10.0x64.0x2710.0x0.0x0.0x0.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x200000.0xc80000.0x4e200000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0xc8000000.0x20000000.0x4e.0x0.0x0.0x0.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x4e.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0xc8000000.0x20000000.0x4e.0x0.0x0.0x0.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x20000000.0x40000000.0x60000000.0xe0000000.0x1.0x80000002.0xc.0x4e2 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0xc8000000.0x20000000.0x4e.0x0.0x0.0x0.0x0 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0x27 ++srlow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000027.0xffffff ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000.0x30000.0xf0000.0x100000.0x640000.0x27100000.0xffff0000.0xffff ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x200.0x300.0xf00.0x1000.0x6400.0x271000.0xffffff00.0xff ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1000.0x6400.0x271000.0xffffff00.0xff.0x0.0x0.0x0 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x10.0x64.0x2710.0xffffffff.0x0.0x0.0x0.0x0 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0x0 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x10.0x64.0x2710.0xffffffff.0x0.0x0.0x0.0x0 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xc80000.0x4e200000.0xfffe0000.0x1ffff.0x0.0x0.0x0.0x0 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xc8000000.0x20000000.0xfe00004e.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xc8000000.0x20000000.0xfe00004e.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x40000000.0x60000000.0xe0000000.0x1.0x80000002.0xc.0xe00004e2.0x1fffffff ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xc8000000.0x20000000.0xfe00004e.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000027.0xffffff ++srlow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000027.0xfeffffff.0xffffff ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x30000.0xf0000.0x100000.0x640000.0x27100000.0xffff0000.0xfffeffff.0xffff ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x300.0xf00.0x1000.0x6400.0x271000.0xffffff00.0xfffffeff.0xff ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x6400.0x271000.0xffffff00.0xfffffeff.0xff.0x0.0x0.0x0 ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x64.0x2710.0xffffffff.0xfffffffe.0x0.0x0.0x0.0x0 ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0x0 ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0x0.0x0.0x0.0x0 ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x4e200000.0xfffe0000.0xfffdffff.0x1ffff.0x0.0x0.0x0.0x0 ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0xfe00004e.0xfdffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x20000000.0xfe00004e.0xfdffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x60000000.0xe0000000.0x1.0x80000002.0xc.0xe00004e2.0xdfffffff.0x1fffffff ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x20000000.0xfe00004e.0xfdffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x3000000.0xf000000.0x10000000.0x64000000.0x10000000.0xff000027.0xfeffffff.0xffffff ++srlow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf000000.0x10000000.0x64000000.0x10000000.0xff000027.0xfeffffff.0xfdffffff.0xffffff ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xf0000.0x100000.0x640000.0x27100000.0xffff0000.0xfffeffff.0xfffdffff.0xffff ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xf00.0x1000.0x6400.0x271000.0xffffff00.0xfffffeff.0xfffffdff.0xff ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x271000.0xffffff00.0xfffffeff.0xfffffdff.0xff.0x0.0x0.0x0 ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x0.0x0.0x0.0x0 ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x0 ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x0.0x0.0x0.0x0 ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffe0000.0xfffdffff.0xfffbffff.0x1ffff.0x0.0x0.0x0.0x0 ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfe00004e.0xfdffffff.0xfbffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfe00004e.0xfdffffff.0xfbffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xe0000000.0x1.0x80000002.0xc.0xe00004e2.0xdfffffff.0xbfffffff.0x1fffffff ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfe00004e.0xfdffffff.0xfbffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf000000.0x10000000.0x64000000.0x10000000.0xff000027.0xfeffffff.0xfdffffff.0xffffff ++srlow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x10000000.0x64000000.0x10000000.0xff000027.0xfeffffff.0xfdffffff.0xf1ffffff.0xffffff ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x100000.0x640000.0x27100000.0xffff0000.0xfffeffff.0xfffdffff.0xfff1ffff.0xffff ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1000.0x6400.0x271000.0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff.0xff ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff.0xff.0x0.0x0.0x0 ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x0.0x0.0x0.0x0 ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x0 ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x0.0x0.0x0.0x0 ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffdffff.0xfffbffff.0xffe3ffff.0x1ffff.0x0.0x0.0x0.0x0 ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfdffffff.0xfbffffff.0xe3ffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfdffffff.0xfbffffff.0xe3ffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x80000002.0xc.0xe00004e2.0xdfffffff.0xbfffffff.0x3fffffff.0x1ffffffe ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfdffffff.0xfbffffff.0xe3ffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x10000000.0x64000000.0x10000000.0xff000027.0xfeffffff.0xfdffffff.0xf1ffffff.0xffffff ++srlow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x64000000.0x10000000.0xff000027.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0xffffff ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x640000.0x27100000.0xffff0000.0xfffeffff.0xfffdffff.0xfff1ffff.0xfff0ffff.0xffff ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x6400.0x271000.0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xff ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xff.0x0.0x0.0x0 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0x0.0x0.0x0.0x0 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0x0 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0x0.0x0.0x0.0x0 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffbffff.0xffe3ffff.0xffe1ffff.0x1ffff.0x0.0x0.0x0.0x0 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfbffffff.0xe3ffffff.0xe1ffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfbffffff.0xe3ffffff.0xe1ffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000002.0xc.0xe00004e2.0xdfffffff.0xbfffffff.0x3fffffff.0x1ffffffe.0x1ffffffe ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfbffffff.0xe3ffffff.0xe1ffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x64000000.0x10000000.0xff000027.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0xffffff ++srlow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x10000000.0xff000027.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xffffff ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x27100000.0xffff0000.0xfffeffff.0xfffdffff.0xfff1ffff.0xfff0ffff.0xff9cffff.0xffff ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x271000.0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xff ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xff.0x0.0x0.0x0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0x0.0x0.0x0.0x0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0x0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0x0.0x0.0x0.0x0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffe3ffff.0xffe1ffff.0xff39ffff.0x1ffff.0x0.0x0.0x0.0x0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xe3ffffff.0xe1ffffff.0x39ffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xe3ffffff.0xe1ffffff.0x39ffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xc.0xe00004e2.0xdfffffff.0xbfffffff.0x3fffffff.0x1ffffffe.0x9ffffffe.0x1ffffff3 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xe3ffffff.0xe1ffffff.0x39ffffff.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x10000000.0xff000027.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xffffff ++srlow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xff000027.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffd8 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff0000.0xfffeffff.0xfffdffff.0xfff1ffff.0xfff0ffff.0xff9cffff.0xd8f0ffff.0xffff ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff00.0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xff ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xff.0x0.0x0.0x0 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x0.0x0.0x0.0x0 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x0 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x0.0x0.0x0.0x0 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffe1ffff.0xff39ffff.0xb1e1ffff.0x1ffff.0x0.0x0.0x0.0x0 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xe1ffffff.0x39ffffff.0xe1ffffff.0x1ffffb1.0x0.0x0.0x0.0x0 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffb1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xe1ffffff.0x39ffffff.0xe1ffffff.0x1ffffb1.0x0.0x0.0x0.0x0 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xe00004e2.0xdfffffff.0xbfffffff.0x3fffffff.0x1ffffffe.0x9ffffffe.0x1ffffff3.0x1ffffb1e ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xe1ffffff.0x39ffffff.0xe1ffffff.0x1ffffb1.0x0.0x0.0x0.0x0 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xff000027.0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffd8 ++srlow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffeffff.0xfffdffff.0xfff1ffff.0xfff0ffff.0xff9cffff.0xd8f0ffff.0xffffffff.0x7fff ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffeff.0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffffff.0x7f ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffffff.0x7f.0x0.0x0.0x0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7f.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xff39ffff.0xb1e1ffff.0xffffffff.0xffff.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x39ffffff.0xe1ffffff.0xffffffb1.0xffffff.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x39ffffff.0xe1ffffff.0xffffffb1.0xffffff.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xdfffffff.0xbfffffff.0x3fffffff.0x1ffffffe.0x9ffffffe.0x1ffffff3.0xfffffb1e.0xfffffff ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x39ffffff.0xe1ffffff.0xffffffb1.0xffffff.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfeffffff.0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff ++srlow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff.0x800000 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffdffff.0xfff1ffff.0xfff0ffff.0xff9cffff.0xd8f0ffff.0xffffffff.0x7fff.0x8000 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffdff.0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffffff.0x7f.0x80 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffff9cff.0xffd8f0ff.0xffffffff.0x7f.0x80.0x0.0x0.0x0 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x0.0x0.0x0.0x0 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x0 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x0.0x0.0x0.0x0 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x80.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x100.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x10000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xb1e1ffff.0xffffffff.0xffff.0x10000.0x0.0x0.0x0.0x0 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xe1ffffff.0xffffffb1.0xffffff.0x1000000.0x0.0x0.0x0.0x0 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xe1ffffff.0xffffffb1.0xffffff.0x1000000.0x0.0x0.0x0.0x0 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xbfffffff.0x3fffffff.0x1ffffffe.0x9ffffffe.0x1ffffff3.0xfffffb1e.0xfffffff.0x10000000 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xe1ffffff.0xffffffb1.0xffffff.0x1000000.0x0.0x0.0x0.0x0 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfdffffff.0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff.0x800000 ++srlow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff.0xff800000.0xffffff ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfff1ffff.0xfff0ffff.0xff9cffff.0xd8f0ffff.0xffffffff.0x7fff.0xffff8000.0xffff ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffff1ff.0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffffff.0x7f.0xffffff80.0xff ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffd8f0ff.0xffffffff.0x7f.0xffffff80.0xff.0x0.0x0.0x0 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x0.0x0.0x0.0x0 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x0 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x0.0x0.0x0.0x0 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1ff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1ffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xffff.0xffff0000.0x1ffff.0x0.0x0.0x0.0x0 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffb1.0xffffff.0xff000000.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1ffffff.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffb1.0xffffff.0xff000000.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x3fffffff.0x1ffffffe.0x9ffffffe.0x1ffffff3.0xfffffb1e.0xfffffff.0xf0000000.0x1fffffff ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffb1.0xffffff.0xff000000.0x1ffffff.0x0.0x0.0x0.0x0 ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf1ffffff.0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff.0xff800000.0xffffff ++srlow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff.0xff800000.0x70ffffff.0x123456 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfff0ffff.0xff9cffff.0xd8f0ffff.0xffffffff.0x7fff.0xffff8000.0x5670ffff.0x1234 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffff0ff.0xffff9cff.0xffd8f0ff.0xffffffff.0x7f.0xffffff80.0x345670ff.0x12 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0x7f.0xffffff80.0x345670ff.0x12.0x0.0x0.0x0 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x0.0x0.0x0.0x0 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x0 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x0.0x0.0x0.0x0 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x24.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x2468.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff.0xffff0000.0xace1ffff.0x2468.0x0.0x0.0x0.0x0 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff.0xff000000.0xe1ffffff.0x2468ac.0x0.0x0.0x0.0x0 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x2468ac.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff.0xff000000.0xe1ffffff.0x2468ac.0x0.0x0.0x0.0x0 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1ffffffe.0x9ffffffe.0x1ffffff3.0xfffffb1e.0xfffffff.0xf0000000.0x1fffffff.0x2468ace ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x1.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff.0xff000000.0xe1ffffff.0x2468ac.0x0.0x0.0x0.0x0 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf0ffffff.0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff.0xff800000.0x70ffffff.0x123456 ++srlow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff.0xff800000.0x70ffffff.0x21123456.0x76543 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xff9cffff.0xd8f0ffff.0xffffffff.0x7fff.0xffff8000.0x5670ffff.0x43211234.0x765 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffff9cff.0xffd8f0ff.0xffffffff.0x7f.0xffffff80.0x345670ff.0x65432112.0x7 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7f.0xffffff80.0x345670ff.0x65432112.0x7.0x0.0x0.0x0 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x0.0x0.0x0 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x0.0x0.0x0 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xe.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xeca.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff0000.0xace1ffff.0x86422468.0xeca.0x0.0x0.0x0.0x0 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xff000000.0xe1ffffff.0x422468ac.0xeca86.0x0.0x0.0x0.0x0 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xeca86.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xff000000.0xe1ffffff.0x422468ac.0xeca86.0x0.0x0.0x0.0x0 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x9ffffffe.0x1ffffff3.0xfffffb1e.0xfffffff.0xf0000000.0x1fffffff.0x22468ace.0xeca864 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xff000000.0xe1ffffff.0x422468ac.0xeca86.0x0.0x0.0x0.0x0 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x9cffffff.0xf0ffffff.0xffffffd8.0x7fffff.0xff800000.0x70ffffff.0x21123456.0x76543 ++srlow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf0ffffff.0xffffffd8.0x7fffff.0xff800000.0x70ffffff.0x21123456.0x76543.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xd8f0ffff.0xffffffff.0x7fff.0xffff8000.0x5670ffff.0x43211234.0x765.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffd8f0ff.0xffffffff.0x7f.0xffffff80.0x345670ff.0x65432112.0x7.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff80.0x345670ff.0x65432112.0x7.0x0.0x0.0x0.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0x12345670.0x7654321.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffff.0x12345670.0x7654321.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xace1ffff.0x86422468.0xeca.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xe1ffffff.0x422468ac.0xeca86.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xe1ffffff.0x422468ac.0xeca86.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1ffffff3.0xfffffb1e.0xfffffff.0xf0000000.0x1fffffff.0x22468ace.0xeca864.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xe1ffffff.0x422468ac.0xeca86.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf0ffffff.0xffffffd8.0x7fffff.0xff800000.0x70ffffff.0x21123456.0x76543.0x0 ++srlow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffd8.0x7fffff.0xff800000.0x70ffffff.0x21123456.0x76543.0x1000000.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0x7fff.0xffff8000.0x5670ffff.0x43211234.0x765.0x10000.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0x7f.0xffffff80.0x345670ff.0x65432112.0x7.0x100.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x345670ff.0x65432112.0x7.0x100.0x0.0x0.0x0.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12345670.0x7654321.0x0.0x1.0x0.0x0.0x0.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x12345670.0x7654321.0x0.0x1.0x0.0x0.0x0.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x86422468.0xeca.0x20000.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x422468ac.0xeca86.0x2000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x422468ac.0xeca86.0x2000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffb1e.0xfffffff.0xf0000000.0x1fffffff.0x22468ace.0xeca864.0x20000000.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x422468ac.0xeca86.0x2000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffffd8.0x7fffff.0xff800000.0x70ffffff.0x21123456.0x76543.0x1000000.0x0 ++srlow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7fffff.0xff800000.0x70ffffff.0x21123456.0x76543.0x1000000.0x2000000.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7fff.0xffff8000.0x5670ffff.0x43211234.0x765.0x10000.0x20000.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7f.0xffffff80.0x345670ff.0x65432112.0x7.0x100.0x200.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x65432112.0x7.0x100.0x200.0x0.0x0.0x0.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654321.0x0.0x1.0x2.0x0.0x0.0x0.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7654321.0x0.0x1.0x2.0x0.0x0.0x0.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xeca.0x20000.0x40000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xeca86.0x2000000.0x4000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xeca86.0x2000000.0x4000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffff.0xf0000000.0x1fffffff.0x22468ace.0xeca864.0x20000000.0x40000000.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xeca86.0x2000000.0x4000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x7fffff.0xff800000.0x70ffffff.0x21123456.0x76543.0x1000000.0x2000000.0x0 ++srlow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xff800000.0x70ffffff.0x21123456.0x76543.0x1000000.0x2000000.0x3000000.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff8000.0x5670ffff.0x43211234.0x765.0x10000.0x20000.0x30000.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff80.0x345670ff.0x65432112.0x7.0x100.0x200.0x300.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7.0x100.0x200.0x300.0x0.0x0.0x0.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x1.0x2.0x3.0x0.0x0.0x0.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0x2.0x3.0x0.0x0.0x0.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x20000.0x40000.0x60000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x2000000.0x4000000.0x6000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x2000000.0x4000000.0x6000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xf0000000.0x1fffffff.0x22468ace.0xeca864.0x20000000.0x40000000.0x60000000.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x2000000.0x4000000.0x6000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xff800000.0x70ffffff.0x21123456.0x76543.0x1000000.0x2000000.0x3000000.0x0 ++srlow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x70ffffff.0x21123456.0x76543.0x1000000.0x2000000.0x3000000.0xf000000.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x5670ffff.0x43211234.0x765.0x10000.0x20000.0x30000.0xf0000.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x345670ff.0x65432112.0x7.0x100.0x200.0x300.0xf00.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x100.0x200.0x300.0xf00.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x2.0x3.0xf.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x2.0x3.0xf.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x40000.0x60000.0x1e0000.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x4000000.0x6000000.0x1e000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x4000000.0x6000000.0x1e000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1fffffff.0x22468ace.0xeca864.0x20000000.0x40000000.0x60000000.0xe0000000.0x1 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x4000000.0x6000000.0x1e000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x70ffffff.0x21123456.0x76543.0x1000000.0x2000000.0x3000000.0xf000000.0x0 ++srlow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x21123456.0x76543.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x43211234.0x765.0x10000.0x20000.0x30000.0xf0000.0x100000.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x65432112.0x7.0x100.0x200.0x300.0xf00.0x1000.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x200.0x300.0xf00.0x1000.0x0.0x0.0x0.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2.0x3.0xf.0x10.0x0.0x0.0x0.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2.0x3.0xf.0x10.0x0.0x0.0x0.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x60000.0x1e0000.0x200000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x6000000.0x1e000000.0x20000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x6000000.0x1e000000.0x20000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x22468ace.0xeca864.0x20000000.0x40000000.0x60000000.0xe0000000.0x1.0x2 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x6000000.0x1e000000.0x20000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x21123456.0x76543.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x0 ++srlow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x76543.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x765.0x10000.0x20000.0x30000.0xf0000.0x100000.0x640000.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7.0x100.0x200.0x300.0xf00.0x1000.0x6400.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x300.0xf00.0x1000.0x6400.0x0.0x0.0x0.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x3.0xf.0x10.0x64.0x0.0x0.0x0.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x3.0xf.0x10.0x64.0x0.0x0.0x0.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1e0000.0x200000.0xc80000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1e000000.0x20000000.0xc8000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1e000000.0x20000000.0xc8000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xeca864.0x20000000.0x40000000.0x60000000.0xe0000000.0x1.0x80000002.0xc ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1e000000.0x20000000.0xc8000000.0x0.0x0.0x0.0x0.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x76543.0x1000000.0x2000000.0x3000000.0xf000000.0x10000000.0x64000000.0x0 ++srlow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++=== Running test on vaddl=== ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x2.0x4.0x6.0x1e.0x20.0xc8.0x4e20 ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x4.0x11.0x13.0x73.0x2720.0x63.0x270f ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0x10.0x12.0x67.0x271f.0xf.0x62.0x270e ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x11.0x66.0x2713.0xe.0xf.0x61.0x2702 ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x65.0x2712.0x2.0xd.0xe.0x55.0x2701 ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2711.0x1.0x2.0xc.0x2.0x54.0x26ad ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0x0.0x0.0x1.0x0.0x1.0x0.0x1 ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710 ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d81 ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31 ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345681.0x7654385.0x2710 ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x80000000.0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711 ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000001.0x1.0x12345674.0x7654330.0x10.0x65.0x2712 ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x0.0x12345672.0x7654324.0xf.0x11.0x66.0x2713 ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720 ++vaddl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74.0x2774 ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2.0x4.0x6.0x1e.0x20.0xc8.0x4e20.0xfffffffe ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f.0xfffffffe ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x4.0x11.0x13.0x73.0x2720.0x63.0x270e.0xfffffffd ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x10.0x12.0x67.0x271f.0xf.0x63.0x270d.0xfffffff1 ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x11.0x66.0x2713.0xe.0xe.0x62.0x2701.0xfffffff0 ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x65.0x2712.0x2.0xe.0xd.0x56.0x2700.0xffffff9c ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2711.0x1.0x1.0xd.0x1.0x55.0x26ac.0xffffd8f0 ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x1.0x0.0x1.0x0.0x1.0x0.0x7fffffff ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x12345670 ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80.0x7654320 ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d5.0x7656a31.0xffffffff ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0 ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x80000002.0x2.0x12345680.0x7654331.0x64.0x2711.0x1 ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000001.0x1.0x12345673.0x7654330.0x10.0x65.0x2712.0x2 ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x12345673.0x7654324.0xf.0x11.0x66.0x2713.0xe ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f.0xf ++vaddl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720.0x63 ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2.0x4.0x11.0x13.0x73.0x2720.0x63.0x270f ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f.0xfffffffe ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x4.0x6.0x1e.0x20.0xc8.0x4e20.0xfffffffe.0xfffffffd ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x5.0x12.0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffc ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x11.0x13.0x73.0x2720.0x63.0x270f.0xfffffffc.0xfffffff0 ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12.0x67.0x271f.0xf.0x62.0x270e.0xfffffff0.0xffffffef ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x66.0x2713.0xe.0xf.0x61.0x2702.0xffffffef.0xffffff9b ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2712.0x2.0xd.0xe.0x55.0x2701.0xffffff9b.0xffffd8ef ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x2.0xc.0x2.0x54.0x26ad.0xffffd8ef.0x7ffffffe ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x1.0x0.0x1.0x0.0x1.0x7ffffffe.0x7fffffff ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffe ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566f ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x1234566f.0x7654320 ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d81.0x7654320.0xffffffff ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000001.0x80000003.0xe.0x12345681.0x7654385.0x2710.0x0.0x1 ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711.0x1.0x2 ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x12345674.0x7654330.0x10.0x65.0x2712.0x2.0xe ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xe.0xf ++vaddl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654323.0x3.0x10.0x12.0x67.0x271f.0xf.0x63 ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x3.0x10.0x12.0x67.0x271f.0xf.0x62.0x270e ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x4.0x11.0x13.0x73.0x2720.0x63.0x270e.0xfffffffd ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x5.0x12.0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffc ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x6.0x1e.0x20.0xc8.0x4e20.0xfffffffe.0xfffffffc.0xfffffffb ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12.0x1f.0x74.0x2774.0x270f.0xfffffffe.0xfffffffb.0xffffffef ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x13.0x73.0x2720.0x63.0x270e.0xfffffffd.0xffffffef.0xffffffee ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x67.0x271f.0xf.0x63.0x270d.0xfffffff1.0xffffffee.0xffffff9a ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2713.0xe.0xe.0x62.0x2701.0xfffffff0.0xffffff9a.0xffffd8ee ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x2.0xe.0xd.0x56.0x2700.0xffffff9c.0xffffd8ee.0x7ffffffd ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0xd.0x1.0x55.0x26ac.0xffffd8f0.0x7ffffffd.0x7ffffffe ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x1.0x0.0x1.0x0.0x7fffffff.0x7ffffffe.0xfffffffd ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffd.0x1234566e ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566e.0x765431f ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x12345670.0x765431f.0xfffffffe ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000002.0x8000000f.0xf.0x123456d5.0x7656a31.0xffffffff.0xffffffff.0xffffffff ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0.0x0.0x1 ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x2.0x12345680.0x7654331.0x64.0x2711.0x1.0x1.0xd ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345673.0x7654330.0x10.0x65.0x2712.0x2.0xd.0xe ++vaddl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654324.0xf.0x11.0x66.0x2713.0xe.0xe.0x62 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf.0x11.0x66.0x2713.0xe.0xf.0x61.0x2702 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x10.0x12.0x67.0x271f.0xf.0x63.0x270d.0xfffffff1 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x11.0x13.0x73.0x2720.0x63.0x270f.0xfffffffc.0xfffffff0 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x12.0x1f.0x74.0x2774.0x270f.0xfffffffe.0xfffffffb.0xffffffef ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1e.0x20.0xc8.0x4e20.0xfffffffe.0xfffffffd.0xfffffffa.0xffffffe3 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffc.0xffffffee.0xffffffe2 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x73.0x2720.0x63.0x270f.0xfffffffc.0xfffffff0.0xffffffed.0xffffff8e ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x271f.0xf.0x62.0x270e.0xfffffff0.0xffffffef.0xffffff99.0xffffd8e2 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xe.0xf.0x61.0x2702.0xffffffef.0xffffff9b.0xffffd8ed.0x7ffffff1 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xd.0xe.0x55.0x2701.0xffffff9b.0xffffd8ef.0x7ffffffc.0x7ffffff2 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xc.0x2.0x54.0x26ad.0xffffd8ef.0x7ffffffe.0x7ffffffd.0xfffffff1 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x1.0x0.0x1.0x7ffffffe.0x7fffffff.0xfffffffc.0x12345662 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffe.0x1234566d.0x7654313 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566f.0x765431e.0xfffffff2 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ff.0x8000000f.0x80000064.0x270f.0x1234566f.0x7654320.0xfffffffd.0xfffffff2 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8000000e.0x80000010.0x63.0x12347d81.0x7654320.0xffffffff.0xfffffffe.0xfffffff3 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xe.0x12345681.0x7654385.0x2710.0x0.0x1.0x0.0x1 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234567f.0x7654331.0x64.0x2711.0x1.0x2.0xc.0x2 ++vaddl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654330.0x10.0x65.0x2712.0x2.0xe.0xd.0x56 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x10.0x65.0x2712.0x2.0xd.0xe.0x55.0x2701 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x11.0x66.0x2713.0xe.0xe.0x62.0x2701.0xfffffff0 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x12.0x67.0x271f.0xf.0x62.0x270e.0xfffffff0.0xffffffef ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x13.0x73.0x2720.0x63.0x270e.0xfffffffd.0xffffffef.0xffffffee ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffc.0xffffffee.0xffffffe2 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20.0xc8.0x4e20.0xfffffffe.0xfffffffc.0xfffffffb.0xffffffe2.0xffffffe1 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x74.0x2774.0x270f.0xfffffffe.0xfffffffb.0xffffffef.0xffffffe1.0xffffff8d ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2720.0x63.0x270e.0xfffffffd.0xffffffef.0xffffffee.0xffffff8d.0xffffd8e1 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xf.0x63.0x270d.0xfffffff1.0xffffffee.0xffffff9a.0xffffd8e1.0x7ffffff0 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xe.0x62.0x2701.0xfffffff0.0xffffff9a.0xffffd8ee.0x7ffffff0.0x7ffffff1 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xd.0x56.0x2700.0xffffff9c.0xffffd8ee.0x7ffffffd.0x7ffffff1.0xfffffff0 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x55.0x26ac.0xffffd8f0.0x7ffffffd.0x7ffffffe.0xfffffff0.0x12345661 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x1.0x0.0x7fffffff.0x7ffffffe.0xfffffffd.0x12345661.0x7654312 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffd.0x1234566e.0x7654312.0xfffffff1 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566e.0x765431f.0xfffffff1.0xfffffff1 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8000000f.0x80000064.0x270f.0x12345670.0x765431f.0xfffffffe.0xfffffff2.0xfffffff2 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xf.0x123456d5.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345680.0x7654385.0x2710.0x0.0x0.0x1.0x0.0x1 ++vaddl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654331.0x64.0x2711.0x1.0x1.0xd.0x1.0x55 ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x64.0x2711.0x1.0x2.0xc.0x2.0x54.0x26ad ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x65.0x2712.0x2.0xe.0xd.0x56.0x2700.0xffffff9c ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x66.0x2713.0xe.0xf.0x61.0x2702.0xffffffef.0xffffff9b ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x67.0x271f.0xf.0x63.0x270d.0xfffffff1.0xffffffee.0xffffff9a ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x73.0x2720.0x63.0x270f.0xfffffffc.0xfffffff0.0xffffffed.0xffffff8e ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x74.0x2774.0x270f.0xfffffffe.0xfffffffb.0xffffffef.0xffffffe1.0xffffff8d ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xc8.0x4e20.0xfffffffe.0xfffffffd.0xfffffffa.0xffffffe3.0xffffffe0.0xffffff39 ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2774.0x270f.0xfffffffd.0xfffffffc.0xffffffee.0xffffffe2.0xffffff8c.0xffffd88d ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x63.0x270f.0xfffffffc.0xfffffff0.0xffffffed.0xffffff8e.0xffffd8e0.0x7fffff9c ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x62.0x270e.0xfffffff0.0xffffffef.0xffffff99.0xffffd8e2.0x7fffffef.0x7fffff9d ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x61.0x2702.0xffffffef.0xffffff9b.0xffffd8ed.0x7ffffff1.0x7ffffff0.0xffffff9c ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x55.0x2701.0xffffff9b.0xffffd8ef.0x7ffffffc.0x7ffffff2.0xffffffef.0x1234560d ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x54.0x26ad.0xffffd8ef.0x7ffffffe.0x7ffffffd.0xfffffff1.0x12345660.0x76542be ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x1.0x7ffffffe.0x7fffffff.0xfffffffc.0x12345662.0x7654311.0xffffff9d ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd954.0x8000270f.0x7fffffff.0xfffffffe.0x1234566d.0x7654313.0xfffffff0.0xffffff9d ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000063.0x80002710.0xfffffffe.0x1234566f.0x765431e.0xfffffff2.0xfffffff1.0xffffff9e ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000064.0x270f.0x1234566f.0x7654320.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x63.0x12347d81.0x7654320.0xffffffff.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac ++vaddl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654385.0x2710.0x0.0x1.0x0.0x1.0x0.0x1 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2710.0x0.0x0.0x1.0x0.0x1.0x0.0x1 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2711.0x1.0x1.0xd.0x1.0x55.0x26ac.0xffffd8f0 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2712.0x2.0xd.0xe.0x55.0x2701.0xffffff9b.0xffffd8ef ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2713.0xe.0xe.0x62.0x2701.0xfffffff0.0xffffff9a.0xffffd8ee ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x271f.0xf.0x62.0x270e.0xfffffff0.0xffffffef.0xffffff99.0xffffd8e2 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2720.0x63.0x270e.0xfffffffd.0xffffffef.0xffffffee.0xffffff8d.0xffffd8e1 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2774.0x270f.0xfffffffd.0xfffffffc.0xffffffee.0xffffffe2.0xffffff8c.0xffffd88d ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x4e20.0xfffffffe.0xfffffffc.0xfffffffb.0xffffffe2.0xffffffe1.0xffffff38.0xffffb1e1 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x270f.0xfffffffe.0xfffffffb.0xffffffef.0xffffffe1.0xffffff8d.0xffffd88c.0x7fffd8f0 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x270e.0xfffffffd.0xffffffef.0xffffffee.0xffffff8d.0xffffd8e1.0x7fffff9b.0x7fffd8f1 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x270d.0xfffffff1.0xffffffee.0xffffff9a.0xffffd8e1.0x7ffffff0.0x7fffff9c.0xffffd8f0 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x2701.0xfffffff0.0xffffff9a.0xffffd8ee.0x7ffffff0.0x7ffffff1.0xffffff9b.0x12342f61 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x2700.0xffffff9c.0xffffd8ee.0x7ffffffd.0x7ffffff1.0xfffffff0.0x1234560c.0x7651c12 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x26ac.0xffffd8f0.0x7ffffffd.0x7ffffffe.0xfffffff0.0x12345661.0x76542bd.0xffffd8f1 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x7fffffff.0x7ffffffe.0xfffffffd.0x12345661.0x7654312.0xffffff9c.0xffffd8f1 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8000270f.0x7fffffff.0xfffffffd.0x1234566e.0x7654312.0xfffffff1.0xffffff9d.0xffffd8f2 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80002710.0xfffffffe.0x1234566e.0x765431f.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x270f.0x12345670.0x765431f.0xfffffffe.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900 ++vaddl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954 ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x1.0x0.0x1.0x0.0x1.0x0.0x7fffffff ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x2.0xc.0x2.0x54.0x26ad.0xffffd8ef.0x7ffffffe ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2.0xe.0xd.0x56.0x2700.0xffffff9c.0xffffd8ee.0x7ffffffd ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xe.0xf.0x61.0x2702.0xffffffef.0xffffff9b.0xffffd8ed.0x7ffffff1 ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf.0x63.0x270d.0xfffffff1.0xffffffee.0xffffff9a.0xffffd8e1.0x7ffffff0 ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x63.0x270f.0xfffffffc.0xfffffff0.0xffffffed.0xffffff8e.0xffffd8e0.0x7fffff9c ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x270f.0xfffffffe.0xfffffffb.0xffffffef.0xffffffe1.0xffffff8d.0xffffd88c.0x7fffd8f0 ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffe.0xfffffffd.0xfffffffa.0xffffffe3.0xffffffe0.0xffffff39.0xffffb1e0.0xffffffff ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffd.0xfffffffc.0xffffffee.0xffffffe2.0xffffff8c.0xffffd88d.0x7fffd8ef.0x0 ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffc.0xfffffff0.0xffffffed.0xffffff8e.0xffffd8e0.0x7fffff9c.0x7fffd8f0.0x7fffffff ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff0.0xffffffef.0xffffff99.0xffffd8e2.0x7fffffef.0x7fffff9d.0xffffd8ef.0x92345670 ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffef.0xffffff9b.0xffffd8ed.0x7ffffff1.0x7ffffff0.0xffffff9c.0x12342f60.0x87654321 ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9b.0xffffd8ef.0x7ffffffc.0x7ffffff2.0xffffffef.0x1234560d.0x7651c11.0x80000000 ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ef.0x7ffffffe.0x7ffffffd.0xfffffff1.0x12345660.0x76542be.0xffffd8f0.0x80000000 ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffe.0x7fffffff.0xfffffffc.0x12345662.0x7654311.0xffffff9d.0xffffd8f1.0x80000001 ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0xfffffffe.0x1234566d.0x7654313.0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002 ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffe.0x1234566f.0x765431e.0xfffffff2.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234566f.0x7654320.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f ++vaddl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654320.0xffffffff.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063 ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710 ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x1.0x0.0x1.0x0.0x1.0x7ffffffe.0x7fffffff ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0xd.0x1.0x55.0x26ac.0xffffd8f0.0x7ffffffd.0x7ffffffe ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xd.0xe.0x55.0x2701.0xffffff9b.0xffffd8ef.0x7ffffffc.0x7ffffff2 ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xe.0x62.0x2701.0xfffffff0.0xffffff9a.0xffffd8ee.0x7ffffff0.0x7ffffff1 ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x62.0x270e.0xfffffff0.0xffffffef.0xffffff99.0xffffd8e2.0x7fffffef.0x7fffff9d ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x270e.0xfffffffd.0xffffffef.0xffffffee.0xffffff8d.0xffffd8e1.0x7fffff9b.0x7fffd8f1 ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffd.0xfffffffc.0xffffffee.0xffffffe2.0xffffff8c.0xffffd88d.0x7fffd8ef.0x0 ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffc.0xfffffffb.0xffffffe2.0xffffffe1.0xffffff38.0xffffb1e1.0xfffffffe.0x0 ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffb.0xffffffef.0xffffffe1.0xffffff8d.0xffffd88c.0x7fffd8f0.0xffffffff.0x7fffffff ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffef.0xffffffee.0xffffff8d.0xffffd8e1.0x7fffff9b.0x7fffd8f1.0x7ffffffe.0x92345671 ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffee.0xffffff9a.0xffffd8e1.0x7ffffff0.0x7fffff9c.0xffffd8f0.0x9234566f.0x87654321 ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9a.0xffffd8ee.0x7ffffff0.0x7ffffff1.0xffffff9b.0x12342f61.0x87654320.0x80000000 ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ee.0x7ffffffd.0x7ffffff1.0xfffffff0.0x1234560c.0x7651c12.0x7fffffff.0x80000001 ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffd.0x7ffffffe.0xfffffff0.0x12345661.0x76542bd.0xffffd8f1.0x80000000.0x80000002 ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffffe.0xfffffffd.0x12345661.0x7654312.0xffffff9c.0xffffd8f1.0x80000001.0x80000003 ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffd.0x1234566e.0x7654312.0xfffffff1.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234566e.0x765431f.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010 ++vaddl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x765431f.0xfffffffe.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064 ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffe ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x1.0x0.0x1.0x0.0x7fffffff.0x7ffffffe.0xfffffffd ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xc.0x2.0x54.0x26ad.0xffffd8ef.0x7ffffffe.0x7ffffffd.0xfffffff1 ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xd.0x56.0x2700.0xffffff9c.0xffffd8ee.0x7ffffffd.0x7ffffff1.0xfffffff0 ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x61.0x2702.0xffffffef.0xffffff9b.0xffffd8ed.0x7ffffff1.0x7ffffff0.0xffffff9c ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x270d.0xfffffff1.0xffffffee.0xffffff9a.0xffffd8e1.0x7ffffff0.0x7fffff9c.0xffffd8f0 ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffc.0xfffffff0.0xffffffed.0xffffff8e.0xffffd8e0.0x7fffff9c.0x7fffd8f0.0x7fffffff ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffb.0xffffffef.0xffffffe1.0xffffff8d.0xffffd88c.0x7fffd8f0.0xffffffff.0x7fffffff ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffa.0xffffffe3.0xffffffe0.0xffffff39.0xffffb1e0.0xffffffff.0x0.0xffffffff ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffee.0xffffffe2.0xffffff8c.0xffffd88d.0x7fffd8ef.0x0.0x7fffffff.0x12345670 ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffed.0xffffff8e.0xffffd8e0.0x7fffff9c.0x7fffd8f0.0x7fffffff.0x92345670.0x7654320 ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff99.0xffffd8e2.0x7fffffef.0x7fffff9d.0xffffd8ef.0x92345670.0x87654321.0xffffffff ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ed.0x7ffffff1.0x7ffffff0.0xffffff9c.0x12342f60.0x87654321.0x80000000.0x0 ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffc.0x7ffffff2.0xffffffef.0x1234560d.0x7651c11.0x80000000.0x80000001.0x1 ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffffd.0xfffffff1.0x12345660.0x76542be.0xffffd8f0.0x80000000.0x80000002.0x2 ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffc.0x12345662.0x7654311.0xffffff9d.0xffffd8f1.0x80000001.0x80000003.0xe ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234566d.0x7654313.0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf ++vaddl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x765431e.0xfffffff2.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d81 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x12345670 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566f ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffd.0x1234566e ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x1.0x0.0x1.0x7ffffffe.0x7fffffff.0xfffffffc.0x12345662 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x55.0x26ac.0xffffd8f0.0x7ffffffd.0x7ffffffe.0xfffffff0.0x12345661 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x55.0x2701.0xffffff9b.0xffffd8ef.0x7ffffffc.0x7ffffff2.0xffffffef.0x1234560d ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2701.0xfffffff0.0xffffff9a.0xffffd8ee.0x7ffffff0.0x7ffffff1.0xffffff9b.0x12342f61 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffff0.0xffffffef.0xffffff99.0xffffd8e2.0x7fffffef.0x7fffff9d.0xffffd8ef.0x92345670 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffef.0xffffffee.0xffffff8d.0xffffd8e1.0x7fffff9b.0x7fffd8f1.0x7ffffffe.0x92345671 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffee.0xffffffe2.0xffffff8c.0xffffd88d.0x7fffd8ef.0x0.0x7fffffff.0x12345670 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffe2.0xffffffe1.0xffffff38.0xffffb1e1.0xfffffffe.0x0.0xfffffffe.0x2468ace1 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffe1.0xffffff8d.0xffffd88c.0x7fffd8f0.0xffffffff.0x7fffffff.0x1234566f.0x19999992 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff8d.0xffffd8e1.0x7fffff9b.0x7fffd8f1.0x7ffffffe.0x92345671.0x7654320.0x12345671 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8e1.0x7ffffff0.0x7fffff9c.0xffffd8f0.0x9234566f.0x87654321.0xffffffff.0x12345671 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffff0.0x7ffffff1.0xffffff9b.0x12342f61.0x87654320.0x80000000.0x0.0x12345673 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffff1.0xfffffff0.0x1234560c.0x7651c12.0x7fffffff.0x80000001.0x1.0x12345674 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffff0.0x12345661.0x76542bd.0xffffd8f1.0x80000000.0x80000002.0x2.0x12345680 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345661.0x7654312.0xffffff9c.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345681 ++vaddl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654312.0xfffffff1.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d5 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80.0x7654320 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x1234566f.0x7654320 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff3.0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566e.0x765431f ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffe.0x1234566d.0x7654313 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x0.0x7fffffff.0x7ffffffe.0xfffffffd.0x12345661.0x7654312 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x54.0x26ad.0xffffd8ef.0x7ffffffe.0x7ffffffd.0xfffffff1.0x12345660.0x76542be ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2700.0xffffff9c.0xffffd8ee.0x7ffffffd.0x7ffffff1.0xfffffff0.0x1234560c.0x7651c12 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffef.0xffffff9b.0xffffd8ed.0x7ffffff1.0x7ffffff0.0xffffff9c.0x12342f60.0x87654321 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffee.0xffffff9a.0xffffd8e1.0x7ffffff0.0x7fffff9c.0xffffd8f0.0x9234566f.0x87654321 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffed.0xffffff8e.0xffffd8e0.0x7fffff9c.0x7fffd8f0.0x7fffffff.0x92345670.0x7654320 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffe1.0xffffff8d.0xffffd88c.0x7fffd8f0.0xffffffff.0x7fffffff.0x1234566f.0x19999992 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffe0.0xffffff39.0xffffb1e0.0xffffffff.0x0.0xffffffff.0x2468ace0.0xeca8642 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff8c.0xffffd88d.0x7fffd8ef.0x0.0x7fffffff.0x12345670.0x19999991.0x7654321 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8e0.0x7fffff9c.0x7fffd8f0.0x7fffffff.0x92345670.0x7654320.0x12345670.0x7654322 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffef.0x7fffff9d.0xffffd8ef.0x92345670.0x87654321.0xffffffff.0x12345671.0x7654323 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffff0.0xffffff9c.0x12342f60.0x87654321.0x80000000.0x0.0x12345672.0x7654324 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffef.0x1234560d.0x7651c11.0x80000000.0x80000001.0x1.0x12345673.0x7654330 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345660.0x76542be.0xffffd8f0.0x80000000.0x80000002.0x2.0x1234567f.0x7654331 ++vaddl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654311.0xffffff9d.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680.0x7654385 ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff9c.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345681.0x7654385.0x2710 ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d5.0x7656a31.0xffffffff ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d81.0x7654320.0xffffffff ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff9f.0xffffd8ff.0x8000000f.0x80000064.0x270f.0x12345670.0x765431f.0xfffffffe ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffab.0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566f.0x765431e.0xfffffff2 ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffac.0xffffd954.0x8000270f.0x7fffffff.0xfffffffd.0x1234566e.0x7654312.0xfffffff1 ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0x7ffffffe.0x7fffffff.0xfffffffc.0x12345662.0x7654311.0xffffff9d ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x26ac.0xffffd8f0.0x7ffffffd.0x7ffffffe.0xfffffff0.0x12345661.0x76542bd.0xffffd8f1 ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffff9b.0xffffd8ef.0x7ffffffc.0x7ffffff2.0xffffffef.0x1234560d.0x7651c11.0x80000000 ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffff9a.0xffffd8ee.0x7ffffff0.0x7ffffff1.0xffffff9b.0x12342f61.0x87654320.0x80000000 ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffff99.0xffffd8e2.0x7fffffef.0x7fffff9d.0xffffd8ef.0x92345670.0x87654321.0xffffffff ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff8d.0xffffd8e1.0x7fffff9b.0x7fffd8f1.0x7ffffffe.0x92345671.0x7654320.0x12345671 ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffff8c.0xffffd88d.0x7fffd8ef.0x0.0x7fffffff.0x12345670.0x19999991.0x7654321 ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff38.0xffffb1e1.0xfffffffe.0x0.0xfffffffe.0x2468ace1.0xeca8642.0x0 ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd88c.0x7fffd8f0.0xffffffff.0x7fffffff.0x1234566f.0x19999992.0x7654321.0x1 ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffff9b.0x7fffd8f1.0x7ffffffe.0x92345671.0x7654320.0x12345671.0x7654322.0x2 ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffff9c.0xffffd8f0.0x9234566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3 ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff9b.0x12342f61.0x87654320.0x80000000.0x0.0x12345673.0x7654324.0xf ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234560c.0x7651c12.0x7fffffff.0x80000001.0x1.0x12345674.0x7654330.0x10 ++vaddl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x76542bd.0xffffd8f1.0x80000000.0x80000002.0x2.0x12345680.0x7654331.0x64 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffd8f0.0x80000000.0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffd8f3.0x8000000e.0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8ff.0x8000000f.0x80000064.0x270f.0x1234566f.0x7654320.0xfffffffd.0xfffffff2 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd900.0x80000063.0x80002710.0xfffffffe.0x1234566e.0x765431f.0xfffffff1.0xfffffff1 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd954.0x8000270f.0x7fffffff.0xfffffffe.0x1234566d.0x7654313.0xfffffff0.0xffffff9d ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x7fffffff.0x7ffffffe.0xfffffffd.0x12345661.0x7654312.0xffffff9c.0xffffd8f1 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffd8ef.0x7ffffffe.0x7ffffffd.0xfffffff1.0x12345660.0x76542be.0xffffd8f0.0x80000000 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffd8ee.0x7ffffffd.0x7ffffff1.0xfffffff0.0x1234560c.0x7651c12.0x7fffffff.0x80000001 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffd8ed.0x7ffffff1.0x7ffffff0.0xffffff9c.0x12342f60.0x87654321.0x80000000.0x0 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffd8e1.0x7ffffff0.0x7fffff9c.0xffffd8f0.0x9234566f.0x87654321.0xffffffff.0x12345671 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffd8e0.0x7fffff9c.0x7fffd8f0.0x7fffffff.0x92345670.0x7654320.0x12345670.0x7654322 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffd88c.0x7fffd8f0.0xffffffff.0x7fffffff.0x1234566f.0x19999992.0x7654321.0x1 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffb1e0.0xffffffff.0x0.0xffffffff.0x2468ace0.0xeca8642.0x0.0x2 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffd8ef.0x0.0x7fffffff.0x12345670.0x19999991.0x7654321.0x1.0x3 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffd8f0.0x7fffffff.0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffd8ef.0x92345670.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12342f60.0x87654321.0x80000000.0x0.0x12345672.0x7654324.0xf.0x11 ++vaddl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7651c11.0x80000000.0x80000001.0x1.0x12345673.0x7654330.0x10.0x65 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7fffffff.0x80000001.0x1.0x12345674.0x7654330.0x10.0x65.0x2712 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x80000000.0x80000002.0x2.0x12345680.0x7654331.0x64.0x2711.0x1 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x80000001.0x80000003.0xe.0x12345681.0x7654385.0x2710.0x0.0x1 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x80000002.0x8000000f.0xf.0x123456d5.0x7656a31.0xffffffff.0xffffffff.0xffffffff ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x8000000e.0x80000010.0x63.0x12347d81.0x7654320.0xffffffff.0xfffffffe.0xfffffff3 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x8000000f.0x80000064.0x270f.0x12345670.0x765431f.0xfffffffe.0xfffffff2.0xfffffff2 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000063.0x80002710.0xfffffffe.0x1234566f.0x765431e.0xfffffff2.0xfffffff1.0xffffff9e ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x8000270f.0x7fffffff.0xfffffffd.0x1234566e.0x7654312.0xfffffff1.0xffffff9d.0xffffd8f2 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7ffffffe.0x7fffffff.0xfffffffc.0x12345662.0x7654311.0xffffff9d.0xffffd8f1.0x80000001 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7ffffffd.0x7ffffffe.0xfffffff0.0x12345661.0x76542bd.0xffffd8f1.0x80000000.0x80000002 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7ffffffc.0x7ffffff2.0xffffffef.0x1234560d.0x7651c11.0x80000000.0x80000001.0x1 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7ffffff0.0x7ffffff1.0xffffff9b.0x12342f61.0x87654320.0x80000000.0x0.0x12345673 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7fffffef.0x7fffff9d.0xffffd8ef.0x92345670.0x87654321.0xffffffff.0x12345671.0x7654323 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7fffff9b.0x7fffd8f1.0x7ffffffe.0x92345671.0x7654320.0x12345671.0x7654322.0x2 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7fffd8ef.0x0.0x7fffffff.0x12345670.0x19999991.0x7654321.0x1.0x3 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffffe.0x0.0xfffffffe.0x2468ace1.0xeca8642.0x0.0x2.0x4 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0x7fffffff.0x1234566f.0x19999992.0x7654321.0x1.0x3.0x5 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7ffffffe.0x92345671.0x7654320.0x12345671.0x7654322.0x2.0x4.0x11 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x9234566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12 ++vaddl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x87654320.0x80000000.0x0.0x12345673.0x7654324.0xf.0x11.0x66 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x80000000.0x0.0x12345672.0x7654324.0xf.0x11.0x66.0x2713 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x80000001.0x1.0x12345673.0x7654330.0x10.0x65.0x2712.0x2 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711.0x1.0x2 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0.0x0.0x1 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000064.0x270f.0x1234566f.0x7654320.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x80002710.0xfffffffe.0x1234566e.0x765431f.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7fffffff.0xfffffffe.0x1234566d.0x7654313.0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7ffffffe.0xfffffffd.0x12345661.0x7654312.0xffffff9c.0xffffd8f1.0x80000001.0x80000003 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7ffffffd.0xfffffff1.0x12345660.0x76542be.0xffffd8f0.0x80000000.0x80000002.0x2 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7ffffff1.0xfffffff0.0x1234560c.0x7651c12.0x7fffffff.0x80000001.0x1.0x12345674 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7ffffff0.0xffffff9c.0x12342f60.0x87654321.0x80000000.0x0.0x12345672.0x7654324 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7fffff9c.0xffffd8f0.0x9234566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7fffd8f0.0x7fffffff.0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffff.0x7fffffff.0x1234566f.0x19999992.0x7654321.0x1.0x3.0x5 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0xffffffff.0x2468ace0.0xeca8642.0x0.0x2.0x4.0x6 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7fffffff.0x12345670.0x19999991.0x7654321.0x1.0x3.0x5.0x12 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4.0x11.0x13 ++vaddl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67 ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x12345673.0x7654324.0xf.0x11.0x66.0x2713.0xe ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x12345674.0x7654330.0x10.0x65.0x2712.0x2.0xe ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2.0x12345680.0x7654331.0x64.0x2711.0x1.0x1.0xd ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xe.0x12345681.0x7654385.0x2710.0x0.0x1.0x0.0x1 ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf.0x123456d5.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x63.0x12347d81.0x7654320.0xffffffff.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x270f.0x12345670.0x765431f.0xfffffffe.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffe.0x1234566f.0x765431e.0xfffffff2.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffd.0x1234566e.0x7654312.0xfffffff1.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffc.0x12345662.0x7654311.0xffffff9d.0xffffd8f1.0x80000001.0x80000003.0xe ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff0.0x12345661.0x76542bd.0xffffd8f1.0x80000000.0x80000002.0x2.0x12345680 ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffef.0x1234560d.0x7651c11.0x80000000.0x80000001.0x1.0x12345673.0x7654330 ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9b.0x12342f61.0x87654320.0x80000000.0x0.0x12345673.0x7654324.0xf ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ef.0x92345670.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10 ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffe.0x92345671.0x7654320.0x12345671.0x7654322.0x2.0x4.0x11 ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x12345670.0x19999991.0x7654321.0x1.0x3.0x5.0x12 ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffe.0x2468ace1.0xeca8642.0x0.0x2.0x4.0x6.0x1e ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234566f.0x19999992.0x7654321.0x1.0x3.0x5.0x12.0x1f ++vaddl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654320.0x12345671.0x7654322.0x2.0x4.0x11.0x13.0x73 ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720 ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f.0xf ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xe.0xf ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x12345673.0x7654330.0x10.0x65.0x2712.0x2.0xd.0xe ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1234567f.0x7654331.0x64.0x2711.0x1.0x2.0xc.0x2 ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345680.0x7654385.0x2710.0x0.0x0.0x1.0x0.0x1 ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900 ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1234566f.0x7654320.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1234566e.0x765431f.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010 ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1234566d.0x7654313.0xfffffff0.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x12345661.0x7654312.0xffffff9c.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345681 ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12345660.0x76542be.0xffffd8f0.0x80000000.0x80000002.0x2.0x1234567f.0x7654331 ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1234560c.0x7651c12.0x7fffffff.0x80000001.0x1.0x12345674.0x7654330.0x10 ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12342f60.0x87654321.0x80000000.0x0.0x12345672.0x7654324.0xf.0x11 ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x9234566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12 ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4.0x11.0x13 ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1234566f.0x19999992.0x7654321.0x1.0x3.0x5.0x12.0x1f ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x2468ace0.0xeca8642.0x0.0x2.0x4.0x6.0x1e.0x20 ++vaddl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x19999991.0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74.0x2774 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720.0x63 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7654323.0x3.0x10.0x12.0x67.0x271f.0xf.0x63 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7654324.0xf.0x11.0x66.0x2713.0xe.0xe.0x62 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654330.0x10.0x65.0x2712.0x2.0xe.0xd.0x56 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654331.0x64.0x2711.0x1.0x1.0xd.0x1.0x55 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7654385.0x2710.0x0.0x1.0x0.0x1.0x0.0x1 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7654320.0xffffffff.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x80000063 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x765431f.0xfffffffe.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x8000000f.0x80000064 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x765431e.0xfffffff2.0xfffffff1.0xffffff9e.0xffffd8f3.0x8000000e.0x80000010.0x63 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7654312.0xfffffff1.0xffffff9d.0xffffd8f2.0x80000002.0x8000000f.0xf.0x123456d5 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7654311.0xffffff9d.0xffffd8f1.0x80000001.0x80000003.0xe.0x12345680.0x7654385 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x76542bd.0xffffd8f1.0x80000000.0x80000002.0x2.0x12345680.0x7654331.0x64 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7651c11.0x80000000.0x80000001.0x1.0x12345673.0x7654330.0x10.0x65 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x87654320.0x80000000.0x0.0x12345673.0x7654324.0xf.0x11.0x66 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7654320.0x12345671.0x7654322.0x2.0x4.0x11.0x13.0x73 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x19999991.0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74 ++vaddl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xeca8642.0x0.0x2.0x4.0x6.0x1e.0x20.0xc8 ++=== Running test on vsubl=== ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xfffffffe.0xffffffff.0xfffffff3.0xffffffff.0xffffffab.0xffffd954.0x2710 ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffe.0xfffffffd.0xfffffff3.0xfffffff2.0xffffffab.0xffffd8ff.0x65.0x2711 ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffd.0xfffffff1.0xfffffff2.0xffffff9e.0xffffd8ff.0x10.0x66.0x2712 ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff1.0xfffffff0.0xffffff9e.0xffffd8f2.0x10.0x11.0x67.0x271e ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff0.0xffffff9c.0xffffd8f2.0x3.0x11.0x12.0x73.0x271f ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9c.0xffffd8f0.0x3.0x4.0x12.0x1e.0x74.0x2773 ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f0.0x1.0x4.0x5.0x1e.0x1f.0xc8.0x4e1f ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x2.0x5.0x11.0x1f.0x73.0x2774.0x80002710 ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x2.0x3.0x11.0x12.0x73.0x271f.0x80000065.0x8000270f ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x3.0xf.0x12.0x66.0x271f.0x80000010.0x80000064.0x2710 ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xf.0x10.0x66.0x2712.0x80000010.0x8000000f.0x65.0xedcbd09f ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x10.0x64.0x2712.0x80000003.0x8000000f.0x10.0xedcba9f4.0xf89ae3ee ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x64.0x2710.0x80000003.0x80000002.0x10.0xedcba99f.0xf89abd43.0x270f ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2710.0x80000001.0x80000002.0x3.0xedcba99f.0xf89abcee.0x64.0x270f ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000001.0x80000000.0x3.0xedcba992.0xf89abcee.0xf.0x63.0x270e ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x1.0xedcba992.0xf89abce1.0xf.0xf.0x62.0x270d ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0xedcba990.0xf89abce1.0x2.0xe.0xe.0x61.0x2701 ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba990.0xf89abcdf.0x2.0x2.0xd.0xd.0x55.0x2700 ++vsubl 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcdf.0x0.0x1.0x1.0xc.0x1.0x54.0x26ac ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xfffffffe.0xfffffff4.0xfffffffe.0xffffffac.0xffffd953.0x2711.0x0 ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffe.0xfffffff2.0xfffffff3.0xffffffaa.0xffffd900.0x64.0x2712.0x1 ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff2.0xfffffff1.0xffffff9f.0xffffd8fe.0x11.0x65.0x2713.0xd ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff1.0xffffff9d.0xffffd8f3.0xf.0x12.0x66.0x271f.0xe ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9d.0xffffd8f1.0x4.0x10.0x13.0x72.0x2720.0x62 ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f1.0x2.0x5.0x11.0x1f.0x73.0x2774.0x270e ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x2.0x3.0x6.0x1d.0x20.0xc7.0x4e20.0x7fffffff ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x3.0x4.0x12.0x1e.0x74.0x2773.0x80002711.0x7ffffffe ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x4.0x10.0x13.0x72.0x2720.0x80000064.0x80002710.0xffffffff ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x10.0x11.0x67.0x271e.0x80000011.0x80000063.0x2711.0xedcba98e ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x11.0x65.0x2713.0x8000000f.0x80000010.0x64.0xedcbd0a0.0xf89abcdd ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x65.0x2711.0x80000004.0x8000000e.0x11.0xedcba9f3.0xf89ae3ef.0xfffffffe ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2711.0x80000002.0x80000003.0xf.0xedcba9a0.0xf89abd42.0x2710.0xfffffffe ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000002.0x80000001.0x4.0xedcba99e.0xf89abcef.0x63.0x270f.0xfffffffd ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000001.0x2.0xedcba993.0xf89abced.0x10.0x63.0x270e.0xfffffffc ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x2.0xedcba991.0xf89abce2.0xe.0xf.0x62.0x270d.0xfffffff0 ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba991.0xf89abce0.0x3.0xe.0xe.0x61.0x2701.0xffffffef ++vsubl 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abce0.0x1.0x2.0xd.0xd.0x55.0x2700.0xffffff9b ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2.0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0xffffffff ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0xfffffff3.0xffffffff.0xffffffab.0xffffd954.0x2710.0x1.0x1 ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff3.0xfffffff2.0xffffffab.0xffffd8ff.0x65.0x2711.0x2.0xd ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff2.0xffffff9e.0xffffd8ff.0x10.0x66.0x2712.0xe.0xe ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9e.0xffffd8f2.0x10.0x11.0x67.0x271e.0xf.0x62 ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f2.0x3.0x11.0x12.0x73.0x271f.0x63.0x270e ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x3.0x4.0x12.0x1e.0x74.0x2773.0x270f.0x7fffffff ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x4.0x5.0x1e.0x1f.0xc8.0x4e1f.0x80000000.0x7ffffffe ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x5.0x11.0x1f.0x73.0x2774.0x80002710.0x7fffffff.0xffffffff ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x11.0x12.0x73.0x271f.0x80000065.0x8000270f.0x0.0xedcba98e ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12.0x66.0x271f.0x80000010.0x80000064.0x2710.0xedcba98f.0xf89abcdd ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x66.0x2712.0x80000010.0x8000000f.0x65.0xedcbd09f.0xf89abcde.0xfffffffe ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2712.0x80000003.0x8000000f.0x10.0xedcba9f4.0xf89ae3ee.0xffffffff.0xfffffffd ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000003.0x80000002.0x10.0xedcba99f.0xf89abd43.0x270f.0xfffffffe.0xfffffffc ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000002.0x3.0xedcba99f.0xf89abcee.0x64.0x270f.0xfffffffd.0xfffffffb ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x3.0xedcba992.0xf89abcee.0xf.0x63.0x270e.0xfffffffc.0xffffffef ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba992.0xf89abce1.0xf.0xf.0x62.0x270d.0xfffffff0.0xffffffee ++vsubl 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abce1.0x2.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x3.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffffffe ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0xffffffff.0xfffffffe ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff4.0xfffffffe.0xffffffac.0xffffd953.0x2711.0x0.0x1.0xc ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff3.0xffffffaa.0xffffd900.0x64.0x2712.0x1.0xd.0xd ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9f.0xffffd8fe.0x11.0x65.0x2713.0xd.0xe.0x61 ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f3.0xf.0x12.0x66.0x271f.0xe.0x62.0x270d ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x4.0x10.0x13.0x72.0x2720.0x62.0x270e.0x7ffffffe ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x5.0x11.0x1f.0x73.0x2774.0x270e.0x7fffffff.0x7ffffffd ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x6.0x1d.0x20.0xc7.0x4e20.0x7fffffff.0x7ffffffe.0xfffffffe ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x12.0x1e.0x74.0x2773.0x80002711.0x7ffffffe.0xffffffff.0xedcba98c ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x13.0x72.0x2720.0x80000064.0x80002710.0xffffffff.0xedcba98e.0xf89abcdc ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x67.0x271e.0x80000011.0x80000063.0x2711.0xedcba98e.0xf89abcdd.0xfffffffd ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2713.0x8000000f.0x80000010.0x64.0xedcbd0a0.0xf89abcdd.0xfffffffe.0xfffffffc ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000004.0x8000000e.0x11.0xedcba9f3.0xf89ae3ef.0xfffffffe.0xfffffffd.0xfffffffb ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000003.0xf.0xedcba9a0.0xf89abd42.0x2710.0xfffffffe.0xfffffffc.0xfffffffa ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x4.0xedcba99e.0xf89abcef.0x63.0x270f.0xfffffffd.0xfffffffb.0xffffffee ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba993.0xf89abced.0x10.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed ++vsubl 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abce2.0xe.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff2 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xc.0x1.0x54.0x26ac.0xffffd8ef.0xffffffff.0xffffffff.0xfffffff3 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0xffffffab.0xffffd954.0x2710.0x1.0x1.0xc.0x1 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffab.0xffffd8ff.0x65.0x2711.0x2.0xd.0xd.0x55 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ff.0x10.0x66.0x2712.0xe.0xe.0x61.0x2701 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x10.0x11.0x67.0x271e.0xf.0x62.0x270d.0x7ffffff2 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x11.0x12.0x73.0x271f.0x63.0x270e.0x7ffffffe.0x7ffffff1 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x12.0x1e.0x74.0x2773.0x270f.0x7fffffff.0x7ffffffd.0xfffffff2 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1e.0x1f.0xc8.0x4e1f.0x80000000.0x7ffffffe.0xfffffffe.0xedcba980 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1f.0x73.0x2774.0x80002710.0x7fffffff.0xffffffff.0xedcba98d.0xf89abcd0 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x73.0x271f.0x80000065.0x8000270f.0x0.0xedcba98e.0xf89abcdc.0xfffffff1 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x271f.0x80000010.0x80000064.0x2710.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000010.0x8000000f.0x65.0xedcbd09f.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000000f.0x10.0xedcba9f4.0xf89ae3ee.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x10.0xedcba99f.0xf89abd43.0x270f.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba99f.0xf89abcee.0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1 ++vsubl 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcee.0xf.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x10.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0 ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1 ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff1 ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff3.0xfffffff2 ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x54.0x26ac.0xffffd8ef.0xffffffff.0xfffffffe.0xfffffff4.0xfffffffe ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffac.0xffffd953.0x2711.0x0.0x1.0xc.0x1.0x54 ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd900.0x64.0x2712.0x1.0xd.0xd.0x55.0x2700 ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x11.0x65.0x2713.0xd.0xe.0x61.0x2701.0x7ffffff1 ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x12.0x66.0x271f.0xe.0x62.0x270d.0x7ffffff2.0x7ffffff0 ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x13.0x72.0x2720.0x62.0x270e.0x7ffffffe.0x7ffffff1.0xfffffff1 ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1f.0x73.0x2774.0x270e.0x7fffffff.0x7ffffffd.0xfffffff2.0xedcba97f ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20.0xc7.0x4e20.0x7fffffff.0x7ffffffe.0xfffffffe.0xedcba981.0xf89abccf ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x74.0x2773.0x80002711.0x7ffffffe.0xffffffff.0xedcba98c.0xf89abcd0.0xfffffff0 ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2720.0x80000064.0x80002710.0xffffffff.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000011.0x80000063.0x2711.0xedcba98e.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000010.0x64.0xedcbd0a0.0xf89abcdd.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x11.0xedcba9f3.0xf89ae3ef.0xfffffffe.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1 ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba9a0.0xf89abd42.0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0 ++vsubl 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcef.0x63.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9d ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff2.0xffffff9e ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff2.0xfffffff3.0xffffffaa ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x54.0x26ac.0xffffd8ef.0xffffffff.0xffffffff.0xfffffff3.0xffffffff.0xffffffab ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd954.0x2710.0x1.0x1.0xc.0x1.0x54.0x26ac ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x65.0x2711.0x2.0xd.0xd.0x55.0x2700.0x7fffff9d ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x66.0x2712.0xe.0xe.0x61.0x2701.0x7ffffff1.0x7fffff9c ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x67.0x271e.0xf.0x62.0x270d.0x7ffffff2.0x7ffffff0.0xffffff9d ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x73.0x271f.0x63.0x270e.0x7ffffffe.0x7ffffff1.0xfffffff1.0xedcba92b ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x74.0x2773.0x270f.0x7fffffff.0x7ffffffd.0xfffffff2.0xedcba980.0xf89abc7b ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xc8.0x4e1f.0x80000000.0x7ffffffe.0xfffffffe.0xedcba980.0xf89abccf.0xffffff9c ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2774.0x80002710.0x7fffffff.0xffffffff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000065.0x8000270f.0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000064.0x2710.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99 ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x65.0xedcbd09f.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba9f4.0xf89ae3ee.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c ++vsubl 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abd43.0x270f.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38 ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0 ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1 ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f1 ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9e.0xffffd8f2 ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff1.0xffffff9f.0xffffd8fe ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2700.0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff3.0xfffffff2.0xffffffab.0xffffd8ff ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x26ac.0xffffd8ef.0xffffffff.0xfffffffe.0xfffffff4.0xfffffffe.0xffffffac.0xffffd953 ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x2711.0x0.0x1.0xc.0x1.0x54.0x26ac.0x7fffd8f1 ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x2712.0x1.0xd.0xd.0x55.0x2700.0x7fffff9d.0x7fffd8f0 ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2713.0xd.0xe.0x61.0x2701.0x7ffffff1.0x7fffff9c.0xffffd8f1 ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x271f.0xe.0x62.0x270d.0x7ffffff2.0x7ffffff0.0xffffff9d.0xedcb827f ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x2720.0x62.0x270e.0x7ffffffe.0x7ffffff1.0xfffffff1.0xedcba92c.0xf89a95cf ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x2774.0x270e.0x7fffffff.0x7ffffffd.0xfffffff2.0xedcba97f.0xf89abc7b.0xffffd8f0 ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x4e20.0x7fffffff.0x7ffffffe.0xfffffffe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80002711.0x7ffffffe.0xffffffff.0xedcba98c.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80002710.0xffffffff.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x2711.0xedcba98e.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1 ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcbd0a0.0xf89abcdd.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0 ++vsubl 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89ae3ef.0xfffffffe.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x80000000 ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1.0x80000000 ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f2.0x80000001 ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9d.0xffffd8f3.0x8000000d ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff2.0xffffff9e.0xffffd8ff.0x8000000e ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff2.0xfffffff3.0xffffffaa.0xffffd900.0x80000062 ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ef.0xffffffff.0xffffffff.0xfffffff3.0xffffffff.0xffffffab.0xffffd954.0x8000270e ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0xc.0x1.0x54.0x26ac.0x7fffd8f1.0xffffffff ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2.0xd.0xd.0x55.0x2700.0x7fffff9d.0x7fffd8f0.0x80000000 ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xe.0xe.0x61.0x2701.0x7ffffff1.0x7fffff9c.0xffffd8f1.0x6dcba98e ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xf.0x62.0x270d.0x7ffffff2.0x7ffffff0.0xffffff9d.0xedcb8280.0x789abcde ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x63.0x270e.0x7ffffffe.0x7ffffff1.0xfffffff1.0xedcba92b.0xf89a95cf.0x7fffffff ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270f.0x7fffffff.0x7ffffffd.0xfffffff2.0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7ffffffe.0xfffffffe.0xedcba980.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0xffffffff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0 ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef ++vsubl 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0 ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001 ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x80000000.0x80000001 ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1.0x80000001.0x80000002 ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f1.0x80000002.0x8000000e ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9e.0xffffd8f2.0x8000000e.0x8000000f ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff1.0xffffff9f.0xffffd8fe.0x8000000f.0x80000063 ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ee.0xfffffffe.0xfffffff3.0xfffffff2.0xffffffab.0xffffd8ff.0x80000063.0x8000270f ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffff4.0xfffffffe.0xffffffac.0xffffd953.0x8000270f.0x0 ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0xc.0x1.0x54.0x26ac.0x7fffd8f1.0xffffffff.0x80000000 ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xd.0xd.0x55.0x2700.0x7fffff9d.0x7fffd8f0.0x80000000.0x6dcba98f ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xe.0x61.0x2701.0x7ffffff1.0x7fffff9c.0xffffd8f1.0x6dcba98f.0x789abcdf ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x62.0x270d.0x7ffffff2.0x7ffffff0.0xffffff9d.0xedcb827f.0x789abcde.0x80000000 ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270e.0x7ffffffe.0x7ffffff1.0xfffffff1.0xedcba92c.0xf89a95cf.0x7fffffff.0x7fffffff ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x7ffffffd.0xfffffff2.0xedcba97f.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x7ffffffe ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffffe.0xfffffffe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x7ffffffd ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xedcba98c.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1 ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0 ++vsubl 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x0 ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001.0x0 ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x80000000.0x80000002.0x1 ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1.0x80000000.0x80000003.0xd ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f2.0x80000001.0x8000000f.0xe ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9d.0xffffd8f3.0x8000000d.0x80000010.0x62 ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ed.0xfffffff2.0xfffffff2.0xffffff9e.0xffffd8ff.0x8000000e.0x80000064.0x270e ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffe.0xfffffff2.0xfffffff3.0xffffffaa.0xffffd900.0x80000062.0x80002710.0x7fffffff ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xfffffff3.0xffffffff.0xffffffab.0xffffd954.0x8000270e.0x1.0x7fffffff ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xc.0x1.0x54.0x26ac.0x7fffd8f1.0xffffffff.0x80000001.0xedcba98e ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xd.0x55.0x2700.0x7fffff9d.0x7fffd8f0.0x80000000.0x6dcba990.0xf89abcde ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x61.0x2701.0x7ffffff1.0x7fffff9c.0xffffd8f1.0x6dcba98e.0x789abcdf.0xffffffff ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270d.0x7ffffff2.0x7ffffff0.0xffffff9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffe.0x7ffffff1.0xfffffff1.0xedcba92b.0xf89a95cf.0x7fffffff.0x7fffffff.0xfffffffd ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffffd.0xfffffff2.0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x7ffffffe.0xfffffffc ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffe.0xedcba980.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0 ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef ++vsubl 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60 ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x12345671 ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x0.0x12345672 ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001.0x1.0x12345673 ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x80000000.0x80000001.0x2.0x1234567f ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1.0x80000001.0x80000002.0xe.0x12345680 ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f1.0x80000002.0x8000000e.0xf.0x123456d4 ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8e1.0xfffffff1.0xffffff9e.0xffffd8f2.0x8000000e.0x8000000f.0x63.0x12347d80 ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffff2.0xfffffff1.0xffffff9f.0xffffd8fe.0x8000000f.0x80000063.0x270f.0x92345671 ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffff3.0xfffffff2.0xffffffab.0xffffd8ff.0x80000063.0x8000270f.0x80000000.0x92345670 ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffff4.0xfffffffe.0xffffffac.0xffffd953.0x8000270f.0x0.0x7fffffff.0x12345671 ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x54.0x26ac.0x7fffd8f1.0xffffffff.0x80000000.0xedcba98f.0xacf134f ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x55.0x2700.0x7fffff9d.0x7fffd8f0.0x80000000.0x6dcba98f.0xf89abcde.0x12345670 ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2701.0x7ffffff1.0x7fffff9c.0xffffd8f1.0x6dcba98f.0x789abcdf.0xffffffff.0x1234566f ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffff2.0x7ffffff0.0xffffff9d.0xedcb827f.0x789abcde.0x80000000.0xfffffffe.0x1234566e ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffff1.0xfffffff1.0xedcba92c.0xf89a95cf.0x7fffffff.0x7fffffff.0xfffffffd.0x1234566d ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffff2.0xedcba97f.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661 ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660 ++vsubl 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x7654322 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x12345671.0x7654322 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x0.0x12345672.0x7654323 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001.0x0.0x12345673.0x765432f ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffe0.0xffffff38.0xffffb1e0.0x80000000.0x80000002.0x1.0x1234567f.0x7654330 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff8c.0xffffd88c.0xffffd8f1.0x80000000.0x80000003.0xd.0x12345680.0x7654384 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8e0.0xffffff9d.0xffffd8f2.0x80000001.0x8000000f.0xe.0x123456d4.0x7656a30 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffff1.0xffffff9d.0xffffd8f3.0x8000000d.0x80000010.0x62.0x12347d80.0x87654321 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffff2.0xffffff9e.0xffffd8ff.0x8000000e.0x80000064.0x270e.0x92345671.0x87654320 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffff3.0xffffffaa.0xffffd900.0x80000062.0x80002710.0x7fffffff.0x92345670.0x7654321 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0xffffffab.0xffffd954.0x8000270e.0x1.0x7fffffff.0x12345671.0xf530ecb0 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x54.0x26ac.0x7fffd8f1.0xffffffff.0x80000001.0xedcba98e.0xacf134f.0x7654321 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2700.0x7fffff9d.0x7fffd8f0.0x80000000.0x6dcba990.0xf89abcde.0x12345670.0x7654320 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffff1.0x7fffff9c.0xffffd8f1.0x6dcba98e.0x789abcdf.0xffffffff.0x1234566f.0x765431f ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffff0.0xffffff9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffff1.0xedcba92b.0xf89a95cf.0x7fffffff.0x7fffffff.0xfffffffd.0x1234566d.0x7654312 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311 ++vsubl 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff9c.0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0 ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffff9b.0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x1 ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff9a.0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x7654322.0x1 ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff99.0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x12345671.0x7654323.0x2 ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff8d.0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x0.0x12345672.0x7654324.0xe ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001.0x1.0x12345673.0x7654330.0xf ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff38.0xffffb1e0.0x80000000.0x80000001.0x2.0x1234567f.0x7654331.0x63 ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd88c.0xffffd8f1.0x80000001.0x80000002.0xe.0x12345680.0x7654385.0x270f ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffff9d.0xffffd8f1.0x80000002.0x8000000e.0xf.0x123456d4.0x7656a31.0x80000000 ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffff9e.0xffffd8f2.0x8000000e.0x8000000f.0x63.0x12347d80.0x87654322.0x7fffffff ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffff9f.0xffffd8fe.0x8000000f.0x80000063.0x270f.0x92345671.0x87654321.0x0 ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffab.0xffffd8ff.0x80000063.0x8000270f.0x80000000.0x92345670.0x7654322.0xedcba98f ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffac.0xffffd953.0x8000270f.0x0.0x7fffffff.0x12345671.0xf530ecb1.0xf89abcde ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x26ac.0x7fffd8f1.0xffffffff.0x80000000.0xedcba98f.0xacf134f.0x7654321.0xffffffff ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffff9d.0x7fffd8f0.0x80000000.0x6dcba98f.0xf89abcde.0x12345670.0x7654320.0xfffffffe ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffff9c.0xffffd8f1.0x6dcba98f.0x789abcdf.0xffffffff.0x1234566f.0x765431f.0xfffffffd ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff9d.0xedcb827f.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfffffff1 ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba92c.0xf89a95cf.0x7fffffff.0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0 ++vsubl 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abc7b.0xffffd8f0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffd8f0.0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f0 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffd8ef.0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x1 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffd8ee.0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x1.0x2 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffd8ed.0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x7654322.0x2.0x3 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8e1.0x7fffffef.0x7fffff9c.0xffffd8ef.0x12345671.0x7654322.0x3.0xf ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd8e0.0x7fffff9b.0x7fffd8f0.0x0.0x12345672.0x7654323.0xf.0x10 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd88c.0x7fffd8ef.0x80000001.0x0.0x12345673.0x765432f.0x10.0x64 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffb1e0.0x80000000.0x80000002.0x1.0x1234567f.0x7654330.0x64.0x2710 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffd8f1.0x80000000.0x80000003.0xd.0x12345680.0x7654384.0x2710.0x80000001 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffd8f2.0x80000001.0x8000000f.0xe.0x123456d4.0x7656a30.0x80000001.0x80000000 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffd8f3.0x8000000d.0x80000010.0x62.0x12347d80.0x87654321.0x80000000.0x1 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffd8ff.0x8000000e.0x80000064.0x270e.0x92345671.0x87654320.0x1.0xedcba990 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffd900.0x80000062.0x80002710.0x7fffffff.0x92345670.0x7654321.0xedcba990.0xf89abcdf ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffd954.0x8000270e.0x1.0x7fffffff.0x12345671.0xf530ecb0.0xf89abcdf.0x0 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffd8f1.0xffffffff.0x80000001.0xedcba98e.0xacf134f.0x7654321.0xffffffff.0xfffffffe ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffd8f0.0x80000000.0x6dcba990.0xf89abcde.0x12345670.0x7654320.0xfffffffe.0xfffffffd ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffd8f1.0x6dcba98e.0x789abcdf.0xffffffff.0x1234566f.0x765431f.0xfffffffd.0xfffffff1 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff0 ++vsubl 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89a95cf.0x7fffffff.0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9c ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7fffffff.0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f1 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7ffffffe.0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x2 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7ffffffd.0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x2.0x3 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7ffffffc.0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x1.0x3.0x4 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7ffffff0.0x7ffffff0.0xffffff9b.0x12342f60.0x7654322.0x1.0x4.0x10 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fffffef.0x7fffff9c.0xffffd8ef.0x12345671.0x7654323.0x2.0x10.0x11 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffff9b.0x7fffd8f0.0x0.0x12345672.0x7654324.0xe.0x11.0x65 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7fffd8ef.0x80000001.0x1.0x12345673.0x7654330.0xf.0x65.0x2711 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x80000000.0x80000001.0x2.0x1234567f.0x7654331.0x63.0x2711.0x80000002 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x80000001.0x80000002.0xe.0x12345680.0x7654385.0x270f.0x80000002.0x80000001 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x80000002.0x8000000e.0xf.0x123456d4.0x7656a31.0x80000000.0x80000001.0x2 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x8000000e.0x8000000f.0x63.0x12347d80.0x87654322.0x7fffffff.0x2.0xedcba991 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x8000000f.0x80000063.0x270f.0x92345671.0x87654321.0x0.0xedcba991.0xf89abce0 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x80000063.0x8000270f.0x80000000.0x92345670.0x7654322.0xedcba98f.0xf89abce0.0x1 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x8000270f.0x0.0x7fffffff.0x12345671.0xf530ecb1.0xf89abcde.0x1.0x1 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0x80000000.0xedcba98f.0xacf134f.0x7654321.0xffffffff.0xffffffff.0xfffffffe ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x80000000.0x6dcba98f.0xf89abcde.0x12345670.0x7654320.0xfffffffe.0xfffffffe.0xfffffff2 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x6dcba98f.0x789abcdf.0xffffffff.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff1 ++vsubl 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9d ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff0.0xffffff9e.0xffffd8f2 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7fffffff.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9c.0xffffd8f2.0x3 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7ffffffe.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f0.0x3.0x4 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7ffffffd.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x1.0x4.0x5 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7ffffff1.0xffffffef.0x1234560c.0x7651c11.0x1.0x2.0x5.0x11 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7ffffff0.0xffffff9b.0x12342f60.0x7654322.0x2.0x3.0x11.0x12 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffff9c.0xffffd8ef.0x12345671.0x7654322.0x3.0xf.0x12.0x66 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7fffd8f0.0x0.0x12345672.0x7654323.0xf.0x10.0x66.0x2712 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x80000001.0x0.0x12345673.0x765432f.0x10.0x64.0x2712.0x80000003 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x80000002.0x1.0x1234567f.0x7654330.0x64.0x2710.0x80000003.0x80000002 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x80000003.0xd.0x12345680.0x7654384.0x2710.0x80000001.0x80000002.0x3 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x8000000f.0xe.0x123456d4.0x7656a30.0x80000001.0x80000000.0x3.0xedcba992 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x80000010.0x62.0x12347d80.0x87654321.0x80000000.0x1.0xedcba992.0xf89abce1 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x80000064.0x270e.0x92345671.0x87654320.0x1.0xedcba990.0xf89abce1.0x2 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80002710.0x7fffffff.0x92345670.0x7654321.0xedcba990.0xf89abcdf.0x2.0x2 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x7fffffff.0x12345671.0xf530ecb0.0xf89abcdf.0x0.0x1.0x1 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x80000001.0xedcba98e.0xacf134f.0x7654321.0xffffffff.0xfffffffe.0xffffffff.0xfffffff3 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x6dcba990.0xf89abcde.0x12345670.0x7654320.0xfffffffe.0xfffffffd.0xfffffff3.0xfffffff2 ++vsubl 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x789abcdf.0xffffffff.0x1234566f.0x765431f.0xfffffffd.0xfffffff1.0xfffffff2.0xffffff9e ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff1.0xffffff9f.0xffffd8fe ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9d.0xffffd8f3.0xf ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f1.0x4.0x10 ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x2.0x5.0x11 ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x2.0x3.0x6.0x1d ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffef.0x1234560c.0x7651c11.0x1.0x3.0x4.0x12.0x1e ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9b.0x12342f60.0x7654322.0x1.0x4.0x10.0x13.0x72 ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ef.0x12345671.0x7654323.0x2.0x10.0x11.0x67.0x271e ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x12345672.0x7654324.0xe.0x11.0x65.0x2713.0x8000000f ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x12345673.0x7654330.0xf.0x65.0x2711.0x80000004.0x8000000e ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2.0x1234567f.0x7654331.0x63.0x2711.0x80000002.0x80000003.0xf ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xe.0x12345680.0x7654385.0x270f.0x80000002.0x80000001.0x4.0xedcba99e ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xf.0x123456d4.0x7656a31.0x80000000.0x80000001.0x2.0xedcba993.0xf89abced ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x63.0x12347d80.0x87654322.0x7fffffff.0x2.0xedcba991.0xf89abce2.0xe ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270f.0x92345671.0x87654321.0x0.0xedcba991.0xf89abce0.0x3.0xe ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x92345670.0x7654322.0xedcba98f.0xf89abce0.0x1.0x2.0xd ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x12345671.0xf530ecb1.0xf89abcde.0x1.0x1.0x1.0xc ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98f.0xacf134f.0x7654321.0xffffffff.0xffffffff.0xfffffffe.0xfffffff4.0xfffffffe ++vsubl 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcde.0x12345670.0x7654320.0xfffffffe.0xfffffffe.0xfffffff2.0xfffffff3.0xffffffaa ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x12345670.0x7654320.0xfffffffe.0xfffffffd.0xfffffff3.0xfffffff2.0xffffffab.0xffffd8ff ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1234566f.0x765431f.0xfffffffd.0xfffffff1.0xfffffff2.0xffffff9e.0xffffd8ff.0x10 ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1234566e.0x765431e.0xfffffff1.0xfffffff0.0xffffff9e.0xffffd8f2.0x10.0x11 ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1234566d.0x7654312.0xfffffff0.0xffffff9c.0xffffd8f2.0x3.0x11.0x12 ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12345661.0x7654311.0xffffff9c.0xffffd8f0.0x3.0x4.0x12.0x1e ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345660.0x76542bd.0xffffd8f0.0x1.0x4.0x5.0x1e.0x1f ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1234560c.0x7651c11.0x1.0x2.0x5.0x11.0x1f.0x73 ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12342f60.0x7654322.0x2.0x3.0x11.0x12.0x73.0x271f ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x12345671.0x7654322.0x3.0xf.0x12.0x66.0x271f.0x80000010 ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x12345672.0x7654323.0xf.0x10.0x66.0x2712.0x80000010.0x8000000f ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x12345673.0x765432f.0x10.0x64.0x2712.0x80000003.0x8000000f.0x10 ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1234567f.0x7654330.0x64.0x2710.0x80000003.0x80000002.0x10.0xedcba99f ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12345680.0x7654384.0x2710.0x80000001.0x80000002.0x3.0xedcba99f.0xf89abcee ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x123456d4.0x7656a30.0x80000001.0x80000000.0x3.0xedcba992.0xf89abcee.0xf ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12347d80.0x87654321.0x80000000.0x1.0xedcba992.0xf89abce1.0xf.0xf ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x92345671.0x87654320.0x1.0xedcba990.0xf89abce1.0x2.0xe.0xe ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x92345670.0x7654321.0xedcba990.0xf89abcdf.0x2.0x2.0xd.0xd ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x12345671.0xf530ecb0.0xf89abcdf.0x0.0x1.0x1.0xc.0x1 ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vsubl 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xacf134f.0x7654321.0xffffffff.0xfffffffe.0xffffffff.0xfffffff3.0xffffffff.0xffffffab ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7654321.0xffffffff.0xffffffff.0xfffffffe.0xfffffff4.0xfffffffe.0xffffffac.0xffffd953 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7654320.0xfffffffe.0xfffffffe.0xfffffff2.0xfffffff3.0xffffffaa.0xffffd900.0x64 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x765431f.0xfffffffd.0xfffffff2.0xfffffff1.0xffffff9f.0xffffd8fe.0x11.0x65 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x765431e.0xfffffff1.0xfffffff1.0xffffff9d.0xffffd8f3.0xf.0x12.0x66 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654312.0xfffffff0.0xffffff9d.0xffffd8f1.0x4.0x10.0x13.0x72 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654311.0xffffff9c.0xffffd8f1.0x2.0x5.0x11.0x1f.0x73 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x76542bd.0xffffd8f0.0x2.0x3.0x6.0x1d.0x20.0xc7 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7651c11.0x1.0x3.0x4.0x12.0x1e.0x74.0x2773 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7654322.0x1.0x4.0x10.0x13.0x72.0x2720.0x80000064 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7654323.0x2.0x10.0x11.0x67.0x271e.0x80000011.0x80000063 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7654324.0xe.0x11.0x65.0x2713.0x8000000f.0x80000010.0x64 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7654330.0xf.0x65.0x2711.0x80000004.0x8000000e.0x11.0xedcba9f3 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7654331.0x63.0x2711.0x80000002.0x80000003.0xf.0xedcba9a0.0xf89abd42 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7654385.0x270f.0x80000002.0x80000001.0x4.0xedcba99e.0xf89abcef.0x63 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7656a31.0x80000000.0x80000001.0x2.0xedcba993.0xf89abced.0x10.0x63 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x87654322.0x7fffffff.0x2.0xedcba991.0xf89abce2.0xe.0xf.0x62 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x87654321.0x0.0xedcba991.0xf89abce0.0x3.0xe.0xe.0x61 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7654322.0xedcba98f.0xf89abce0.0x1.0x2.0xd.0xd.0x55 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf530ecb1.0xf89abcde.0x1.0x1.0x1.0xc.0x1.0x54 ++vsubl 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++=== Running test on ctpopow=== ++ctpopow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x20000000.0x2.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x20000000.0x6.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xe0000000.0x9.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xa0000000.0xd.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x11.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x14.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x60000000.0x17.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x1a.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x40000000.0x1d.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x60000000.0x19.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x80000000.0x19.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x20000000.0x17.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x15.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x80000000.0x11.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x20000000.0xe.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x40000000.0xb.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xa0000000.0x7.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x8.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x20000000.0x4.0x0.0x0.0x0.0x0.0x0.0x0 ++ctpopow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x3.0x0.0x0.0x0.0x0.0x0.0x0 ++=== Running test on ctlzow=== ++ctlzow 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x40000000.0x2.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x20000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x60000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xa0000000.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xa0000000.0x4.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xe0000000.0x3.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xc0000000.0x3.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xc0000000.0x3.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x80000000.0x3.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x60000000.0x3.0x0.0x0.0x0.0x0.0x0.0x0 ++ctlzow 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x20000000.0x3.0x0.0x0.0x0.0x0.0x0.0x0 ++=== Running test on vucaddw=== ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x2.0x4.0x6.0x1e.0x20.0xc8.0x4e20 ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x4.0x11.0x13.0x73.0x2720.0x63.0x270e ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0x10.0x12.0x67.0x271f.0xf.0x62.0x270d ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x11.0x66.0x2713.0xe.0xe.0x61.0x2701 ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x65.0x2712.0x2.0xd.0xd.0x55.0x2700 ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2711.0x1.0x1.0xc.0x1.0x54.0x26ac ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fffffff ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fffffff.0x80002710 ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064.0x270f ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010.0x63.0x12347d80 ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f.0xf.0x123456d4.0x7656a31 ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f1.0x7fffffff.0x80000003.0xe.0x12345680.0x7654385.0x2710 ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711 ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000001.0x1.0x12345673.0x7654330.0x10.0x65.0x2712 ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x0.0x12345672.0x7654324.0xf.0x11.0x66.0x2713 ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720 ++vucaddw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74.0x2774 ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2.0x4.0x6.0x1e.0x20.0xc8.0x4e20.0xfffffffe ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f.0xfffffffd ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x4.0x11.0x13.0x73.0x2720.0x63.0x270e.0xfffffffc ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x10.0x12.0x67.0x271f.0xf.0x62.0x270d.0xfffffff0 ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x11.0x66.0x2713.0xe.0xe.0x61.0x2701.0xffffffef ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x65.0x2712.0x2.0xd.0xd.0x55.0x2700.0xffffff9b ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2711.0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x7ffffffe ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fffffff.0x80000000 ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fffffff.0x80002710.0xfffffffe ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064.0x270f.0x1234566f ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010.0x63.0x12347d80.0x7654320 ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f1.0x7fffffff.0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0 ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711.0x1 ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000001.0x1.0x12345673.0x7654330.0x10.0x65.0x2712.0x2 ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xe ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f.0xf ++vucaddw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720.0x63 ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2.0x4.0x11.0x13.0x73.0x2720.0x63.0x270e ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f.0xfffffffd ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x4.0x6.0x1e.0x20.0xc8.0x4e20.0xfffffffe.0xfffffffc ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x5.0x12.0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffb ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x11.0x13.0x73.0x2720.0x63.0x270e.0xfffffffc.0xffffffef ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12.0x67.0x271f.0xf.0x62.0x270d.0xfffffff0.0xffffffee ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x66.0x2713.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2712.0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x7ffffffe.0x80000000 ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fffffff.0x80000000.0xfffffffd ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fffffff.0x80002710.0xfffffffe.0x1234566e ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064.0x270f.0x1234566f.0x765431f ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f2.0x7fffffff.0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0.0x0 ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711.0x1.0x1 ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x12345673.0x7654330.0x10.0x65.0x2712.0x2.0xd ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xe.0xe ++vucaddw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654323.0x3.0x10.0x12.0x67.0x271f.0xf.0x62 ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x3.0x10.0x12.0x67.0x271f.0xf.0x62.0x270d ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x4.0x11.0x13.0x73.0x2720.0x63.0x270e.0xfffffffc ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x5.0x12.0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffb ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x6.0x1e.0x20.0xc8.0x4e20.0xfffffffe.0xfffffffc.0xfffffffa ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12.0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x13.0x73.0x2720.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x67.0x271f.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99 ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2713.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x80000000 ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x7ffffffe.0x80000000.0xfffffffc ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fffffff.0x80000000.0xfffffffd.0x1234566d ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff3.0xffffffab.0xffffd900.0x7fffffff.0x80002710.0xfffffffe.0x1234566e.0x765431e ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f3.0x7fffffff.0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0.0x0.0x0 ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x2.0x1234567f.0x7654331.0x64.0x2711.0x1.0x1.0xc ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345673.0x7654330.0x10.0x65.0x2712.0x2.0xd.0xd ++vucaddw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654324.0xf.0x11.0x66.0x2713.0xe.0xe.0x61 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf.0x11.0x66.0x2713.0xe.0xe.0x61.0x2701 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x10.0x12.0x67.0x271f.0xf.0x62.0x270d.0xfffffff0 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x11.0x13.0x73.0x2720.0x63.0x270e.0xfffffffc.0xffffffef ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x12.0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1e.0x20.0xc8.0x4e20.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x73.0x2720.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x271f.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xc.0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x7ffffffe.0x80000000.0xfffffffc.0x12345661 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffff.0xffffffac.0xffffd954.0x7fffffff.0x80000000.0xfffffffd.0x1234566d.0x7654312 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffab.0xffffd900.0x7fffffff.0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ff.0x7fffffff.0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xe.0x12345680.0x7654385.0x2710.0x0.0x0.0x0.0x0 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234567f.0x7654331.0x64.0x2711.0x1.0x1.0xc.0x1 ++vucaddw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654330.0x10.0x65.0x2712.0x2.0xd.0xd.0x55 ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x10.0x65.0x2712.0x2.0xd.0xd.0x55.0x2700 ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x11.0x66.0x2713.0xe.0xe.0x61.0x2701.0xffffffef ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x12.0x67.0x271f.0xf.0x62.0x270d.0xfffffff0.0xffffffee ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x13.0x73.0x2720.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1f.0x74.0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1 ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20.0xc8.0x4e20.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0 ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x74.0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2720.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0 ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000 ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0.0x12345660 ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x7ffffffe.0x80000000.0xfffffffc.0x12345661.0x7654311 ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffac.0xffffd954.0x7fffffff.0x80000000.0xfffffffd.0x1234566d.0x7654312.0xfffffff0 ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd900.0x7fffffff.0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1 ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2 ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3 ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345680.0x7654385.0x2710.0x0.0x0.0x0.0x0.0x0 ++vucaddw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654331.0x64.0x2711.0x1.0x1.0xc.0x1.0x54 ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x64.0x2711.0x1.0x1.0xc.0x1.0x54.0x26ac ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x65.0x2712.0x2.0xd.0xd.0x55.0x2700.0xffffff9b ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x66.0x2713.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x67.0x271f.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99 ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x73.0x2720.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x74.0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xc8.0x4e20.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38 ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x80000000 ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef.0x1234560c ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0.0x12345660.0x76542bd ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x7ffffffe.0x80000000.0xfffffffc.0x12345661.0x7654311.0xffffff9c ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd954.0x7fffffff.0x80000000.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac ++vucaddw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654385.0x2710.0x0.0x0.0x0.0x0.0x0.0x0 ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2710.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2711.0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2712.0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2713.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x271f.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1 ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2720.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0 ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2774.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x4e20.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0 ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000 ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b.0x12342f60 ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef.0x1234560c.0x7651c11 ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x26ac.0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0 ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x7ffffffe.0x80000000.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1 ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2 ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3 ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900 ++vucaddw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954 ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fffffff ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x7ffffffe ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0 ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x7fffffff ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000.0x7ffffffe ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef.0x7fffffff ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b.0x12342f60.0x7fffffff ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef.0x1234560c.0x7651c11.0x7fffffff ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x7fffffff ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffe.0x80000000.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x7fffffff ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffffff ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff ++vucaddw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fffffff ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fffffff.0x80002710 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fffffff.0x80000000 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x7ffffffe.0x80000000 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x80000000 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x80000000 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x7fffffff.0x80000000 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x80000000 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000.0x7ffffffe.0x92345670 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef.0x7fffffff.0x87654321 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b.0x12342f60.0x7fffffff.0x80000000 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffd.0x80000000.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x7fffffff.0x80000002 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x7fffffff.0x80000003 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010 ++vucaddw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064 ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064.0x270f ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fffffff.0x80002710.0xfffffffe ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fffffff.0x80000000.0xfffffffd ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x7ffffffe.0x80000000.0xfffffffc ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xc.0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0 ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000.0x7ffffffe ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x80000000 ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x7fffffff.0x80000000.0xfffffffe ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x80000000.0x1234566f ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000.0x7ffffffe.0x92345670.0x7654320 ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff99.0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef.0x7fffffff.0x87654321.0xffffffff ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b.0x12342f60.0x7fffffff.0x80000000.0x0 ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffc.0x80000000.0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1 ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x7fffffff.0x80000002.0x2 ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x7fffffff.0x80000003.0xe ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f.0xf ++vucaddw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010.0x63 ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010.0x63.0x12347d80 ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064.0x270f.0x1234566f ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fffffff.0x80002710.0xfffffffe.0x1234566e ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fffffff.0x80000000.0xfffffffd.0x1234566d ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x7ffffffe.0x80000000.0xfffffffc.0x12345661 ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1.0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0.0x12345660 ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x55.0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef.0x1234560c ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b.0x12342f60 ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef.0x7fffffff ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000.0x7ffffffe.0x92345670 ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x80000000.0x1234566f ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x7fffffff.0x80000000.0xfffffffe.0x2468ace0 ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x80000000.0x1234566f.0x19999991 ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000.0x7ffffffe.0x92345670.0x7654320.0x12345670 ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef.0x7fffffff.0x87654321.0xffffffff.0x12345671 ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffff0.0x80000000.0xffffff9b.0x12342f60.0x7fffffff.0x80000000.0x0.0x12345672 ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673 ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x7fffffff.0x80000002.0x2.0x1234567f ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x7fffffff.0x80000003.0xe.0x12345680 ++vucaddw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f.0xf.0x123456d4 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f.0xf.0x123456d4.0x7656a31 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010.0x63.0x12347d80.0x7654320 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064.0x270f.0x1234566f.0x765431f ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff3.0xffffffab.0xffffd900.0x7fffffff.0x80002710.0xfffffffe.0x1234566e.0x765431e ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0xffffffac.0xffffd954.0x7fffffff.0x80000000.0xfffffffd.0x1234566d.0x7654312 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x7ffffffe.0x80000000.0xfffffffc.0x12345661.0x7654311 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x54.0x26ac.0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0.0x12345660.0x76542bd ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2700.0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef.0x1234560c.0x7651c11 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b.0x12342f60.0x7fffffff ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef.0x7fffffff.0x87654321 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000.0x7ffffffe.0x92345670.0x7654320 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x80000000.0x1234566f.0x19999991 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffe0.0xffffff38.0xffffb1e0.0x7fffffff.0x80000000.0xfffffffe.0x2468ace0.0xeca8642 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x80000000.0x1234566f.0x19999991.0x7654321 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8e0.0x7fffff9b.0x80000000.0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffef.0x80000000.0xffffd8ef.0x7fffffff.0x87654321.0xffffffff.0x12345671.0x7654323 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffff9b.0x12342f60.0x7fffffff.0x80000000.0x0.0x12345672.0x7654324 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673.0x7654330 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345660.0x76542bd.0xffffd8f0.0x7fffffff.0x80000002.0x2.0x1234567f.0x7654331 ++vucaddw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654311.0xffffff9c.0xffffd8f1.0x7fffffff.0x80000003.0xe.0x12345680.0x7654385 ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff9c.0xffffd8f1.0x7fffffff.0x80000003.0xe.0x12345680.0x7654385.0x2710 ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffab.0xffffd900.0x7fffffff.0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1 ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffac.0xffffd954.0x7fffffff.0x80000000.0xfffffffd.0x1234566d.0x7654312.0xfffffff0 ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x7ffffffe.0x80000000.0xfffffffc.0x12345661.0x7654311.0xffffff9c ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x26ac.0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0 ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef.0x1234560c.0x7651c11.0x7fffffff ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b.0x12342f60.0x7fffffff.0x80000000 ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffff99.0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef.0x7fffffff.0x87654321.0xffffffff ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000.0x7ffffffe.0x92345670.0x7654320.0x12345670 ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffff8c.0xffffd88c.0x7fffd8ef.0xffffffff.0x80000000.0x1234566f.0x19999991.0x7654321 ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff38.0xffffb1e0.0x7fffffff.0x80000000.0xfffffffe.0x2468ace0.0xeca8642.0x0 ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd88c.0x7fffd8ef.0xffffffff.0x80000000.0x1234566f.0x19999991.0x7654321.0x1 ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffff9b.0x80000000.0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322.0x2 ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffd8ef.0x7fffffff.0x87654321.0xffffffff.0x12345671.0x7654323.0x3 ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff9b.0x12342f60.0x7fffffff.0x80000000.0x0.0x12345672.0x7654324.0xf ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673.0x7654330.0x10 ++vucaddw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x76542bd.0xffffd8f0.0x7fffffff.0x80000002.0x2.0x1234567f.0x7654331.0x64 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffd8f0.0x7fffffff.0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffd8f1.0x7fffffff.0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffd8f2.0x7fffffff.0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffd8f3.0x7fffffff.0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8ff.0x7fffffff.0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd900.0x7fffffff.0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd954.0x7fffffff.0x80000000.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x7ffffffe.0x80000000.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x7fffffff ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b.0x12342f60.0x7fffffff.0x80000000.0x0 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef.0x7fffffff.0x87654321.0xffffffff.0x12345671 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffd8e0.0x7fffff9b.0x80000000.0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffd88c.0x7fffd8ef.0xffffffff.0x80000000.0x1234566f.0x19999991.0x7654321.0x1 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffb1e0.0x7fffffff.0x80000000.0xfffffffe.0x2468ace0.0xeca8642.0x0.0x2 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffd8ef.0xffffffff.0x80000000.0x1234566f.0x19999991.0x7654321.0x1.0x3 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffd8ef.0x7fffffff.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12342f60.0x7fffffff.0x80000000.0x0.0x12345672.0x7654324.0xf.0x11 ++vucaddw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673.0x7654330.0x10.0x65 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7fffffff.0x80000001.0x1.0x12345673.0x7654330.0x10.0x65.0x2712 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7fffffff.0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711.0x1 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7fffffff.0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0.0x0 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7fffffff.0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7fffffff.0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fffffff.0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffffff.0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7fffffff.0x80000000.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7ffffffe.0x80000000.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x7fffffff ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7ffffffd.0x80000000.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x7fffffff.0x80000002 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7ffffffc.0x80000000.0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7ffffff0.0x80000000.0xffffff9b.0x12342f60.0x7fffffff.0x80000000.0x0.0x12345672 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7fffffef.0x80000000.0xffffd8ef.0x7fffffff.0x87654321.0xffffffff.0x12345671.0x7654323 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7fffff9b.0x80000000.0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322.0x2 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7fffd8ef.0xffffffff.0x80000000.0x1234566f.0x19999991.0x7654321.0x1.0x3 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xfffffffe.0x2468ace0.0xeca8642.0x0.0x2.0x4 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0x80000000.0x1234566f.0x19999991.0x7654321.0x1.0x3.0x5 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4.0x11 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x7fffffff.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12 ++vucaddw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7fffffff.0x80000000.0x0.0x12345672.0x7654324.0xf.0x11.0x66 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x80000000.0x0.0x12345672.0x7654324.0xf.0x11.0x66.0x2713 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x80000001.0x1.0x12345673.0x7654330.0x10.0x65.0x2712.0x2 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711.0x1.0x1 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x80000003.0xe.0x12345680.0x7654385.0x2710.0x0.0x0.0x0 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x8000000f.0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x80000010.0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000064.0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x80002710.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x80000000.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffffff ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x80000000.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x7fffffff.0x80000003 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x80000000.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x7fffffff.0x80000002.0x2 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x80000000.0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x80000000.0xffffff9b.0x12342f60.0x7fffffff.0x80000000.0x0.0x12345672.0x7654324 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x80000000.0xffffd8ef.0x7fffffff.0x87654321.0xffffffff.0x12345671.0x7654323.0x3 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80000000.0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffff.0x80000000.0x1234566f.0x19999991.0x7654321.0x1.0x3.0x5 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xfffffffe.0x2468ace0.0xeca8642.0x0.0x2.0x4.0x6 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x80000000.0x1234566f.0x19999991.0x7654321.0x1.0x3.0x5.0x12 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4.0x11.0x13 ++vucaddw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67 ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xe ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0x12345673.0x7654330.0x10.0x65.0x2712.0x2.0xd ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2.0x1234567f.0x7654331.0x64.0x2711.0x1.0x1.0xc ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xe.0x12345680.0x7654385.0x2710.0x0.0x0.0x0.0x0 ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x63.0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x270f.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x7fffffff.0x80000003.0xe ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x7fffffff.0x80000002.0x2.0x1234567f ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffef.0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673.0x7654330 ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9b.0x12342f60.0x7fffffff.0x80000000.0x0.0x12345672.0x7654324.0xf ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ef.0x7fffffff.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10 ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffe.0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4.0x11 ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x1234566f.0x19999991.0x7654321.0x1.0x3.0x5.0x12 ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffe.0x2468ace0.0xeca8642.0x0.0x2.0x4.0x6.0x1e ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234566f.0x19999991.0x7654321.0x1.0x3.0x5.0x12.0x1f ++vucaddw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654320.0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73 ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720 ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f.0xf ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xe.0xe ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x12345673.0x7654330.0x10.0x65.0x2712.0x2.0xd.0xd ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1234567f.0x7654331.0x64.0x2711.0x1.0x1.0xc.0x1 ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345680.0x7654385.0x2710.0x0.0x0.0x0.0x0.0x0 ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12347d80.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900 ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010 ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f.0xf ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x7fffffff.0x80000003.0xe.0x12345680 ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12345660.0x76542bd.0xffffd8f0.0x7fffffff.0x80000002.0x2.0x1234567f.0x7654331 ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1234560c.0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673.0x7654330.0x10 ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12342f60.0x7fffffff.0x80000000.0x0.0x12345672.0x7654324.0xf.0x11 ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12 ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x92345670.0x7654320.0x12345670.0x7654322.0x2.0x4.0x11.0x13 ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1234566f.0x19999991.0x7654321.0x1.0x3.0x5.0x12.0x1f ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x2468ace0.0xeca8642.0x0.0x2.0x4.0x6.0x1e.0x20 ++vucaddw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x19999991.0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74.0x2774 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720.0x63 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7654323.0x3.0x10.0x12.0x67.0x271f.0xf.0x62 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7654324.0xf.0x11.0x66.0x2713.0xe.0xe.0x61 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654330.0x10.0x65.0x2712.0x2.0xd.0xd.0x55 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654331.0x64.0x2711.0x1.0x1.0xc.0x1.0x54 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7654385.0x2710.0x0.0x0.0x0.0x0.0x0.0x0 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fffffff ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010.0x63 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f.0xf.0x123456d4 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7654311.0xffffff9c.0xffffd8f1.0x7fffffff.0x80000003.0xe.0x12345680.0x7654385 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x76542bd.0xffffd8f0.0x7fffffff.0x80000002.0x2.0x1234567f.0x7654331.0x64 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7651c11.0x7fffffff.0x80000001.0x1.0x12345673.0x7654330.0x10.0x65 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0x0.0x12345672.0x7654324.0xf.0x11.0x66 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7654320.0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x19999991.0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74 ++vucaddw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xeca8642.0x0.0x2.0x4.0x6.0x1e.0x20.0xc8 ++=== Running test on vucsubw=== ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x2711 ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x65.0x2712 ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x11.0x66.0x2713 ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x10.0x12.0x67.0x271f ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff0.0xffffff9d.0xffffd8f2.0x4.0x11.0x13.0x73.0x2720 ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9c.0xffffd8f1.0x3.0x5.0x12.0x1f.0x74.0x2774 ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f0.0x2.0x4.0x6.0x1e.0x20.0xc8.0x4e20 ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0x3.0x5.0x12.0x1f.0x74.0x2774.0x80002711 ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x2.0x4.0x11.0x13.0x73.0x2720.0x80000065.0x7fffffff ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x3.0x10.0x12.0x67.0x271f.0x80000011.0x7fffffff.0x2711 ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xf.0x11.0x66.0x2713.0x80000010.0x7fffffff.0x65.0xedcbd0a0 ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x10.0x65.0x2712.0x80000004.0x7fffffff.0x11.0xedcba9f4.0xf89ae3ef ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x64.0x2711.0x80000003.0x7fffffff.0x10.0xedcba9a0.0xf89abd43.0x2710 ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2710.0x80000002.0x7fffffff.0x4.0xedcba99f.0xf89abcef.0x64.0x270f ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000001.0x7fffffff.0x3.0xedcba993.0xf89abcee.0x10.0x63.0x270e ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x2.0xedcba992.0xf89abce2.0xf.0xf.0x62.0x270d ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0xedcba991.0xf89abce1.0x3.0xe.0xe.0x61.0x2701 ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba990.0xf89abce0.0x2.0x2.0xd.0xd.0x55.0x2700 ++vucsubw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcdf.0x1.0x1.0x1.0xc.0x1.0x54.0x26ac ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x2711.0x1 ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x65.0x2712.0x2 ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x11.0x66.0x2713.0xe ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff1.0xffffff9e.0xffffd8f3.0x10.0x12.0x67.0x271f.0xf ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9d.0xffffd8f2.0x4.0x11.0x13.0x73.0x2720.0x63 ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f1.0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x2.0x4.0x6.0x1e.0x20.0xc8.0x4e20.0x80000000 ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x3.0x5.0x12.0x1f.0x74.0x2774.0x80002711.0x7fffffff ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x4.0x11.0x13.0x73.0x2720.0x80000065.0x7fffffff.0x0 ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x10.0x12.0x67.0x271f.0x80000011.0x7fffffff.0x2711.0xedcba98f ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x11.0x66.0x2713.0x80000010.0x7fffffff.0x65.0xedcbd0a0.0xf89abcde ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x65.0x2712.0x80000004.0x7fffffff.0x11.0xedcba9f4.0xf89ae3ef.0xffffffff ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2711.0x80000003.0x7fffffff.0x10.0xedcba9a0.0xf89abd43.0x2710.0xfffffffe ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000002.0x7fffffff.0x4.0xedcba99f.0xf89abcef.0x64.0x270f.0xfffffffd ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x3.0xedcba993.0xf89abcee.0x10.0x63.0x270e.0xfffffffc ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x2.0xedcba992.0xf89abce2.0xf.0xf.0x62.0x270d.0xfffffff0 ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba991.0xf89abce1.0x3.0xe.0xe.0x61.0x2701.0xffffffef ++vucsubw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abce0.0x2.0x2.0xd.0xd.0x55.0x2700.0xffffff9b ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2.0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0xffffffff ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x2711.0x1.0x1 ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x65.0x2712.0x2.0xd ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff2.0xffffff9f.0xffffd8ff.0x11.0x66.0x2713.0xe.0xe ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9e.0xffffd8f3.0x10.0x12.0x67.0x271f.0xf.0x62 ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f2.0x4.0x11.0x13.0x73.0x2720.0x63.0x270e ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x3.0x5.0x12.0x1f.0x74.0x2774.0x270f.0x80000000 ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x4.0x6.0x1e.0x20.0xc8.0x4e20.0x80000000.0x7ffffffe ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x5.0x12.0x1f.0x74.0x2774.0x80002711.0x7fffffff.0xffffffff ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x11.0x13.0x73.0x2720.0x80000065.0x7fffffff.0x0.0xedcba98e ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12.0x67.0x271f.0x80000011.0x7fffffff.0x2711.0xedcba98f.0xf89abcdd ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x66.0x2713.0x80000010.0x7fffffff.0x65.0xedcbd0a0.0xf89abcde.0xfffffffe ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2712.0x80000004.0x7fffffff.0x11.0xedcba9f4.0xf89ae3ef.0xffffffff.0xfffffffd ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000003.0x7fffffff.0x10.0xedcba9a0.0xf89abd43.0x2710.0xfffffffe.0xfffffffc ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x4.0xedcba99f.0xf89abcef.0x64.0x270f.0xfffffffd.0xfffffffb ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x3.0xedcba993.0xf89abcee.0x10.0x63.0x270e.0xfffffffc.0xffffffef ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba992.0xf89abce2.0xf.0xf.0x62.0x270d.0xfffffff0.0xffffffee ++vucsubw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abce1.0x3.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x3.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffffffe ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0xffffffff.0xffffffff ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x2711.0x1.0x1.0xc ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff3.0xffffffab.0xffffd900.0x65.0x2712.0x2.0xd.0xd ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9f.0xffffd8ff.0x11.0x66.0x2713.0xe.0xe.0x61 ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f3.0x10.0x12.0x67.0x271f.0xf.0x62.0x270d ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x4.0x11.0x13.0x73.0x2720.0x63.0x270e.0x80000000 ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x5.0x12.0x1f.0x74.0x2774.0x270f.0x80000000.0x7ffffffd ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x6.0x1e.0x20.0xc8.0x4e20.0x80000000.0x7ffffffe.0xfffffffe ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x12.0x1f.0x74.0x2774.0x80002711.0x7fffffff.0xffffffff.0xedcba98d ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x13.0x73.0x2720.0x80000065.0x7fffffff.0x0.0xedcba98e.0xf89abcdc ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x67.0x271f.0x80000011.0x7fffffff.0x2711.0xedcba98f.0xf89abcdd.0xfffffffd ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2713.0x80000010.0x7fffffff.0x65.0xedcbd0a0.0xf89abcde.0xfffffffe.0xfffffffc ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000004.0x7fffffff.0x11.0xedcba9f4.0xf89ae3ef.0xffffffff.0xfffffffd.0xfffffffb ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x10.0xedcba9a0.0xf89abd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x4.0xedcba99f.0xf89abcef.0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba993.0xf89abcee.0x10.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed ++vucsubw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abce2.0xf.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff3 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xc.0x1.0x54.0x26ac.0xffffd8ef.0xffffffff.0xffffffff.0xfffffff4 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0xffffffac.0xffffd954.0x2711.0x1.0x1.0xc.0x1 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffab.0xffffd900.0x65.0x2712.0x2.0xd.0xd.0x55 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ff.0x11.0x66.0x2713.0xe.0xe.0x61.0x2701 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x10.0x12.0x67.0x271f.0xf.0x62.0x270d.0x80000000 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x11.0x13.0x73.0x2720.0x63.0x270e.0x80000000.0x7ffffff1 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x12.0x1f.0x74.0x2774.0x270f.0x80000000.0x7ffffffd.0xfffffff2 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1e.0x20.0xc8.0x4e20.0x80000000.0x7ffffffe.0xfffffffe.0xedcba981 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1f.0x74.0x2774.0x80002711.0x7fffffff.0xffffffff.0xedcba98d.0xf89abcd0 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x73.0x2720.0x80000065.0x7fffffff.0x0.0xedcba98e.0xf89abcdc.0xfffffff1 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x271f.0x80000011.0x7fffffff.0x2711.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000010.0x7fffffff.0x65.0xedcbd0a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x11.0xedcba9f4.0xf89ae3ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x10.0xedcba9a0.0xf89abd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba99f.0xf89abcef.0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1 ++vucsubw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcee.0x10.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x10.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0 ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1 ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff2 ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff3.0xfffffff3 ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x54.0x26ac.0xffffd8ef.0xffffffff.0xffffffff.0xfffffff4.0xffffffff ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffac.0xffffd954.0x2711.0x1.0x1.0xc.0x1.0x54 ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd900.0x65.0x2712.0x2.0xd.0xd.0x55.0x2700 ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x11.0x66.0x2713.0xe.0xe.0x61.0x2701.0x80000000 ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x12.0x67.0x271f.0xf.0x62.0x270d.0x80000000.0x7ffffff0 ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x13.0x73.0x2720.0x63.0x270e.0x80000000.0x7ffffff1.0xfffffff1 ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1f.0x74.0x2774.0x270f.0x80000000.0x7ffffffd.0xfffffff2.0xedcba980 ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x20.0xc8.0x4e20.0x80000000.0x7ffffffe.0xfffffffe.0xedcba981.0xf89abccf ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x74.0x2774.0x80002711.0x7fffffff.0xffffffff.0xedcba98d.0xf89abcd0.0xfffffff0 ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2720.0x80000065.0x7fffffff.0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000011.0x7fffffff.0x2711.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x65.0xedcbd0a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x11.0xedcba9f4.0xf89ae3ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1 ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba9a0.0xf89abd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0 ++vucsubw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcef.0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9e ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff2.0xffffff9f ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x54.0x26ac.0xffffd8ef.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd954.0x2711.0x1.0x1.0xc.0x1.0x54.0x26ac ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x65.0x2712.0x2.0xd.0xd.0x55.0x2700.0x80000000 ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x66.0x2713.0xe.0xe.0x61.0x2701.0x80000000.0x7fffff9c ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x67.0x271f.0xf.0x62.0x270d.0x80000000.0x7ffffff0.0xffffff9d ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x73.0x2720.0x63.0x270e.0x80000000.0x7ffffff1.0xfffffff1.0xedcba92c ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x74.0x2774.0x270f.0x80000000.0x7ffffffd.0xfffffff2.0xedcba980.0xf89abc7b ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xc8.0x4e20.0x80000000.0x7ffffffe.0xfffffffe.0xedcba981.0xf89abccf.0xffffff9c ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2774.0x80002711.0x7fffffff.0xffffffff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000065.0x7fffffff.0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x2711.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99 ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x65.0xedcbd0a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba9f4.0xf89ae3ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c ++vucsubw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f2 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9e.0xffffd8f3 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2700.0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x26ac.0xffffd8ef.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x2711.0x1.0x1.0xc.0x1.0x54.0x26ac.0x80000000 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x2712.0x2.0xd.0xd.0x55.0x2700.0x80000000.0x7fffd8f0 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2713.0xe.0xe.0x61.0x2701.0x80000000.0x7fffff9c.0xffffd8f1 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x271f.0xf.0x62.0x270d.0x80000000.0x7ffffff0.0xffffff9d.0xedcb8280 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x2720.0x63.0x270e.0x80000000.0x7ffffff1.0xfffffff1.0xedcba92c.0xf89a95cf ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x2774.0x270f.0x80000000.0x7ffffffd.0xfffffff2.0xedcba980.0xf89abc7b.0xffffd8f0 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x4e20.0x80000000.0x7ffffffe.0xfffffffe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80002711.0x7fffffff.0xffffffff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x2711.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcbd0a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0 ++vucsubw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89ae3ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x7fffffff ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1.0x7fffffff ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f2.0x7fffffff ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffef.0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9b.0xffffd8ee.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fffffff ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ef.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fffffff ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0xc.0x1.0x54.0x26ac.0x80000000.0x7fffffff ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2.0xd.0xd.0x55.0x2700.0x80000000.0x7fffd8f0.0x7fffffff ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xe.0xe.0x61.0x2701.0x80000000.0x7fffff9c.0xffffd8f1.0x6dcba98f ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xf.0x62.0x270d.0x80000000.0x7ffffff0.0xffffff9d.0xedcb8280.0x789abcde ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x63.0x270e.0x80000000.0x7ffffff1.0xfffffff1.0xedcba92c.0xf89a95cf.0x7fffffff ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270f.0x80000000.0x7ffffffd.0xfffffff2.0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7ffffffe.0xfffffffe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0xffffffff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0 ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef ++vucsubw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x7fffffff.0x80000002 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1.0x7fffffff.0x80000003 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffee.0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9a.0xffffd8ed.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ee.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fffffff.0x80002710 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fffffff.0x80000000 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0xc.0x1.0x54.0x26ac.0x80000000.0x7fffffff.0x80000001 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xd.0xd.0x55.0x2700.0x80000000.0x7fffd8f0.0x7fffffff.0x80000000 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xe.0x61.0x2701.0x80000000.0x7fffff9c.0xffffd8f1.0x6dcba98f.0x80000000 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x62.0x270d.0x80000000.0x7ffffff0.0xffffff9d.0xedcb8280.0x789abcde.0x80000000 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270e.0x80000000.0x7ffffff1.0xfffffff1.0xedcba92c.0xf89a95cf.0x7fffffff.0x80000000 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7ffffffd.0xfffffff2.0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x80000000 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffffe.0xfffffffe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x80000000 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000 ++vucsubw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x80000000 ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000.0x0 ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001.0x1 ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x7fffffff.0x80000002.0x2 ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1.0x7fffffff.0x80000003.0xe ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffed.0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f.0xf ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff99.0xffffd8e1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010.0x63 ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ed.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064.0x270f ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fffffff.0x80002710.0x80000000 ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fffffff.0x80000000.0x7fffffff ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xc.0x1.0x54.0x26ac.0x80000000.0x7fffffff.0x80000001.0xedcba98f ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xd.0x55.0x2700.0x80000000.0x7fffd8f0.0x7fffffff.0x80000000.0xf89abcde ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x61.0x2701.0x80000000.0x7fffff9c.0xffffd8f1.0x6dcba98f.0x80000000.0xffffffff ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270d.0x80000000.0x7ffffff0.0xffffff9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7ffffff1.0xfffffff1.0xedcba92c.0xf89a95cf.0x7fffffff.0x80000000.0xfffffffd ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffffd.0xfffffff2.0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x80000000.0xfffffffc ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0 ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef ++vucsubw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b.0x12342f60 ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef.0x12345671 ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000.0x0.0x12345672 ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001.0x1.0x12345673 ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x7fffffff.0x80000002.0x2.0x1234567f ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffe1.0xffffff8c.0xffffd88c.0xffffd8f1.0x7fffffff.0x80000003.0xe.0x12345680 ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff8d.0xffffd8e0.0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f.0xf.0x123456d4 ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8e1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010.0x63.0x12347d80 ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064.0x270f.0x92345671 ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fffffff.0x80002710.0x80000000.0x7fffffff ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fffffff.0x80000000.0x7fffffff.0x12345671 ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x54.0x26ac.0x80000000.0x7fffffff.0x80000001.0xedcba98f.0xacf134f ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x55.0x2700.0x80000000.0x7fffd8f0.0x7fffffff.0x80000000.0xf89abcde.0x12345670 ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2701.0x80000000.0x7fffff9c.0xffffd8f1.0x6dcba98f.0x80000000.0xffffffff.0x1234566f ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7ffffff0.0xffffff9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffff1.0xfffffff1.0xedcba92c.0xf89a95cf.0x7fffffff.0x80000000.0xfffffffd.0x1234566d ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffff2.0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x80000000.0xfffffffc.0x12345661 ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0.0x12345660 ++vucsubw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef.0x1234560c ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef.0x1234560c.0x7651c11 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b.0x12342f60.0x7654322 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef.0x12345671.0x7654323 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000.0x0.0x12345672.0x7654324 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001.0x1.0x12345673.0x7654330 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffe0.0xffffff38.0xffffb1e0.0x7fffffff.0x80000002.0x2.0x1234567f.0x7654331 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff8c.0xffffd88c.0xffffd8f1.0x7fffffff.0x80000003.0xe.0x12345680.0x7654385 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8e0.0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f.0xf.0x123456d4.0x7656a31 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010.0x63.0x12347d80.0x87654322 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064.0x270f.0x92345671.0x7fffffff ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffff3.0xffffffab.0xffffd900.0x7fffffff.0x80002710.0x80000000.0x7fffffff.0x7654322 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0xffffffac.0xffffd954.0x7fffffff.0x80000000.0x7fffffff.0x12345671.0xf530ecb1 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x54.0x26ac.0x80000000.0x7fffffff.0x80000001.0xedcba98f.0xacf134f.0x7654321 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2700.0x80000000.0x7fffd8f0.0x7fffffff.0x80000000.0xf89abcde.0x12345670.0x7654320 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7fffff9c.0xffffd8f1.0x6dcba98f.0x80000000.0xffffffff.0x1234566f.0x765431f ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffff0.0xffffff9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffff1.0xedcba92c.0xf89a95cf.0x7fffffff.0x80000000.0xfffffffd.0x1234566d.0x7654312 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x80000000.0xfffffffc.0x12345661.0x7654311 ++vucsubw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0.0x12345660.0x76542bd ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff9c.0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0 ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffff9b.0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef.0x1234560c.0x7651c11.0x1 ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff9a.0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b.0x12342f60.0x7654322.0x2 ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff99.0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef.0x12345671.0x7654323.0x3 ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff8d.0xffffd8e0.0x7fffff9b.0x80000000.0x0.0x12345672.0x7654324.0xf ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff8c.0xffffd88c.0x7fffd8ef.0x80000001.0x1.0x12345673.0x7654330.0x10 ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff38.0xffffb1e0.0x7fffffff.0x80000002.0x2.0x1234567f.0x7654331.0x64 ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd88c.0xffffd8f1.0x7fffffff.0x80000003.0xe.0x12345680.0x7654385.0x2710 ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffff9d.0xffffd8f2.0x7fffffff.0x8000000f.0xf.0x123456d4.0x7656a31.0x80000001 ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffff9e.0xffffd8f3.0x7fffffff.0x80000010.0x63.0x12347d80.0x87654322.0x7fffffff ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffff9f.0xffffd8ff.0x7fffffff.0x80000064.0x270f.0x92345671.0x7fffffff.0x1 ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffab.0xffffd900.0x7fffffff.0x80002710.0x80000000.0x7fffffff.0x7654322.0xedcba990 ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffac.0xffffd954.0x7fffffff.0x80000000.0x7fffffff.0x12345671.0xf530ecb1.0xf89abcdf ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x26ac.0x80000000.0x7fffffff.0x80000001.0xedcba98f.0xacf134f.0x7654321.0xffffffff ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7fffd8f0.0x7fffffff.0x80000000.0xf89abcde.0x12345670.0x7654320.0xfffffffe ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffff9c.0xffffd8f1.0x6dcba98f.0x80000000.0xffffffff.0x1234566f.0x765431f.0xfffffffd ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfffffff1 ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba92c.0xf89a95cf.0x7fffffff.0x80000000.0xfffffffd.0x1234566d.0x7654312.0xfffffff0 ++vucsubw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abc7b.0xffffd8f0.0x7ffffffe.0x80000000.0xfffffffc.0x12345661.0x7654311.0xffffff9c ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffd8f0.0x7ffffffe.0x80000000.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffd8ef.0x7ffffffd.0x80000000.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x2 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffd8ee.0x7ffffffc.0x80000000.0xffffffef.0x1234560c.0x7651c11.0x1.0x3 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffd8ed.0x7ffffff0.0x80000000.0xffffff9b.0x12342f60.0x7654322.0x2.0x4 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8e1.0x7fffffef.0x80000000.0xffffd8ef.0x12345671.0x7654323.0x3.0x10 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd8e0.0x7fffff9b.0x80000000.0x0.0x12345672.0x7654324.0xf.0x11 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd88c.0x7fffd8ef.0x80000001.0x1.0x12345673.0x7654330.0x10.0x65 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffb1e0.0x7fffffff.0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffd8f1.0x7fffffff.0x80000003.0xe.0x12345680.0x7654385.0x2710.0x80000002 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffd8f2.0x7fffffff.0x8000000f.0xf.0x123456d4.0x7656a31.0x80000001.0x7fffffff ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffd8f3.0x7fffffff.0x80000010.0x63.0x12347d80.0x87654322.0x7fffffff.0x2 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffd8ff.0x7fffffff.0x80000064.0x270f.0x92345671.0x7fffffff.0x1.0xedcba991 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffd900.0x7fffffff.0x80002710.0x80000000.0x7fffffff.0x7654322.0xedcba990.0xf89abce0 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffd954.0x7fffffff.0x80000000.0x7fffffff.0x12345671.0xf530ecb1.0xf89abcdf.0x1 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7fffffff.0x80000001.0xedcba98f.0xacf134f.0x7654321.0xffffffff.0xffffffff ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffd8f0.0x7fffffff.0x80000000.0xf89abcde.0x12345670.0x7654320.0xfffffffe.0xfffffffe ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffd8f1.0x6dcba98f.0x80000000.0xffffffff.0x1234566f.0x765431f.0xfffffffd.0xfffffff2 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1 ++vucsubw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89a95cf.0x7fffffff.0x80000000.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7fffffff.0x80000000.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7ffffffe.0x80000000.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x3 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7ffffffd.0x80000000.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x2.0x4 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7ffffffc.0x80000000.0xffffffef.0x1234560c.0x7651c11.0x1.0x3.0x5 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7ffffff0.0x80000000.0xffffff9b.0x12342f60.0x7654322.0x2.0x4.0x11 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fffffef.0x80000000.0xffffd8ef.0x12345671.0x7654323.0x3.0x10.0x12 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffff9b.0x80000000.0x0.0x12345672.0x7654324.0xf.0x11.0x66 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7fffd8ef.0x80000001.0x1.0x12345673.0x7654330.0x10.0x65.0x2712 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7fffffff.0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711.0x80000003 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7fffffff.0x80000003.0xe.0x12345680.0x7654385.0x2710.0x80000002.0x7fffffff ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7fffffff.0x8000000f.0xf.0x123456d4.0x7656a31.0x80000001.0x7fffffff.0x3 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7fffffff.0x80000010.0x63.0x12347d80.0x87654322.0x7fffffff.0x2.0xedcba992 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7fffffff.0x80000064.0x270f.0x92345671.0x7fffffff.0x1.0xedcba991.0xf89abce1 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7fffffff.0x80002710.0x80000000.0x7fffffff.0x7654322.0xedcba990.0xf89abce0.0x2 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7fffffff.0x80000000.0x7fffffff.0x12345671.0xf530ecb1.0xf89abcdf.0x1.0x1 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x80000001.0xedcba98f.0xacf134f.0x7654321.0xffffffff.0xffffffff.0xffffffff ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7fffffff.0x80000000.0xf89abcde.0x12345670.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x6dcba98f.0x80000000.0xffffffff.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2 ++vucsubw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x80000000.0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x4 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x80000000.0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x3.0x5 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x80000000.0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x2.0x4.0x6 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x80000000.0xffffffef.0x1234560c.0x7651c11.0x1.0x3.0x5.0x12 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x80000000.0xffffff9b.0x12342f60.0x7654322.0x2.0x4.0x11.0x13 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000000.0xffffd8ef.0x12345671.0x7654323.0x3.0x10.0x12.0x67 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x80000000.0x0.0x12345672.0x7654324.0xf.0x11.0x66.0x2713 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x80000001.0x1.0x12345673.0x7654330.0x10.0x65.0x2712.0x80000004 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x80000002.0x2.0x1234567f.0x7654331.0x64.0x2711.0x80000003.0x7fffffff ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x80000003.0xe.0x12345680.0x7654385.0x2710.0x80000002.0x7fffffff.0x4 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x8000000f.0xf.0x123456d4.0x7656a31.0x80000001.0x7fffffff.0x3.0xedcba993 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x80000010.0x63.0x12347d80.0x87654322.0x7fffffff.0x2.0xedcba992.0xf89abce2 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x80000064.0x270f.0x92345671.0x7fffffff.0x1.0xedcba991.0xf89abce1.0x3 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80002710.0x80000000.0x7fffffff.0x7654322.0xedcba990.0xf89abce0.0x2.0x2 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7fffffff.0x12345671.0xf530ecb1.0xf89abcdf.0x1.0x1.0x1 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x80000001.0xedcba98f.0xacf134f.0x7654321.0xffffffff.0xffffffff.0xffffffff.0xfffffff4 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x80000000.0xf89abcde.0x12345670.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3 ++vucsubw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x80000000.0xffffffff.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x10 ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffd.0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x4.0x11 ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffc.0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x3.0x5.0x12 ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0x12345660.0x76542bd.0xffffd8f0.0x2.0x4.0x6.0x1e ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffef.0x1234560c.0x7651c11.0x1.0x3.0x5.0x12.0x1f ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9b.0x12342f60.0x7654322.0x2.0x4.0x11.0x13.0x73 ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ef.0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0x80000010 ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x12345673.0x7654330.0x10.0x65.0x2712.0x80000004.0x7fffffff ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2.0x1234567f.0x7654331.0x64.0x2711.0x80000003.0x7fffffff.0x10 ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xe.0x12345680.0x7654385.0x2710.0x80000002.0x7fffffff.0x4.0xedcba99f ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xf.0x123456d4.0x7656a31.0x80000001.0x7fffffff.0x3.0xedcba993.0xf89abcee ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x63.0x12347d80.0x87654322.0x7fffffff.0x2.0xedcba992.0xf89abce2.0xf ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270f.0x92345671.0x7fffffff.0x1.0xedcba991.0xf89abce1.0x3.0xe ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7fffffff.0x7654322.0xedcba990.0xf89abce0.0x2.0x2.0xd ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x12345671.0xf530ecb1.0xf89abcdf.0x1.0x1.0x1.0xc ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98f.0xacf134f.0x7654321.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff ++vucsubw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcde.0x12345670.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x12345670.0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900 ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1234566f.0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x11 ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1234566e.0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x10.0x12 ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1234566d.0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x4.0x11.0x13 ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12345661.0x7654311.0xffffff9c.0xffffd8f1.0x3.0x5.0x12.0x1f ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345660.0x76542bd.0xffffd8f0.0x2.0x4.0x6.0x1e.0x20 ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1234560c.0x7651c11.0x1.0x3.0x5.0x12.0x1f.0x74 ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12342f60.0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720 ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f.0x80000011 ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0x80000010.0x7fffffff ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x12345673.0x7654330.0x10.0x65.0x2712.0x80000004.0x7fffffff.0x11 ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1234567f.0x7654331.0x64.0x2711.0x80000003.0x7fffffff.0x10.0xedcba9a0 ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12345680.0x7654385.0x2710.0x80000002.0x7fffffff.0x4.0xedcba99f.0xf89abcef ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x123456d4.0x7656a31.0x80000001.0x7fffffff.0x3.0xedcba993.0xf89abcee.0x10 ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12347d80.0x87654322.0x7fffffff.0x2.0xedcba992.0xf89abce2.0xf.0xf ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x92345671.0x7fffffff.0x1.0xedcba991.0xf89abce1.0x3.0xe.0xe ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x7654322.0xedcba990.0xf89abce0.0x2.0x2.0xd.0xd ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x12345671.0xf530ecb1.0xf89abcdf.0x1.0x1.0x1.0xc.0x1 ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xacf134f.0x7654321.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7654321.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7654320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x65 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x765431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x11.0x66 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x765431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x10.0x12.0x67 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654312.0xfffffff0.0xffffff9d.0xffffd8f2.0x4.0x11.0x13.0x73 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654311.0xffffff9c.0xffffd8f1.0x3.0x5.0x12.0x1f.0x74 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x76542bd.0xffffd8f0.0x2.0x4.0x6.0x1e.0x20.0xc8 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7651c11.0x1.0x3.0x5.0x12.0x1f.0x74.0x2774 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720.0x80000065 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7654323.0x3.0x10.0x12.0x67.0x271f.0x80000011.0x7fffffff ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7654324.0xf.0x11.0x66.0x2713.0x80000010.0x7fffffff.0x65 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7654330.0x10.0x65.0x2712.0x80000004.0x7fffffff.0x11.0xedcba9f4 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7654331.0x64.0x2711.0x80000003.0x7fffffff.0x10.0xedcba9a0.0xf89abd43 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7654385.0x2710.0x80000002.0x7fffffff.0x4.0xedcba99f.0xf89abcef.0x64 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7656a31.0x80000001.0x7fffffff.0x3.0xedcba993.0xf89abcee.0x10.0x63 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x87654322.0x7fffffff.0x2.0xedcba992.0xf89abce2.0xf.0xf.0x62 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x1.0xedcba991.0xf89abce1.0x3.0xe.0xe.0x61 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7654322.0xedcba990.0xf89abce0.0x2.0x2.0xd.0xd.0x55 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf530ecb1.0xf89abcdf.0x1.0x1.0x1.0xc.0x1.0x54 ++vucsubw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++=== Running test on vucaddh=== ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x2.0x4.0x6.0x1e.0x20.0xc8.0x4e20 ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x3.0x5.0x12.0x1f.0x74.0x2774.0xffff270f ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x4.0x11.0x13.0x73.0x2720.0xffff0063.0xffff270e ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0x10.0x12.0x67.0x271f.0xffff000f.0xffff0062.0xffff270d ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x11.0x66.0x2713.0xffff000e.0xffff000e.0xffff0061.0xffff2701 ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x65.0x2712.0xffff0002.0xffff000d.0xffff000d.0xffff0055.0xffff2700 ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2711.0xffff0001.0xffff0001.0xffff000c.0xffff0001.0xffff0054.0xffff26ac ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000 ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fff270f ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fff0063.0x80002710 ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fff000f.0x80000064.0xffff270f ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fff000e.0x80000010.0xffff0063.0x12347d80 ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9d.0xffffd8f2.0x7fff0002.0x8000000f.0xffff000f.0x123456d4.0x7656a31 ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f1.0x7fff0001.0x80000003.0xffff000e.0x12345680.0x7654385.0x2710 ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fff0000.0x80000002.0xffff0002.0x1234567f.0x7654331.0x64.0x2711 ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000001.0xffff0001.0x12345673.0x7654330.0x10.0x65.0x2712 ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffff0000.0x12345672.0x7654324.0xf.0x11.0x66.0x2713 ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720 ++vucaddh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74.0x2774 ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x3.0x5.0x12.0x1f.0x74.0x2774.0xffff270f ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2.0x4.0x6.0x1e.0x20.0xc8.0x4e20.0xfffefffe ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x3.0x5.0x12.0x1f.0x74.0x2774.0xffff270f.0xfffefffd ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x4.0x11.0x13.0x73.0x2720.0xffff0063.0xffff270e.0xfffefffc ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x10.0x12.0x67.0x271f.0xffff000f.0xffff0062.0xffff270d.0xfffefff0 ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x11.0x66.0x2713.0xffff000e.0xffff000e.0xffff0061.0xffff2701.0xfffeffef ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x65.0x2712.0xffff0002.0xffff000d.0xffff000d.0xffff0055.0xffff2700.0xfffeff9b ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2711.0xffff0001.0xffff0001.0xffff000c.0xffff0001.0xffff0054.0xffff26ac.0xfffed8ef ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0x7ffefffe ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fff270f.0x8000ffff ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fff0063.0x80002710.0xfffefffe ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fff000f.0x80000064.0xffff270f.0x1233566f ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff1.0xffffff9e.0xffffd8f3.0x7fff000e.0x80000010.0xffff0063.0x12347d80.0x7644320 ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9d.0xffffd8f2.0x7fff0002.0x8000000f.0xffff000f.0x123456d4.0x7656a31.0xffffffff ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f1.0x7fff0001.0x80000003.0xffff000e.0x12345680.0x7654385.0x2710.0xffff0000 ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fff0000.0x80000002.0xffff0002.0x1234567f.0x7654331.0x64.0x2711.0xffff0001 ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000001.0xffff0001.0x12345673.0x7654330.0x10.0x65.0x2712.0xffff0002 ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffff0000.0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xffff000e ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f.0xffff000f ++vucaddh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720.0xffff0063 ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2.0x4.0x11.0x13.0x73.0x2720.0xffff0063.0xffff270e ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x3.0x5.0x12.0x1f.0x74.0x2774.0xffff270f.0xfffefffd ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x4.0x6.0x1e.0x20.0xc8.0x4e20.0xfffefffe.0xfffefffc ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x5.0x12.0x1f.0x74.0x2774.0xffff270f.0xfffefffd.0xfffefffb ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x11.0x13.0x73.0x2720.0xffff0063.0xffff270e.0xfffefffc.0xfffeffef ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12.0x67.0x271f.0xffff000f.0xffff0062.0xffff270d.0xfffefff0.0xfffeffee ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x66.0x2713.0xffff000e.0xffff000e.0xffff0061.0xffff2701.0xfffeffef.0xfffeff9a ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2712.0xffff0002.0xffff000d.0xffff000d.0xffff0055.0xffff2700.0xfffeff9b.0xfffed8ee ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffff0001.0xffff0001.0xffff000c.0xffff0001.0xffff0054.0xffff26ac.0xfffed8ef.0x7ffefffd ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0x7ffefffe.0x8000fffe ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fff270f.0x8000ffff.0xfffefffd ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fff0063.0x80002710.0xfffefffe.0x1233566e ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff2.0xffffff9f.0xffffd8ff.0x7fff000f.0x80000064.0xffff270f.0x1233566f.0x764431f ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9e.0xffffd8f3.0x7fff000e.0x80000010.0xffff0063.0x12347d80.0x7644320.0xfffffffe ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f2.0x7fff0002.0x8000000f.0xffff000f.0x123456d4.0x7656a31.0xffffffff.0xffffffff ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fff0001.0x80000003.0xffff000e.0x12345680.0x7654385.0x2710.0xffff0000.0xffff0000 ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000002.0xffff0002.0x1234567f.0x7654331.0x64.0x2711.0xffff0001.0xffff0001 ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffff0001.0x12345673.0x7654330.0x10.0x65.0x2712.0xffff0002.0xffff000d ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xffff000e.0xffff000e ++vucaddh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654323.0x3.0x10.0x12.0x67.0x271f.0xffff000f.0xffff0062 ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x3.0x10.0x12.0x67.0x271f.0xffff000f.0xffff0062.0xffff270d ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x4.0x11.0x13.0x73.0x2720.0xffff0063.0xffff270e.0xfffefffc ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x5.0x12.0x1f.0x74.0x2774.0xffff270f.0xfffefffd.0xfffefffb ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x6.0x1e.0x20.0xc8.0x4e20.0xfffefffe.0xfffefffc.0xfffefffa ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12.0x1f.0x74.0x2774.0xffff270f.0xfffefffd.0xfffefffb.0xfffeffee ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x13.0x73.0x2720.0xffff0063.0xffff270e.0xfffefffc.0xfffeffef.0xfffeffed ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x67.0x271f.0xffff000f.0xffff0062.0xffff270d.0xfffefff0.0xfffeffee.0xfffeff99 ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2713.0xffff000e.0xffff000e.0xffff0061.0xffff2701.0xfffeffef.0xfffeff9a.0xfffed8ed ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffff0002.0xffff000d.0xffff000d.0xffff0055.0xffff2700.0xfffeff9b.0xfffed8ee.0x7ffefffc ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff0001.0xffff000c.0xffff0001.0xffff0054.0xffff26ac.0xfffed8ef.0x7ffefffd.0x8000fffd ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0x7ffefffe.0x8000fffe.0xfffefffc ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fff270f.0x8000ffff.0xfffefffd.0x1233566d ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff3.0xffffffab.0xffffd900.0x7fff0063.0x80002710.0xfffefffe.0x1233566e.0x764431e ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9f.0xffffd8ff.0x7fff000f.0x80000064.0xffff270f.0x1233566f.0x764431f.0xfffffffd ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f3.0x7fff000e.0x80000010.0xffff0063.0x12347d80.0x7644320.0xfffffffe.0xfffffffe ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fff0002.0x8000000f.0xffff000f.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000003.0xffff000e.0x12345680.0x7654385.0x2710.0xffff0000.0xffff0000.0xffff0000 ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffff0002.0x1234567f.0x7654331.0x64.0x2711.0xffff0001.0xffff0001.0xffff000c ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345673.0x7654330.0x10.0x65.0x2712.0xffff0002.0xffff000d.0xffff000d ++vucaddh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654324.0xf.0x11.0x66.0x2713.0xffff000e.0xffff000e.0xffff0061 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf.0x11.0x66.0x2713.0xffff000e.0xffff000e.0xffff0061.0xffff2701 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x10.0x12.0x67.0x271f.0xffff000f.0xffff0062.0xffff270d.0xfffefff0 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x11.0x13.0x73.0x2720.0xffff0063.0xffff270e.0xfffefffc.0xfffeffef ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x12.0x1f.0x74.0x2774.0xffff270f.0xfffefffd.0xfffefffb.0xfffeffee ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1e.0x20.0xc8.0x4e20.0xfffefffe.0xfffefffc.0xfffefffa.0xfffeffe2 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1f.0x74.0x2774.0xffff270f.0xfffefffd.0xfffefffb.0xfffeffee.0xfffeffe1 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x73.0x2720.0xffff0063.0xffff270e.0xfffefffc.0xfffeffef.0xfffeffed.0xfffeff8d ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x271f.0xffff000f.0xffff0062.0xffff270d.0xfffefff0.0xfffeffee.0xfffeff99.0xfffed8e1 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffff000e.0xffff000e.0xffff0061.0xffff2701.0xfffeffef.0xfffeff9a.0xfffed8ed.0x7ffefff0 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff000d.0xffff000d.0xffff0055.0xffff2700.0xfffeff9b.0xfffed8ee.0x7ffefffc.0x8000fff1 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff000c.0xffff0001.0xffff0054.0xffff26ac.0xfffed8ef.0x7ffefffd.0x8000fffd.0xfffefff0 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffff0000.0xffff0000.0xffff0000.0xffff0000.0x7ffefffe.0x8000fffe.0xfffefffc.0x12335661 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffff.0xffffffac.0xffffd954.0x7fff270f.0x8000ffff.0xfffefffd.0x1233566d.0x7644312 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffab.0xffffd900.0x7fff0063.0x80002710.0xfffefffe.0x1233566e.0x764431e.0xfffffff1 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ff.0x7fff000f.0x80000064.0xffff270f.0x1233566f.0x764431f.0xfffffffd.0xfffffff2 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fff000e.0x80000010.0xffff0063.0x12347d80.0x7644320.0xfffffffe.0xfffffffe.0xfffffff3 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000000f.0xffff000f.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffff000e.0x12345680.0x7654385.0x2710.0xffff0000.0xffff0000.0xffff0000.0xffff0000 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234567f.0x7654331.0x64.0x2711.0xffff0001.0xffff0001.0xffff000c.0xffff0001 ++vucaddh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654330.0x10.0x65.0x2712.0xffff0002.0xffff000d.0xffff000d.0xffff0055 ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x10.0x65.0x2712.0xffff0002.0xffff000d.0xffff000d.0xffff0055.0xffff2700 ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x11.0x66.0x2713.0xffff000e.0xffff000e.0xffff0061.0xffff2701.0xfffeffef ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x12.0x67.0x271f.0xffff000f.0xffff0062.0xffff270d.0xfffefff0.0xfffeffee ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x13.0x73.0x2720.0xffff0063.0xffff270e.0xfffefffc.0xfffeffef.0xfffeffed ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1f.0x74.0x2774.0xffff270f.0xfffefffd.0xfffefffb.0xfffeffee.0xfffeffe1 ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20.0xc8.0x4e20.0xfffefffe.0xfffefffc.0xfffefffa.0xfffeffe2.0xfffeffe0 ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x74.0x2774.0xffff270f.0xfffefffd.0xfffefffb.0xfffeffee.0xfffeffe1.0xfffeff8c ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2720.0xffff0063.0xffff270e.0xfffefffc.0xfffeffef.0xfffeffed.0xfffeff8d.0xfffed8e0 ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffff000f.0xffff0062.0xffff270d.0xfffefff0.0xfffeffee.0xfffeff99.0xfffed8e1.0x7ffeffef ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff000e.0xffff0061.0xffff2701.0xfffeffef.0xfffeff9a.0xfffed8ed.0x7ffefff0.0x8000fff0 ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff000d.0xffff0055.0xffff2700.0xfffeff9b.0xfffed8ee.0x7ffefffc.0x8000fff1.0xfffeffef ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffff0001.0xffff0054.0xffff26ac.0xfffed8ef.0x7ffefffd.0x8000fffd.0xfffefff0.0x12335660 ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffff0000.0xffff0000.0xffff0000.0x7ffefffe.0x8000fffe.0xfffefffc.0x12335661.0x7644311 ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffac.0xffffd954.0x7fff270f.0x8000ffff.0xfffefffd.0x1233566d.0x7644312.0xfffffff0 ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd900.0x7fff0063.0x80002710.0xfffefffe.0x1233566e.0x764431e.0xfffffff1.0xfffffff1 ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fff000f.0x80000064.0xffff270f.0x1233566f.0x764431f.0xfffffffd.0xfffffff2.0xfffffff2 ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000010.0xffff0063.0x12347d80.0x7644320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3 ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffff000f.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345680.0x7654385.0x2710.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000 ++vucaddh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654331.0x64.0x2711.0xffff0001.0xffff0001.0xffff000c.0xffff0001.0xffff0054 ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x64.0x2711.0xffff0001.0xffff0001.0xffff000c.0xffff0001.0xffff0054.0xffff26ac ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x65.0x2712.0xffff0002.0xffff000d.0xffff000d.0xffff0055.0xffff2700.0xfffeff9b ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x66.0x2713.0xffff000e.0xffff000e.0xffff0061.0xffff2701.0xfffeffef.0xfffeff9a ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x67.0x271f.0xffff000f.0xffff0062.0xffff270d.0xfffefff0.0xfffeffee.0xfffeff99 ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x73.0x2720.0xffff0063.0xffff270e.0xfffefffc.0xfffeffef.0xfffeffed.0xfffeff8d ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x74.0x2774.0xffff270f.0xfffefffd.0xfffefffb.0xfffeffee.0xfffeffe1.0xfffeff8c ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xc8.0x4e20.0xfffefffe.0xfffefffc.0xfffefffa.0xfffeffe2.0xfffeffe0.0xfffeff38 ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2774.0xffff270f.0xfffefffd.0xfffefffb.0xfffeffee.0xfffeffe1.0xfffeff8c.0xfffed88c ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffff0063.0xffff270e.0xfffefffc.0xfffeffef.0xfffeffed.0xfffeff8d.0xfffed8e0.0x7ffeff9b ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff0062.0xffff270d.0xfffefff0.0xfffeffee.0xfffeff99.0xfffed8e1.0x7ffeffef.0x8000ff9c ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff0061.0xffff2701.0xfffeffef.0xfffeff9a.0xfffed8ed.0x7ffefff0.0x8000fff0.0xfffeff9b ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffff0055.0xffff2700.0xfffeff9b.0xfffed8ee.0x7ffefffc.0x8000fff1.0xfffeffef.0x1233560c ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffff0054.0xffff26ac.0xfffed8ef.0x7ffefffd.0x8000fffd.0xfffefff0.0x12335660.0x76442bd ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffff0000.0xffff0000.0x7ffefffe.0x8000fffe.0xfffefffc.0x12335661.0x7644311.0xffffff9c ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd954.0x7fff270f.0x8000ffff.0xfffefffd.0x1233566d.0x7644312.0xfffffff0.0xffffff9d ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fff0063.0x80002710.0xfffefffe.0x1233566e.0x764431e.0xfffffff1.0xfffffff1.0xffffff9e ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000064.0xffff270f.0x1233566f.0x764431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffff0063.0x12347d80.0x7644320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac ++vucaddh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654385.0x2710.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000 ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2710.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000 ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2711.0xffff0001.0xffff0001.0xffff000c.0xffff0001.0xffff0054.0xffff26ac.0xfffed8ef ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2712.0xffff0002.0xffff000d.0xffff000d.0xffff0055.0xffff2700.0xfffeff9b.0xfffed8ee ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2713.0xffff000e.0xffff000e.0xffff0061.0xffff2701.0xfffeffef.0xfffeff9a.0xfffed8ed ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x271f.0xffff000f.0xffff0062.0xffff270d.0xfffefff0.0xfffeffee.0xfffeff99.0xfffed8e1 ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2720.0xffff0063.0xffff270e.0xfffefffc.0xfffeffef.0xfffeffed.0xfffeff8d.0xfffed8e0 ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2774.0xffff270f.0xfffefffd.0xfffefffb.0xfffeffee.0xfffeffe1.0xfffeff8c.0xfffed88c ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x4e20.0xfffefffe.0xfffefffc.0xfffefffa.0xfffeffe2.0xfffeffe0.0xfffeff38.0xfffeb1e0 ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffff270f.0xfffefffd.0xfffefffb.0xfffeffee.0xfffeffe1.0xfffeff8c.0xfffed88c.0x7ffed8ef ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff270e.0xfffefffc.0xfffeffef.0xfffeffed.0xfffeff8d.0xfffed8e0.0x7ffeff9b.0x8000d8f0 ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff270d.0xfffefff0.0xfffeffee.0xfffeff99.0xfffed8e1.0x7ffeffef.0x8000ff9c.0xfffed8ef ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffff2701.0xfffeffef.0xfffeff9a.0xfffed8ed.0x7ffefff0.0x8000fff0.0xfffeff9b.0x12332f60 ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffff2700.0xfffeff9b.0xfffed8ee.0x7ffefffc.0x8000fff1.0xfffeffef.0x1233560c.0x7641c11 ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffff26ac.0xfffed8ef.0x7ffefffd.0x8000fffd.0xfffefff0.0x12335660.0x76442bd.0xffffd8f0 ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffff0000.0x7ffefffe.0x8000fffe.0xfffefffc.0x12335661.0x7644311.0xffffff9c.0xffffd8f1 ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fff270f.0x8000ffff.0xfffefffd.0x1233566d.0x7644312.0xfffffff0.0xffffff9d.0xffffd8f2 ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80002710.0xfffefffe.0x1233566e.0x764431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3 ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffff270f.0x1233566f.0x764431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12347d80.0x7644320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900 ++vucaddh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954 ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fff270f ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0x7ffefffe ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffff0001.0xffff0001.0xffff000c.0xffff0001.0xffff0054.0xffff26ac.0xfffed8ef.0x7ffefffd ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffff0002.0xffff000d.0xffff000d.0xffff0055.0xffff2700.0xfffeff9b.0xfffed8ee.0x7ffefffc ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffff000e.0xffff000e.0xffff0061.0xffff2701.0xfffeffef.0xfffeff9a.0xfffed8ed.0x7ffefff0 ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffff000f.0xffff0062.0xffff270d.0xfffefff0.0xfffeffee.0xfffeff99.0xfffed8e1.0x7ffeffef ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffff0063.0xffff270e.0xfffefffc.0xfffeffef.0xfffeffed.0xfffeff8d.0xfffed8e0.0x7ffeff9b ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff270f.0xfffefffd.0xfffefffb.0xfffeffee.0xfffeffe1.0xfffeff8c.0xfffed88c.0x7ffed8ef ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffefffe.0xfffefffc.0xfffefffa.0xfffeffe2.0xfffeffe0.0xfffeff38.0xfffeb1e0.0x7ffffffe ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffefffd.0xfffefffb.0xfffeffee.0xfffeffe1.0xfffeff8c.0xfffed88c.0x7ffed8ef.0xffffffff ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffefffc.0xfffeffef.0xfffeffed.0xfffeff8d.0xfffed8e0.0x7ffeff9b.0x8000d8f0.0x7ffefffe ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffefff0.0xfffeffee.0xfffeff99.0xfffed8e1.0x7ffeffef.0x8000ff9c.0xfffed8ef.0x7fff566f ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffeffef.0xfffeff9a.0xfffed8ed.0x7ffefff0.0x8000fff0.0xfffeff9b.0x12332f60.0x7fff4320 ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffeff9b.0xfffed8ee.0x7ffefffc.0x8000fff1.0xfffeffef.0x1233560c.0x7641c11.0x7fffffff ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfffed8ef.0x7ffefffd.0x8000fffd.0xfffefff0.0x12335660.0x76442bd.0xffffd8f0.0x7fff0000 ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffefffe.0x8000fffe.0xfffefffc.0x12335661.0x7644311.0xffffff9c.0xffffd8f1.0x7fff0001 ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000ffff.0xfffefffd.0x1233566d.0x7644312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fff0002 ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffefffe.0x1233566e.0x764431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fff000e ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1233566f.0x764431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fff000f ++vucaddh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7644320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fff0063 ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fff0063.0x80002710 ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fff270f.0x8000ffff ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0x7ffefffe.0x8000fffe ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffff0001.0xffff000c.0xffff0001.0xffff0054.0xffff26ac.0xfffed8ef.0x7ffefffd.0x8000fffd ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffff000d.0xffff000d.0xffff0055.0xffff2700.0xfffeff9b.0xfffed8ee.0x7ffefffc.0x8000fff1 ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffff000e.0xffff0061.0xffff2701.0xfffeffef.0xfffeff9a.0xfffed8ed.0x7ffefff0.0x8000fff0 ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffff0062.0xffff270d.0xfffefff0.0xfffeffee.0xfffeff99.0xfffed8e1.0x7ffeffef.0x8000ff9c ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff270e.0xfffefffc.0xfffeffef.0xfffeffed.0xfffeff8d.0xfffed8e0.0x7ffeff9b.0x8000d8f0 ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffefffd.0xfffefffb.0xfffeffee.0xfffeffe1.0xfffeff8c.0xfffed88c.0x7ffed8ef.0xffffffff ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffefffc.0xfffefffa.0xfffeffe2.0xfffeffe0.0xfffeff38.0xfffeb1e0.0x7ffffffe.0x80000000 ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffefffb.0xfffeffee.0xfffeffe1.0xfffeff8c.0xfffed88c.0x7ffed8ef.0xffffffff.0x8000ffff ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffeffef.0xfffeffed.0xfffeff8d.0xfffed8e0.0x7ffeff9b.0x8000d8f0.0x7ffefffe.0x92345670 ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffeffee.0xfffeff99.0xfffed8e1.0x7ffeffef.0x8000ff9c.0xfffed8ef.0x7fff566f.0x87654321 ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffeff9a.0xfffed8ed.0x7ffefff0.0x8000fff0.0xfffeff9b.0x12332f60.0x7fff4320.0x80000000 ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfffed8ee.0x7ffefffc.0x8000fff1.0xfffeffef.0x1233560c.0x7641c11.0x7fffffff.0x80000001 ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffefffd.0x8000fffd.0xfffefff0.0x12335660.0x76442bd.0xffffd8f0.0x7fff0000.0x80000002 ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000fffe.0xfffefffc.0x12335661.0x7644311.0xffffff9c.0xffffd8f1.0x7fff0001.0x80000003 ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffefffd.0x1233566d.0x7644312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fff0002.0x8000000f ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1233566e.0x764431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fff000e.0x80000010 ++vucaddh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x764431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fff000f.0x80000064 ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fff000f.0x80000064.0xffff270f ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fff0063.0x80002710.0xfffefffe ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fff270f.0x8000ffff.0xfffefffd ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0x7ffefffe.0x8000fffe.0xfffefffc ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffff000c.0xffff0001.0xffff0054.0xffff26ac.0xfffed8ef.0x7ffefffd.0x8000fffd.0xfffefff0 ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffff000d.0xffff0055.0xffff2700.0xfffeff9b.0xfffed8ee.0x7ffefffc.0x8000fff1.0xfffeffef ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffff0061.0xffff2701.0xfffeffef.0xfffeff9a.0xfffed8ed.0x7ffefff0.0x8000fff0.0xfffeff9b ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff270d.0xfffefff0.0xfffeffee.0xfffeff99.0xfffed8e1.0x7ffeffef.0x8000ff9c.0xfffed8ef ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffefffc.0xfffeffef.0xfffeffed.0xfffeff8d.0xfffed8e0.0x7ffeff9b.0x8000d8f0.0x7ffefffe ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffefffb.0xfffeffee.0xfffeffe1.0xfffeff8c.0xfffed88c.0x7ffed8ef.0xffffffff.0x8000ffff ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffefffa.0xfffeffe2.0xfffeffe0.0xfffeff38.0xfffeb1e0.0x7ffffffe.0x80000000.0xfffefffe ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffeffee.0xfffeffe1.0xfffeff8c.0xfffed88c.0x7ffed8ef.0xffffffff.0x8000ffff.0x1233566f ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffeffed.0xfffeff8d.0xfffed8e0.0x7ffeff9b.0x8000d8f0.0x7ffefffe.0x92345670.0x7644320 ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffeff99.0xfffed8e1.0x7ffeffef.0x8000ff9c.0xfffed8ef.0x7fff566f.0x87654321.0xffffffff ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfffed8ed.0x7ffefff0.0x8000fff0.0xfffeff9b.0x12332f60.0x7fff4320.0x80000000.0xffff0000 ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffefffc.0x8000fff1.0xfffeffef.0x1233560c.0x7641c11.0x7fffffff.0x80000001.0xffff0001 ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000fffd.0xfffefff0.0x12335660.0x76442bd.0xffffd8f0.0x7fff0000.0x80000002.0xffff0002 ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffefffc.0x12335661.0x7644311.0xffffff9c.0xffffd8f1.0x7fff0001.0x80000003.0xffff000e ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1233566d.0x7644312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fff0002.0x8000000f.0xffff000f ++vucaddh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x764431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fff000e.0x80000010.0xffff0063 ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fff000e.0x80000010.0xffff0063.0x12347d80 ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fff000f.0x80000064.0xffff270f.0x1233566f ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fff0063.0x80002710.0xfffefffe.0x1233566e ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff4.0xffffffff.0xffffffac.0xffffd954.0x7fff270f.0x8000ffff.0xfffefffd.0x1233566d ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffff0000.0xffff0000.0xffff0000.0xffff0000.0x7ffefffe.0x8000fffe.0xfffefffc.0x12335661 ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffff0001.0xffff0054.0xffff26ac.0xfffed8ef.0x7ffefffd.0x8000fffd.0xfffefff0.0x12335660 ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffff0055.0xffff2700.0xfffeff9b.0xfffed8ee.0x7ffefffc.0x8000fff1.0xfffeffef.0x1233560c ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff2701.0xfffeffef.0xfffeff9a.0xfffed8ed.0x7ffefff0.0x8000fff0.0xfffeff9b.0x12332f60 ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffefff0.0xfffeffee.0xfffeff99.0xfffed8e1.0x7ffeffef.0x8000ff9c.0xfffed8ef.0x7fff566f ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffeffef.0xfffeffed.0xfffeff8d.0xfffed8e0.0x7ffeff9b.0x8000d8f0.0x7ffefffe.0x92345670 ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffeffee.0xfffeffe1.0xfffeff8c.0xfffed88c.0x7ffed8ef.0xffffffff.0x8000ffff.0x1233566f ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffeffe2.0xfffeffe0.0xfffeff38.0xfffeb1e0.0x7ffffffe.0x80000000.0xfffefffe.0x24687fff ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffeffe1.0xfffeff8c.0xfffed88c.0x7ffed8ef.0xffffffff.0x8000ffff.0x1233566f.0x19997fff ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffeff8d.0xfffed8e0.0x7ffeff9b.0x8000d8f0.0x7ffefffe.0x92345670.0x7644320.0x12345670 ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfffed8e1.0x7ffeffef.0x8000ff9c.0xfffed8ef.0x7fff566f.0x87654321.0xffffffff.0x12345671 ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffefff0.0x8000fff0.0xfffeff9b.0x12332f60.0x7fff4320.0x80000000.0xffff0000.0x12345672 ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000fff1.0xfffeffef.0x1233560c.0x7641c11.0x7fffffff.0x80000001.0xffff0001.0x12345673 ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffefff0.0x12335660.0x76442bd.0xffffd8f0.0x7fff0000.0x80000002.0xffff0002.0x1234567f ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12335661.0x7644311.0xffffff9c.0xffffd8f1.0x7fff0001.0x80000003.0xffff000e.0x12345680 ++vucaddh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7644312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fff0002.0x8000000f.0xffff000f.0x123456d4 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff0.0xffffff9d.0xffffd8f2.0x7fff0002.0x8000000f.0xffff000f.0x123456d4.0x7656a31 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff1.0xffffff9e.0xffffd8f3.0x7fff000e.0x80000010.0xffff0063.0x12347d80.0x7644320 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffff2.0xffffff9f.0xffffd8ff.0x7fff000f.0x80000064.0xffff270f.0x1233566f.0x764431f ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff3.0xffffffab.0xffffd900.0x7fff0063.0x80002710.0xfffefffe.0x1233566e.0x764431e ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0xffffffac.0xffffd954.0x7fff270f.0x8000ffff.0xfffefffd.0x1233566d.0x7644312 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffff0000.0xffff0000.0xffff0000.0x7ffefffe.0x8000fffe.0xfffefffc.0x12335661.0x7644311 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffff0054.0xffff26ac.0xfffed8ef.0x7ffefffd.0x8000fffd.0xfffefff0.0x12335660.0x76442bd ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff2700.0xfffeff9b.0xfffed8ee.0x7ffefffc.0x8000fff1.0xfffeffef.0x1233560c.0x7641c11 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffeffef.0xfffeff9a.0xfffed8ed.0x7ffefff0.0x8000fff0.0xfffeff9b.0x12332f60.0x7fff4320 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffeffee.0xfffeff99.0xfffed8e1.0x7ffeffef.0x8000ff9c.0xfffed8ef.0x7fff566f.0x87654321 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffeffed.0xfffeff8d.0xfffed8e0.0x7ffeff9b.0x8000d8f0.0x7ffefffe.0x92345670.0x7644320 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffeffe1.0xfffeff8c.0xfffed88c.0x7ffed8ef.0xffffffff.0x8000ffff.0x1233566f.0x19997fff ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffeffe0.0xfffeff38.0xfffeb1e0.0x7ffffffe.0x80000000.0xfffefffe.0x24687fff.0xeca7fff ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffeff8c.0xfffed88c.0x7ffed8ef.0xffffffff.0x8000ffff.0x1233566f.0x19997fff.0x7654321 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfffed8e0.0x7ffeff9b.0x8000d8f0.0x7ffefffe.0x92345670.0x7644320.0x12345670.0x7654322 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffeffef.0x8000ff9c.0xfffed8ef.0x7fff566f.0x87654321.0xffffffff.0x12345671.0x7654323 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000fff0.0xfffeff9b.0x12332f60.0x7fff4320.0x80000000.0xffff0000.0x12345672.0x7654324 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffeffef.0x1233560c.0x7641c11.0x7fffffff.0x80000001.0xffff0001.0x12345673.0x7654330 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12335660.0x76442bd.0xffffd8f0.0x7fff0000.0x80000002.0xffff0002.0x1234567f.0x7654331 ++vucaddh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7644311.0xffffff9c.0xffffd8f1.0x7fff0001.0x80000003.0xffff000e.0x12345680.0x7654385 ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff9c.0xffffd8f1.0x7fff0001.0x80000003.0xffff000e.0x12345680.0x7654385.0x2710 ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffff9d.0xffffd8f2.0x7fff0002.0x8000000f.0xffff000f.0x123456d4.0x7656a31.0xffffffff ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff9e.0xffffd8f3.0x7fff000e.0x80000010.0xffff0063.0x12347d80.0x7644320.0xfffffffe ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff9f.0xffffd8ff.0x7fff000f.0x80000064.0xffff270f.0x1233566f.0x764431f.0xfffffffd ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffab.0xffffd900.0x7fff0063.0x80002710.0xfffefffe.0x1233566e.0x764431e.0xfffffff1 ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffac.0xffffd954.0x7fff270f.0x8000ffff.0xfffefffd.0x1233566d.0x7644312.0xfffffff0 ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffff0000.0xffff0000.0x7ffefffe.0x8000fffe.0xfffefffc.0x12335661.0x7644311.0xffffff9c ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff26ac.0xfffed8ef.0x7ffefffd.0x8000fffd.0xfffefff0.0x12335660.0x76442bd.0xffffd8f0 ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffeff9b.0xfffed8ee.0x7ffefffc.0x8000fff1.0xfffeffef.0x1233560c.0x7641c11.0x7fffffff ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffeff9a.0xfffed8ed.0x7ffefff0.0x8000fff0.0xfffeff9b.0x12332f60.0x7fff4320.0x80000000 ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffeff99.0xfffed8e1.0x7ffeffef.0x8000ff9c.0xfffed8ef.0x7fff566f.0x87654321.0xffffffff ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffeff8d.0xfffed8e0.0x7ffeff9b.0x8000d8f0.0x7ffefffe.0x92345670.0x7644320.0x12345670 ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffeff8c.0xfffed88c.0x7ffed8ef.0xffffffff.0x8000ffff.0x1233566f.0x19997fff.0x7654321 ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffeff38.0xfffeb1e0.0x7ffffffe.0x80000000.0xfffefffe.0x24687fff.0xeca7fff.0x0 ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfffed88c.0x7ffed8ef.0xffffffff.0x8000ffff.0x1233566f.0x19997fff.0x7654321.0x1 ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffeff9b.0x8000d8f0.0x7ffefffe.0x92345670.0x7644320.0x12345670.0x7654322.0x2 ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000ff9c.0xfffed8ef.0x7fff566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3 ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffeff9b.0x12332f60.0x7fff4320.0x80000000.0xffff0000.0x12345672.0x7654324.0xf ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1233560c.0x7641c11.0x7fffffff.0x80000001.0xffff0001.0x12345673.0x7654330.0x10 ++vucaddh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x76442bd.0xffffd8f0.0x7fff0000.0x80000002.0xffff0002.0x1234567f.0x7654331.0x64 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffd8f0.0x7fff0000.0x80000002.0xffff0002.0x1234567f.0x7654331.0x64.0x2711 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffd8f1.0x7fff0001.0x80000003.0xffff000e.0x12345680.0x7654385.0x2710.0xffff0000 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffd8f2.0x7fff0002.0x8000000f.0xffff000f.0x123456d4.0x7656a31.0xffffffff.0xffffffff ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffd8f3.0x7fff000e.0x80000010.0xffff0063.0x12347d80.0x7644320.0xfffffffe.0xfffffffe ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8ff.0x7fff000f.0x80000064.0xffff270f.0x1233566f.0x764431f.0xfffffffd.0xfffffff2 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd900.0x7fff0063.0x80002710.0xfffefffe.0x1233566e.0x764431e.0xfffffff1.0xfffffff1 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd954.0x7fff270f.0x8000ffff.0xfffefffd.0x1233566d.0x7644312.0xfffffff0.0xffffff9d ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff0000.0x7ffefffe.0x8000fffe.0xfffefffc.0x12335661.0x7644311.0xffffff9c.0xffffd8f1 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffed8ef.0x7ffefffd.0x8000fffd.0xfffefff0.0x12335660.0x76442bd.0xffffd8f0.0x7fff0000 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffed8ee.0x7ffefffc.0x8000fff1.0xfffeffef.0x1233560c.0x7641c11.0x7fffffff.0x80000001 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffed8ed.0x7ffefff0.0x8000fff0.0xfffeff9b.0x12332f60.0x7fff4320.0x80000000.0xffff0000 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffed8e1.0x7ffeffef.0x8000ff9c.0xfffed8ef.0x7fff566f.0x87654321.0xffffffff.0x12345671 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffed8e0.0x7ffeff9b.0x8000d8f0.0x7ffefffe.0x92345670.0x7644320.0x12345670.0x7654322 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffed88c.0x7ffed8ef.0xffffffff.0x8000ffff.0x1233566f.0x19997fff.0x7654321.0x1 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfffeb1e0.0x7ffffffe.0x80000000.0xfffefffe.0x24687fff.0xeca7fff.0x0.0x2 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffed8ef.0xffffffff.0x8000ffff.0x1233566f.0x19997fff.0x7654321.0x1.0x3 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000d8f0.0x7ffefffe.0x92345670.0x7644320.0x12345670.0x7654322.0x2.0x4 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffed8ef.0x7fff566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12332f60.0x7fff4320.0x80000000.0xffff0000.0x12345672.0x7654324.0xf.0x11 ++vucaddh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7641c11.0x7fffffff.0x80000001.0xffff0001.0x12345673.0x7654330.0x10.0x65 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7fffffff.0x80000001.0xffff0001.0x12345673.0x7654330.0x10.0x65.0x2712 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7fff0000.0x80000002.0xffff0002.0x1234567f.0x7654331.0x64.0x2711.0xffff0001 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7fff0001.0x80000003.0xffff000e.0x12345680.0x7654385.0x2710.0xffff0000.0xffff0000 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7fff0002.0x8000000f.0xffff000f.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7fff000e.0x80000010.0xffff0063.0x12347d80.0x7644320.0xfffffffe.0xfffffffe.0xfffffff3 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fff000f.0x80000064.0xffff270f.0x1233566f.0x764431f.0xfffffffd.0xfffffff2.0xfffffff2 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fff0063.0x80002710.0xfffefffe.0x1233566e.0x764431e.0xfffffff1.0xfffffff1.0xffffff9e ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7fff270f.0x8000ffff.0xfffefffd.0x1233566d.0x7644312.0xfffffff0.0xffffff9d.0xffffd8f2 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7ffefffe.0x8000fffe.0xfffefffc.0x12335661.0x7644311.0xffffff9c.0xffffd8f1.0x7fff0001 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7ffefffd.0x8000fffd.0xfffefff0.0x12335660.0x76442bd.0xffffd8f0.0x7fff0000.0x80000002 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7ffefffc.0x8000fff1.0xfffeffef.0x1233560c.0x7641c11.0x7fffffff.0x80000001.0xffff0001 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7ffefff0.0x8000fff0.0xfffeff9b.0x12332f60.0x7fff4320.0x80000000.0xffff0000.0x12345672 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7ffeffef.0x8000ff9c.0xfffed8ef.0x7fff566f.0x87654321.0xffffffff.0x12345671.0x7654323 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7ffeff9b.0x8000d8f0.0x7ffefffe.0x92345670.0x7644320.0x12345670.0x7654322.0x2 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7ffed8ef.0xffffffff.0x8000ffff.0x1233566f.0x19997fff.0x7654321.0x1.0x3 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffffffe.0x80000000.0xfffefffe.0x24687fff.0xeca7fff.0x0.0x2.0x4 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0x8000ffff.0x1233566f.0x19997fff.0x7654321.0x1.0x3.0x5 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7ffefffe.0x92345670.0x7644320.0x12345670.0x7654322.0x2.0x4.0x11 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x7fff566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12 ++vucaddh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7fff4320.0x80000000.0xffff0000.0x12345672.0x7654324.0xf.0x11.0x66 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x80000000.0xffff0000.0x12345672.0x7654324.0xf.0x11.0x66.0x2713 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x80000001.0xffff0001.0x12345673.0x7654330.0x10.0x65.0x2712.0xffff0002 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x80000002.0xffff0002.0x1234567f.0x7654331.0x64.0x2711.0xffff0001.0xffff0001 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x80000003.0xffff000e.0x12345680.0x7654385.0x2710.0xffff0000.0xffff0000.0xffff0000 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x8000000f.0xffff000f.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x80000010.0xffff0063.0x12347d80.0x7644320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000064.0xffff270f.0x1233566f.0x764431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x80002710.0xfffefffe.0x1233566e.0x764431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x8000ffff.0xfffefffd.0x1233566d.0x7644312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fff0002 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x8000fffe.0xfffefffc.0x12335661.0x7644311.0xffffff9c.0xffffd8f1.0x7fff0001.0x80000003 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x8000fffd.0xfffefff0.0x12335660.0x76442bd.0xffffd8f0.0x7fff0000.0x80000002.0xffff0002 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x8000fff1.0xfffeffef.0x1233560c.0x7641c11.0x7fffffff.0x80000001.0xffff0001.0x12345673 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x8000fff0.0xfffeff9b.0x12332f60.0x7fff4320.0x80000000.0xffff0000.0x12345672.0x7654324 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x8000ff9c.0xfffed8ef.0x7fff566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x8000d8f0.0x7ffefffe.0x92345670.0x7644320.0x12345670.0x7654322.0x2.0x4 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffff.0x8000ffff.0x1233566f.0x19997fff.0x7654321.0x1.0x3.0x5 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xfffefffe.0x24687fff.0xeca7fff.0x0.0x2.0x4.0x6 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x8000ffff.0x1233566f.0x19997fff.0x7654321.0x1.0x3.0x5.0x12 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x92345670.0x7644320.0x12345670.0x7654322.0x2.0x4.0x11.0x13 ++vucaddh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67 ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff0000.0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xffff000e ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffff0001.0x12345673.0x7654330.0x10.0x65.0x2712.0xffff0002.0xffff000d ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffff0002.0x1234567f.0x7654331.0x64.0x2711.0xffff0001.0xffff0001.0xffff000c ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffff000e.0x12345680.0x7654385.0x2710.0xffff0000.0xffff0000.0xffff0000.0xffff0000 ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffff000f.0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffff0063.0x12347d80.0x7644320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff270f.0x1233566f.0x764431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffefffe.0x1233566e.0x764431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fff000e ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffefffd.0x1233566d.0x7644312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fff0002.0x8000000f ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffefffc.0x12335661.0x7644311.0xffffff9c.0xffffd8f1.0x7fff0001.0x80000003.0xffff000e ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffefff0.0x12335660.0x76442bd.0xffffd8f0.0x7fff0000.0x80000002.0xffff0002.0x1234567f ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffeffef.0x1233560c.0x7641c11.0x7fffffff.0x80000001.0xffff0001.0x12345673.0x7654330 ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffeff9b.0x12332f60.0x7fff4320.0x80000000.0xffff0000.0x12345672.0x7654324.0xf ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfffed8ef.0x7fff566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10 ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffefffe.0x92345670.0x7644320.0x12345670.0x7654322.0x2.0x4.0x11 ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000ffff.0x1233566f.0x19997fff.0x7654321.0x1.0x3.0x5.0x12 ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffefffe.0x24687fff.0xeca7fff.0x0.0x2.0x4.0x6.0x1e ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1233566f.0x19997fff.0x7654321.0x1.0x3.0x5.0x12.0x1f ++vucaddh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7644320.0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73 ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720 ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f.0xffff000f ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xffff000e.0xffff000e ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x12345673.0x7654330.0x10.0x65.0x2712.0xffff0002.0xffff000d.0xffff000d ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1234567f.0x7654331.0x64.0x2711.0xffff0001.0xffff0001.0xffff000c.0xffff0001 ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345680.0x7654385.0x2710.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000 ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x123456d4.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12347d80.0x7644320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900 ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1233566f.0x764431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fff000f ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1233566e.0x764431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fff000e.0x80000010 ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1233566d.0x7644312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fff0002.0x8000000f.0xffff000f ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x12335661.0x7644311.0xffffff9c.0xffffd8f1.0x7fff0001.0x80000003.0xffff000e.0x12345680 ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12335660.0x76442bd.0xffffd8f0.0x7fff0000.0x80000002.0xffff0002.0x1234567f.0x7654331 ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1233560c.0x7641c11.0x7fffffff.0x80000001.0xffff0001.0x12345673.0x7654330.0x10 ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12332f60.0x7fff4320.0x80000000.0xffff0000.0x12345672.0x7654324.0xf.0x11 ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fff566f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12 ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x92345670.0x7644320.0x12345670.0x7654322.0x2.0x4.0x11.0x13 ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1233566f.0x19997fff.0x7654321.0x1.0x3.0x5.0x12.0x1f ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x24687fff.0xeca7fff.0x0.0x2.0x4.0x6.0x1e.0x20 ++vucaddh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x19997fff.0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74.0x2774 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720.0xffff0063 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7654323.0x3.0x10.0x12.0x67.0x271f.0xffff000f.0xffff0062 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7654324.0xf.0x11.0x66.0x2713.0xffff000e.0xffff000e.0xffff0061 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654330.0x10.0x65.0x2712.0xffff0002.0xffff000d.0xffff000d.0xffff0055 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654331.0x64.0x2711.0xffff0001.0xffff0001.0xffff000c.0xffff0001.0xffff0054 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7654385.0x2710.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000.0xffff0000 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd954 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7644320.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd900.0x7fff0063 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x764431f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fff000f.0x80000064 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x764431e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fff000e.0x80000010.0xffff0063 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7644312.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fff0002.0x8000000f.0xffff000f.0x123456d4 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7644311.0xffffff9c.0xffffd8f1.0x7fff0001.0x80000003.0xffff000e.0x12345680.0x7654385 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x76442bd.0xffffd8f0.0x7fff0000.0x80000002.0xffff0002.0x1234567f.0x7654331.0x64 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7641c11.0x7fffffff.0x80000001.0xffff0001.0x12345673.0x7654330.0x10.0x65 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fff4320.0x80000000.0xffff0000.0x12345672.0x7654324.0xf.0x11.0x66 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7644320.0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x19997fff.0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74 ++vucaddh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xeca7fff.0x0.0x2.0x4.0x6.0x1e.0x20.0xc8 ++=== Running test on vucsubh=== ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffff.0xffff.0xffff.0xfff4.0xffff.0xffac.0xd954.0x12711 ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffe.0xfffe.0xfff3.0xfff3.0xffab.0xd900.0x10065.0x12712 ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffd.0xfff2.0xfff2.0xff9f.0xd8ff.0x10011.0x10066.0x12713 ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfff1.0xfff1.0xff9e.0xd8f3.0x10010.0x10012.0x10067.0x1271f ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfff0.0xff9d.0xd8f2.0x10004.0x10011.0x10013.0x10073.0x12720 ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xff9c.0xd8f1.0x10003.0x10005.0x10012.0x1001f.0x10074.0x12774 ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xd8f0.0x10002.0x10004.0x10006.0x1001e.0x10020.0x100c8.0x14e20 ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x10001.0x10003.0x10005.0x10012.0x1001f.0x10074.0x12774.0x80012711 ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x10002.0x10004.0x10011.0x10013.0x10073.0x12720.0x80010065.0x7fff2710 ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x10003.0x10010.0x10012.0x10067.0x1271f.0x80010011.0x7fff0064.0x12711 ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1000f.0x10011.0x10066.0x12713.0x80010010.0x7fff0010.0x10065.0xedccd0a0 ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x10010.0x10065.0x12712.0x80010004.0x7fff000f.0x10011.0xedcca9f4.0xf89be3ef ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x10064.0x12711.0x80010003.0x7fff0003.0x10010.0xedcca9a0.0xf89bbd43.0x2710 ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12710.0x80010002.0x7fff0002.0x10004.0xedcca99f.0xf89bbcef.0x64.0x270f ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80010001.0x7fff0001.0x10003.0xedcca993.0xf89bbcee.0x10.0x63.0x270e ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fff0000.0x10002.0xedcca992.0xf89bbce2.0xf.0xf.0x62.0x270d ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x10001.0xedcca991.0xf89bbce1.0x3.0xe.0xe.0x61.0x2701 ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcca990.0xf89bbce0.0x2.0x2.0xd.0xd.0x55.0x2700 ++vucsubh 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89bbcdf.0x1.0x1.0x1.0xc.0x1.0x54.0x26ac ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffff.0xffff.0xfff4.0xffff.0xffac.0xd954.0x12711.0x1 ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffe.0xfff3.0xfff3.0xffab.0xd900.0x10065.0x12712.0x2 ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfff2.0xfff2.0xff9f.0xd8ff.0x10011.0x10066.0x12713.0xe ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfff1.0xff9e.0xd8f3.0x10010.0x10012.0x10067.0x1271f.0xf ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xff9d.0xd8f2.0x10004.0x10011.0x10013.0x10073.0x12720.0x63 ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xd8f1.0x10003.0x10005.0x10012.0x1001f.0x10074.0x12774.0x270f ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x10002.0x10004.0x10006.0x1001e.0x10020.0x100c8.0x14e20.0x80000000 ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x10003.0x10005.0x10012.0x1001f.0x10074.0x12774.0x80012711.0x7fffffff ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x10004.0x10011.0x10013.0x10073.0x12720.0x80010065.0x7fff2710.0x0 ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x10010.0x10012.0x10067.0x1271f.0x80010011.0x7fff0064.0x12711.0xedcba98f ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x10011.0x10066.0x12713.0x80010010.0x7fff0010.0x10065.0xedccd0a0.0xf89abcde ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x10065.0x12712.0x80010004.0x7fff000f.0x10011.0xedcca9f4.0xf89be3ef.0xffffffff ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12711.0x80010003.0x7fff0003.0x10010.0xedcca9a0.0xf89bbd43.0x2710.0xfffffffe ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80010002.0x7fff0002.0x10004.0xedcca99f.0xf89bbcef.0x64.0x270f.0xfffffffd ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fff0001.0x10003.0xedcca993.0xf89bbcee.0x10.0x63.0x270e.0xfffffffc ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x10002.0xedcca992.0xf89bbce2.0xf.0xf.0x62.0x270d.0xfffffff0 ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcca991.0xf89bbce1.0x3.0xe.0xe.0x61.0x2701.0xffffffef ++vucsubh 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89bbce0.0x2.0x2.0xd.0xd.0x55.0x2700.0xffffff9b ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2.0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0xffff ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffff.0xfff4.0xffff.0xffac.0xd954.0x12711.0x1.0x1 ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfff3.0xfff3.0xffab.0xd900.0x10065.0x12712.0x2.0xd ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfff2.0xff9f.0xd8ff.0x10011.0x10066.0x12713.0xe.0xe ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xff9e.0xd8f3.0x10010.0x10012.0x10067.0x1271f.0xf.0x62 ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xd8f2.0x10004.0x10011.0x10013.0x10073.0x12720.0x63.0x270e ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x10003.0x10005.0x10012.0x1001f.0x10074.0x12774.0x270f.0x8000ffff ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x10004.0x10006.0x1001e.0x10020.0x100c8.0x14e20.0x80000000.0x7ffffffe ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x10005.0x10012.0x1001f.0x10074.0x12774.0x80012711.0x7fffffff.0xffff ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x10011.0x10013.0x10073.0x12720.0x80010065.0x7fff2710.0x0.0xedcba98e ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x10012.0x10067.0x1271f.0x80010011.0x7fff0064.0x12711.0xedcba98f.0xf89abcdd ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x10066.0x12713.0x80010010.0x7fff0010.0x10065.0xedccd0a0.0xf89abcde.0xfffffffe ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12712.0x80010004.0x7fff000f.0x10011.0xedcca9f4.0xf89be3ef.0xffffffff.0xfffffffd ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80010003.0x7fff0003.0x10010.0xedcca9a0.0xf89bbd43.0x2710.0xfffffffe.0xfffffffc ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fff0002.0x10004.0xedcca99f.0xf89bbcef.0x64.0x270f.0xfffffffd.0xfffffffb ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x10003.0xedcca993.0xf89bbcee.0x10.0x63.0x270e.0xfffffffc.0xffffffef ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcca992.0xf89bbce2.0xf.0xf.0x62.0x270d.0xfffffff0.0xffffffee ++vucsubh 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89bbce1.0x3.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x3.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffe ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0xc.0x1.0x54.0x26ac.0xffffd8ef.0xffff.0xffff ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfff4.0xffff.0xffac.0xd954.0x12711.0x1.0x1.0xc ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfff3.0xffab.0xd900.0x10065.0x12712.0x2.0xd.0xd ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xff9f.0xd8ff.0x10011.0x10066.0x12713.0xe.0xe.0x61 ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xd8f3.0x10010.0x10012.0x10067.0x1271f.0xf.0x62.0x270d ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x10004.0x10011.0x10013.0x10073.0x12720.0x63.0x270e.0x8000fffe ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x10005.0x10012.0x1001f.0x10074.0x12774.0x270f.0x8000ffff.0x7ffffffd ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x10006.0x1001e.0x10020.0x100c8.0x14e20.0x80000000.0x7ffffffe.0xfffe ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x10012.0x1001f.0x10074.0x12774.0x80012711.0x7fffffff.0xffff.0xedcba98d ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x10013.0x10073.0x12720.0x80010065.0x7fff2710.0x0.0xedcba98e.0xf89abcdc ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x10067.0x1271f.0x80010011.0x7fff0064.0x12711.0xedcba98f.0xf89abcdd.0xfffffffd ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12713.0x80010010.0x7fff0010.0x10065.0xedccd0a0.0xf89abcde.0xfffffffe.0xfffffffc ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80010004.0x7fff000f.0x10011.0xedcca9f4.0xf89be3ef.0xffffffff.0xfffffffd.0xfffffffb ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fff0003.0x10010.0xedcca9a0.0xf89bbd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x10004.0xedcca99f.0xf89bbcef.0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcca993.0xf89bbcee.0x10.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed ++vucsubh 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89bbce2.0xf.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfff2 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffe.0xfff3 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xc.0x1.0x54.0x26ac.0xffffd8ef.0xffff.0xffff.0xfff4 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffff.0xffac.0xd954.0x12711.0x1.0x1.0xc.0x1 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffab.0xd900.0x10065.0x12712.0x2.0xd.0xd.0x55 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xd8ff.0x10011.0x10066.0x12713.0xe.0xe.0x61.0x2701 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x10010.0x10012.0x10067.0x1271f.0xf.0x62.0x270d.0x8000fff2 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x10011.0x10013.0x10073.0x12720.0x63.0x270e.0x8000fffe.0x7ffffff1 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x10012.0x1001f.0x10074.0x12774.0x270f.0x8000ffff.0x7ffffffd.0xfff2 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1001e.0x10020.0x100c8.0x14e20.0x80000000.0x7ffffffe.0xfffe.0xedcba981 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1001f.0x10074.0x12774.0x80012711.0x7fffffff.0xffff.0xedcba98d.0xf89abcd0 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x10073.0x12720.0x80010065.0x7fff2710.0x0.0xedcba98e.0xf89abcdc.0xfffffff1 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1271f.0x80010011.0x7fff0064.0x12711.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80010010.0x7fff0010.0x10065.0xedccd0a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fff000f.0x10011.0xedcca9f4.0xf89be3ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x10010.0xedcca9a0.0xf89bbd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcca99f.0xf89bbcef.0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1 ++vucsubh 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89bbcee.0x10.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x10.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0 ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfff1 ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfff2.0xfff2 ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffe.0xfff3.0xfff3 ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x54.0x26ac.0xffffd8ef.0xffff.0xffff.0xfff4.0xffff ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffac.0xd954.0x12711.0x1.0x1.0xc.0x1.0x54 ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xd900.0x10065.0x12712.0x2.0xd.0xd.0x55.0x2700 ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x10011.0x10066.0x12713.0xe.0xe.0x61.0x2701.0x8000fff1 ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x10012.0x10067.0x1271f.0xf.0x62.0x270d.0x8000fff2.0x7ffffff0 ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x10013.0x10073.0x12720.0x63.0x270e.0x8000fffe.0x7ffffff1.0xfff1 ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1001f.0x10074.0x12774.0x270f.0x8000ffff.0x7ffffffd.0xfff2.0xedcba980 ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x10020.0x100c8.0x14e20.0x80000000.0x7ffffffe.0xfffe.0xedcba981.0xf89abccf ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x10074.0x12774.0x80012711.0x7fffffff.0xffff.0xedcba98d.0xf89abcd0.0xfffffff0 ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12720.0x80010065.0x7fff2710.0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80010011.0x7fff0064.0x12711.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fff0010.0x10065.0xedccd0a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x10011.0xedcca9f4.0xf89be3ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1 ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcca9a0.0xf89bbd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0 ++vucsubh 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89bbcef.0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xff9d ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfff1.0xff9e ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfff2.0xfff2.0xff9f ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x55.0x2700.0xffffff9b.0xffffd8ee.0xfffe.0xfff3.0xfff3.0xffab ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x54.0x26ac.0xffffd8ef.0xffff.0xffff.0xfff4.0xffff.0xffac ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xd954.0x12711.0x1.0x1.0xc.0x1.0x54.0x26ac ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x10065.0x12712.0x2.0xd.0xd.0x55.0x2700.0x8000ff9d ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x10066.0x12713.0xe.0xe.0x61.0x2701.0x8000fff1.0x7fffff9c ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x10067.0x1271f.0xf.0x62.0x270d.0x8000fff2.0x7ffffff0.0xff9d ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x10073.0x12720.0x63.0x270e.0x8000fffe.0x7ffffff1.0xfff1.0xedcba92c ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x10074.0x12774.0x270f.0x8000ffff.0x7ffffffd.0xfff2.0xedcba980.0xf89abc7b ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x100c8.0x14e20.0x80000000.0x7ffffffe.0xfffe.0xedcba981.0xf89abccf.0xffffff9c ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12774.0x80012711.0x7fffffff.0xffff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80010065.0x7fff2710.0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fff0064.0x12711.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99 ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x10065.0xedccd0a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcca9f4.0xf89be3ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c ++vucsubh 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89bbd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xd8f1 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xff9d.0xd8f2 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfff1.0xff9e.0xd8f3 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xfff2.0xfff2.0xff9f.0xd8ff ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2700.0xffffff9b.0xffffd8ee.0xfffe.0xfff3.0xfff3.0xffab.0xd900 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x26ac.0xffffd8ef.0xffff.0xffff.0xfff4.0xffff.0xffac.0xd954 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x12711.0x1.0x1.0xc.0x1.0x54.0x26ac.0x8000d8f1 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x12712.0x2.0xd.0xd.0x55.0x2700.0x8000ff9d.0x7fffd8f0 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x12713.0xe.0xe.0x61.0x2701.0x8000fff1.0x7fffff9c.0xd8f1 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1271f.0xf.0x62.0x270d.0x8000fff2.0x7ffffff0.0xff9d.0xedcb8280 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12720.0x63.0x270e.0x8000fffe.0x7ffffff1.0xfff1.0xedcba92c.0xf89a95cf ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x12774.0x270f.0x8000ffff.0x7ffffffd.0xfff2.0xedcba980.0xf89abc7b.0xffffd8f0 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x14e20.0x80000000.0x7ffffffe.0xfffe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80012711.0x7fffffff.0xffff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fff2710.0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x12711.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedccd0a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0 ++vucsubh 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89be3ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x7fff0000 ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xd8f1.0x7fff0001 ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xff9d.0xd8f2.0x7fff0002 ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xfff1.0xff9e.0xd8f3.0x7fff000e ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffef.0xffffff9a.0xffffd8ed.0xfff2.0xfff2.0xff9f.0xd8ff.0x7fff000f ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9b.0xffffd8ee.0xfffe.0xfff3.0xfff3.0xffab.0xd900.0x7fff0063 ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ef.0xffff.0xffff.0xfff4.0xffff.0xffac.0xd954.0x7fff270f ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0xc.0x1.0x54.0x26ac.0x8000d8f1.0x7fffffff ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2.0xd.0xd.0x55.0x2700.0x8000ff9d.0x7fffd8f0.0x7fff0000 ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xe.0xe.0x61.0x2701.0x8000fff1.0x7fffff9c.0xd8f1.0x6dcba98f ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xf.0x62.0x270d.0x8000fff2.0x7ffffff0.0xff9d.0xedcb8280.0x789abcde ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x63.0x270e.0x8000fffe.0x7ffffff1.0xfff1.0xedcba92c.0xf89a95cf.0x7fffffff ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270f.0x8000ffff.0x7ffffffd.0xfff2.0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7ffffffe.0xfffe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0xffff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0 ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef ++vucsubh 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x8000d8f0 ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80010001 ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x7fff0000.0x80010002 ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xd8f1.0x7fff0001.0x80010003 ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0xff9d.0xd8f2.0x7fff0002.0x8001000f ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffee.0xffffff99.0xffffd8e1.0xfff1.0xff9e.0xd8f3.0x7fff000e.0x80010010 ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9a.0xffffd8ed.0xfff2.0xfff2.0xff9f.0xd8ff.0x7fff000f.0x80010064 ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ee.0xfffe.0xfff3.0xfff3.0xffab.0xd900.0x7fff0063.0x80012710 ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffff.0xffff.0xfff4.0xffff.0xffac.0xd954.0x7fff270f.0x80000001 ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0xc.0x1.0x54.0x26ac.0x8000d8f1.0x7fffffff.0x80010001 ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xd.0xd.0x55.0x2700.0x8000ff9d.0x7fffd8f0.0x7fff0000.0x8000a990 ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xe.0x61.0x2701.0x8000fff1.0x7fffff9c.0xd8f1.0x6dcba98f.0x8000bcdf ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x62.0x270d.0x8000fff2.0x7ffffff0.0xff9d.0xedcb8280.0x789abcde.0x80000000 ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270e.0x8000fffe.0x7ffffff1.0xfff1.0xedcba92c.0xf89a95cf.0x7fffffff.0x8000ffff ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8000ffff.0x7ffffffd.0xfff2.0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x8000fffe ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffffe.0xfffe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x8000fffd ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x8000fff1 ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x8000fff0 ++vucsubh 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x8000ff9c ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x8000ff9c.0xffffd8ef ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x8000d8f0.0x0 ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80010001.0x1 ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffa.0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x7fff0000.0x80010002.0x2 ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xd8f1.0x7fff0001.0x80010003.0xe ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffed.0xffffff8d.0xffffd8e0.0xff9d.0xd8f2.0x7fff0002.0x8001000f.0xf ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff99.0xffffd8e1.0xfff1.0xff9e.0xd8f3.0x7fff000e.0x80010010.0x63 ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ed.0xfff2.0xfff2.0xff9f.0xd8ff.0x7fff000f.0x80010064.0x270f ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffe.0xfff3.0xfff3.0xffab.0xd900.0x7fff0063.0x80012710.0x80000000 ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff.0xfff4.0xffff.0xffac.0xd954.0x7fff270f.0x80000001.0x7fffffff ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xc.0x1.0x54.0x26ac.0x8000d8f1.0x7fffffff.0x80010001.0xedcba98f ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xd.0x55.0x2700.0x8000ff9d.0x7fffd8f0.0x7fff0000.0x8000a990.0xf89abcde ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x61.0x2701.0x8000fff1.0x7fffff9c.0xd8f1.0x6dcba98f.0x8000bcdf.0xffffffff ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270d.0x8000fff2.0x7ffffff0.0xff9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8000fffe.0x7ffffff1.0xfff1.0xedcba92c.0xf89a95cf.0x7fffffff.0x8000ffff.0xfffffffd ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffffd.0xfff2.0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x8000fffe.0xfffffffc ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x8000fffd.0xfffffff0 ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x8000fff1.0xffffffef ++vucsubh 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x8000fff0.0xffffff9b ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x8000fff0.0xffffff9b.0x12342f60 ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x8000ff9c.0xffffd8ef.0x12355671 ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x8000d8f0.0x0.0x12355672 ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80010001.0x1.0x12355673 ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffe2.0xffffffe0.0xffffff38.0xffffb1e0.0x7fff0000.0x80010002.0x2.0x1235567f ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffe1.0xffffff8c.0xffffd88c.0xd8f1.0x7fff0001.0x80010003.0xe.0x12355680 ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff8d.0xffffd8e0.0xff9d.0xd8f2.0x7fff0002.0x8001000f.0xf.0x123556d4 ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8e1.0xfff1.0xff9e.0xd8f3.0x7fff000e.0x80010010.0x63.0x12357d80 ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfff2.0xfff2.0xff9f.0xd8ff.0x7fff000f.0x80010064.0x270f.0x92355671 ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfff3.0xfff3.0xffab.0xd900.0x7fff0063.0x80012710.0x80000000.0x7fff5670 ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfff4.0xffff.0xffac.0xd954.0x7fff270f.0x80000001.0x7fffffff.0x12355671 ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x54.0x26ac.0x8000d8f1.0x7fffffff.0x80010001.0xedcba98f.0xacf134f ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x55.0x2700.0x8000ff9d.0x7fffd8f0.0x7fff0000.0x8000a990.0xf89abcde.0x12345670 ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2701.0x8000fff1.0x7fffff9c.0xd8f1.0x6dcba98f.0x8000bcdf.0xffffffff.0x1234566f ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8000fff2.0x7ffffff0.0xff9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffff1.0xfff1.0xedcba92c.0xf89a95cf.0x7fffffff.0x8000ffff.0xfffffffd.0x1234566d ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfff2.0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x8000fffe.0xfffffffc.0x12345661 ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x8000fffd.0xfffffff0.0x12345660 ++vucsubh 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x8000fff1.0xffffffef.0x1234560c ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x8000fff1.0xffffffef.0x1234560c.0x7651c11 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x8000fff0.0xffffff9b.0x12342f60.0x7664322 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x8000ff9c.0xffffd8ef.0x12355671.0x7664323 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x8000d8f0.0x0.0x12355672.0x7664324 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x80010001.0x1.0x12355673.0x7664330 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffe0.0xffffff38.0xffffb1e0.0x7fff0000.0x80010002.0x2.0x1235567f.0x7664331 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff8c.0xffffd88c.0xd8f1.0x7fff0001.0x80010003.0xe.0x12355680.0x7664385 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8e0.0xff9d.0xd8f2.0x7fff0002.0x8001000f.0xf.0x123556d4.0x7666a31 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfff1.0xff9e.0xd8f3.0x7fff000e.0x80010010.0x63.0x12357d80.0x87664322 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfff2.0xff9f.0xd8ff.0x7fff000f.0x80010064.0x270f.0x92355671.0x7fff4321 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfff3.0xffab.0xd900.0x7fff0063.0x80012710.0x80000000.0x7fff5670.0x7664322 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffff.0xffac.0xd954.0x7fff270f.0x80000001.0x7fffffff.0x12355671.0xf531ecb1 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x54.0x26ac.0x8000d8f1.0x7fffffff.0x80010001.0xedcba98f.0xacf134f.0x7654321 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2700.0x8000ff9d.0x7fffd8f0.0x7fff0000.0x8000a990.0xf89abcde.0x12345670.0x7654320 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8000fff1.0x7fffff9c.0xd8f1.0x6dcba98f.0x8000bcdf.0xffffffff.0x1234566f.0x765431f ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffff0.0xff9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfff1.0xedcba92c.0xf89a95cf.0x7fffffff.0x8000ffff.0xfffffffd.0x1234566d.0x7654312 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba980.0xf89abc7b.0xffffd8f0.0x7ffffffe.0x8000fffe.0xfffffffc.0x12345661.0x7654311 ++vucsubh 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x8000fffd.0xfffffff0.0x12345660.0x76542bd ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff9c.0xffffd8ef.0x7ffffffd.0x8000fffd.0xfffffff0.0x12345660.0x76542bd.0xd8f0 ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffff9b.0xffffd8ee.0x7ffffffc.0x8000fff1.0xffffffef.0x1234560c.0x7651c11.0x10001 ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff9a.0xffffd8ed.0x7ffffff0.0x8000fff0.0xffffff9b.0x12342f60.0x7664322.0x10002 ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff99.0xffffd8e1.0x7fffffef.0x8000ff9c.0xffffd8ef.0x12355671.0x7664323.0x10003 ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff8d.0xffffd8e0.0x7fffff9b.0x8000d8f0.0x0.0x12355672.0x7664324.0x1000f ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff8c.0xffffd88c.0x7fffd8ef.0x80010001.0x1.0x12355673.0x7664330.0x10010 ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff38.0xffffb1e0.0x7fff0000.0x80010002.0x2.0x1235567f.0x7664331.0x10064 ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd88c.0xd8f1.0x7fff0001.0x80010003.0xe.0x12355680.0x7664385.0x12710 ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xff9d.0xd8f2.0x7fff0002.0x8001000f.0xf.0x123556d4.0x7666a31.0x80010001 ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xff9e.0xd8f3.0x7fff000e.0x80010010.0x63.0x12357d80.0x87664322.0x7fff0000 ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xff9f.0xd8ff.0x7fff000f.0x80010064.0x270f.0x92355671.0x7fff4321.0x10001 ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffab.0xd900.0x7fff0063.0x80012710.0x80000000.0x7fff5670.0x7664322.0xedcca990 ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffac.0xd954.0x7fff270f.0x80000001.0x7fffffff.0x12355671.0xf531ecb1.0xf89bbcdf ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x26ac.0x8000d8f1.0x7fffffff.0x80010001.0xedcba98f.0xacf134f.0x7654321.0xffff ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8000ff9d.0x7fffd8f0.0x7fff0000.0x8000a990.0xf89abcde.0x12345670.0x7654320.0xfffe ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffff9c.0xd8f1.0x6dcba98f.0x8000bcdf.0xffffffff.0x1234566f.0x765431f.0xfffd ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xff9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfff1 ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba92c.0xf89a95cf.0x7fffffff.0x8000ffff.0xfffffffd.0x1234566d.0x7654312.0xfff0 ++vucsubh 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abc7b.0xffffd8f0.0x7ffffffe.0x8000fffe.0xfffffffc.0x12345661.0x7654311.0xff9c ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffd8f0.0x7ffffffe.0x8000fffe.0xfffffffc.0x12345661.0x7654311.0xff9c.0xd8f1 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffd8ef.0x7ffffffd.0x8000fffd.0xfffffff0.0x12345660.0x76542bd.0xd8f0.0x10002 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffd8ee.0x7ffffffc.0x8000fff1.0xffffffef.0x1234560c.0x7651c11.0x10001.0x10003 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffd8ed.0x7ffffff0.0x8000fff0.0xffffff9b.0x12342f60.0x7664322.0x10002.0x10004 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8e1.0x7fffffef.0x8000ff9c.0xffffd8ef.0x12355671.0x7664323.0x10003.0x10010 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd8e0.0x7fffff9b.0x8000d8f0.0x0.0x12355672.0x7664324.0x1000f.0x10011 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd88c.0x7fffd8ef.0x80010001.0x1.0x12355673.0x7664330.0x10010.0x10065 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffb1e0.0x7fff0000.0x80010002.0x2.0x1235567f.0x7664331.0x10064.0x12711 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xd8f1.0x7fff0001.0x80010003.0xe.0x12355680.0x7664385.0x12710.0x80010002 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xd8f2.0x7fff0002.0x8001000f.0xf.0x123556d4.0x7666a31.0x80010001.0x7fff0001 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xd8f3.0x7fff000e.0x80010010.0x63.0x12357d80.0x87664322.0x7fff0000.0x10002 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xd8ff.0x7fff000f.0x80010064.0x270f.0x92355671.0x7fff4321.0x10001.0xedcca991 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xd900.0x7fff0063.0x80012710.0x80000000.0x7fff5670.0x7664322.0xedcca990.0xf89bbce0 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xd954.0x7fff270f.0x80000001.0x7fffffff.0x12355671.0xf531ecb1.0xf89bbcdf.0x1 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8000d8f1.0x7fffffff.0x80010001.0xedcba98f.0xacf134f.0x7654321.0xffff.0xffff ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffd8f0.0x7fff0000.0x8000a990.0xf89abcde.0x12345670.0x7654320.0xfffe.0xfffe ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xd8f1.0x6dcba98f.0x8000bcdf.0xffffffff.0x1234566f.0x765431f.0xfffd.0xfff2 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfff1.0xfff1 ++vucsubh 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89a95cf.0x7fffffff.0x8000ffff.0xfffffffd.0x1234566d.0x7654312.0xfff0.0xff9d ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7fffffff.0x8000ffff.0xfffffffd.0x1234566d.0x7654312.0xfff0.0xff9d.0xd8f2 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7ffffffe.0x8000fffe.0xfffffffc.0x12345661.0x7654311.0xff9c.0xd8f1.0x10003 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7ffffffd.0x8000fffd.0xfffffff0.0x12345660.0x76542bd.0xd8f0.0x10002.0x10004 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7ffffffc.0x8000fff1.0xffffffef.0x1234560c.0x7651c11.0x10001.0x10003.0x10005 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7ffffff0.0x8000fff0.0xffffff9b.0x12342f60.0x7664322.0x10002.0x10004.0x10011 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fffffef.0x8000ff9c.0xffffd8ef.0x12355671.0x7664323.0x10003.0x10010.0x10012 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffff9b.0x8000d8f0.0x0.0x12355672.0x7664324.0x1000f.0x10011.0x10066 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7fffd8ef.0x80010001.0x1.0x12355673.0x7664330.0x10010.0x10065.0x12712 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7fff0000.0x80010002.0x2.0x1235567f.0x7664331.0x10064.0x12711.0x80010003 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7fff0001.0x80010003.0xe.0x12355680.0x7664385.0x12710.0x80010002.0x7fff0002 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7fff0002.0x8001000f.0xf.0x123556d4.0x7666a31.0x80010001.0x7fff0001.0x10003 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7fff000e.0x80010010.0x63.0x12357d80.0x87664322.0x7fff0000.0x10002.0xedcca992 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7fff000f.0x80010064.0x270f.0x92355671.0x7fff4321.0x10001.0xedcca991.0xf89bbce1 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7fff0063.0x80012710.0x80000000.0x7fff5670.0x7664322.0xedcca990.0xf89bbce0.0x2 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7fff270f.0x80000001.0x7fffffff.0x12355671.0xf531ecb1.0xf89bbcdf.0x1.0x1 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x80010001.0xedcba98f.0xacf134f.0x7654321.0xffff.0xffff.0xffff ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7fff0000.0x8000a990.0xf89abcde.0x12345670.0x7654320.0xfffe.0xfffe.0xfff3 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x6dcba98f.0x8000bcdf.0xffffffff.0x1234566f.0x765431f.0xfffd.0xfff2.0xfff2 ++vucsubh 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfff1.0xfff1.0xff9e ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x80000000.0xfffffffe.0x1234566e.0x765431e.0xfff1.0xfff1.0xff9e.0xd8f3 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x8000ffff.0xfffffffd.0x1234566d.0x7654312.0xfff0.0xff9d.0xd8f2.0x10004 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x8000fffe.0xfffffffc.0x12345661.0x7654311.0xff9c.0xd8f1.0x10003.0x10005 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x8000fffd.0xfffffff0.0x12345660.0x76542bd.0xd8f0.0x10002.0x10004.0x10006 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x8000fff1.0xffffffef.0x1234560c.0x7651c11.0x10001.0x10003.0x10005.0x10012 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x8000fff0.0xffffff9b.0x12342f60.0x7664322.0x10002.0x10004.0x10011.0x10013 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x8000ff9c.0xffffd8ef.0x12355671.0x7664323.0x10003.0x10010.0x10012.0x10067 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x8000d8f0.0x0.0x12355672.0x7664324.0x1000f.0x10011.0x10066.0x12713 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x80010001.0x1.0x12355673.0x7664330.0x10010.0x10065.0x12712.0x80010004 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x80010002.0x2.0x1235567f.0x7664331.0x10064.0x12711.0x80010003.0x7fff0003 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x80010003.0xe.0x12355680.0x7664385.0x12710.0x80010002.0x7fff0002.0x10004 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x8001000f.0xf.0x123556d4.0x7666a31.0x80010001.0x7fff0001.0x10003.0xedcca993 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x80010010.0x63.0x12357d80.0x87664322.0x7fff0000.0x10002.0xedcca992.0xf89bbce2 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x80010064.0x270f.0x92355671.0x7fff4321.0x10001.0xedcca991.0xf89bbce1.0x3 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80012710.0x80000000.0x7fff5670.0x7664322.0xedcca990.0xf89bbce0.0x2.0x2 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000001.0x7fffffff.0x12355671.0xf531ecb1.0xf89bbcdf.0x1.0x1.0x1 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x80010001.0xedcba98f.0xacf134f.0x7654321.0xffff.0xffff.0xffff.0xfff4 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x8000a990.0xf89abcde.0x12345670.0x7654320.0xfffe.0xfffe.0xfff3.0xfff3 ++vucsubh 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x8000bcdf.0xffffffff.0x1234566f.0x765431f.0xfffd.0xfff2.0xfff2.0xff9f ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0x1234566f.0x765431f.0xfffd.0xfff2.0xfff2.0xff9f.0xd8ff ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0x1234566e.0x765431e.0xfff1.0xfff1.0xff9e.0xd8f3.0x10010 ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffd.0x1234566d.0x7654312.0xfff0.0xff9d.0xd8f2.0x10004.0x10011 ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffc.0x12345661.0x7654311.0xff9c.0xd8f1.0x10003.0x10005.0x10012 ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0x12345660.0x76542bd.0xd8f0.0x10002.0x10004.0x10006.0x1001e ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffef.0x1234560c.0x7651c11.0x10001.0x10003.0x10005.0x10012.0x1001f ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9b.0x12342f60.0x7664322.0x10002.0x10004.0x10011.0x10013.0x10073 ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ef.0x12355671.0x7664323.0x10003.0x10010.0x10012.0x10067.0x1271f ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x12355672.0x7664324.0x1000f.0x10011.0x10066.0x12713.0x80010010 ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x12355673.0x7664330.0x10010.0x10065.0x12712.0x80010004.0x7fff000f ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2.0x1235567f.0x7664331.0x10064.0x12711.0x80010003.0x7fff0003.0x10010 ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xe.0x12355680.0x7664385.0x12710.0x80010002.0x7fff0002.0x10004.0xedcca99f ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xf.0x123556d4.0x7666a31.0x80010001.0x7fff0001.0x10003.0xedcca993.0xf89bbcee ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x63.0x12357d80.0x87664322.0x7fff0000.0x10002.0xedcca992.0xf89bbce2.0xf ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270f.0x92355671.0x7fff4321.0x10001.0xedcca991.0xf89bbce1.0x3.0xe ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7fff5670.0x7664322.0xedcca990.0xf89bbce0.0x2.0x2.0xd ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x12355671.0xf531ecb1.0xf89bbcdf.0x1.0x1.0x1.0xc ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98f.0xacf134f.0x7654321.0xffff.0xffff.0xffff.0xfff4.0xffff ++vucsubh 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcde.0x12345670.0x7654320.0xfffe.0xfffe.0xfff3.0xfff3.0xffab ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x12345670.0x7654320.0xfffe.0xfffe.0xfff3.0xfff3.0xffab.0xd900 ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1234566f.0x765431f.0xfffd.0xfff2.0xfff2.0xff9f.0xd8ff.0x10011 ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1234566e.0x765431e.0xfff1.0xfff1.0xff9e.0xd8f3.0x10010.0x10012 ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1234566d.0x7654312.0xfff0.0xff9d.0xd8f2.0x10004.0x10011.0x10013 ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12345661.0x7654311.0xff9c.0xd8f1.0x10003.0x10005.0x10012.0x1001f ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345660.0x76542bd.0xd8f0.0x10002.0x10004.0x10006.0x1001e.0x10020 ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1234560c.0x7651c11.0x10001.0x10003.0x10005.0x10012.0x1001f.0x10074 ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12342f60.0x7664322.0x10002.0x10004.0x10011.0x10013.0x10073.0x12720 ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x12355671.0x7664323.0x10003.0x10010.0x10012.0x10067.0x1271f.0x80010011 ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x12355672.0x7664324.0x1000f.0x10011.0x10066.0x12713.0x80010010.0x7fff0010 ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x12355673.0x7664330.0x10010.0x10065.0x12712.0x80010004.0x7fff000f.0x10011 ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1235567f.0x7664331.0x10064.0x12711.0x80010003.0x7fff0003.0x10010.0xedcca9a0 ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12355680.0x7664385.0x12710.0x80010002.0x7fff0002.0x10004.0xedcca99f.0xf89bbcef ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x123556d4.0x7666a31.0x80010001.0x7fff0001.0x10003.0xedcca993.0xf89bbcee.0x10 ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12357d80.0x87664322.0x7fff0000.0x10002.0xedcca992.0xf89bbce2.0xf.0xf ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x92355671.0x7fff4321.0x10001.0xedcca991.0xf89bbce1.0x3.0xe.0xe ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fff5670.0x7664322.0xedcca990.0xf89bbce0.0x2.0x2.0xd.0xd ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x12355671.0xf531ecb1.0xf89bbcdf.0x1.0x1.0x1.0xc.0x1 ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubh 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xacf134f.0x7654321.0xffff.0xffff.0xffff.0xfff4.0xffff.0xffac ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7654321.0xffff.0xffff.0xffff.0xfff4.0xffff.0xffac.0xd954 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7654320.0xfffe.0xfffe.0xfff3.0xfff3.0xffab.0xd900.0x10065 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x765431f.0xfffd.0xfff2.0xfff2.0xff9f.0xd8ff.0x10011.0x10066 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x765431e.0xfff1.0xfff1.0xff9e.0xd8f3.0x10010.0x10012.0x10067 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654312.0xfff0.0xff9d.0xd8f2.0x10004.0x10011.0x10013.0x10073 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654311.0xff9c.0xd8f1.0x10003.0x10005.0x10012.0x1001f.0x10074 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x76542bd.0xd8f0.0x10002.0x10004.0x10006.0x1001e.0x10020.0x100c8 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7651c11.0x10001.0x10003.0x10005.0x10012.0x1001f.0x10074.0x12774 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7664322.0x10002.0x10004.0x10011.0x10013.0x10073.0x12720.0x80010065 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7664323.0x10003.0x10010.0x10012.0x10067.0x1271f.0x80010011.0x7fff0064 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7664324.0x1000f.0x10011.0x10066.0x12713.0x80010010.0x7fff0010.0x10065 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7664330.0x10010.0x10065.0x12712.0x80010004.0x7fff000f.0x10011.0xedcca9f4 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7664331.0x10064.0x12711.0x80010003.0x7fff0003.0x10010.0xedcca9a0.0xf89bbd43 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7664385.0x12710.0x80010002.0x7fff0002.0x10004.0xedcca99f.0xf89bbcef.0x64 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7666a31.0x80010001.0x7fff0001.0x10003.0xedcca993.0xf89bbcee.0x10.0x63 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x87664322.0x7fff0000.0x10002.0xedcca992.0xf89bbce2.0xf.0xf.0x62 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fff4321.0x10001.0xedcca991.0xf89bbce1.0x3.0xe.0xe.0x61 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7664322.0xedcca990.0xf89bbce0.0x2.0x2.0xd.0xd.0x55 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf531ecb1.0xf89bbcdf.0x1.0x1.0x1.0xc.0x1.0x54 ++vucsubh 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++=== Running test on vucaddb=== ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x2.0x4.0x6.0x1e.0x20.0x7f.0x4e20 ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x3.0x5.0x12.0x1f.0x74.0x2774.0xffff260f ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x4.0x11.0x13.0x73.0x2720.0xffffff63.0xffff260e ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0x10.0x12.0x67.0x271f.0xffffff0f.0xffffff62.0xffff260d ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x11.0x66.0x2713.0xffffff0e.0xffffff0e.0xffffff61.0xffff2601 ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x65.0x2712.0xffffff02.0xffffff0d.0xffffff0d.0xffffff55.0xffff2600 ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2711.0xffffff01.0xffffff01.0xffffff0c.0xffffff01.0xffffff54.0xffff26ac ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00 ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd854.0x7fff260f ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd800.0x7fffff63.0x80002710 ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffff0f.0x80000064.0xffff260f ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffff0e.0x80000010.0xffffff63.0x12347d7f ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffff02.0x8000000f.0xffffff0f.0x1234567f.0x7656a31 ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f1.0x7fffff01.0x80000003.0xffffff0e.0x1234567f.0x765437f.0x2710 ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffff00.0x80000002.0xffffff02.0x1234567f.0x7654331.0x64.0x2711 ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000001.0xffffff01.0x12345673.0x7654330.0x10.0x65.0x2712 ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffff00.0x12345672.0x7654324.0xf.0x11.0x66.0x2713 ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720 ++vucaddb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74.0x2774 ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x3.0x5.0x12.0x1f.0x74.0x2774.0xffff260f ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2.0x4.0x6.0x1e.0x20.0x7f.0x4e20.0xfefefefe ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x3.0x5.0x12.0x1f.0x74.0x2774.0xffff260f.0xfefefefd ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x4.0x11.0x13.0x73.0x2720.0xffffff63.0xffff260e.0xfefefefc ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x10.0x12.0x67.0x271f.0xffffff0f.0xffffff62.0xffff260d.0xfefefef0 ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x11.0x66.0x2713.0xffffff0e.0xffffff0e.0xffffff61.0xffff2601.0xfefefeef ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x65.0x2712.0xffffff02.0xffffff0d.0xffffff0d.0xffffff55.0xffff2600.0xfefefe9b ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2711.0xffffff01.0xffffff01.0xffffff0c.0xffffff01.0xffffff54.0xffff26ac.0xfefed7ef ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0x7efefefe ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd854.0x7fff260f.0x80ffffff ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd800.0x7fffff63.0x80002710.0xfefefefe ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffff0f.0x80000064.0xffff260f.0x1133556f ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffff0e.0x80000010.0xffffff63.0x12347d7f.0x6644220 ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9d.0xffffd8f2.0x7fffff02.0x8000000f.0xffffff0f.0x1234567f.0x7656a31.0xffffffff ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f1.0x7fffff01.0x80000003.0xffffff0e.0x1234567f.0x765437f.0x2710.0xffffff00 ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffff00.0x80000002.0xffffff02.0x1234567f.0x7654331.0x64.0x2711.0xffffff01 ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000001.0xffffff01.0x12345673.0x7654330.0x10.0x65.0x2712.0xffffff02 ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff00.0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xffffff0e ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f.0xffffff0f ++vucaddb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720.0xffffff63 ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2.0x4.0x11.0x13.0x73.0x2720.0xffffff63.0xffff260e ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x3.0x5.0x12.0x1f.0x74.0x2774.0xffff260f.0xfefefefd ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x4.0x6.0x1e.0x20.0x7f.0x4e20.0xfefefefe.0xfefefefc ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x5.0x12.0x1f.0x74.0x2774.0xffff260f.0xfefefefd.0xfefefefb ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x11.0x13.0x73.0x2720.0xffffff63.0xffff260e.0xfefefefc.0xfefefeef ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12.0x67.0x271f.0xffffff0f.0xffffff62.0xffff260d.0xfefefef0.0xfefefeee ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x66.0x2713.0xffffff0e.0xffffff0e.0xffffff61.0xffff2601.0xfefefeef.0xfefefe9a ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2712.0xffffff02.0xffffff0d.0xffffff0d.0xffffff55.0xffff2600.0xfefefe9b.0xfefed7ee ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffff01.0xffffff01.0xffffff0c.0xffffff01.0xffffff54.0xffff26ac.0xfefed7ef.0x7efefefd ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0x7efefefe.0x80fffffe ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd854.0x7fff260f.0x80ffffff.0xfefefefd ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff3.0xfffffff3.0xffffffab.0xffffd800.0x7fffff63.0x80002710.0xfefefefe.0x1133556e ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffff0f.0x80000064.0xffff260f.0x1133556f.0x664421f ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9e.0xffffd8f3.0x7fffff0e.0x80000010.0xffffff63.0x12347d7f.0x6644220.0xfffffffe ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f2.0x7fffff02.0x8000000f.0xffffff0f.0x1234567f.0x7656a31.0xffffffff.0xffffffff ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffff01.0x80000003.0xffffff0e.0x1234567f.0x765437f.0x2710.0xffffff00.0xffffff00 ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000002.0xffffff02.0x1234567f.0x7654331.0x64.0x2711.0xffffff01.0xffffff01 ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff01.0x12345673.0x7654330.0x10.0x65.0x2712.0xffffff02.0xffffff0d ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xffffff0e.0xffffff0e ++vucaddb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654323.0x3.0x10.0x12.0x67.0x271f.0xffffff0f.0xffffff62 ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x3.0x10.0x12.0x67.0x271f.0xffffff0f.0xffffff62.0xffff260d ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x4.0x11.0x13.0x73.0x2720.0xffffff63.0xffff260e.0xfefefefc ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x5.0x12.0x1f.0x74.0x2774.0xffff260f.0xfefefefd.0xfefefefb ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x6.0x1e.0x20.0x7f.0x4e20.0xfefefefe.0xfefefefc.0xfefefefa ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12.0x1f.0x74.0x2774.0xffff260f.0xfefefefd.0xfefefefb.0xfefefeee ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x13.0x73.0x2720.0xffffff63.0xffff260e.0xfefefefc.0xfefefeef.0xfefefeed ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x67.0x271f.0xffffff0f.0xffffff62.0xffff260d.0xfefefef0.0xfefefeee.0xfefefe99 ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2713.0xffffff0e.0xffffff0e.0xffffff61.0xffff2601.0xfefefeef.0xfefefe9a.0xfefed7ed ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffff02.0xffffff0d.0xffffff0d.0xffffff55.0xffff2600.0xfefefe9b.0xfefed7ee.0x7efefefc ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffff01.0xffffff0c.0xffffff01.0xffffff54.0xffff26ac.0xfefed7ef.0x7efefefd.0x80fffffd ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0x7efefefe.0x80fffffe.0xfefefefc ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff4.0xffffffff.0xffffffac.0xffffd854.0x7fff260f.0x80ffffff.0xfefefefd.0x1133556d ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff3.0xffffffab.0xffffd800.0x7fffff63.0x80002710.0xfefefefe.0x1133556e.0x664421e ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9f.0xffffd8ff.0x7fffff0f.0x80000064.0xffff260f.0x1133556f.0x664421f.0xfffffffd ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f3.0x7fffff0e.0x80000010.0xffffff63.0x12347d7f.0x6644220.0xfffffffe.0xfffffffe ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffff02.0x8000000f.0xffffff0f.0x1234567f.0x7656a31.0xffffffff.0xffffffff.0xffffffff ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000003.0xffffff0e.0x1234567f.0x765437f.0x2710.0xffffff00.0xffffff00.0xffffff00 ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff02.0x1234567f.0x7654331.0x64.0x2711.0xffffff01.0xffffff01.0xffffff0c ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345673.0x7654330.0x10.0x65.0x2712.0xffffff02.0xffffff0d.0xffffff0d ++vucaddb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654324.0xf.0x11.0x66.0x2713.0xffffff0e.0xffffff0e.0xffffff61 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf.0x11.0x66.0x2713.0xffffff0e.0xffffff0e.0xffffff61.0xffff2601 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x10.0x12.0x67.0x271f.0xffffff0f.0xffffff62.0xffff260d.0xfefefef0 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x11.0x13.0x73.0x2720.0xffffff63.0xffff260e.0xfefefefc.0xfefefeef ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x12.0x1f.0x74.0x2774.0xffff260f.0xfefefefd.0xfefefefb.0xfefefeee ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1e.0x20.0x7f.0x4e20.0xfefefefe.0xfefefefc.0xfefefefa.0xfefefee2 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1f.0x74.0x2774.0xffff260f.0xfefefefd.0xfefefefb.0xfefefeee.0xfefefee1 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x73.0x2720.0xffffff63.0xffff260e.0xfefefefc.0xfefefeef.0xfefefeed.0xfefefe8d ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x271f.0xffffff0f.0xffffff62.0xffff260d.0xfefefef0.0xfefefeee.0xfefefe99.0xfefed7e1 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffff0e.0xffffff0e.0xffffff61.0xffff2601.0xfefefeef.0xfefefe9a.0xfefed7ed.0x7efefef0 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffff0d.0xffffff0d.0xffffff55.0xffff2600.0xfefefe9b.0xfefed7ee.0x7efefefc.0x80fffff1 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffff0c.0xffffff01.0xffffff54.0xffff26ac.0xfefed7ef.0x7efefefd.0x80fffffd.0xfefefef0 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff00.0xffffff00.0xffffff00.0xffffff00.0x7efefefe.0x80fffffe.0xfefefefc.0x11335561 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffffff.0xffffffac.0xffffd854.0x7fff260f.0x80ffffff.0xfefefefd.0x1133556d.0x6644212 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffab.0xffffd800.0x7fffff63.0x80002710.0xfefefefe.0x1133556e.0x664421e.0xfffffff1 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8ff.0x7fffff0f.0x80000064.0xffff260f.0x1133556f.0x664421f.0xfffffffd.0xfffffff2 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffff0e.0x80000010.0xffffff63.0x12347d7f.0x6644220.0xfffffffe.0xfffffffe.0xfffffff3 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x8000000f.0xffffff0f.0x1234567f.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff0e.0x1234567f.0x765437f.0x2710.0xffffff00.0xffffff00.0xffffff00.0xffffff00 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234567f.0x7654331.0x64.0x2711.0xffffff01.0xffffff01.0xffffff0c.0xffffff01 ++vucaddb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654330.0x10.0x65.0x2712.0xffffff02.0xffffff0d.0xffffff0d.0xffffff55 ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x10.0x65.0x2712.0xffffff02.0xffffff0d.0xffffff0d.0xffffff55.0xffff2600 ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x11.0x66.0x2713.0xffffff0e.0xffffff0e.0xffffff61.0xffff2601.0xfefefeef ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x12.0x67.0x271f.0xffffff0f.0xffffff62.0xffff260d.0xfefefef0.0xfefefeee ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x13.0x73.0x2720.0xffffff63.0xffff260e.0xfefefefc.0xfefefeef.0xfefefeed ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1f.0x74.0x2774.0xffff260f.0xfefefefd.0xfefefefb.0xfefefeee.0xfefefee1 ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x20.0x7f.0x4e20.0xfefefefe.0xfefefefc.0xfefefefa.0xfefefee2.0xfefefee0 ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x74.0x2774.0xffff260f.0xfefefefd.0xfefefefb.0xfefefeee.0xfefefee1.0xfefefe8c ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2720.0xffffff63.0xffff260e.0xfefefefc.0xfefefeef.0xfefefeed.0xfefefe8d.0xfefed7e0 ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffff0f.0xffffff62.0xffff260d.0xfefefef0.0xfefefeee.0xfefefe99.0xfefed7e1.0x7efefeef ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffff0e.0xffffff61.0xffff2601.0xfefefeef.0xfefefe9a.0xfefed7ed.0x7efefef0.0x80fffff0 ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffff0d.0xffffff55.0xffff2600.0xfefefe9b.0xfefed7ee.0x7efefefc.0x80fffff1.0xfefefeef ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff01.0xffffff54.0xffff26ac.0xfefed7ef.0x7efefefd.0x80fffffd.0xfefefef0.0x11335560 ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffff00.0xffffff00.0xffffff00.0x7efefefe.0x80fffffe.0xfefefefc.0x11335561.0x6644211 ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffac.0xffffd854.0x7fff260f.0x80ffffff.0xfefefefd.0x1133556d.0x6644212.0xfffffff0 ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd800.0x7fffff63.0x80002710.0xfefefefe.0x1133556e.0x664421e.0xfffffff1.0xfffffff1 ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffff0f.0x80000064.0xffff260f.0x1133556f.0x664421f.0xfffffffd.0xfffffff2.0xfffffff2 ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000010.0xffffff63.0x12347d7f.0x6644220.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3 ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff0f.0x1234567f.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234567f.0x765437f.0x2710.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00 ++vucaddb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654331.0x64.0x2711.0xffffff01.0xffffff01.0xffffff0c.0xffffff01.0xffffff54 ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x64.0x2711.0xffffff01.0xffffff01.0xffffff0c.0xffffff01.0xffffff54.0xffff26ac ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x65.0x2712.0xffffff02.0xffffff0d.0xffffff0d.0xffffff55.0xffff2600.0xfefefe9b ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x66.0x2713.0xffffff0e.0xffffff0e.0xffffff61.0xffff2601.0xfefefeef.0xfefefe9a ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x67.0x271f.0xffffff0f.0xffffff62.0xffff260d.0xfefefef0.0xfefefeee.0xfefefe99 ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x73.0x2720.0xffffff63.0xffff260e.0xfefefefc.0xfefefeef.0xfefefeed.0xfefefe8d ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x74.0x2774.0xffff260f.0xfefefefd.0xfefefefb.0xfefefeee.0xfefefee1.0xfefefe8c ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7f.0x4e20.0xfefefefe.0xfefefefc.0xfefefefa.0xfefefee2.0xfefefee0.0xfefefe80 ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2774.0xffff260f.0xfefefefd.0xfefefefb.0xfefefeee.0xfefefee1.0xfefefe8c.0xfefed78c ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffff63.0xffff260e.0xfefefefc.0xfefefeef.0xfefefeed.0xfefefe8d.0xfefed7e0.0x7efefe9b ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffff62.0xffff260d.0xfefefef0.0xfefefeee.0xfefefe99.0xfefed7e1.0x7efefeef.0x80ffff9c ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffff61.0xffff2601.0xfefefeef.0xfefefe9a.0xfefed7ed.0x7efefef0.0x80fffff0.0xfefefe9b ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff55.0xffff2600.0xfefefe9b.0xfefed7ee.0x7efefefc.0x80fffff1.0xfefefeef.0x1133550c ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffff54.0xffff26ac.0xfefed7ef.0x7efefefd.0x80fffffd.0xfefefef0.0x11335560.0x66442bd ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff00.0xffffff00.0x7efefefe.0x80fffffe.0xfefefefc.0x11335561.0x6644211.0xffffff9c ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd854.0x7fff260f.0x80ffffff.0xfefefefd.0x1133556d.0x6644212.0xfffffff0.0xffffff9d ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffff63.0x80002710.0xfefefefe.0x1133556e.0x664421e.0xfffffff1.0xfffffff1.0xffffff9e ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000064.0xffff260f.0x1133556f.0x664421f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffff63.0x12347d7f.0x6644220.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1234567f.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac ++vucaddb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x765437f.0x2710.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00 ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2710.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00 ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2711.0xffffff01.0xffffff01.0xffffff0c.0xffffff01.0xffffff54.0xffff26ac.0xfefed7ef ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2712.0xffffff02.0xffffff0d.0xffffff0d.0xffffff55.0xffff2600.0xfefefe9b.0xfefed7ee ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2713.0xffffff0e.0xffffff0e.0xffffff61.0xffff2601.0xfefefeef.0xfefefe9a.0xfefed7ed ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x271f.0xffffff0f.0xffffff62.0xffff260d.0xfefefef0.0xfefefeee.0xfefefe99.0xfefed7e1 ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2720.0xffffff63.0xffff260e.0xfefefefc.0xfefefeef.0xfefefeed.0xfefefe8d.0xfefed7e0 ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x2774.0xffff260f.0xfefefefd.0xfefefefb.0xfefefeee.0xfefefee1.0xfefefe8c.0xfefed78c ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x4e20.0xfefefefe.0xfefefefc.0xfefefefa.0xfefefee2.0xfefefee0.0xfefefe80.0xfefeb0e0 ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffff260f.0xfefefefd.0xfefefefb.0xfefefeee.0xfefefee1.0xfefefe8c.0xfefed78c.0x7efed7ef ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffff260e.0xfefefefc.0xfefefeef.0xfefefeed.0xfefefe8d.0xfefed7e0.0x7efefe9b.0x80ffd8f0 ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffff260d.0xfefefef0.0xfefefeee.0xfefefe99.0xfefed7e1.0x7efefeef.0x80ffff9c.0xfefed7ef ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffff2601.0xfefefeef.0xfefefe9a.0xfefed7ed.0x7efefef0.0x80fffff0.0xfefefe9b.0x11332e60 ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffff2600.0xfefefe9b.0xfefed7ee.0x7efefefc.0x80fffff1.0xfefefeef.0x1133550c.0x6641b11 ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffff26ac.0xfefed7ef.0x7efefefd.0x80fffffd.0xfefefef0.0x11335560.0x66442bd.0xffffd8f0 ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffff00.0x7efefefe.0x80fffffe.0xfefefefc.0x11335561.0x6644211.0xffffff9c.0xffffd8f1 ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fff260f.0x80ffffff.0xfefefefd.0x1133556d.0x6644212.0xfffffff0.0xffffff9d.0xffffd8f2 ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80002710.0xfefefefe.0x1133556e.0x664421e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3 ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffff260f.0x1133556f.0x664421f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12347d7f.0x6644220.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd800 ++vucaddb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd854 ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd854.0x7fff260f ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0x7efefefe ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff01.0xffffff01.0xffffff0c.0xffffff01.0xffffff54.0xffff26ac.0xfefed7ef.0x7efefefd ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff02.0xffffff0d.0xffffff0d.0xffffff55.0xffff2600.0xfefefe9b.0xfefed7ee.0x7efefefc ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff0e.0xffffff0e.0xffffff61.0xffff2601.0xfefefeef.0xfefefe9a.0xfefed7ed.0x7efefef0 ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff0f.0xffffff62.0xffff260d.0xfefefef0.0xfefefeee.0xfefefe99.0xfefed7e1.0x7efefeef ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff63.0xffff260e.0xfefefefc.0xfefefeef.0xfefefeed.0xfefefe8d.0xfefed7e0.0x7efefe9b ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff260f.0xfefefefd.0xfefefefb.0xfefefeee.0xfefefee1.0xfefefe8c.0xfefed78c.0x7efed7ef ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfefefefe.0xfefefefc.0xfefefefa.0xfefefee2.0xfefefee0.0xfefefe80.0xfefeb0e0.0x7ffefefe ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfefefefd.0xfefefefb.0xfefefeee.0xfefefee1.0xfefefe8c.0xfefed78c.0x7efed7ef.0xffffffff ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfefefefc.0xfefefeef.0xfefefeed.0xfefefe8d.0xfefed7e0.0x7efefe9b.0x80ffd8f0.0x7efefefe ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfefefef0.0xfefefeee.0xfefefe99.0xfefed7e1.0x7efefeef.0x80ffff9c.0xfefed7ef.0x7f33556f ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfefefeef.0xfefefe9a.0xfefed7ed.0x7efefef0.0x80fffff0.0xfefefe9b.0x11332e60.0x7f644220 ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfefefe9b.0xfefed7ee.0x7efefefc.0x80fffff1.0xfefefeef.0x1133550c.0x6641b11.0x7fffffff ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfefed7ef.0x7efefefd.0x80fffffd.0xfefefef0.0x11335560.0x66442bd.0xffffd8f0.0x7fffff00 ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7efefefe.0x80fffffe.0xfefefefc.0x11335561.0x6644211.0xffffff9c.0xffffd8f1.0x7fffff01 ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80ffffff.0xfefefefd.0x1133556d.0x6644212.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffff02 ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfefefefe.0x1133556e.0x664421e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffff0e ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1133556f.0x664421f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffff0f ++vucaddb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x6644220.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd800.0x7fffff63 ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd800.0x7fffff63.0x80002710 ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd854.0x7fff260f.0x80ffffff ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0x7efefefe.0x80fffffe ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff01.0xffffff0c.0xffffff01.0xffffff54.0xffff26ac.0xfefed7ef.0x7efefefd.0x80fffffd ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff0d.0xffffff0d.0xffffff55.0xffff2600.0xfefefe9b.0xfefed7ee.0x7efefefc.0x80fffff1 ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff0e.0xffffff61.0xffff2601.0xfefefeef.0xfefefe9a.0xfefed7ed.0x7efefef0.0x80fffff0 ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff62.0xffff260d.0xfefefef0.0xfefefeee.0xfefefe99.0xfefed7e1.0x7efefeef.0x80ffff9c ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff260e.0xfefefefc.0xfefefeef.0xfefefeed.0xfefefe8d.0xfefed7e0.0x7efefe9b.0x80ffd8f0 ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfefefefd.0xfefefefb.0xfefefeee.0xfefefee1.0xfefefe8c.0xfefed78c.0x7efed7ef.0xffffffff ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfefefefc.0xfefefefa.0xfefefee2.0xfefefee0.0xfefefe80.0xfefeb0e0.0x7ffefefe.0x80000000 ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfefefefb.0xfefefeee.0xfefefee1.0xfefefe8c.0xfefed78c.0x7efed7ef.0xffffffff.0x80ffffff ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfefefeef.0xfefefeed.0xfefefe8d.0xfefed7e0.0x7efefe9b.0x80ffd8f0.0x7efefefe.0x92345670 ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfefefeee.0xfefefe99.0xfefed7e1.0x7efefeef.0x80ffff9c.0xfefed7ef.0x7f33556f.0x87654321 ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfefefe9a.0xfefed7ed.0x7efefef0.0x80fffff0.0xfefefe9b.0x11332e60.0x7f644220.0x80000000 ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfefed7ee.0x7efefefc.0x80fffff1.0xfefefeef.0x1133550c.0x6641b11.0x7fffffff.0x80000001 ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7efefefd.0x80fffffd.0xfefefef0.0x11335560.0x66442bd.0xffffd8f0.0x7fffff00.0x80000002 ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80fffffe.0xfefefefc.0x11335561.0x6644211.0xffffff9c.0xffffd8f1.0x7fffff01.0x80000003 ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfefefefd.0x1133556d.0x6644212.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffff02.0x8000000f ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1133556e.0x664421e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffff0e.0x80000010 ++vucaddb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x664421f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffff0f.0x80000064 ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffff0f.0x80000064.0xffff260f ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd800.0x7fffff63.0x80002710.0xfefefefe ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd854.0x7fff260f.0x80ffffff.0xfefefefd ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0x7efefefe.0x80fffffe.0xfefefefc ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff0c.0xffffff01.0xffffff54.0xffff26ac.0xfefed7ef.0x7efefefd.0x80fffffd.0xfefefef0 ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff0d.0xffffff55.0xffff2600.0xfefefe9b.0xfefed7ee.0x7efefefc.0x80fffff1.0xfefefeef ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff61.0xffff2601.0xfefefeef.0xfefefe9a.0xfefed7ed.0x7efefef0.0x80fffff0.0xfefefe9b ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff260d.0xfefefef0.0xfefefeee.0xfefefe99.0xfefed7e1.0x7efefeef.0x80ffff9c.0xfefed7ef ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfefefefc.0xfefefeef.0xfefefeed.0xfefefe8d.0xfefed7e0.0x7efefe9b.0x80ffd8f0.0x7efefefe ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfefefefb.0xfefefeee.0xfefefee1.0xfefefe8c.0xfefed78c.0x7efed7ef.0xffffffff.0x80ffffff ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfefefefa.0xfefefee2.0xfefefee0.0xfefefe80.0xfefeb0e0.0x7ffefefe.0x80000000.0xfefefefe ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfefefeee.0xfefefee1.0xfefefe8c.0xfefed78c.0x7efed7ef.0xffffffff.0x80ffffff.0x1133556f ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfefefeed.0xfefefe8d.0xfefed7e0.0x7efefe9b.0x80ffd8f0.0x7efefefe.0x92345670.0x6644220 ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfefefe99.0xfefed7e1.0x7efefeef.0x80ffff9c.0xfefed7ef.0x7f33556f.0x87654321.0xffffffff ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfefed7ed.0x7efefef0.0x80fffff0.0xfefefe9b.0x11332e60.0x7f644220.0x80000000.0xffffff00 ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7efefefc.0x80fffff1.0xfefefeef.0x1133550c.0x6641b11.0x7fffffff.0x80000001.0xffffff01 ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80fffffd.0xfefefef0.0x11335560.0x66442bd.0xffffd8f0.0x7fffff00.0x80000002.0xffffff02 ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfefefefc.0x11335561.0x6644211.0xffffff9c.0xffffd8f1.0x7fffff01.0x80000003.0xffffff0e ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1133556d.0x6644212.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffff02.0x8000000f.0xffffff0f ++vucaddb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x664421e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffff0e.0x80000010.0xffffff63 ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffff0e.0x80000010.0xffffff63.0x12347d7f ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffff0f.0x80000064.0xffff260f.0x1133556f ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffff3.0xfffffff3.0xffffffab.0xffffd800.0x7fffff63.0x80002710.0xfefefefe.0x1133556e ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff4.0xffffffff.0xffffffac.0xffffd854.0x7fff260f.0x80ffffff.0xfefefefd.0x1133556d ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff00.0xffffff00.0xffffff00.0xffffff00.0x7efefefe.0x80fffffe.0xfefefefc.0x11335561 ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff01.0xffffff54.0xffff26ac.0xfefed7ef.0x7efefefd.0x80fffffd.0xfefefef0.0x11335560 ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff55.0xffff2600.0xfefefe9b.0xfefed7ee.0x7efefefc.0x80fffff1.0xfefefeef.0x1133550c ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff2601.0xfefefeef.0xfefefe9a.0xfefed7ed.0x7efefef0.0x80fffff0.0xfefefe9b.0x11332e60 ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfefefef0.0xfefefeee.0xfefefe99.0xfefed7e1.0x7efefeef.0x80ffff9c.0xfefed7ef.0x7f33556f ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfefefeef.0xfefefeed.0xfefefe8d.0xfefed7e0.0x7efefe9b.0x80ffd8f0.0x7efefefe.0x92345670 ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfefefeee.0xfefefee1.0xfefefe8c.0xfefed78c.0x7efed7ef.0xffffffff.0x80ffffff.0x1133556f ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfefefee2.0xfefefee0.0xfefefe80.0xfefeb0e0.0x7ffefefe.0x80000000.0xfefefefe.0x24687f7f ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfefefee1.0xfefefe8c.0xfefed78c.0x7efed7ef.0xffffffff.0x80ffffff.0x1133556f.0x197f7f7f ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfefefe8d.0xfefed7e0.0x7efefe9b.0x80ffd8f0.0x7efefefe.0x92345670.0x6644220.0x12345670 ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfefed7e1.0x7efefeef.0x80ffff9c.0xfefed7ef.0x7f33556f.0x87654321.0xffffffff.0x12345671 ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7efefef0.0x80fffff0.0xfefefe9b.0x11332e60.0x7f644220.0x80000000.0xffffff00.0x12345672 ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80fffff1.0xfefefeef.0x1133550c.0x6641b11.0x7fffffff.0x80000001.0xffffff01.0x12345673 ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfefefef0.0x11335560.0x66442bd.0xffffd8f0.0x7fffff00.0x80000002.0xffffff02.0x1234567f ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x11335561.0x6644211.0xffffff9c.0xffffd8f1.0x7fffff01.0x80000003.0xffffff0e.0x1234567f ++vucaddb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x6644212.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffff02.0x8000000f.0xffffff0f.0x1234567f ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffff02.0x8000000f.0xffffff0f.0x1234567f.0x7656a31 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffff0e.0x80000010.0xffffff63.0x12347d7f.0x6644220 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffff0f.0x80000064.0xffff260f.0x1133556f.0x664421f ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff3.0xffffffab.0xffffd800.0x7fffff63.0x80002710.0xfefefefe.0x1133556e.0x664421e ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0xffffffac.0xffffd854.0x7fff260f.0x80ffffff.0xfefefefd.0x1133556d.0x6644212 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff00.0xffffff00.0xffffff00.0x7efefefe.0x80fffffe.0xfefefefc.0x11335561.0x6644211 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff54.0xffff26ac.0xfefed7ef.0x7efefefd.0x80fffffd.0xfefefef0.0x11335560.0x66442bd ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff2600.0xfefefe9b.0xfefed7ee.0x7efefefc.0x80fffff1.0xfefefeef.0x1133550c.0x6641b11 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfefefeef.0xfefefe9a.0xfefed7ed.0x7efefef0.0x80fffff0.0xfefefe9b.0x11332e60.0x7f644220 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfefefeee.0xfefefe99.0xfefed7e1.0x7efefeef.0x80ffff9c.0xfefed7ef.0x7f33556f.0x87654321 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfefefeed.0xfefefe8d.0xfefed7e0.0x7efefe9b.0x80ffd8f0.0x7efefefe.0x92345670.0x6644220 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfefefee1.0xfefefe8c.0xfefed78c.0x7efed7ef.0xffffffff.0x80ffffff.0x1133556f.0x197f7f7f ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfefefee0.0xfefefe80.0xfefeb0e0.0x7ffefefe.0x80000000.0xfefefefe.0x24687f7f.0xe7f7f42 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfefefe8c.0xfefed78c.0x7efed7ef.0xffffffff.0x80ffffff.0x1133556f.0x197f7f7f.0x7654321 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfefed7e0.0x7efefe9b.0x80ffd8f0.0x7efefefe.0x92345670.0x6644220.0x12345670.0x7654322 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7efefeef.0x80ffff9c.0xfefed7ef.0x7f33556f.0x87654321.0xffffffff.0x12345671.0x7654323 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80fffff0.0xfefefe9b.0x11332e60.0x7f644220.0x80000000.0xffffff00.0x12345672.0x7654324 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfefefeef.0x1133550c.0x6641b11.0x7fffffff.0x80000001.0xffffff01.0x12345673.0x7654330 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x11335560.0x66442bd.0xffffd8f0.0x7fffff00.0x80000002.0xffffff02.0x1234567f.0x7654331 ++vucaddb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x6644211.0xffffff9c.0xffffd8f1.0x7fffff01.0x80000003.0xffffff0e.0x1234567f.0x765437f ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff9c.0xffffd8f1.0x7fffff01.0x80000003.0xffffff0e.0x1234567f.0x765437f.0x2710 ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffff9d.0xffffd8f2.0x7fffff02.0x8000000f.0xffffff0f.0x1234567f.0x7656a31.0xffffffff ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff9e.0xffffd8f3.0x7fffff0e.0x80000010.0xffffff63.0x12347d7f.0x6644220.0xfffffffe ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff9f.0xffffd8ff.0x7fffff0f.0x80000064.0xffff260f.0x1133556f.0x664421f.0xfffffffd ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffab.0xffffd800.0x7fffff63.0x80002710.0xfefefefe.0x1133556e.0x664421e.0xfffffff1 ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffac.0xffffd854.0x7fff260f.0x80ffffff.0xfefefefd.0x1133556d.0x6644212.0xfffffff0 ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff00.0xffffff00.0x7efefefe.0x80fffffe.0xfefefefc.0x11335561.0x6644211.0xffffff9c ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff26ac.0xfefed7ef.0x7efefefd.0x80fffffd.0xfefefef0.0x11335560.0x66442bd.0xffffd8f0 ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfefefe9b.0xfefed7ee.0x7efefefc.0x80fffff1.0xfefefeef.0x1133550c.0x6641b11.0x7fffffff ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfefefe9a.0xfefed7ed.0x7efefef0.0x80fffff0.0xfefefe9b.0x11332e60.0x7f644220.0x80000000 ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfefefe99.0xfefed7e1.0x7efefeef.0x80ffff9c.0xfefed7ef.0x7f33556f.0x87654321.0xffffffff ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfefefe8d.0xfefed7e0.0x7efefe9b.0x80ffd8f0.0x7efefefe.0x92345670.0x6644220.0x12345670 ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfefefe8c.0xfefed78c.0x7efed7ef.0xffffffff.0x80ffffff.0x1133556f.0x197f7f7f.0x7654321 ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfefefe80.0xfefeb0e0.0x7ffefefe.0x80000000.0xfefefefe.0x24687f7f.0xe7f7f42.0x0 ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfefed78c.0x7efed7ef.0xffffffff.0x80ffffff.0x1133556f.0x197f7f7f.0x7654321.0x1 ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7efefe9b.0x80ffd8f0.0x7efefefe.0x92345670.0x6644220.0x12345670.0x7654322.0x2 ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80ffff9c.0xfefed7ef.0x7f33556f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3 ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfefefe9b.0x11332e60.0x7f644220.0x80000000.0xffffff00.0x12345672.0x7654324.0xf ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1133550c.0x6641b11.0x7fffffff.0x80000001.0xffffff01.0x12345673.0x7654330.0x10 ++vucaddb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x66442bd.0xffffd8f0.0x7fffff00.0x80000002.0xffffff02.0x1234567f.0x7654331.0x64 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffd8f0.0x7fffff00.0x80000002.0xffffff02.0x1234567f.0x7654331.0x64.0x2711 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffd8f1.0x7fffff01.0x80000003.0xffffff0e.0x1234567f.0x765437f.0x2710.0xffffff00 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffd8f2.0x7fffff02.0x8000000f.0xffffff0f.0x1234567f.0x7656a31.0xffffffff.0xffffffff ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffd8f3.0x7fffff0e.0x80000010.0xffffff63.0x12347d7f.0x6644220.0xfffffffe.0xfffffffe ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8ff.0x7fffff0f.0x80000064.0xffff260f.0x1133556f.0x664421f.0xfffffffd.0xfffffff2 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd800.0x7fffff63.0x80002710.0xfefefefe.0x1133556e.0x664421e.0xfffffff1.0xfffffff1 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd854.0x7fff260f.0x80ffffff.0xfefefefd.0x1133556d.0x6644212.0xfffffff0.0xffffff9d ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffff00.0x7efefefe.0x80fffffe.0xfefefefc.0x11335561.0x6644211.0xffffff9c.0xffffd8f1 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfefed7ef.0x7efefefd.0x80fffffd.0xfefefef0.0x11335560.0x66442bd.0xffffd8f0.0x7fffff00 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfefed7ee.0x7efefefc.0x80fffff1.0xfefefeef.0x1133550c.0x6641b11.0x7fffffff.0x80000001 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfefed7ed.0x7efefef0.0x80fffff0.0xfefefe9b.0x11332e60.0x7f644220.0x80000000.0xffffff00 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfefed7e1.0x7efefeef.0x80ffff9c.0xfefed7ef.0x7f33556f.0x87654321.0xffffffff.0x12345671 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfefed7e0.0x7efefe9b.0x80ffd8f0.0x7efefefe.0x92345670.0x6644220.0x12345670.0x7654322 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfefed78c.0x7efed7ef.0xffffffff.0x80ffffff.0x1133556f.0x197f7f7f.0x7654321.0x1 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfefeb0e0.0x7ffefefe.0x80000000.0xfefefefe.0x24687f7f.0xe7f7f42.0x0.0x2 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7efed7ef.0xffffffff.0x80ffffff.0x1133556f.0x197f7f7f.0x7654321.0x1.0x3 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80ffd8f0.0x7efefefe.0x92345670.0x6644220.0x12345670.0x7654322.0x2.0x4 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfefed7ef.0x7f33556f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x11332e60.0x7f644220.0x80000000.0xffffff00.0x12345672.0x7654324.0xf.0x11 ++vucaddb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x6641b11.0x7fffffff.0x80000001.0xffffff01.0x12345673.0x7654330.0x10.0x65 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7fffffff.0x80000001.0xffffff01.0x12345673.0x7654330.0x10.0x65.0x2712 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7fffff00.0x80000002.0xffffff02.0x1234567f.0x7654331.0x64.0x2711.0xffffff01 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7fffff01.0x80000003.0xffffff0e.0x1234567f.0x765437f.0x2710.0xffffff00.0xffffff00 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7fffff02.0x8000000f.0xffffff0f.0x1234567f.0x7656a31.0xffffffff.0xffffffff.0xffffffff ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7fffff0e.0x80000010.0xffffff63.0x12347d7f.0x6644220.0xfffffffe.0xfffffffe.0xfffffff3 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fffff0f.0x80000064.0xffff260f.0x1133556f.0x664421f.0xfffffffd.0xfffffff2.0xfffffff2 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffff63.0x80002710.0xfefefefe.0x1133556e.0x664421e.0xfffffff1.0xfffffff1.0xffffff9e ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7fff260f.0x80ffffff.0xfefefefd.0x1133556d.0x6644212.0xfffffff0.0xffffff9d.0xffffd8f2 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7efefefe.0x80fffffe.0xfefefefc.0x11335561.0x6644211.0xffffff9c.0xffffd8f1.0x7fffff01 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7efefefd.0x80fffffd.0xfefefef0.0x11335560.0x66442bd.0xffffd8f0.0x7fffff00.0x80000002 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7efefefc.0x80fffff1.0xfefefeef.0x1133550c.0x6641b11.0x7fffffff.0x80000001.0xffffff01 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7efefef0.0x80fffff0.0xfefefe9b.0x11332e60.0x7f644220.0x80000000.0xffffff00.0x12345672 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7efefeef.0x80ffff9c.0xfefed7ef.0x7f33556f.0x87654321.0xffffffff.0x12345671.0x7654323 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7efefe9b.0x80ffd8f0.0x7efefefe.0x92345670.0x6644220.0x12345670.0x7654322.0x2 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7efed7ef.0xffffffff.0x80ffffff.0x1133556f.0x197f7f7f.0x7654321.0x1.0x3 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7ffefefe.0x80000000.0xfefefefe.0x24687f7f.0xe7f7f42.0x0.0x2.0x4 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0x80ffffff.0x1133556f.0x197f7f7f.0x7654321.0x1.0x3.0x5 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7efefefe.0x92345670.0x6644220.0x12345670.0x7654322.0x2.0x4.0x11 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x7f33556f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12 ++vucaddb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7f644220.0x80000000.0xffffff00.0x12345672.0x7654324.0xf.0x11.0x66 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x80000000.0xffffff00.0x12345672.0x7654324.0xf.0x11.0x66.0x2713 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x80000001.0xffffff01.0x12345673.0x7654330.0x10.0x65.0x2712.0xffffff02 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x80000002.0xffffff02.0x1234567f.0x7654331.0x64.0x2711.0xffffff01.0xffffff01 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x80000003.0xffffff0e.0x1234567f.0x765437f.0x2710.0xffffff00.0xffffff00.0xffffff00 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x8000000f.0xffffff0f.0x1234567f.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x80000010.0xffffff63.0x12347d7f.0x6644220.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000064.0xffff260f.0x1133556f.0x664421f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x80002710.0xfefefefe.0x1133556e.0x664421e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x80ffffff.0xfefefefd.0x1133556d.0x6644212.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffff02 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x80fffffe.0xfefefefc.0x11335561.0x6644211.0xffffff9c.0xffffd8f1.0x7fffff01.0x80000003 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x80fffffd.0xfefefef0.0x11335560.0x66442bd.0xffffd8f0.0x7fffff00.0x80000002.0xffffff02 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x80fffff1.0xfefefeef.0x1133550c.0x6641b11.0x7fffffff.0x80000001.0xffffff01.0x12345673 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x80fffff0.0xfefefe9b.0x11332e60.0x7f644220.0x80000000.0xffffff00.0x12345672.0x7654324 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x80ffff9c.0xfefed7ef.0x7f33556f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80ffd8f0.0x7efefefe.0x92345670.0x6644220.0x12345670.0x7654322.0x2.0x4 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffff.0x80ffffff.0x1133556f.0x197f7f7f.0x7654321.0x1.0x3.0x5 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xfefefefe.0x24687f7f.0xe7f7f42.0x0.0x2.0x4.0x6 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x80ffffff.0x1133556f.0x197f7f7f.0x7654321.0x1.0x3.0x5.0x12 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x92345670.0x6644220.0x12345670.0x7654322.0x2.0x4.0x11.0x13 ++vucaddb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67 ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffff00.0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xffffff0e ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff01.0x12345673.0x7654330.0x10.0x65.0x2712.0xffffff02.0xffffff0d ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff02.0x1234567f.0x7654331.0x64.0x2711.0xffffff01.0xffffff01.0xffffff0c ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff0e.0x1234567f.0x765437f.0x2710.0xffffff00.0xffffff00.0xffffff00.0xffffff00 ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff0f.0x1234567f.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff63.0x12347d7f.0x6644220.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffff260f.0x1133556f.0x664421f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfefefefe.0x1133556e.0x664421e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffff0e ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfefefefd.0x1133556d.0x6644212.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffff02.0x8000000f ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfefefefc.0x11335561.0x6644211.0xffffff9c.0xffffd8f1.0x7fffff01.0x80000003.0xffffff0e ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfefefef0.0x11335560.0x66442bd.0xffffd8f0.0x7fffff00.0x80000002.0xffffff02.0x1234567f ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfefefeef.0x1133550c.0x6641b11.0x7fffffff.0x80000001.0xffffff01.0x12345673.0x7654330 ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfefefe9b.0x11332e60.0x7f644220.0x80000000.0xffffff00.0x12345672.0x7654324.0xf ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfefed7ef.0x7f33556f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10 ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7efefefe.0x92345670.0x6644220.0x12345670.0x7654322.0x2.0x4.0x11 ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80ffffff.0x1133556f.0x197f7f7f.0x7654321.0x1.0x3.0x5.0x12 ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfefefefe.0x24687f7f.0xe7f7f42.0x0.0x2.0x4.0x6.0x1e ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1133556f.0x197f7f7f.0x7654321.0x1.0x3.0x5.0x12.0x1f ++vucaddb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x6644220.0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73 ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720 ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x12345671.0x7654323.0x3.0x10.0x12.0x67.0x271f.0xffffff0f ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x12345672.0x7654324.0xf.0x11.0x66.0x2713.0xffffff0e.0xffffff0e ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x12345673.0x7654330.0x10.0x65.0x2712.0xffffff02.0xffffff0d.0xffffff0d ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1234567f.0x7654331.0x64.0x2711.0xffffff01.0xffffff01.0xffffff0c.0xffffff01 ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x1234567f.0x765437f.0x2710.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00 ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1234567f.0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12347d7f.0x6644220.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd800 ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1133556f.0x664421f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffff0f ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1133556e.0x664421e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffff0e.0x80000010 ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1133556d.0x6644212.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffff02.0x8000000f.0xffffff0f ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x11335561.0x6644211.0xffffff9c.0xffffd8f1.0x7fffff01.0x80000003.0xffffff0e.0x1234567f ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x11335560.0x66442bd.0xffffd8f0.0x7fffff00.0x80000002.0xffffff02.0x1234567f.0x7654331 ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1133550c.0x6641b11.0x7fffffff.0x80000001.0xffffff01.0x12345673.0x7654330.0x10 ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x11332e60.0x7f644220.0x80000000.0xffffff00.0x12345672.0x7654324.0xf.0x11 ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7f33556f.0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12 ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x92345670.0x6644220.0x12345670.0x7654322.0x2.0x4.0x11.0x13 ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1133556f.0x197f7f7f.0x7654321.0x1.0x3.0x5.0x12.0x1f ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x24687f7f.0xe7f7f42.0x0.0x2.0x4.0x6.0x1e.0x20 ++vucaddb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x197f7f7f.0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74.0x2774 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7654322.0x2.0x4.0x11.0x13.0x73.0x2720.0xffffff63 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7654323.0x3.0x10.0x12.0x67.0x271f.0xffffff0f.0xffffff62 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7654324.0xf.0x11.0x66.0x2713.0xffffff0e.0xffffff0e.0xffffff61 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654330.0x10.0x65.0x2712.0xffffff02.0xffffff0d.0xffffff0d.0xffffff55 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654331.0x64.0x2711.0xffffff01.0xffffff01.0xffffff0c.0xffffff01.0xffffff54 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x765437f.0x2710.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00.0xffffff00 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7656a31.0xffffffff.0xffffffff.0xffffffff.0xfffffff4.0xffffffff.0xffffffac.0xffffd854 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x6644220.0xfffffffe.0xfffffffe.0xfffffff3.0xfffffff3.0xffffffab.0xffffd800.0x7fffff63 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x664421f.0xfffffffd.0xfffffff2.0xfffffff2.0xffffff9f.0xffffd8ff.0x7fffff0f.0x80000064 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x664421e.0xfffffff1.0xfffffff1.0xffffff9e.0xffffd8f3.0x7fffff0e.0x80000010.0xffffff63 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x6644212.0xfffffff0.0xffffff9d.0xffffd8f2.0x7fffff02.0x8000000f.0xffffff0f.0x1234567f ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x6644211.0xffffff9c.0xffffd8f1.0x7fffff01.0x80000003.0xffffff0e.0x1234567f.0x765437f ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x66442bd.0xffffd8f0.0x7fffff00.0x80000002.0xffffff02.0x1234567f.0x7654331.0x64 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x6641b11.0x7fffffff.0x80000001.0xffffff01.0x12345673.0x7654330.0x10.0x65 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7f644220.0x80000000.0xffffff00.0x12345672.0x7654324.0xf.0x11.0x66 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x87654321.0xffffffff.0x12345671.0x7654323.0x3.0x10.0x12.0x67 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x6644220.0x12345670.0x7654322.0x2.0x4.0x11.0x13.0x73 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x197f7f7f.0x7654321.0x1.0x3.0x5.0x12.0x1f.0x74 ++vucaddb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xe7f7f42.0x0.0x2.0x4.0x6.0x1e.0x20.0x7f ++=== Running test on vucsubb=== ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xff.0xff.0xff.0xf4.0xff.0xac.0xd954.0x1012811 ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfe.0xfe.0xf3.0xf3.0xab.0xd900.0x1010165.0x1012812 ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfd.0xf2.0xf2.0x9f.0xd9ff.0x1010111.0x1010166.0x1012813 ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf1.0xf1.0x9e.0xd9f3.0x1010110.0x1010112.0x1010167.0x101281f ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf0.0x9d.0xd9f2.0x1010104.0x1010111.0x1010113.0x1010173.0x1012820 ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x9c.0xd9f1.0x1010103.0x1010105.0x1010112.0x101011f.0x1010174.0x1012874 ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xd9f0.0x1010102.0x1010104.0x1010106.0x101011e.0x1010120.0x101017f.0x1014f20 ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1010101.0x1010103.0x1010105.0x1010112.0x101011f.0x1010174.0x1012874.0x81012811 ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1010102.0x1010104.0x1010111.0x1010113.0x1010173.0x1012820.0x81010165.0x7f002710 ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1010103.0x1010110.0x1010112.0x1010167.0x101281f.0x81010111.0x7f000064.0x1012811 ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x101010f.0x1010111.0x1010166.0x1012813.0x81010110.0x7f000010.0x1010165.0xeeccd1a0 ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1010110.0x1010165.0x1012812.0x81010104.0x7f00000f.0x1010111.0xeeccaaf4.0xf99be4ef ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1010164.0x1012811.0x81010103.0x7f000003.0x1010110.0xeeccaaa0.0xf99bbd43.0x2710 ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1012810.0x81010102.0x7f000002.0x1010104.0xeeccaa9f.0xf99bbdef.0x64.0x270f ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x81010101.0x7f000001.0x1010103.0xeeccaa93.0xf99bbdee.0x10.0x63.0x270e ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7f000000.0x1010102.0xeeccaa92.0xf99bbde2.0xf.0xf.0x62.0x270d ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1010101.0xeeccaa91.0xf99bbde1.0x3.0xe.0xe.0x61.0x2701 ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xeeccaa90.0xf99bbde0.0x2.0x2.0xd.0xd.0x55.0x2700 ++vucsubb 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf99bbddf.0x1.0x1.0x1.0xc.0x1.0x54.0x27ac ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x1.0x1.0x1.0xc.0x1.0x54.0x27ac.0xffffd8ef ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xff.0xff.0xf4.0xff.0xac.0xd954.0x1012811.0x1 ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfe.0xf3.0xf3.0xab.0xd900.0x1010165.0x1012812.0x2 ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf2.0xf2.0x9f.0xd9ff.0x1010111.0x1010166.0x1012813.0xe ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf1.0x9e.0xd9f3.0x1010110.0x1010112.0x1010167.0x101281f.0xf ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x9d.0xd9f2.0x1010104.0x1010111.0x1010113.0x1010173.0x1012820.0x63 ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xd9f1.0x1010103.0x1010105.0x1010112.0x101011f.0x1010174.0x1012874.0x270f ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1010102.0x1010104.0x1010106.0x101011e.0x1010120.0x101017f.0x1014f20.0x80000000 ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1010103.0x1010105.0x1010112.0x101011f.0x1010174.0x1012874.0x81012811.0x7fffffff ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1010104.0x1010111.0x1010113.0x1010173.0x1012820.0x81010165.0x7f002710.0x0 ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1010110.0x1010112.0x1010167.0x101281f.0x81010111.0x7f000064.0x1012811.0xedcba98f ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1010111.0x1010166.0x1012813.0x81010110.0x7f000010.0x1010165.0xeeccd1a0.0xf89abcde ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1010165.0x1012812.0x81010104.0x7f00000f.0x1010111.0xeeccaaf4.0xf99be4ef.0xffffffff ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1012811.0x81010103.0x7f000003.0x1010110.0xeeccaaa0.0xf99bbd43.0x2710.0xfffffffe ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x81010102.0x7f000002.0x1010104.0xeeccaa9f.0xf99bbdef.0x64.0x270f.0xfffffffd ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7f000001.0x1010103.0xeeccaa93.0xf99bbdee.0x10.0x63.0x270e.0xfffffffc ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1010102.0xeeccaa92.0xf99bbde2.0xf.0xf.0x62.0x270d.0xfffffff0 ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xeeccaa91.0xf99bbde1.0x3.0xe.0xe.0x61.0x2701.0xffffffef ++vucsubb 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf99bbde0.0x2.0x2.0xd.0xd.0x55.0x2700.0xffffff9b ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2.0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0xc.0x1.0x54.0x27ac.0xffffd8ef.0xff ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xff.0xf4.0xff.0xac.0xd954.0x1012811.0x1.0x1 ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf3.0xf3.0xab.0xd900.0x1010165.0x1012812.0x2.0xd ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf2.0x9f.0xd9ff.0x1010111.0x1010166.0x1012813.0xe.0xe ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x9e.0xd9f3.0x1010110.0x1010112.0x1010167.0x101281f.0xf.0x62 ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xd9f2.0x1010104.0x1010111.0x1010113.0x1010173.0x1012820.0x63.0x270e ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1010103.0x1010105.0x1010112.0x101011f.0x1010174.0x1012874.0x270f.0x800000ff ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1010104.0x1010106.0x101011e.0x1010120.0x101017f.0x1014f20.0x80000000.0x7ffffffe ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1010105.0x1010112.0x101011f.0x1010174.0x1012874.0x81012811.0x7fffffff.0xff ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1010111.0x1010113.0x1010173.0x1012820.0x81010165.0x7f002710.0x0.0xedcba98e ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1010112.0x1010167.0x101281f.0x81010111.0x7f000064.0x1012811.0xedcba98f.0xf89abcdd ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1010166.0x1012813.0x81010110.0x7f000010.0x1010165.0xeeccd1a0.0xf89abcde.0xfffffffe ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1012812.0x81010104.0x7f00000f.0x1010111.0xeeccaaf4.0xf99be4ef.0xffffffff.0xfffffffd ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x81010103.0x7f000003.0x1010110.0xeeccaaa0.0xf99bbd43.0x2710.0xfffffffe.0xfffffffc ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7f000002.0x1010104.0xeeccaa9f.0xf99bbdef.0x64.0x270f.0xfffffffd.0xfffffffb ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1010103.0xeeccaa93.0xf99bbdee.0x10.0x63.0x270e.0xfffffffc.0xffffffef ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xeeccaa92.0xf99bbde2.0xf.0xf.0x62.0x270d.0xfffffff0.0xffffffee ++vucsubb 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf99bbde1.0x3.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x3.0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2.0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfe ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1.0xc.0x1.0x54.0x27ac.0xffffd8ef.0xff.0xff ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf4.0xff.0xac.0xd954.0x1012811.0x1.0x1.0xc ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xf3.0xab.0xd900.0x1010165.0x1012812.0x2.0xd.0xd ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x9f.0xd9ff.0x1010111.0x1010166.0x1012813.0xe.0xe.0x61 ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xd9f3.0x1010110.0x1010112.0x1010167.0x101281f.0xf.0x62.0x270d ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1010104.0x1010111.0x1010113.0x1010173.0x1012820.0x63.0x270e.0x800000fe ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1010105.0x1010112.0x101011f.0x1010174.0x1012874.0x270f.0x800000ff.0x7ffffffd ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1010106.0x101011e.0x1010120.0x101017f.0x1014f20.0x80000000.0x7ffffffe.0xfe ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1010112.0x101011f.0x1010174.0x1012874.0x81012811.0x7fffffff.0xff.0xedcba98d ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1010113.0x1010173.0x1012820.0x81010165.0x7f002710.0x0.0xedcba98e.0xf89abcdc ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1010167.0x101281f.0x81010111.0x7f000064.0x1012811.0xedcba98f.0xf89abcdd.0xfffffffd ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1012813.0x81010110.0x7f000010.0x1010165.0xeeccd1a0.0xf89abcde.0xfffffffe.0xfffffffc ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x81010104.0x7f00000f.0x1010111.0xeeccaaf4.0xf99be4ef.0xffffffff.0xfffffffd.0xfffffffb ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7f000003.0x1010110.0xeeccaaa0.0xf99bbd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1010104.0xeeccaa9f.0xf99bbdef.0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xeeccaa93.0xf99bbdee.0x10.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed ++vucsubb 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf99bbde2.0xf.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf.0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xe.0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xf2 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xd.0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfe.0xf3 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xc.0x1.0x54.0x27ac.0xffffd8ef.0xff.0xff.0xf4 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xff.0xac.0xd954.0x1012811.0x1.0x1.0xc.0x1 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xab.0xd900.0x1010165.0x1012812.0x2.0xd.0xd.0x55 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xd9ff.0x1010111.0x1010166.0x1012813.0xe.0xe.0x61.0x2701 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1010110.0x1010112.0x1010167.0x101281f.0xf.0x62.0x270d.0x800000f2 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1010111.0x1010113.0x1010173.0x1012820.0x63.0x270e.0x800000fe.0x7ffffff1 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1010112.0x101011f.0x1010174.0x1012874.0x270f.0x800000ff.0x7ffffffd.0xf2 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x101011e.0x1010120.0x101017f.0x1014f20.0x80000000.0x7ffffffe.0xfe.0xedcba981 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x101011f.0x1010174.0x1012874.0x81012811.0x7fffffff.0xff.0xedcba98d.0xf89abcd0 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1010173.0x1012820.0x81010165.0x7f002710.0x0.0xedcba98e.0xf89abcdc.0xfffffff1 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x101281f.0x81010111.0x7f000064.0x1012811.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x81010110.0x7f000010.0x1010165.0xeeccd1a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7f00000f.0x1010111.0xeeccaaf4.0xf99be4ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1010110.0xeeccaaa0.0xf99bbd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xeeccaa9f.0xf99bbdef.0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1 ++vucsubb 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf99bbdee.0x10.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x10.0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0 ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xf.0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xf1 ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xe.0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xf2.0xf2 ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xd.0x55.0x2700.0xffffff9b.0xffffd8ee.0xfe.0xf3.0xf3 ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x1.0x54.0x27ac.0xffffd8ef.0xff.0xff.0xf4.0xff ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xac.0xd954.0x1012811.0x1.0x1.0xc.0x1.0x54 ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xd900.0x1010165.0x1012812.0x2.0xd.0xd.0x55.0x2700 ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1010111.0x1010166.0x1012813.0xe.0xe.0x61.0x2701.0x800000f1 ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1010112.0x1010167.0x101281f.0xf.0x62.0x270d.0x800000f2.0x7ffffff0 ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1010113.0x1010173.0x1012820.0x63.0x270e.0x800000fe.0x7ffffff1.0xf1 ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x101011f.0x1010174.0x1012874.0x270f.0x800000ff.0x7ffffffd.0xf2.0xedcba980 ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1010120.0x101017f.0x1014f20.0x80000000.0x7ffffffe.0xfe.0xedcba981.0xf89abccf ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1010174.0x1012874.0x81012811.0x7fffffff.0xff.0xedcba98d.0xf89abcd0.0xfffffff0 ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1012820.0x81010165.0x7f002710.0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x81010111.0x7f000064.0x1012811.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7f000010.0x1010165.0xeeccd1a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1010111.0xeeccaaf4.0xf99be4ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1 ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xeeccaaa0.0xf99bbd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0 ++vucsubb 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf99bbdef.0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x64.0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x63.0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x9d ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x62.0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xf1.0x9e ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x61.0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xf2.0xf2.0x9f ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x55.0x2700.0xffffff9b.0xffffd8ee.0xfe.0xf3.0xf3.0xab ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x54.0x27ac.0xffffd8ef.0xff.0xff.0xf4.0xff.0xac ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xd954.0x1012811.0x1.0x1.0xc.0x1.0x54.0x27ac ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1010165.0x1012812.0x2.0xd.0xd.0x55.0x2700.0x8000009d ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1010166.0x1012813.0xe.0xe.0x61.0x2701.0x800000f1.0x7fffff9c ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1010167.0x101281f.0xf.0x62.0x270d.0x800000f2.0x7ffffff0.0x9d ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1010173.0x1012820.0x63.0x270e.0x800000fe.0x7ffffff1.0xf1.0xedcba980 ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1010174.0x1012874.0x270f.0x800000ff.0x7ffffffd.0xf2.0xedcba980.0xf89abc80 ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x101017f.0x1014f20.0x80000000.0x7ffffffe.0xfe.0xedcba981.0xf89abccf.0xffffff9c ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1012874.0x81012811.0x7fffffff.0xff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x81010165.0x7f002710.0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7f000064.0x1012811.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99 ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1010165.0xeeccd1a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xeeccaaf4.0xf99be4ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c ++vucsubb 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf99bbd43.0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff80 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2710.0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff80.0xffffb1e0 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x270f.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xd9f1 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x270e.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x9d.0xd9f2 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x270d.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xf1.0x9e.0xd9f3 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2701.0xffffffef.0xffffff9a.0xffffd8ed.0xf2.0xf2.0x9f.0xd9ff ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2700.0xffffff9b.0xffffd8ee.0xfe.0xf3.0xf3.0xab.0xd900 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x27ac.0xffffd8ef.0xff.0xff.0xf4.0xff.0xac.0xd954 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1012811.0x1.0x1.0xc.0x1.0x54.0x27ac.0x8000d9f1 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1012812.0x2.0xd.0xd.0x55.0x2700.0x8000009d.0x7fffd8f0 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1012813.0xe.0xe.0x61.0x2701.0x800000f1.0x7fffff9c.0xd9f1 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x101281f.0xf.0x62.0x270d.0x800000f2.0x7ffffff0.0x9d.0xedcb8280 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1012820.0x63.0x270e.0x800000fe.0x7ffffff1.0xf1.0xedcba980.0xf89a95cf ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1012874.0x270f.0x800000ff.0x7ffffffd.0xf2.0xedcba980.0xf89abc80.0xffffd8f0 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1014f20.0x80000000.0x7ffffffe.0xfe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x81012811.0x7fffffff.0xff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7f002710.0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1012811.0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xeeccd1a0.0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0 ++vucsubb 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf99be4ef.0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff80.0xffffb1e0.0x7f000000 ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xd9f1.0x7f000001 ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x9d.0xd9f2.0x7f000002 ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0xf1.0x9e.0xd9f3.0x7f00000e ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffef.0xffffff9a.0xffffd8ed.0xf2.0xf2.0x9f.0xd9ff.0x7f00000f ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9b.0xffffd8ee.0xfe.0xf3.0xf3.0xab.0xd900.0x7f000063 ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ef.0xff.0xff.0xf4.0xff.0xac.0xd954.0x7f00270f ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x1.0xc.0x1.0x54.0x27ac.0x8000d9f1.0x7fffffff ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2.0xd.0xd.0x55.0x2700.0x8000009d.0x7fffd8f0.0x7f000000 ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xe.0xe.0x61.0x2701.0x800000f1.0x7fffff9c.0xd9f1.0x6dcba98f ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xf.0x62.0x270d.0x800000f2.0x7ffffff0.0x9d.0xedcb8280.0x789abcde ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x63.0x270e.0x800000fe.0x7ffffff1.0xf1.0xedcba980.0xf89a95cf.0x7fffffff ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270f.0x800000ff.0x7ffffffd.0xf2.0xedcba980.0xf89abc80.0xffffd8f0.0x7ffffffe ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7ffffffe.0xfe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0xff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0 ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98f.0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef ++vucsubb 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcde.0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffe.0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x8000d9f0 ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffd.0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x81010101 ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffc.0xfffffffa.0xffffffe2.0xffffffe0.0xffffff80.0xffffb1e0.0x7f000000.0x81010102 ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xd9f1.0x7f000001.0x81010103 ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x9d.0xd9f2.0x7f000002.0x8101010f ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffee.0xffffff99.0xffffd8e1.0xf1.0x9e.0xd9f3.0x7f00000e.0x81010110 ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9a.0xffffd8ed.0xf2.0xf2.0x9f.0xd9ff.0x7f00000f.0x81010164 ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ee.0xfe.0xf3.0xf3.0xab.0xd900.0x7f000063.0x81012810 ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xff.0xff.0xf4.0xff.0xac.0xd954.0x7f00270f.0x80010101 ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0xc.0x1.0x54.0x27ac.0x8000d9f1.0x7fffffff.0x81010101 ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xd.0xd.0x55.0x2700.0x8000009d.0x7fffd8f0.0x7f000000.0x80ccaa90 ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xe.0x61.0x2701.0x800000f1.0x7fffff9c.0xd9f1.0x6dcba98f.0x809bbddf ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x62.0x270d.0x800000f2.0x7ffffff0.0x9d.0xedcb8280.0x789abcde.0x80000000 ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270e.0x800000fe.0x7ffffff1.0xf1.0xedcba980.0xf89a95cf.0x7fffffff.0x800000ff ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x800000ff.0x7ffffffd.0xf2.0xedcba980.0xf89abc80.0xffffd8f0.0x7ffffffe.0x800000fe ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffffe.0xfe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x800000fd ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xff.0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x800000f1 ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98e.0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x800000f0 ++vucsubb 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcdd.0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x8000009c ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffd.0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x8000009c.0xffffd8ef ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffc.0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x8000d9f0.0x0 ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffb.0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x81010101.0x1 ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffa.0xffffffe2.0xffffffe0.0xffffff80.0xffffb1e0.0x7f000000.0x81010102.0x2 ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0xd9f1.0x7f000001.0x81010103.0xe ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffed.0xffffff8d.0xffffd8e0.0x9d.0xd9f2.0x7f000002.0x8101010f.0xf ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff99.0xffffd8e1.0xf1.0x9e.0xd9f3.0x7f00000e.0x81010110.0x63 ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ed.0xf2.0xf2.0x9f.0xd9ff.0x7f00000f.0x81010164.0x270f ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfe.0xf3.0xf3.0xab.0xd900.0x7f000063.0x81012810.0x80000000 ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xff.0xf4.0xff.0xac.0xd954.0x7f00270f.0x80010101.0x7fffffff ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xc.0x1.0x54.0x27ac.0x8000d9f1.0x7fffffff.0x81010101.0xedcba98f ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xd.0x55.0x2700.0x8000009d.0x7fffd8f0.0x7f000000.0x80ccaa90.0xf89abcde ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x61.0x2701.0x800000f1.0x7fffff9c.0xd9f1.0x6dcba98f.0x809bbddf.0xffffffff ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270d.0x800000f2.0x7ffffff0.0x9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x800000fe.0x7ffffff1.0xf1.0xedcba980.0xf89a95cf.0x7fffffff.0x800000ff.0xfffffffd ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffffd.0xf2.0xedcba980.0xf89abc80.0xffffd8f0.0x7ffffffe.0x800000fe.0xfffffffc ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfe.0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x800000fd.0xfffffff0 ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98d.0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x800000f1.0xffffffef ++vucsubb 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcdc.0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x800000f0.0xffffff9b ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff1.0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x800000f0.0xffffff9b.0x12342f60 ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff0.0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x8000009c.0xffffd8ef.0x13355771 ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffef.0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x8000d9f0.0x0.0x13355772 ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffee.0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x81010101.0x1.0x13355773 ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffe2.0xffffffe0.0xffffff80.0xffffb1e0.0x7f000000.0x81010102.0x2.0x1335577f ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffe1.0xffffff8c.0xffffd88c.0xd9f1.0x7f000001.0x81010103.0xe.0x1335577f ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff8d.0xffffd8e0.0x9d.0xd9f2.0x7f000002.0x8101010f.0xf.0x1335577f ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8e1.0xf1.0x9e.0xd9f3.0x7f00000e.0x81010110.0x63.0x13357e7f ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xf2.0xf2.0x9f.0xd9ff.0x7f00000f.0x81010164.0x270f.0x93355771 ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xf3.0xf3.0xab.0xd900.0x7f000063.0x81012810.0x80000000.0x7f345670 ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xf4.0xff.0xac.0xd954.0x7f00270f.0x80010101.0x7fffffff.0x13355771 ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x54.0x27ac.0x8000d9f1.0x7fffffff.0x81010101.0xedcba98f.0xbcf134f ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x55.0x2700.0x8000009d.0x7fffd8f0.0x7f000000.0x80ccaa90.0xf89abcde.0x12345670 ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2701.0x800000f1.0x7fffff9c.0xd9f1.0x6dcba98f.0x809bbddf.0xffffffff.0x1234566f ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x800000f2.0x7ffffff0.0x9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffff1.0xf1.0xedcba980.0xf89a95cf.0x7fffffff.0x800000ff.0xfffffffd.0x1234566d ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xf2.0xedcba980.0xf89abc80.0xffffd8f0.0x7ffffffe.0x800000fe.0xfffffffc.0x12345661 ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba981.0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x800000fd.0xfffffff0.0x12345660 ++vucsubb 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcd0.0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x800000f1.0xffffffef.0x1234560c ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff0.0xffffff9b.0xffffd8ee.0x7ffffffc.0x800000f1.0xffffffef.0x1234560c.0x7651c11 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffef.0xffffff9a.0xffffd8ed.0x7ffffff0.0x800000f0.0xffffff9b.0x12342f60.0x8664422 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffee.0xffffff99.0xffffd8e1.0x7fffffef.0x8000009c.0xffffd8ef.0x13355771.0x8664423 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffed.0xffffff8d.0xffffd8e0.0x7fffff9b.0x8000d9f0.0x0.0x13355772.0x8664424 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffe1.0xffffff8c.0xffffd88c.0x7fffd8ef.0x81010101.0x1.0x13355773.0x8664430 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffe0.0xffffff80.0xffffb1e0.0x7f000000.0x81010102.0x2.0x1335577f.0x8664431 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff8c.0xffffd88c.0xd9f1.0x7f000001.0x81010103.0xe.0x1335577f.0x866447f ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8e0.0x9d.0xd9f2.0x7f000002.0x8101010f.0xf.0x1335577f.0x8666b31 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xf1.0x9e.0xd9f3.0x7f00000e.0x81010110.0x63.0x13357e7f.0x88664422 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xf2.0x9f.0xd9ff.0x7f00000f.0x81010164.0x270f.0x93355771.0x7f654321 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xf3.0xab.0xd900.0x7f000063.0x81012810.0x80000000.0x7f345670.0x8664422 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xff.0xac.0xd954.0x7f00270f.0x80010101.0x7fffffff.0x13355771.0xf531edb1 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x54.0x27ac.0x8000d9f1.0x7fffffff.0x81010101.0xedcba98f.0xbcf134f.0x7654321 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2700.0x8000009d.0x7fffd8f0.0x7f000000.0x80ccaa90.0xf89abcde.0x12345670.0x7654320 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x800000f1.0x7fffff9c.0xd9f1.0x6dcba98f.0x809bbddf.0xffffffff.0x1234566f.0x765431f ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7ffffff0.0x9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xf1.0xedcba980.0xf89a95cf.0x7fffffff.0x800000ff.0xfffffffd.0x1234566d.0x7654312 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba980.0xf89abc80.0xffffd8f0.0x7ffffffe.0x800000fe.0xfffffffc.0x12345661.0x7654311 ++vucsubb 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abccf.0xffffff9c.0xffffd8ef.0x7ffffffd.0x800000fd.0xfffffff0.0x12345660.0x76543bd ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff9c.0xffffd8ef.0x7ffffffd.0x800000fd.0xfffffff0.0x12345660.0x76543bd.0xd9f0 ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffff9b.0xffffd8ee.0x7ffffffc.0x800000f1.0xffffffef.0x1234560c.0x7651c11.0x1010101 ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff9a.0xffffd8ed.0x7ffffff0.0x800000f0.0xffffff9b.0x12342f60.0x8664422.0x1010102 ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff99.0xffffd8e1.0x7fffffef.0x8000009c.0xffffd8ef.0x13355771.0x8664423.0x1010103 ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff8d.0xffffd8e0.0x7fffff9b.0x8000d9f0.0x0.0x13355772.0x8664424.0x101010f ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff8c.0xffffd88c.0x7fffd8ef.0x81010101.0x1.0x13355773.0x8664430.0x1010110 ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff80.0xffffb1e0.0x7f000000.0x81010102.0x2.0x1335577f.0x8664431.0x1010164 ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd88c.0xd9f1.0x7f000001.0x81010103.0xe.0x1335577f.0x866447f.0x1012810 ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x9d.0xd9f2.0x7f000002.0x8101010f.0xf.0x1335577f.0x8666b31.0x81010101 ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x9e.0xd9f3.0x7f00000e.0x81010110.0x63.0x13357e7f.0x88664422.0x7f000000 ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x9f.0xd9ff.0x7f00000f.0x81010164.0x270f.0x93355771.0x7f654321.0x1010101 ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xab.0xd900.0x7f000063.0x81012810.0x80000000.0x7f345670.0x8664422.0xeeccaa90 ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xac.0xd954.0x7f00270f.0x80010101.0x7fffffff.0x13355771.0xf531edb1.0xf99bbddf ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x27ac.0x8000d9f1.0x7fffffff.0x81010101.0xedcba98f.0xbcf134f.0x7654321.0xff ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8000009d.0x7fffd8f0.0x7f000000.0x80ccaa90.0xf89abcde.0x12345670.0x7654320.0xfe ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffff9c.0xd9f1.0x6dcba98f.0x809bbddf.0xffffffff.0x1234566f.0x765431f.0xfd ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x9d.0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xf1 ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba980.0xf89a95cf.0x7fffffff.0x800000ff.0xfffffffd.0x1234566d.0x7654312.0xf0 ++vucsubb 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abc80.0xffffd8f0.0x7ffffffe.0x800000fe.0xfffffffc.0x12345661.0x7654311.0x9c ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffd8f0.0x7ffffffe.0x800000fe.0xfffffffc.0x12345661.0x7654311.0x9c.0xd9f1 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffd8ef.0x7ffffffd.0x800000fd.0xfffffff0.0x12345660.0x76543bd.0xd9f0.0x1010102 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffd8ee.0x7ffffffc.0x800000f1.0xffffffef.0x1234560c.0x7651c11.0x1010101.0x1010103 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffd8ed.0x7ffffff0.0x800000f0.0xffffff9b.0x12342f60.0x8664422.0x1010102.0x1010104 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8e1.0x7fffffef.0x8000009c.0xffffd8ef.0x13355771.0x8664423.0x1010103.0x1010110 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd8e0.0x7fffff9b.0x8000d9f0.0x0.0x13355772.0x8664424.0x101010f.0x1010111 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd88c.0x7fffd8ef.0x81010101.0x1.0x13355773.0x8664430.0x1010110.0x1010165 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffb1e0.0x7f000000.0x81010102.0x2.0x1335577f.0x8664431.0x1010164.0x1012811 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xd9f1.0x7f000001.0x81010103.0xe.0x1335577f.0x866447f.0x1012810.0x81010102 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xd9f2.0x7f000002.0x8101010f.0xf.0x1335577f.0x8666b31.0x81010101.0x7f000001 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xd9f3.0x7f00000e.0x81010110.0x63.0x13357e7f.0x88664422.0x7f000000.0x1010102 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xd9ff.0x7f00000f.0x81010164.0x270f.0x93355771.0x7f654321.0x1010101.0xeeccaa91 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xd900.0x7f000063.0x81012810.0x80000000.0x7f345670.0x8664422.0xeeccaa90.0xf99bbde0 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xd954.0x7f00270f.0x80010101.0x7fffffff.0x13355771.0xf531edb1.0xf99bbddf.0x1 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x8000d9f1.0x7fffffff.0x81010101.0xedcba98f.0xbcf134f.0x7654321.0xff.0xff ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffd8f0.0x7f000000.0x80ccaa90.0xf89abcde.0x12345670.0x7654320.0xfe.0xfe ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xd9f1.0x6dcba98f.0x809bbddf.0xffffffff.0x1234566f.0x765431f.0xfd.0xf2 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcb8280.0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xf1.0xf1 ++vucsubb 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89a95cf.0x7fffffff.0x800000ff.0xfffffffd.0x1234566d.0x7654312.0xf0.0x9d ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7fffffff.0x800000ff.0xfffffffd.0x1234566d.0x7654312.0xf0.0x9d.0xd9f2 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7ffffffe.0x800000fe.0xfffffffc.0x12345661.0x7654311.0x9c.0xd9f1.0x1010103 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7ffffffd.0x800000fd.0xfffffff0.0x12345660.0x76543bd.0xd9f0.0x1010102.0x1010104 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7ffffffc.0x800000f1.0xffffffef.0x1234560c.0x7651c11.0x1010101.0x1010103.0x1010105 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7ffffff0.0x800000f0.0xffffff9b.0x12342f60.0x8664422.0x1010102.0x1010104.0x1010111 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fffffef.0x8000009c.0xffffd8ef.0x13355771.0x8664423.0x1010103.0x1010110.0x1010112 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffff9b.0x8000d9f0.0x0.0x13355772.0x8664424.0x101010f.0x1010111.0x1010166 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7fffd8ef.0x81010101.0x1.0x13355773.0x8664430.0x1010110.0x1010165.0x1012812 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7f000000.0x81010102.0x2.0x1335577f.0x8664431.0x1010164.0x1012811.0x81010103 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7f000001.0x81010103.0xe.0x1335577f.0x866447f.0x1012810.0x81010102.0x7f000002 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7f000002.0x8101010f.0xf.0x1335577f.0x8666b31.0x81010101.0x7f000001.0x1010103 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7f00000e.0x81010110.0x63.0x13357e7f.0x88664422.0x7f000000.0x1010102.0xeeccaa92 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7f00000f.0x81010164.0x270f.0x93355771.0x7f654321.0x1010101.0xeeccaa91.0xf99bbde1 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7f000063.0x81012810.0x80000000.0x7f345670.0x8664422.0xeeccaa90.0xf99bbde0.0x2 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x7f00270f.0x80010101.0x7fffffff.0x13355771.0xf531edb1.0xf99bbddf.0x1.0x1 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x81010101.0xedcba98f.0xbcf134f.0x7654321.0xff.0xff.0xff ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7f000000.0x80ccaa90.0xf89abcde.0x12345670.0x7654320.0xfe.0xfe.0xf3 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x6dcba98f.0x809bbddf.0xffffffff.0x1234566f.0x765431f.0xfd.0xf2.0xf2 ++vucsubb 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x789abcde.0x80000000.0xfffffffe.0x1234566e.0x765431e.0xf1.0xf1.0x9e ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x80000000.0xfffffffe.0x1234566e.0x765431e.0xf1.0xf1.0x9e.0xd9f3 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x800000ff.0xfffffffd.0x1234566d.0x7654312.0xf0.0x9d.0xd9f2.0x1010104 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x800000fe.0xfffffffc.0x12345661.0x7654311.0x9c.0xd9f1.0x1010103.0x1010105 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x800000fd.0xfffffff0.0x12345660.0x76543bd.0xd9f0.0x1010102.0x1010104.0x1010106 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x800000f1.0xffffffef.0x1234560c.0x7651c11.0x1010101.0x1010103.0x1010105.0x1010112 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x800000f0.0xffffff9b.0x12342f60.0x8664422.0x1010102.0x1010104.0x1010111.0x1010113 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x8000009c.0xffffd8ef.0x13355771.0x8664423.0x1010103.0x1010110.0x1010112.0x1010167 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x8000d9f0.0x0.0x13355772.0x8664424.0x101010f.0x1010111.0x1010166.0x1012813 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x81010101.0x1.0x13355773.0x8664430.0x1010110.0x1010165.0x1012812.0x81010104 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x81010102.0x2.0x1335577f.0x8664431.0x1010164.0x1012811.0x81010103.0x7f000003 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x81010103.0xe.0x1335577f.0x866447f.0x1012810.0x81010102.0x7f000002.0x1010104 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x8101010f.0xf.0x1335577f.0x8666b31.0x81010101.0x7f000001.0x1010103.0xeeccaa93 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x81010110.0x63.0x13357e7f.0x88664422.0x7f000000.0x1010102.0xeeccaa92.0xf99bbde2 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x81010164.0x270f.0x93355771.0x7f654321.0x1010101.0xeeccaa91.0xf99bbde1.0x3 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x81012810.0x80000000.0x7f345670.0x8664422.0xeeccaa90.0xf99bbde0.0x2.0x2 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80010101.0x7fffffff.0x13355771.0xf531edb1.0xf99bbddf.0x1.0x1.0x1 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x81010101.0xedcba98f.0xbcf134f.0x7654321.0xff.0xff.0xff.0xf4 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x80ccaa90.0xf89abcde.0x12345670.0x7654320.0xfe.0xfe.0xf3.0xf3 ++vucsubb 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x809bbddf.0xffffffff.0x1234566f.0x765431f.0xfd.0xf2.0xf2.0x9f ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0x1234566f.0x765431f.0xfd.0xf2.0xf2.0x9f.0xd9ff ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0x1234566e.0x765431e.0xf1.0xf1.0x9e.0xd9f3.0x1010110 ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffd.0x1234566d.0x7654312.0xf0.0x9d.0xd9f2.0x1010104.0x1010111 ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffc.0x12345661.0x7654311.0x9c.0xd9f1.0x1010103.0x1010105.0x1010112 ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0x12345660.0x76543bd.0xd9f0.0x1010102.0x1010104.0x1010106.0x101011e ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffef.0x1234560c.0x7651c11.0x1010101.0x1010103.0x1010105.0x1010112.0x101011f ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9b.0x12342f60.0x8664422.0x1010102.0x1010104.0x1010111.0x1010113.0x1010173 ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8ef.0x13355771.0x8664423.0x1010103.0x1010110.0x1010112.0x1010167.0x101281f ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x13355772.0x8664424.0x101010f.0x1010111.0x1010166.0x1012813.0x81010110 ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x13355773.0x8664430.0x1010110.0x1010165.0x1012812.0x81010104.0x7f00000f ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2.0x1335577f.0x8664431.0x1010164.0x1012811.0x81010103.0x7f000003.0x1010110 ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xe.0x1335577f.0x866447f.0x1012810.0x81010102.0x7f000002.0x1010104.0xeeccaa9f ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xf.0x1335577f.0x8666b31.0x81010101.0x7f000001.0x1010103.0xeeccaa93.0xf99bbdee ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x63.0x13357e7f.0x88664422.0x7f000000.0x1010102.0xeeccaa92.0xf99bbde2.0xf ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x270f.0x93355771.0x7f654321.0x1010101.0xeeccaa91.0xf99bbde1.0x3.0xe ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x80000000.0x7f345670.0x8664422.0xeeccaa90.0xf99bbde0.0x2.0x2.0xd ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7fffffff.0x13355771.0xf531edb1.0xf99bbddf.0x1.0x1.0x1.0xc ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xedcba98f.0xbcf134f.0x7654321.0xff.0xff.0xff.0xf4.0xff ++vucsubb 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xf89abcde.0x12345670.0x7654320.0xfe.0xfe.0xf3.0xf3.0xab ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x12345670.0x7654320.0xfe.0xfe.0xf3.0xf3.0xab.0xd900 ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1234566f.0x765431f.0xfd.0xf2.0xf2.0x9f.0xd9ff.0x1010111 ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x1234566e.0x765431e.0xf1.0xf1.0x9e.0xd9f3.0x1010110.0x1010112 ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1234566d.0x7654312.0xf0.0x9d.0xd9f2.0x1010104.0x1010111.0x1010113 ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12345661.0x7654311.0x9c.0xd9f1.0x1010103.0x1010105.0x1010112.0x101011f ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345660.0x76543bd.0xd9f0.0x1010102.0x1010104.0x1010106.0x101011e.0x1010120 ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1234560c.0x7651c11.0x1010101.0x1010103.0x1010105.0x1010112.0x101011f.0x1010174 ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12342f60.0x8664422.0x1010102.0x1010104.0x1010111.0x1010113.0x1010173.0x1012820 ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x13355771.0x8664423.0x1010103.0x1010110.0x1010112.0x1010167.0x101281f.0x81010111 ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x13355772.0x8664424.0x101010f.0x1010111.0x1010166.0x1012813.0x81010110.0x7f000010 ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x13355773.0x8664430.0x1010110.0x1010165.0x1012812.0x81010104.0x7f00000f.0x1010111 ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1335577f.0x8664431.0x1010164.0x1012811.0x81010103.0x7f000003.0x1010110.0xeeccaaa0 ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1335577f.0x866447f.0x1012810.0x81010102.0x7f000002.0x1010104.0xeeccaa9f.0xf99bbdef ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1335577f.0x8666b31.0x81010101.0x7f000001.0x1010103.0xeeccaa93.0xf99bbdee.0x10 ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x13357e7f.0x88664422.0x7f000000.0x1010102.0xeeccaa92.0xf99bbde2.0xf.0xf ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x93355771.0x7f654321.0x1010101.0xeeccaa91.0xf99bbde1.0x3.0xe.0xe ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7f345670.0x8664422.0xeeccaa90.0xf99bbde0.0x2.0x2.0xd.0xd ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x13355771.0xf531edb1.0xf99bbddf.0x1.0x1.0x1.0xc.0x1 ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++vucsubb 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xbcf134f.0x7654321.0xff.0xff.0xff.0xf4.0xff.0xac ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7654321.0xff.0xff.0xff.0xf4.0xff.0xac.0xd954 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7654320.0xfe.0xfe.0xf3.0xf3.0xab.0xd900.0x1010165 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x765431f.0xfd.0xf2.0xf2.0x9f.0xd9ff.0x1010111.0x1010166 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x765431e.0xf1.0xf1.0x9e.0xd9f3.0x1010110.0x1010112.0x1010167 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654312.0xf0.0x9d.0xd9f2.0x1010104.0x1010111.0x1010113.0x1010173 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654311.0x9c.0xd9f1.0x1010103.0x1010105.0x1010112.0x101011f.0x1010174 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x76543bd.0xd9f0.0x1010102.0x1010104.0x1010106.0x101011e.0x1010120.0x101017f ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7651c11.0x1010101.0x1010103.0x1010105.0x1010112.0x101011f.0x1010174.0x1012874 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x8664422.0x1010102.0x1010104.0x1010111.0x1010113.0x1010173.0x1012820.0x81010165 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x8664423.0x1010103.0x1010110.0x1010112.0x1010167.0x101281f.0x81010111.0x7f000064 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x8664424.0x101010f.0x1010111.0x1010166.0x1012813.0x81010110.0x7f000010.0x1010165 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x8664430.0x1010110.0x1010165.0x1012812.0x81010104.0x7f00000f.0x1010111.0xeeccaaf4 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x8664431.0x1010164.0x1012811.0x81010103.0x7f000003.0x1010110.0xeeccaaa0.0xf99bbd43 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x866447f.0x1012810.0x81010102.0x7f000002.0x1010104.0xeeccaa9f.0xf99bbdef.0x64 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x8666b31.0x81010101.0x7f000001.0x1010103.0xeeccaa93.0xf99bbdee.0x10.0x63 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x88664422.0x7f000000.0x1010102.0xeeccaa92.0xf99bbde2.0xf.0xf.0x62 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7f654321.0x1010101.0xeeccaa91.0xf99bbde1.0x3.0xe.0xe.0x61 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x8664422.0xeeccaa90.0xf99bbde0.0x2.0x2.0xd.0xd.0x55 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf531edb1.0xf99bbddf.0x1.0x1.0x1.0xc.0x1.0x54 ++vucsubb 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x0.0x0.0x0.0x0.0x0.0x0.0x0.0x0 ++=== Running test on vseleqw=== ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vseleqw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x2710 ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0xffffffff ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0xfffffffe ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0xfffffffd ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xfffffff1 ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0xfffffff0 ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0xffffff9c ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0xffffd8f0 ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0x7fffffff ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0x80000000 ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xffffffff ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x12345670 ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x7654321 ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0x0 ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0x1 ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x2 ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x3 ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xf ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x10 ++vseleqw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x64 ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x64.0x1 ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x2710.0x2 ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0xffffffff.0x3 ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0xfffffffe.0xf ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xfffffffd.0x10 ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0xfffffff1.0x64 ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0xfffffff0.0x2710 ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0xffffff9c.0xffffffff ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffd8f0.0xfffffffe ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0x7fffffff.0xfffffffd ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0x80000000.0xfffffff1 ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xffffffff.0xfffffff0 ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x12345670.0xffffff9c ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0x7654321.0xffffd8f0 ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0x0.0x7fffffff ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x1.0x80000000 ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x2.0xffffffff ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x3.0x12345670 ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0xf.0x7654321 ++vseleqw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x10.0x0 ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x10.0x1.0x2 ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x64.0x2.0x3 ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2710.0x3.0xf ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0xffffffff.0xf.0x10 ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xfffffffe.0x10.0x64 ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0xfffffffd.0x64.0x2710 ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0xfffffff1.0x2710.0xffffffff ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0xfffffff0.0xffffffff.0xfffffffe ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffff9c.0xfffffffe.0xfffffffd ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xffffd8f0.0xfffffffd.0xfffffff1 ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0x7fffffff.0xfffffff1.0xfffffff0 ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x80000000.0xfffffff0.0xffffff9c ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xffffffff.0xffffff9c.0xffffd8f0 ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0x12345670.0xffffd8f0.0x7fffffff ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0x7654321.0x7fffffff.0x80000000 ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x0.0x80000000.0xffffffff ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x1.0xffffffff.0x12345670 ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x2.0x12345670.0x7654321 ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x3.0x7654321.0x0 ++vseleqw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0xf.0x0.0x1 ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0xf.0x1.0x2.0x3 ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x10.0x2.0x3.0xf ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x64.0x3.0xf.0x10 ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x2710.0xf.0x10.0x64 ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xffffffff.0x10.0x64.0x2710 ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0xfffffffe.0x64.0x2710.0xffffffff ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0xfffffffd.0x2710.0xffffffff.0xfffffffe ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0xfffffff1.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xfffffff0.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xffffff9c.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xffffd8f0.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x7fffffff.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x80000000.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffffff.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0x12345670.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7654321.0x80000000.0xffffffff.0x12345670 ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x0.0xffffffff.0x12345670.0x7654321 ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x1.0x12345670.0x7654321.0x0 ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x2.0x7654321.0x0.0x1 ++vseleqw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x3.0x0.0x1.0x2 ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x3.0x1.0x2.0x3.0xf ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0xf.0x2.0x3.0xf.0x10 ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x10.0x3.0xf.0x10.0x64 ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x64.0xf.0x10.0x64.0x2710 ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0x2710.0x10.0x64.0x2710.0xffffffff ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0xffffffff.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0xfffffffe.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0xfffffffd.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xfffffff1.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffff0.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xffffff9c.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xffffd8f0.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0x7fffffff.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0x80000000.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffffff.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x12345670.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x7654321.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0x0.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x1.0x7654321.0x0.0x1.0x2 ++vseleqw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x2.0x0.0x1.0x2.0x3 ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x2.0x1.0x2.0x3.0xf.0x10 ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x3.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0xf.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x10.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0x64.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x2710.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0xffffffff.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0xfffffffe.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xfffffffd.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffff1.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffff0.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xffffff9c.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xffffd8f0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0x7fffffff.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0x80000000.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0xffffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x12345670.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0x7654321.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x0.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x1.0x0.0x1.0x2.0x3.0xf ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x1.0x1.0x2.0x3.0xf.0x10.0x64 ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x2.0x2.0x3.0xf.0x10.0x64.0x2710 ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x3.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0xf.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0x10.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x64.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x2710.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0xffffffff.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xfffffffe.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffd.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffff1.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff0.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xffffff9c.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffd8f0.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0x7fffffff.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x80000000.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0xffffffff.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x12345670.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x7654321.0x7654321.0x0.0x1.0x2.0x3.0xf ++vseleqw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x0.0x0.0x1.0x2.0x3.0xf.0x10 ++=== Running test on vsellbcw=== ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsellbcw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x1.0x3.0xf.0xf.0x10.0x64.0xffffffff ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x2.0xf.0x10.0x10.0x64.0x2710.0xfffffffe ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0x3.0x10.0x64.0x64.0x2710.0xffffffff.0xfffffffd ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0xf.0x64.0x2710.0x2710.0xffffffff.0xfffffffe.0xfffffff1 ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x10.0x2710.0xffffffff.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff0 ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x64.0xffffffff.0xfffffffe.0xfffffffe.0xfffffffd.0xfffffff1.0xffffff9c ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0x2710.0xfffffffe.0xfffffffd.0xfffffffd.0xfffffff1.0xfffffff0.0xffffd8f0 ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffffff.0xfffffffd.0xfffffff1.0xfffffff1.0xfffffff0.0xffffff9c.0x7fffffff ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffe.0xfffffff1.0xfffffff0.0xfffffff0.0xffffff9c.0xffffd8f0.0x80000000 ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffffd.0xfffffff0.0xffffff9c.0xffffff9c.0xffffd8f0.0x7fffffff.0xffffffff ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff1.0xffffff9c.0xffffd8f0.0xffffd8f0.0x7fffffff.0x80000000.0x12345670 ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xfffffff0.0xffffd8f0.0x7fffffff.0x7fffffff.0x80000000.0xffffffff.0x7654321 ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffff9c.0x7fffffff.0x80000000.0x80000000.0xffffffff.0x12345670.0x0 ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0xffffd8f0.0x80000000.0xffffffff.0xffffffff.0x12345670.0x7654321.0x1 ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x7fffffff.0xffffffff.0x12345670.0x12345670.0x7654321.0x0.0x2 ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x80000000.0x12345670.0x7654321.0x7654321.0x0.0x1.0x3 ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xffffffff.0x7654321.0x0.0x0.0x1.0x2.0xf ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x12345670.0x0.0x1.0x1.0x2.0x3.0x10 ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x7654321.0x1.0x2.0x2.0x3.0xf.0x64 ++vsellbcw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x0.0x2.0x3.0x3.0xf.0x10.0x2710 ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x0.0x3.0xf.0x3.0xf.0x10.0xffffffff.0x2710 ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x1.0xf.0x10.0xf.0x10.0x64.0xfffffffe.0xffffffff ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2.0x10.0x64.0x10.0x64.0x2710.0xfffffffd.0xfffffffe ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x3.0x64.0x2710.0x64.0x2710.0xffffffff.0xfffffff1.0xfffffffd ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xf.0x2710.0xffffffff.0x2710.0xffffffff.0xfffffffe.0xfffffff0.0xfffffff1 ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x10.0xffffffff.0xfffffffe.0xffffffff.0xfffffffe.0xfffffffd.0xffffff9c.0xfffffff0 ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x64.0xfffffffe.0xfffffffd.0xfffffffe.0xfffffffd.0xfffffff1.0xffffd8f0.0xffffff9c ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x2710.0xfffffffd.0xfffffff1.0xfffffffd.0xfffffff1.0xfffffff0.0x7fffffff.0xffffd8f0 ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0xfffffff1.0xfffffff0.0xfffffff1.0xfffffff0.0xffffff9c.0x80000000.0x7fffffff ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffffe.0xfffffff0.0xffffff9c.0xfffffff0.0xffffff9c.0xffffd8f0.0xffffffff.0x80000000 ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffffd.0xffffff9c.0xffffd8f0.0xffffff9c.0xffffd8f0.0x7fffffff.0x12345670.0xffffffff ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xfffffff1.0xffffd8f0.0x7fffffff.0xffffd8f0.0x7fffffff.0x80000000.0x7654321.0x12345670 ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfffffff0.0x7fffffff.0x80000000.0x7fffffff.0x80000000.0xffffffff.0x0.0x7654321 ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffff9c.0x80000000.0xffffffff.0x80000000.0xffffffff.0x12345670.0x1.0x0 ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffd8f0.0xffffffff.0x12345670.0xffffffff.0x12345670.0x7654321.0x2.0x1 ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7fffffff.0x12345670.0x7654321.0x12345670.0x7654321.0x0.0x3.0x2 ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x80000000.0x7654321.0x0.0x7654321.0x0.0x1.0xf.0x3 ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0x0.0x1.0x0.0x1.0x2.0x10.0xf ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x12345670.0x1.0x2.0x1.0x2.0x3.0x64.0x10 ++vsellbcw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7654321.0x2.0x3.0x2.0x3.0xf.0x2710.0x64 ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x2.0x3.0xf.0xffffffff.0x64.0xfffffffd ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x3.0xf.0x10.0xfffffffe.0x2710.0xfffffff1 ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0xf.0x10.0x64.0xfffffffd.0xffffffff.0xfffffff0 ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0x10.0x64.0x2710.0xfffffff1.0xfffffffe.0xffffff9c ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0x64.0x2710.0xffffffff.0xfffffff0.0xfffffffd.0xffffd8f0 ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0x2710.0xffffffff.0xfffffffe.0xffffff9c.0xfffffff1.0x7fffffff ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xffffffff.0xfffffffe.0xfffffffd.0xffffd8f0.0xfffffff0.0x80000000 ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffffe.0xfffffffd.0xfffffff1.0x7fffffff.0xffffff9c.0xffffffff ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xfffffffd.0xfffffff1.0xfffffff0.0x80000000.0xffffd8f0.0x12345670 ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xfffffff1.0xfffffff0.0xffffff9c.0xffffffff.0x7fffffff.0x7654321 ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0xfffffff0.0xffffff9c.0xffffd8f0.0x12345670.0x80000000.0x0 ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0xffffff9c.0xffffd8f0.0x7fffffff.0x7654321.0xffffffff.0x1 ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffd8f0.0x7fffffff.0x80000000.0x0.0x12345670.0x2 ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x7fffffff.0x80000000.0xffffffff.0x1.0x7654321.0x3 ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x80000000.0xffffffff.0x12345670.0x2.0x0.0xf ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0xffffffff.0x12345670.0x7654321.0x3.0x1.0x10 ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x12345670.0x7654321.0x0.0xf.0x2.0x64 ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x7654321.0x0.0x1.0x10.0x3.0x2710 ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x0.0x1.0x2.0x64.0xf.0xffffffff ++vsellbcw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0x1.0x2.0x3.0x2710.0x10.0xfffffffe ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x1.0x2.0x3.0xffffffff.0x10.0xfffffffd.0xfffffff1 ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x2.0x3.0xf.0xfffffffe.0x64.0xfffffff1.0xfffffff0 ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x3.0xf.0x10.0xfffffffd.0x2710.0xfffffff0.0xffffff9c ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xf.0x10.0x64.0xfffffff1.0xffffffff.0xffffff9c.0xffffd8f0 ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0x10.0x64.0x2710.0xfffffff0.0xfffffffe.0xffffd8f0.0x7fffffff ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0x64.0x2710.0xffffffff.0xffffff9c.0xfffffffd.0x7fffffff.0x80000000 ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0x2710.0xffffffff.0xfffffffe.0xffffd8f0.0xfffffff1.0x80000000.0xffffffff ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xffffffff.0xfffffffe.0xfffffffd.0x7fffffff.0xfffffff0.0xffffffff.0x12345670 ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xfffffffe.0xfffffffd.0xfffffff1.0x80000000.0xffffff9c.0x12345670.0x7654321 ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xfffffffd.0xfffffff1.0xfffffff0.0xffffffff.0xffffd8f0.0x7654321.0x0 ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0xfffffff1.0xfffffff0.0xffffff9c.0x12345670.0x7fffffff.0x0.0x1 ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0xfffffff0.0xffffff9c.0xffffd8f0.0x7654321.0x80000000.0x1.0x2 ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffff9c.0xffffd8f0.0x7fffffff.0x0.0xffffffff.0x2.0x3 ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xffffd8f0.0x7fffffff.0x80000000.0x1.0x12345670.0x3.0xf ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7fffffff.0x80000000.0xffffffff.0x2.0x7654321.0xf.0x10 ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x80000000.0xffffffff.0x12345670.0x3.0x0.0x10.0x64 ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0xffffffff.0x12345670.0x7654321.0xf.0x1.0x64.0x2710 ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x12345670.0x7654321.0x0.0x10.0x2.0x2710.0xffffffff ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x7654321.0x0.0x1.0x64.0x3.0xffffffff.0xfffffffe ++vsellbcw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0x0.0x1.0x2.0x2710.0xf.0xfffffffe.0xfffffffd ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x0.0x1.0x2.0xffffffff.0xf.0xfffffffd.0xfffffff1.0x2710 ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x1.0x2.0x3.0xfffffffe.0x10.0xfffffff1.0xfffffff0.0xffffffff ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2.0x3.0xf.0xfffffffd.0x64.0xfffffff0.0xffffff9c.0xfffffffe ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x3.0xf.0x10.0xfffffff1.0x2710.0xffffff9c.0xffffd8f0.0xfffffffd ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xf.0x10.0x64.0xfffffff0.0xffffffff.0xffffd8f0.0x7fffffff.0xfffffff1 ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x10.0x64.0x2710.0xffffff9c.0xfffffffe.0x7fffffff.0x80000000.0xfffffff0 ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x64.0x2710.0xffffffff.0xffffd8f0.0xfffffffd.0x80000000.0xffffffff.0xffffff9c ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x2710.0xffffffff.0xfffffffe.0x7fffffff.0xfffffff1.0xffffffff.0x12345670.0xffffd8f0 ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffff.0xfffffffe.0xfffffffd.0x80000000.0xfffffff0.0x12345670.0x7654321.0x7fffffff ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xfffffffe.0xfffffffd.0xfffffff1.0xffffffff.0xffffff9c.0x7654321.0x0.0x80000000 ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffffd.0xfffffff1.0xfffffff0.0x12345670.0xffffd8f0.0x0.0x1.0xffffffff ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xfffffff1.0xfffffff0.0xffffff9c.0x7654321.0x7fffffff.0x1.0x2.0x12345670 ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffff0.0xffffff9c.0xffffd8f0.0x0.0x80000000.0x2.0x3.0x7654321 ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x1.0xffffffff.0x3.0xf.0x0 ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffd8f0.0x7fffffff.0x80000000.0x2.0x12345670.0xf.0x10.0x1 ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x7fffffff.0x80000000.0xffffffff.0x3.0x7654321.0x10.0x64.0x2 ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x80000000.0xffffffff.0x12345670.0xf.0x0.0x64.0x2710.0x3 ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0x12345670.0x7654321.0x10.0x1.0x2710.0xffffffff.0xf ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x12345670.0x7654321.0x0.0x64.0x2.0xffffffff.0xfffffffe.0x10 ++vsellbcw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7654321.0x0.0x1.0x2710.0x3.0xfffffffe.0xfffffffd.0x64 ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x0.0x1.0xffffffff.0x3.0xfffffffd.0xfffffff1.0x64.0x2710 ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x1.0x2.0xfffffffe.0xf.0xfffffff1.0xfffffff0.0x2710.0xffffffff ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x2.0x3.0xfffffffd.0x10.0xfffffff0.0xffffff9c.0xffffffff.0xfffffffe ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x3.0xf.0xfffffff1.0x64.0xffffff9c.0xffffd8f0.0xfffffffe.0xfffffffd ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xf.0x10.0xfffffff0.0x2710.0xffffd8f0.0x7fffffff.0xfffffffd.0xfffffff1 ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x10.0x64.0xffffff9c.0xffffffff.0x7fffffff.0x80000000.0xfffffff1.0xfffffff0 ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x64.0x2710.0xffffd8f0.0xfffffffe.0x80000000.0xffffffff.0xfffffff0.0xffffff9c ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x2710.0xffffffff.0x7fffffff.0xfffffffd.0xffffffff.0x12345670.0xffffff9c.0xffffd8f0 ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffffff.0xfffffffe.0x80000000.0xfffffff1.0x12345670.0x7654321.0xffffd8f0.0x7fffffff ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xfffffffe.0xfffffffd.0xffffffff.0xfffffff0.0x7654321.0x0.0x7fffffff.0x80000000 ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xfffffffd.0xfffffff1.0x12345670.0xffffff9c.0x0.0x1.0x80000000.0xffffffff ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffff1.0xfffffff0.0x7654321.0xffffd8f0.0x1.0x2.0xffffffff.0x12345670 ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffffff0.0xffffff9c.0x0.0x7fffffff.0x2.0x3.0x12345670.0x7654321 ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffff9c.0xffffd8f0.0x1.0x80000000.0x3.0xf.0x7654321.0x0 ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffd8f0.0x7fffffff.0x2.0xffffffff.0xf.0x10.0x0.0x1 ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x7fffffff.0x80000000.0x3.0x12345670.0x10.0x64.0x1.0x2 ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x80000000.0xffffffff.0xf.0x7654321.0x64.0x2710.0x2.0x3 ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffffff.0x12345670.0x10.0x0.0x2710.0xffffffff.0x3.0xf ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x12345670.0x7654321.0x64.0x1.0xffffffff.0xfffffffe.0xf.0x10 ++vsellbcw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7654321.0x0.0x2710.0x2.0xfffffffe.0xfffffffd.0x10.0x64 ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x0.0xffffffff.0x2.0xfffffffd.0xfffffff1.0x10.0x64.0x2710 ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x1.0xfffffffe.0x3.0xfffffff1.0xfffffff0.0x64.0x2710.0xffffffff ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x2.0xfffffffd.0xf.0xfffffff0.0xffffff9c.0x2710.0xffffffff.0xfffffffe ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x3.0xfffffff1.0x10.0xffffff9c.0xffffd8f0.0xffffffff.0xfffffffe.0xfffffffd ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xf.0xfffffff0.0x64.0xffffd8f0.0x7fffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x10.0xffffff9c.0x2710.0x7fffffff.0x80000000.0xfffffffd.0xfffffff1.0xfffffff0 ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x64.0xffffd8f0.0xffffffff.0x80000000.0xffffffff.0xfffffff1.0xfffffff0.0xffffff9c ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2710.0x7fffffff.0xfffffffe.0xffffffff.0x12345670.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffff.0x80000000.0xfffffffd.0x12345670.0x7654321.0xffffff9c.0xffffd8f0.0x7fffffff ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xfffffffe.0xffffffff.0xfffffff1.0x7654321.0x0.0xffffd8f0.0x7fffffff.0x80000000 ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffd.0x12345670.0xfffffff0.0x0.0x1.0x7fffffff.0x80000000.0xffffffff ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffffff1.0x7654321.0xffffff9c.0x1.0x2.0x80000000.0xffffffff.0x12345670 ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff0.0x0.0xffffd8f0.0x2.0x3.0xffffffff.0x12345670.0x7654321 ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffff9c.0x1.0x7fffffff.0x3.0xf.0x12345670.0x7654321.0x0 ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffd8f0.0x2.0x80000000.0xf.0x10.0x7654321.0x0.0x1 ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x7fffffff.0x3.0xffffffff.0x10.0x64.0x0.0x1.0x2 ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x80000000.0xf.0x12345670.0x64.0x2710.0x1.0x2.0x3 ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0x10.0x7654321.0x2710.0xffffffff.0x2.0x3.0xf ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x12345670.0x64.0x0.0xffffffff.0xfffffffe.0x3.0xf.0x10 ++vsellbcw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7654321.0x2710.0x1.0xfffffffe.0xfffffffd.0xf.0x10.0x64 ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0x1.0xfffffffd.0xfffffff1.0xf.0x10.0x64.0x7fffffff ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0x2.0xfffffff1.0xfffffff0.0x10.0x64.0x2710.0x80000000 ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0x3.0xfffffff0.0xffffff9c.0x64.0x2710.0xffffffff.0xffffffff ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xf.0xffffff9c.0xffffd8f0.0x2710.0xffffffff.0xfffffffe.0x12345670 ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0x10.0xffffd8f0.0x7fffffff.0xffffffff.0xfffffffe.0xfffffffd.0x7654321 ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0x64.0x7fffffff.0x80000000.0xfffffffe.0xfffffffd.0xfffffff1.0x0 ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x2710.0x80000000.0xffffffff.0xfffffffd.0xfffffff1.0xfffffff0.0x1 ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0xffffffff.0xffffffff.0x12345670.0xfffffff1.0xfffffff0.0xffffff9c.0x2 ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xfffffffe.0x12345670.0x7654321.0xfffffff0.0xffffff9c.0xffffd8f0.0x3 ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xfffffffd.0x7654321.0x0.0xffffff9c.0xffffd8f0.0x7fffffff.0xf ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0xfffffff1.0x0.0x1.0xffffd8f0.0x7fffffff.0x80000000.0x10 ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0xfffffff0.0x1.0x2.0x7fffffff.0x80000000.0xffffffff.0x64 ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0xffffff9c.0x2.0x3.0x80000000.0xffffffff.0x12345670.0x2710 ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0xffffd8f0.0x3.0xf.0xffffffff.0x12345670.0x7654321.0xffffffff ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x7fffffff.0xf.0x10.0x12345670.0x7654321.0x0.0xfffffffe ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0x80000000.0x10.0x64.0x7654321.0x0.0x1.0xfffffffd ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0xffffffff.0x64.0x2710.0x0.0x1.0x2.0xfffffff1 ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x12345670.0x2710.0xffffffff.0x1.0x2.0x3.0xfffffff0 ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x7654321.0xffffffff.0xfffffffe.0x2.0x3.0xf.0xffffff9c ++vsellbcw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0x0.0xfffffffe.0xfffffffd.0x3.0xf.0x10.0xffffd8f0 ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0xfffffffd.0xfffffff1.0x3.0xf.0x10.0x7fffffff.0x2710 ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0xfffffff1.0xfffffff0.0xf.0x10.0x64.0x80000000.0xffffffff ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x2.0xfffffff0.0xffffff9c.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x3.0xffffff9c.0xffffd8f0.0x64.0x2710.0xffffffff.0x12345670.0xfffffffd ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xf.0xffffd8f0.0x7fffffff.0x2710.0xffffffff.0xfffffffe.0x7654321.0xfffffff1 ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x10.0x7fffffff.0x80000000.0xffffffff.0xfffffffe.0xfffffffd.0x0.0xfffffff0 ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x64.0x80000000.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x1.0xffffff9c ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x2710.0xffffffff.0x12345670.0xfffffffd.0xfffffff1.0xfffffff0.0x2.0xffffd8f0 ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0xfffffff1.0xfffffff0.0xffffff9c.0x3.0x7fffffff ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffffffe.0x7654321.0x0.0xfffffff0.0xffffff9c.0xffffd8f0.0xf.0x80000000 ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffd.0x0.0x1.0xffffff9c.0xffffd8f0.0x7fffffff.0x10.0xffffffff ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff1.0x1.0x2.0xffffd8f0.0x7fffffff.0x80000000.0x64.0x12345670 ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff0.0x2.0x3.0x7fffffff.0x80000000.0xffffffff.0x2710.0x7654321 ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff9c.0x3.0xf.0x80000000.0xffffffff.0x12345670.0xffffffff.0x0 ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffd8f0.0xf.0x10.0xffffffff.0x12345670.0x7654321.0xfffffffe.0x1 ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7fffffff.0x10.0x64.0x12345670.0x7654321.0x0.0xfffffffd.0x2 ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x80000000.0x64.0x2710.0x7654321.0x0.0x1.0xfffffff1.0x3 ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffff.0x2710.0xffffffff.0x0.0x1.0x2.0xfffffff0.0xf ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12345670.0xffffffff.0xfffffffe.0x1.0x2.0x3.0xffffff9c.0x10 ++vsellbcw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7654321.0xfffffffe.0xfffffffd.0x2.0x3.0xf.0xffffd8f0.0x64 ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0x2.0x3.0xf.0x7fffffff.0x64.0xffffffff ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0x3.0xf.0x10.0x80000000.0x2710.0x12345670 ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xf.0x10.0x64.0xffffffff.0xffffffff.0x7654321 ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x10.0x64.0x2710.0x12345670.0xfffffffe.0x0 ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x64.0x2710.0xffffffff.0x7654321.0xfffffffd.0x1 ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0x2710.0xffffffff.0xfffffffe.0x0.0xfffffff1.0x2 ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0xffffffff.0xfffffffe.0xfffffffd.0x1.0xfffffff0.0x3 ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0xfffffffe.0xfffffffd.0xfffffff1.0x2.0xffffff9c.0xf ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0xfffffffd.0xfffffff1.0xfffffff0.0x3.0xffffd8f0.0x10 ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0xfffffff1.0xfffffff0.0xffffff9c.0xf.0x7fffffff.0x64 ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0xfffffff0.0xffffff9c.0xffffd8f0.0x10.0x80000000.0x2710 ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0xffffff9c.0xffffd8f0.0x7fffffff.0x64.0xffffffff.0xffffffff ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xffffd8f0.0x7fffffff.0x80000000.0x2710.0x12345670.0xfffffffe ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x7fffffff.0x80000000.0xffffffff.0xffffffff.0x7654321.0xfffffffd ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x80000000.0xffffffff.0x12345670.0xfffffffe.0x0.0xfffffff1 ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0xffffffff.0x12345670.0x7654321.0xfffffffd.0x1.0xfffffff0 ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0x12345670.0x7654321.0x0.0xfffffff1.0x2.0xffffff9c ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0x7654321.0x0.0x1.0xfffffff0.0x3.0xffffd8f0 ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0x0.0x1.0x2.0xffffff9c.0xf.0x7fffffff ++vsellbcw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0x1.0x2.0x3.0xffffd8f0.0x10.0x80000000 ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0x1.0x2.0x3.0x7fffffff.0x10.0xffffffff.0x2710 ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0x2.0x3.0xf.0x80000000.0x64.0x12345670.0xffffffff ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0x3.0xf.0x10.0xffffffff.0x2710.0x7654321.0xfffffffe ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0xf.0x10.0x64.0x12345670.0xffffffff.0x0.0xfffffffd ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x10.0x64.0x2710.0x7654321.0xfffffffe.0x1.0xfffffff1 ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x64.0x2710.0xffffffff.0x0.0xfffffffd.0x2.0xfffffff0 ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x2710.0xffffffff.0xfffffffe.0x1.0xfffffff1.0x3.0xffffff9c ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0xffffffff.0xfffffffe.0xfffffffd.0x2.0xfffffff0.0xf.0xffffd8f0 ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0xfffffffe.0xfffffffd.0xfffffff1.0x3.0xffffff9c.0x10.0x7fffffff ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0xfffffffd.0xfffffff1.0xfffffff0.0xf.0xffffd8f0.0x64.0x80000000 ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0xfffffff1.0xfffffff0.0xffffff9c.0x10.0x7fffffff.0x2710.0xffffffff ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0xfffffff0.0xffffff9c.0xffffd8f0.0x64.0x80000000.0xffffffff.0x12345670 ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xffffff9c.0xffffd8f0.0x7fffffff.0x2710.0xffffffff.0xfffffffe.0x7654321 ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0xfffffffd.0x0 ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x7fffffff.0x80000000.0xffffffff.0xfffffffe.0x7654321.0xfffffff1.0x1 ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x80000000.0xffffffff.0x12345670.0xfffffffd.0x0.0xfffffff0.0x2 ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0x12345670.0x7654321.0xfffffff1.0x1.0xffffff9c.0x3 ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0x12345670.0x7654321.0x0.0xfffffff0.0x2.0xffffd8f0.0xf ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0x7654321.0x0.0x1.0xffffff9c.0x3.0x7fffffff.0x10 ++vsellbcw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0x0.0x1.0x2.0xffffd8f0.0xf.0x80000000.0x64 ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x1.0x2.0x7fffffff.0xf.0xffffffff.0x64.0x7654321 ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x2.0x3.0x80000000.0x10.0x12345670.0x2710.0x0 ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2.0x3.0xf.0xffffffff.0x64.0x7654321.0xffffffff.0x1 ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x3.0xf.0x10.0x12345670.0x2710.0x0.0xfffffffe.0x2 ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0x10.0x64.0x7654321.0xffffffff.0x1.0xfffffffd.0x3 ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x10.0x64.0x2710.0x0.0xfffffffe.0x2.0xfffffff1.0xf ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x64.0x2710.0xffffffff.0x1.0xfffffffd.0x3.0xfffffff0.0x10 ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2710.0xffffffff.0xfffffffe.0x2.0xfffffff1.0xf.0xffffff9c.0x64 ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xfffffffe.0xfffffffd.0x3.0xfffffff0.0x10.0xffffd8f0.0x2710 ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0xfffffffd.0xfffffff1.0xf.0xffffff9c.0x64.0x7fffffff.0xffffffff ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffd.0xfffffff1.0xfffffff0.0x10.0xffffd8f0.0x2710.0x80000000.0xfffffffe ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff1.0xfffffff0.0xffffff9c.0x64.0x7fffffff.0xffffffff.0xffffffff.0xfffffffd ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x2710.0x80000000.0xfffffffe.0x12345670.0xfffffff1 ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0xffffffff.0xffffffff.0xfffffffd.0x7654321.0xfffffff0 ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd8f0.0x7fffffff.0x80000000.0xfffffffe.0x12345670.0xfffffff1.0x0.0xffffff9c ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7fffffff.0x80000000.0xffffffff.0xfffffffd.0x7654321.0xfffffff0.0x1.0xffffd8f0 ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x80000000.0xffffffff.0x12345670.0xfffffff1.0x0.0xffffff9c.0x2.0x7fffffff ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0x12345670.0x7654321.0xfffffff0.0x1.0xffffd8f0.0x3.0x80000000 ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x12345670.0x7654321.0x0.0xffffff9c.0x2.0x7fffffff.0xf.0xffffffff ++vsellbcw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7654321.0x0.0x1.0xffffd8f0.0x3.0x80000000.0x10.0x12345670 ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x1.0x7fffffff.0x3.0xffffffff.0x10.0x7654321.0x2710 ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x2.0x80000000.0xf.0x12345670.0x64.0x0.0xffffffff ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x2.0x3.0xffffffff.0x10.0x7654321.0x2710.0x1.0xfffffffe ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x3.0xf.0x12345670.0x64.0x0.0xffffffff.0x2.0xfffffffd ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xf.0x10.0x7654321.0x2710.0x1.0xfffffffe.0x3.0xfffffff1 ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x10.0x64.0x0.0xffffffff.0x2.0xfffffffd.0xf.0xfffffff0 ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x64.0x2710.0x1.0xfffffffe.0x3.0xfffffff1.0x10.0xffffff9c ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2710.0xffffffff.0x2.0xfffffffd.0xf.0xfffffff0.0x64.0xffffd8f0 ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xfffffffe.0x3.0xfffffff1.0x10.0xffffff9c.0x2710.0x7fffffff ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffe.0xfffffffd.0xf.0xfffffff0.0x64.0xffffd8f0.0xffffffff.0x80000000 ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffd.0xfffffff1.0x10.0xffffff9c.0x2710.0x7fffffff.0xfffffffe.0xffffffff ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff1.0xfffffff0.0x64.0xffffd8f0.0xffffffff.0x80000000.0xfffffffd.0x12345670 ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff0.0xffffff9c.0x2710.0x7fffffff.0xfffffffe.0xffffffff.0xfffffff1.0x7654321 ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9c.0xffffd8f0.0xffffffff.0x80000000.0xfffffffd.0x12345670.0xfffffff0.0x0 ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f0.0x7fffffff.0xfffffffe.0xffffffff.0xfffffff1.0x7654321.0xffffff9c.0x1 ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7fffffff.0x80000000.0xfffffffd.0x12345670.0xfffffff0.0x0.0xffffd8f0.0x2 ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x80000000.0xffffffff.0xfffffff1.0x7654321.0xffffff9c.0x1.0x7fffffff.0x3 ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0x12345670.0xfffffff0.0x0.0xffffd8f0.0x2.0x80000000.0xf ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x12345670.0x7654321.0xffffff9c.0x1.0x7fffffff.0x3.0xffffffff.0x10 ++vsellbcw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7654321.0x0.0xffffd8f0.0x2.0x80000000.0xf.0x12345670.0x64 ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x7fffffff.0x2.0xffffffff.0xf.0x7654321.0x64.0x1 ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x80000000.0x3.0x12345670.0x10.0x0.0x2710.0x2 ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x2.0xffffffff.0xf.0x7654321.0x64.0x1.0xffffffff.0x3 ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x3.0x12345670.0x10.0x0.0x2710.0x2.0xfffffffe.0xf ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf.0x7654321.0x64.0x1.0xffffffff.0x3.0xfffffffd.0x10 ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x10.0x0.0x2710.0x2.0xfffffffe.0xf.0xfffffff1.0x64 ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x64.0x1.0xffffffff.0x3.0xfffffffd.0x10.0xfffffff0.0x2710 ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2710.0x2.0xfffffffe.0xf.0xfffffff1.0x64.0xffffff9c.0xffffffff ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0x3.0xfffffffd.0x10.0xfffffff0.0x2710.0xffffd8f0.0xfffffffe ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffe.0xf.0xfffffff1.0x64.0xffffff9c.0xffffffff.0x7fffffff.0xfffffffd ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffffd.0x10.0xfffffff0.0x2710.0xffffd8f0.0xfffffffe.0x80000000.0xfffffff1 ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff1.0x64.0xffffff9c.0xffffffff.0x7fffffff.0xfffffffd.0xffffffff.0xfffffff0 ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffff0.0x2710.0xffffd8f0.0xfffffffe.0x80000000.0xfffffff1.0x12345670.0xffffff9c ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffff9c.0xffffffff.0x7fffffff.0xfffffffd.0xffffffff.0xfffffff0.0x7654321.0xffffd8f0 ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffd8f0.0xfffffffe.0x80000000.0xfffffff1.0x12345670.0xffffff9c.0x0.0x7fffffff ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7fffffff.0xfffffffd.0xffffffff.0xfffffff0.0x7654321.0xffffd8f0.0x1.0x80000000 ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x80000000.0xfffffff1.0x12345670.0xffffff9c.0x0.0x7fffffff.0x2.0xffffffff ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0xfffffff0.0x7654321.0xffffd8f0.0x1.0x80000000.0x3.0x12345670 ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12345670.0xffffff9c.0x0.0x7fffffff.0x2.0xffffffff.0xf.0x7654321 ++vsellbcw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7654321.0xffffd8f0.0x1.0x80000000.0x3.0x12345670.0x10.0x0 ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x1.0xffffffff.0x3.0x7654321.0x10.0x1.0x2710 ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x2.0x12345670.0xf.0x0.0x64.0x2.0xffffffff ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x3.0x7654321.0x10.0x1.0x2710.0x3.0xfffffffe ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0xf.0x0.0x64.0x2.0xffffffff.0xf.0xfffffffd ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x10.0x1.0x2710.0x3.0xfffffffe.0x10.0xfffffff1 ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x64.0x2.0xffffffff.0xf.0xfffffffd.0x64.0xfffffff0 ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2710.0x3.0xfffffffe.0x10.0xfffffff1.0x2710.0xffffff9c ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0xffffffff.0xf.0xfffffffd.0x64.0xfffffff0.0xffffffff.0xffffd8f0 ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xfffffffe.0x10.0xfffffff1.0x2710.0xffffff9c.0xfffffffe.0x7fffffff ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0xfffffffd.0x64.0xfffffff0.0xffffffff.0xffffd8f0.0xfffffffd.0x80000000 ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0xfffffff1.0x2710.0xffffff9c.0xfffffffe.0x7fffffff.0xfffffff1.0xffffffff ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0xfffffff0.0xffffffff.0xffffd8f0.0xfffffffd.0x80000000.0xfffffff0.0x12345670 ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffff9c.0xfffffffe.0x7fffffff.0xfffffff1.0xffffffff.0xffffff9c.0x7654321 ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffd8f0.0xfffffffd.0x80000000.0xfffffff0.0x12345670.0xffffd8f0.0x0 ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0x7fffffff.0xfffffff1.0xffffffff.0xffffff9c.0x7654321.0x7fffffff.0x1 ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0x80000000.0xfffffff0.0x12345670.0xffffd8f0.0x0.0x80000000.0x2 ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xffffffff.0xffffff9c.0x7654321.0x7fffffff.0x1.0xffffffff.0x3 ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0x12345670.0xffffd8f0.0x0.0x80000000.0x2.0x12345670.0xf ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0x7654321.0x7fffffff.0x1.0xffffffff.0x3.0x7654321.0x10 ++vsellbcw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x0.0x80000000.0x2.0x12345670.0xf.0x0.0x64 ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0xffffffff.0x2.0x7654321.0xf.0x1.0x64.0x3 ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x12345670.0x3.0x0.0x10.0x2.0x2710.0xf ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x2.0x7654321.0xf.0x1.0x64.0x3.0xffffffff.0x10 ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x3.0x0.0x10.0x2.0x2710.0xf.0xfffffffe.0x64 ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf.0x1.0x64.0x3.0xffffffff.0x10.0xfffffffd.0x2710 ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x10.0x2.0x2710.0xf.0xfffffffe.0x64.0xfffffff1.0xffffffff ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x64.0x3.0xffffffff.0x10.0xfffffffd.0x2710.0xfffffff0.0xfffffffe ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2710.0xf.0xfffffffe.0x64.0xfffffff1.0xffffffff.0xffffff9c.0xfffffffd ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0x10.0xfffffffd.0x2710.0xfffffff0.0xfffffffe.0xffffd8f0.0xfffffff1 ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffffe.0x64.0xfffffff1.0xffffffff.0xffffff9c.0xfffffffd.0x7fffffff.0xfffffff0 ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffd.0x2710.0xfffffff0.0xfffffffe.0xffffd8f0.0xfffffff1.0x80000000.0xffffff9c ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xfffffff1.0xffffffff.0xffffff9c.0xfffffffd.0x7fffffff.0xfffffff0.0xffffffff.0xffffd8f0 ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffff0.0xfffffffe.0xffffd8f0.0xfffffff1.0x80000000.0xffffff9c.0x12345670.0x7fffffff ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffff9c.0xfffffffd.0x7fffffff.0xfffffff0.0xffffffff.0xffffd8f0.0x7654321.0x80000000 ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffd8f0.0xfffffff1.0x80000000.0xffffff9c.0x12345670.0x7fffffff.0x0.0xffffffff ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7fffffff.0xfffffff0.0xffffffff.0xffffd8f0.0x7654321.0x80000000.0x1.0x12345670 ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x80000000.0xffffff9c.0x12345670.0x7fffffff.0x0.0xffffffff.0x2.0x7654321 ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffff.0xffffd8f0.0x7654321.0x80000000.0x1.0x12345670.0x3.0x0 ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12345670.0x7fffffff.0x0.0xffffffff.0x2.0x7654321.0xf.0x1 ++vsellbcw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7654321.0x80000000.0x1.0x12345670.0x3.0x0.0x10.0x2 ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x1.0x7654321.0x3.0x1.0x10.0x3.0xf ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x2.0x0.0xf.0x2.0x64.0xf.0x10 ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x3.0x1.0x10.0x3.0x2710.0x10.0x64 ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0xf.0x2.0x64.0xf.0xffffffff.0x64.0x2710 ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x10.0x3.0x2710.0x10.0xfffffffe.0x2710.0xffffffff ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x64.0xf.0xffffffff.0x64.0xfffffffd.0xffffffff.0xfffffffe ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0x2710.0x10.0xfffffffe.0x2710.0xfffffff1.0xfffffffe.0xfffffffd ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0xffffffff.0x64.0xfffffffd.0xffffffff.0xfffffff0.0xfffffffd.0xfffffff1 ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0xfffffffe.0x2710.0xfffffff1.0xfffffffe.0xffffff9c.0xfffffff1.0xfffffff0 ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0xfffffffd.0xffffffff.0xfffffff0.0xfffffffd.0xffffd8f0.0xfffffff0.0xffffff9c ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xfffffff1.0xfffffffe.0xffffff9c.0xfffffff1.0x7fffffff.0xffffff9c.0xffffd8f0 ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffff0.0xfffffffd.0xffffd8f0.0xfffffff0.0x80000000.0xffffd8f0.0x7fffffff ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xffffff9c.0xfffffff1.0x7fffffff.0xffffff9c.0xffffffff.0x7fffffff.0x80000000 ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xffffd8f0.0xfffffff0.0x80000000.0xffffd8f0.0x12345670.0x80000000.0xffffffff ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0x7fffffff.0xffffff9c.0xffffffff.0x7fffffff.0x7654321.0xffffffff.0x12345670 ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0x80000000.0xffffd8f0.0x12345670.0x80000000.0x0.0x12345670.0x7654321 ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffffff.0x7fffffff.0x7654321.0xffffffff.0x1.0x7654321.0x0 ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x12345670.0x80000000.0x0.0x12345670.0x2.0x0.0x1 ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x7654321.0xffffffff.0x1.0x7654321.0x3.0x1.0x2 ++vsellbcw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x0.0x12345670.0x2.0x0.0xf.0x2.0x3 ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x0.0x7654321.0x2.0x1.0xf.0x3.0xf.0x2710 ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x1.0x0.0x3.0x2.0x10.0xf.0x10.0xffffffff ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2.0x1.0xf.0x3.0x64.0x10.0x64.0xfffffffe ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x3.0x2.0x10.0xf.0x2710.0x64.0x2710.0xfffffffd ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xf.0x3.0x64.0x10.0xffffffff.0x2710.0xffffffff.0xfffffff1 ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x10.0xf.0x2710.0x64.0xfffffffe.0xffffffff.0xfffffffe.0xfffffff0 ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x64.0x10.0xffffffff.0x2710.0xfffffffd.0xfffffffe.0xfffffffd.0xffffff9c ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x2710.0x64.0xfffffffe.0xffffffff.0xfffffff1.0xfffffffd.0xfffffff1.0xffffd8f0 ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffff.0x2710.0xfffffffd.0xfffffffe.0xfffffff0.0xfffffff1.0xfffffff0.0x7fffffff ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xfffffffe.0xffffffff.0xfffffff1.0xfffffffd.0xffffff9c.0xfffffff0.0xffffff9c.0x80000000 ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffffd.0xfffffffe.0xfffffff0.0xfffffff1.0xffffd8f0.0xffffff9c.0xffffd8f0.0xffffffff ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffff1.0xfffffffd.0xffffff9c.0xfffffff0.0x7fffffff.0xffffd8f0.0x7fffffff.0x12345670 ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffff0.0xfffffff1.0xffffd8f0.0xffffff9c.0x80000000.0x7fffffff.0x80000000.0x7654321 ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffff9c.0xfffffff0.0x7fffffff.0xffffd8f0.0xffffffff.0x80000000.0xffffffff.0x0 ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xffffd8f0.0xffffff9c.0x80000000.0x7fffffff.0x12345670.0xffffffff.0x12345670.0x1 ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7fffffff.0xffffd8f0.0xffffffff.0x80000000.0x7654321.0x12345670.0x7654321.0x2 ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x80000000.0x7fffffff.0x12345670.0xffffffff.0x0.0x7654321.0x0.0x3 ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xffffffff.0x80000000.0x7654321.0x12345670.0x1.0x0.0x1.0xf ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x12345670.0xffffffff.0x0.0x7654321.0x2.0x1.0x2.0x10 ++vsellbcw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x7654321.0x12345670.0x1.0x0.0x3.0x2.0x3.0x64 ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x1.0x1.0x3.0x3.0xf.0x64.0x2710 ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x2.0x2.0xf.0xf.0x10.0x2710.0xffffffff ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x3.0x3.0x10.0x10.0x64.0xffffffff.0xfffffffe ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0xf.0xf.0x64.0x64.0x2710.0xfffffffe.0xfffffffd ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0x10.0x10.0x2710.0x2710.0xffffffff.0xfffffffd.0xfffffff1 ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x64.0x64.0xffffffff.0xffffffff.0xfffffffe.0xfffffff1.0xfffffff0 ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x2710.0x2710.0xfffffffe.0xfffffffe.0xfffffffd.0xfffffff0.0xffffff9c ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0xffffffff.0xffffffff.0xfffffffd.0xfffffffd.0xfffffff1.0xffffff9c.0xffffd8f0 ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xfffffffe.0xfffffffe.0xfffffff1.0xfffffff1.0xfffffff0.0xffffd8f0.0x7fffffff ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffd.0xfffffffd.0xfffffff0.0xfffffff0.0xffffff9c.0x7fffffff.0x80000000 ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffff1.0xfffffff1.0xffffff9c.0xffffff9c.0xffffd8f0.0x80000000.0xffffffff ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff0.0xfffffff0.0xffffd8f0.0xffffd8f0.0x7fffffff.0xffffffff.0x12345670 ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xffffff9c.0xffffff9c.0x7fffffff.0x7fffffff.0x80000000.0x12345670.0x7654321 ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffd8f0.0xffffd8f0.0x80000000.0x80000000.0xffffffff.0x7654321.0x0 ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0x7fffffff.0x7fffffff.0xffffffff.0xffffffff.0x12345670.0x0.0x1 ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x80000000.0x80000000.0x12345670.0x12345670.0x7654321.0x1.0x2 ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0xffffffff.0xffffffff.0x7654321.0x7654321.0x0.0x2.0x3 ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x12345670.0x12345670.0x0.0x0.0x1.0x3.0xf ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x7654321.0x7654321.0x1.0x1.0x2.0xf.0x10 ++vsellbcw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x0.0x0.0x2.0x2.0x3.0x10.0x64 ++=== Running test on vselltw=== ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vselltw 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0x2710 ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xffffffff ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffe ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffffd ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff1 ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xfffffff0 ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffff9c ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0xffffd8f0 ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x7fffffff ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x80000000 ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0xffffffff ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x12345670 ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x7654321 ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x0 ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x1 ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x2 ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0x3 ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0xf ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x10 ++vselltw 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x64 ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0x64.0x2710 ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0x2710.0xffffffff ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xffffffff.0xfffffffe ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffffe.0xfffffffd ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffffd.0xfffffff1 ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xfffffff1.0xfffffff0 ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xfffffff0.0xffffff9c ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0xffffff9c.0xffffd8f0 ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0xffffd8f0.0x7fffffff ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x7fffffff.0x80000000 ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x80000000.0xffffffff ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0xffffffff.0x12345670 ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x12345670.0x7654321 ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x7654321.0x0 ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x0.0x1 ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x1.0x2 ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0x2.0x3 ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x3.0xf ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0xf.0x10 ++vselltw 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x10.0x64 ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0x10.0x64.0x2710 ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0x64.0x2710.0xffffffff ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0x2710.0xffffffff.0xfffffffe ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xffffffff.0xfffffffe.0xfffffffd ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffffe.0xfffffffd.0xfffffff1 ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xfffffffd.0xfffffff1.0xfffffff0 ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xfffffff1.0xfffffff0.0xffffff9c ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0xfffffff0.0xffffff9c.0xffffd8f0 ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0xffffff9c.0xffffd8f0.0x7fffffff ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffd8f0.0x7fffffff.0x80000000 ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x7fffffff.0x80000000.0xffffffff ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x80000000.0xffffffff.0x12345670 ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0xffffffff.0x12345670.0x7654321 ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x12345670.0x7654321.0x0 ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x7654321.0x0.0x1 ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x0.0x1.0x2 ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0x1.0x2.0x3 ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x2.0x3.0xf ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x3.0xf.0x10 ++vselltw 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0xf.0x10.0x64 ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xf.0x10.0x64.0x2710 ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0x10.0x64.0x2710.0xffffffff ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0x64.0x2710.0xffffffff.0xfffffffe ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x80000000.0xffffffff.0x12345670.0x7654321 ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0xffffffff.0x12345670.0x7654321.0x0 ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x12345670.0x7654321.0x0.0x1 ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x7654321.0x0.0x1.0x2 ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0x0.0x1.0x2.0x3 ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x1.0x2.0x3.0xf ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x2.0x3.0xf.0x10 ++vselltw 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x3.0xf.0x10.0x64 ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0x3.0xf.0x10.0x64.0x2710 ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xf.0x10.0x64.0x2710.0xffffffff ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x12345670.0x7654321.0x0.0x1.0x2 ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0x7654321.0x0.0x1.0x2.0x3 ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x0.0x1.0x2.0x3.0xf ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x1.0x2.0x3.0xf.0x10 ++vselltw 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2.0x3.0xf.0x10.0x64 ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0x2.0x3.0xf.0x10.0x64.0x2710 ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x7654321.0x0.0x1.0x2.0x3.0xf ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x0.0x1.0x2.0x3.0xf.0x10 ++vselltw 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x1.0x2.0x3.0xf.0x10.0x64 ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vselltw 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x7fffffff ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0x80000000 ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xffffffff ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0x12345670 ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x7654321 ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x0 ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0x1 ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0x2 ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x3 ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0xf ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x10 ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x64 ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x2710 ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0xffffffff ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0xfffffffe ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0xfffffffd ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0xfffffff1 ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xfffffff0 ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0xffffff9c ++vselltw 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0xffffd8f0 ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x1.0x2.0x3.0xf.0x10.0x7fffffff.0x2710 ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x80000000.0xffffffff ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0x12345670.0xfffffffd ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0x7654321.0xfffffff1 ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x0.0xfffffff0 ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x1.0xffffff9c ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0x2.0xffffd8f0 ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0x3.0x7fffffff ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0xf.0x80000000 ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x10.0xffffffff ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x64.0x12345670 ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x2710.0x7654321 ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0xffffffff.0x0 ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0xfffffffe.0x1 ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0xfffffffd.0x2 ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0xfffffff1.0x3 ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0xfffffff0.0xf ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xffffff9c.0x10 ++vselltw 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7654321.0x0.0x1.0x2.0x3.0xf.0xffffd8f0.0x64 ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x1.0x2.0x3.0xf.0x7fffffff.0x64.0x2710 ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x2.0x3.0xf.0x10.0x80000000.0x2710.0xffffffff ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x2.0x3.0xf.0x10.0x64.0xffffffff.0xffffffff.0xfffffffe ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x3.0xf.0x10.0x64.0x2710.0x12345670.0xfffffffe.0xfffffffd ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xf.0x10.0x64.0x2710.0xffffffff.0x7654321.0xfffffffd.0xfffffff1 ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0x0.0xfffffff1.0xfffffff0 ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x1.0xfffffff0.0xffffff9c ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x2.0xffffff9c.0xffffd8f0 ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0x3.0xffffd8f0.0x7fffffff ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xf.0x7fffffff.0x80000000 ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x10.0x80000000.0xffffffff ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x64.0xffffffff.0x12345670 ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x2710.0x12345670.0x7654321 ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0xffffffff.0x7654321.0x0 ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0xfffffffe.0x0.0x1 ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0xfffffffd.0x1.0x2 ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0xfffffff1.0x2.0x3 ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0xfffffff0.0x3.0xf ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x12345670.0x7654321.0x0.0x1.0x2.0xffffff9c.0xf.0x10 ++vselltw 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7654321.0x0.0x1.0x2.0x3.0xffffd8f0.0x10.0x64 ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x1.0x2.0x3.0x7fffffff.0x10.0x64.0x12345670 ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x2.0x3.0xf.0x80000000.0x64.0x2710.0x7654321 ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x2.0x3.0xf.0x10.0xffffffff.0x2710.0xffffffff.0x0 ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x3.0xf.0x10.0x64.0x12345670.0xffffffff.0xfffffffe.0x1 ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xf.0x10.0x64.0x2710.0x7654321.0xfffffffe.0xfffffffd.0x2 ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x10.0x64.0x2710.0xffffffff.0x0.0xfffffffd.0xfffffff1.0x3 ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x64.0x2710.0xffffffff.0xfffffffe.0x1.0xfffffff1.0xfffffff0.0xf ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x2.0xfffffff0.0xffffff9c.0x10 ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x3.0xffffff9c.0xffffd8f0.0x64 ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xf.0xffffd8f0.0x7fffffff.0x2710 ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0x10.0x7fffffff.0x80000000.0xffffffff ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x64.0x80000000.0xffffffff.0xfffffffe ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x2710.0xffffffff.0x12345670.0xfffffffd ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0xfffffff1 ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0xfffffffe.0x7654321.0x0.0xfffffff0 ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0xfffffffd.0x0.0x1.0xffffff9c ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x80000000.0xffffffff.0x12345670.0x7654321.0xfffffff1.0x1.0x2.0xffffd8f0 ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0x12345670.0x7654321.0x0.0xfffffff0.0x2.0x3.0x7fffffff ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x12345670.0x7654321.0x0.0x1.0xffffff9c.0x3.0xf.0x80000000 ++vselltw 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7654321.0x0.0x1.0x2.0xffffd8f0.0xf.0x10.0xffffffff ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x1.0x2.0x7fffffff.0xf.0x10.0x12345670.0x7654321 ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x2.0x3.0x80000000.0x10.0x64.0x7654321.0x0 ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2.0x3.0xf.0xffffffff.0x64.0x2710.0x0.0x1 ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x3.0xf.0x10.0x12345670.0x2710.0xffffffff.0x1.0x2 ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0x10.0x64.0x7654321.0xffffffff.0xfffffffe.0x2.0x3 ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x10.0x64.0x2710.0x0.0xfffffffe.0xfffffffd.0x3.0xf ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x64.0x2710.0xffffffff.0x1.0xfffffffd.0xfffffff1.0xf.0x10 ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2710.0xffffffff.0xfffffffe.0x2.0xfffffff1.0xfffffff0.0x10.0x64 ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xfffffffe.0xfffffffd.0x3.0xfffffff0.0xffffff9c.0x64.0x2710 ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0xfffffffd.0xfffffff1.0xf.0xffffff9c.0xffffd8f0.0x2710.0xffffffff ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffd.0xfffffff1.0xfffffff0.0x10.0xffffd8f0.0x7fffffff.0xffffffff.0xfffffffe ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff1.0xfffffff0.0xffffff9c.0x64.0x7fffffff.0x80000000.0xfffffffe.0xfffffffd ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x2710.0x80000000.0xffffffff.0xfffffffd.0xfffffff1 ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0xffffffff.0xffffffff.0x12345670.0xfffffff1.0xfffffff0 ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd8f0.0x7fffffff.0x80000000.0xfffffffe.0x12345670.0x7654321.0xfffffff0.0xffffff9c ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7fffffff.0x80000000.0xffffffff.0xfffffffd.0x7654321.0x0.0xffffff9c.0xffffd8f0 ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x80000000.0xffffffff.0x12345670.0xfffffff1.0x0.0x1.0xffffd8f0.0x7fffffff ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0x12345670.0x7654321.0xfffffff0.0x1.0x2.0x7fffffff.0x80000000 ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x12345670.0x7654321.0x0.0xffffff9c.0x2.0x3.0x80000000.0xffffffff ++vselltw 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7654321.0x0.0x1.0xffffd8f0.0x3.0xf.0xffffffff.0x12345670 ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x1.0x7fffffff.0x3.0xf.0x12345670.0x7654321.0x0 ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x2.0x80000000.0xf.0x10.0x7654321.0x0.0x1 ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x2.0x3.0xffffffff.0x10.0x64.0x0.0x1.0x2 ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x3.0xf.0x12345670.0x64.0x2710.0x1.0x2.0x3 ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xf.0x10.0x7654321.0x2710.0xffffffff.0x2.0x3.0xf ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x10.0x64.0x0.0xffffffff.0xfffffffe.0x3.0xf.0x10 ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x64.0x2710.0x1.0xfffffffe.0xfffffffd.0xf.0x10.0x64 ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2710.0xffffffff.0x2.0xfffffffd.0xfffffff1.0x10.0x64.0x2710 ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xfffffffe.0x3.0xfffffff1.0xfffffff0.0x64.0x2710.0xffffffff ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffe.0xfffffffd.0xf.0xfffffff0.0xffffff9c.0x2710.0xffffffff.0xfffffffe ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffd.0xfffffff1.0x10.0xffffff9c.0xffffd8f0.0xffffffff.0xfffffffe.0xfffffffd ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff1.0xfffffff0.0x64.0xffffd8f0.0x7fffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff0.0xffffff9c.0x2710.0x7fffffff.0x80000000.0xfffffffd.0xfffffff1.0xfffffff0 ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9c.0xffffd8f0.0xffffffff.0x80000000.0xffffffff.0xfffffff1.0xfffffff0.0xffffff9c ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f0.0x7fffffff.0xfffffffe.0xffffffff.0x12345670.0xfffffff0.0xffffff9c.0xffffd8f0 ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7fffffff.0x80000000.0xfffffffd.0x12345670.0x7654321.0xffffff9c.0xffffd8f0.0x7fffffff ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x80000000.0xffffffff.0xfffffff1.0x7654321.0x0.0xffffd8f0.0x7fffffff.0x80000000 ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0x12345670.0xfffffff0.0x0.0x1.0x7fffffff.0x80000000.0xffffffff ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x12345670.0x7654321.0xffffff9c.0x1.0x2.0x80000000.0xffffffff.0x12345670 ++vselltw 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7654321.0x0.0xffffd8f0.0x2.0x3.0xffffffff.0x12345670.0x7654321 ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x7fffffff.0x2.0x3.0x12345670.0x7654321.0x0.0x1 ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x80000000.0x3.0xf.0x7654321.0x0.0x1.0x2 ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x2.0xffffffff.0xf.0x10.0x0.0x1.0x2.0x3 ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x3.0x12345670.0x10.0x64.0x1.0x2.0x3.0xf ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf.0x7654321.0x64.0x2710.0x2.0x3.0xf.0x10 ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x10.0x0.0x2710.0xffffffff.0x3.0xf.0x10.0x64 ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x64.0x1.0xffffffff.0xfffffffe.0xf.0x10.0x64.0x2710 ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2710.0x2.0xfffffffe.0xfffffffd.0x10.0x64.0x2710.0xffffffff ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0x3.0xfffffffd.0xfffffff1.0x64.0x2710.0xffffffff.0xfffffffe ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffe.0xf.0xfffffff1.0xfffffff0.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffffd.0x10.0xfffffff0.0xffffff9c.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff1.0x64.0xffffff9c.0xffffd8f0.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffff0.0x2710.0xffffd8f0.0x7fffffff.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffff9c.0xffffffff.0x7fffffff.0x80000000.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffd8f0.0xfffffffe.0x80000000.0xffffffff.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7fffffff.0xfffffffd.0xffffffff.0x12345670.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x80000000.0xfffffff1.0x12345670.0x7654321.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0xfffffff0.0x7654321.0x0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12345670.0xffffff9c.0x0.0x1.0x80000000.0xffffffff.0x12345670.0x7654321 ++vselltw 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7654321.0xffffd8f0.0x1.0x2.0xffffffff.0x12345670.0x7654321.0x0 ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x1.0x2.0x12345670.0x7654321.0x0.0x1.0x2 ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x2.0x3.0x7654321.0x0.0x1.0x2.0x3 ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x3.0xf.0x0.0x1.0x2.0x3.0xf ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0xf.0x10.0x1.0x2.0x3.0xf.0x10 ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x10.0x64.0x2.0x3.0xf.0x10.0x64 ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x64.0x2710.0x3.0xf.0x10.0x64.0x2710 ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2710.0xffffffff.0xf.0x10.0x64.0x2710.0xffffffff ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0xffffffff.0xfffffffe.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xfffffffe.0xfffffffd.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0xfffffffd.0xfffffff1.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0xfffffff1.0xfffffff0.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0xfffffff0.0xffffff9c.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffff9c.0xffffd8f0.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffd8f0.0x7fffffff.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0x7fffffff.0x80000000.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0x80000000.0xffffffff.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xffffffff.0x12345670.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0x12345670.0x7654321.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0x7654321.0x0.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vselltw 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x0.0x1.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x2.0x7654321.0x0.0x1.0x2.0x3.0xf ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x2.0x3.0x0.0x1.0x2.0x3.0xf.0x10 ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x3.0xf.0x1.0x2.0x3.0xf.0x10.0x64 ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf.0x10.0x2.0x3.0xf.0x10.0x64.0x2710 ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x10.0x64.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x64.0x2710.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2710.0xffffffff.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0xfffffffe.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffffe.0xfffffffd.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffd.0xfffffff1.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xfffffff1.0xfffffff0.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffff0.0xffffff9c.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffff9c.0xffffd8f0.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffd8f0.0x7fffffff.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7fffffff.0x80000000.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x80000000.0xffffffff.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffff.0x12345670.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12345670.0x7654321.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vselltw 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7654321.0x0.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x3.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xf.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x10.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x64.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2710.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffe.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xfffffffd.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffff1.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffff0.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffff9c.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffd8f0.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7fffffff.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x80000000.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffffff.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x12345670.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vselltw 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7654321.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vselltw 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vselltw 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++=== Running test on vsellew=== ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsellew 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0x2710 ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xffffffff ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffe ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffffd ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff1 ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xfffffff0 ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffff9c ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0xffffd8f0 ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x7fffffff ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x80000000 ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0xffffffff ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x12345670 ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x7654321 ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x0 ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x1 ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x2 ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0x3 ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0xf ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x10 ++vsellew 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x64 ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0x2710.0x64.0x2710 ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0x2710.0xffffffff ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xffffffff.0xfffffffe ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffffe.0xfffffffd ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffffd.0xfffffff1 ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xfffffff1.0xfffffff0 ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xfffffff0.0xffffff9c ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0xffffff9c.0xffffd8f0 ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0xffffd8f0.0x7fffffff ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x7fffffff.0x80000000 ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x80000000.0xffffffff ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0xffffffff.0x12345670 ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x12345670.0x7654321 ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x7654321.0x0 ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x0.0x1 ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x1.0x2 ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0x2.0x3 ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x3.0xf ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x10.0xf.0x10 ++vsellew 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x10.0x64 ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x2710.0x10.0x64.0x2710 ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xffffffff.0x64.0x2710.0xffffffff ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0x2710.0xffffffff.0xfffffffe ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xffffffff.0xfffffffe.0xfffffffd ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffffe.0xfffffffd.0xfffffff1 ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xfffffffd.0xfffffff1.0xfffffff0 ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xfffffff1.0xfffffff0.0xffffff9c ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0xffffff9c.0xffffd8f0.0x7fffffff ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffd8f0.0x7fffffff.0x80000000 ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x7fffffff.0x80000000.0xffffffff ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x80000000.0xffffffff.0x12345670 ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0xffffffff.0x12345670.0x7654321 ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x12345670.0x7654321.0x0 ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x7654321.0x0.0x1 ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x2.0x0.0x1.0x2 ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x3.0x1.0x2.0x3 ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0xf.0x2.0x3.0xf ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x3.0xf.0x10 ++vsellew 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x64.0xf.0x10.0x64 ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2710.0xf.0x10.0x64.0x2710 ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0xffffffff.0x10.0x64.0x2710.0xffffffff ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xfffffffe.0x64.0x2710.0xffffffff.0xfffffffe ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x0.0xffffffff.0x12345670.0x7654321.0x0 ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x1.0x12345670.0x7654321.0x0.0x1 ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0x2.0x7654321.0x0.0x1.0x2 ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x3.0x0.0x1.0x2.0x3 ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0xf.0x1.0x2.0x3.0xf ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x10.0x2.0x3.0xf.0x10 ++vsellew 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x64.0x3.0xf.0x10.0x64 ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x2710.0x3.0xf.0x10.0x64.0x2710 ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xffffffff.0xf.0x10.0x64.0x2710.0xffffffff ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffffe.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffffd.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xfffffff1.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0xffffff9c.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffd8f0.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x80000000.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xffffffff.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x12345670.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x7654321.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x0.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x1.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x2.0x12345670.0x7654321.0x0.0x1.0x2 ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x3.0x7654321.0x0.0x1.0x2.0x3 ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0xf.0x0.0x1.0x2.0x3.0xf ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x10.0x1.0x2.0x3.0xf.0x10 ++vsellew 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x64.0x2.0x3.0xf.0x10.0x64 ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0x0.0x1.0x2.0x3.0xf.0x10 ++vsellew 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0x1.0x2.0x3.0xf.0x10.0x64 ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 ++vsellew 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x0.0x1.0x2.0x3.0xf.0x10.0x64 ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x7fffffff ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0x80000000 ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xffffffff ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0x12345670 ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x7654321 ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x0 ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0x1 ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0x2 ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x3 ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0xf ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x10 ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x64 ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x2710 ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0xffffffff ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0xfffffffe ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0xfffffffd ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0xfffffff1 ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xfffffff0 ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0xffffff9c ++vsellew 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0xffffd8f0 ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x0.0x1.0x2.0x3.0xf.0x10.0x7fffffff.0x2710 ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x1.0x2.0x3.0xf.0x10.0x64.0x80000000.0xffffffff ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0x12345670.0xfffffffd ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0x7654321.0xfffffff1 ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x0.0xfffffff0 ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x1.0xffffff9c ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0x2.0xffffd8f0 ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0x3.0x7fffffff ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0xf.0x80000000 ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x10.0xffffffff ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x64.0x12345670 ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x2710.0x7654321 ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0xffffffff.0x0 ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0xfffffffe.0x1 ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0xfffffffd.0x2 ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0xfffffff1.0x3 ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0xfffffff0.0xf ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xffffff9c.0x10 ++vsellew 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7654321.0x0.0x1.0x2.0x3.0xf.0xffffd8f0.0x64 ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x0.0x1.0x2.0x3.0xf.0x7fffffff.0x64.0x2710 ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x1.0x2.0x3.0xf.0x10.0x80000000.0x2710.0xffffffff ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x2.0x3.0xf.0x10.0x64.0xffffffff.0xffffffff.0xfffffffe ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x3.0xf.0x10.0x64.0x2710.0x12345670.0xfffffffe.0xfffffffd ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xf.0x10.0x64.0x2710.0xffffffff.0x7654321.0xfffffffd.0xfffffff1 ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0x0.0xfffffff1.0xfffffff0 ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x1.0xfffffff0.0xffffff9c ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x2.0xffffff9c.0xffffd8f0 ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0x3.0xffffd8f0.0x7fffffff ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xf.0x7fffffff.0x80000000 ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x10.0x80000000.0xffffffff ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x64.0xffffffff.0x12345670 ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0x2710.0x12345670.0x7654321 ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0xffffffff.0x7654321.0x0 ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0xfffffffe.0x0.0x1 ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0xfffffffd.0x1.0x2 ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0xfffffff1.0x2.0x3 ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffffff.0x12345670.0x7654321.0x0.0x1.0xfffffff0.0x3.0xf ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x12345670.0x7654321.0x0.0x1.0x2.0xffffff9c.0xf.0x10 ++vsellew 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7654321.0x0.0x1.0x2.0x3.0xffffd8f0.0x10.0x64 ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x0.0x1.0x2.0x3.0x7fffffff.0x10.0x64.0x12345670 ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x1.0x2.0x3.0xf.0x80000000.0x64.0x2710.0x7654321 ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x2.0x3.0xf.0x10.0xffffffff.0x2710.0xffffffff.0x0 ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x3.0xf.0x10.0x64.0x12345670.0xffffffff.0xfffffffe.0x1 ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0xf.0x10.0x64.0x2710.0x7654321.0xfffffffe.0xfffffffd.0x2 ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x10.0x64.0x2710.0xffffffff.0x0.0xfffffffd.0xfffffff1.0x3 ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x64.0x2710.0xffffffff.0xfffffffe.0x1.0xfffffff1.0xfffffff0.0xf ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0x2.0xfffffff0.0xffffff9c.0x10 ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0x3.0xffffff9c.0xffffd8f0.0x64 ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xf.0xffffd8f0.0x7fffffff.0x2710 ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0x10.0x7fffffff.0x80000000.0xffffffff ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x64.0x80000000.0xffffffff.0xfffffffe ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x2710.0xffffffff.0x12345670.0xfffffffd ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0xfffffff1 ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0xfffffffe.0x7654321.0x0.0xfffffff0 ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x7fffffff.0x80000000.0xffffffff.0x12345670.0xfffffffd.0x0.0x1.0xffffff9c ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x80000000.0xffffffff.0x12345670.0x7654321.0xfffffff1.0x1.0x2.0xffffd8f0 ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0x12345670.0x7654321.0x0.0xfffffff0.0x2.0x3.0x7fffffff ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x12345670.0x7654321.0x0.0x1.0xffffff9c.0x3.0xf.0x80000000 ++vsellew 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x7654321.0x0.0x1.0x2.0xffffd8f0.0xf.0x10.0xffffffff ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x0.0x1.0x2.0x7fffffff.0xf.0x10.0x12345670.0x7654321 ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x1.0x2.0x3.0x80000000.0x10.0x64.0x7654321.0x0 ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x2.0x3.0xf.0xffffffff.0x64.0x2710.0x0.0x1 ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x3.0xf.0x10.0x12345670.0x2710.0xffffffff.0x1.0x2 ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0xf.0x10.0x64.0x7654321.0xffffffff.0xfffffffe.0x2.0x3 ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x10.0x64.0x2710.0x0.0xfffffffe.0xfffffffd.0x3.0xf ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x64.0x2710.0xffffffff.0x1.0xfffffffd.0xfffffff1.0xf.0x10 ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2710.0xffffffff.0xfffffffe.0x2.0xfffffff1.0xfffffff0.0x10.0x64 ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xffffffff.0xfffffffe.0xfffffffd.0x3.0xfffffff0.0xffffff9c.0x64.0x2710 ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xfffffffe.0xfffffffd.0xfffffff1.0xf.0xffffff9c.0xffffd8f0.0x2710.0xffffffff ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffd.0xfffffff1.0xfffffff0.0x10.0xffffd8f0.0x7fffffff.0xffffffff.0xfffffffe ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffff1.0xfffffff0.0xffffff9c.0x64.0x7fffffff.0x80000000.0xfffffffe.0xfffffffd ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff0.0xffffff9c.0xffffd8f0.0x2710.0x80000000.0xffffffff.0xfffffffd.0xfffffff1 ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffff9c.0xffffd8f0.0x7fffffff.0xffffffff.0xffffffff.0x12345670.0xfffffff1.0xfffffff0 ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffd8f0.0x7fffffff.0x80000000.0xfffffffe.0x12345670.0x7654321.0xfffffff0.0xffffff9c ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x7fffffff.0x80000000.0xffffffff.0xfffffffd.0x7654321.0x0.0xffffff9c.0xffffd8f0 ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x80000000.0xffffffff.0x12345670.0xfffffff1.0x0.0x1.0xffffd8f0.0x7fffffff ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffffff.0x12345670.0x7654321.0xfffffff0.0x1.0x2.0x7fffffff.0x80000000 ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x12345670.0x7654321.0x0.0xffffff9c.0x2.0x3.0x80000000.0xffffffff ++vsellew 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7654321.0x0.0x1.0xffffd8f0.0x3.0xf.0xffffffff.0x12345670 ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x0.0x1.0x7fffffff.0x3.0xf.0x12345670.0x7654321.0x2710 ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x1.0x2.0x80000000.0xf.0x10.0x7654321.0x0.0xffffffff ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x2.0x3.0xffffffff.0x10.0x64.0x0.0x1.0xfffffffe ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x3.0xf.0x12345670.0x64.0x2710.0x1.0x2.0xfffffffd ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xf.0x10.0x7654321.0x2710.0xffffffff.0x2.0x3.0xfffffff1 ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x10.0x64.0x0.0xffffffff.0xfffffffe.0x3.0xf.0xfffffff0 ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x64.0x2710.0x1.0xfffffffe.0xfffffffd.0xf.0x10.0xffffff9c ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x2710.0xffffffff.0x2.0xfffffffd.0xfffffff1.0x10.0x64.0xffffd8f0 ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xffffffff.0xfffffffe.0x3.0xfffffff1.0xfffffff0.0x64.0x2710.0x7fffffff ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xfffffffe.0xfffffffd.0xf.0xfffffff0.0xffffff9c.0x2710.0xffffffff.0x80000000 ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffd.0xfffffff1.0x10.0xffffff9c.0xffffd8f0.0xffffffff.0xfffffffe.0xffffffff ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffff1.0xfffffff0.0x64.0xffffd8f0.0x7fffffff.0xfffffffe.0xfffffffd.0x12345670 ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff0.0xffffff9c.0x2710.0x7fffffff.0x80000000.0xfffffffd.0xfffffff1.0x7654321 ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xffffff9c.0xffffd8f0.0xffffffff.0x80000000.0xffffffff.0xfffffff1.0xfffffff0.0x0 ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffd8f0.0x7fffffff.0xfffffffe.0xffffffff.0x12345670.0xfffffff0.0xffffff9c.0x1 ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0x7fffffff.0x80000000.0xfffffffd.0x12345670.0x7654321.0xffffff9c.0xffffd8f0.0x2 ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x80000000.0xffffffff.0xfffffff1.0x7654321.0x0.0xffffd8f0.0x7fffffff.0x3 ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffffff.0x12345670.0xfffffff0.0x0.0x1.0x7fffffff.0x80000000.0xf ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x12345670.0x7654321.0xffffff9c.0x1.0x2.0x80000000.0xffffffff.0x10 ++vsellew 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7654321.0x0.0xffffd8f0.0x2.0x3.0xffffffff.0x12345670.0x64 ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x0.0x7fffffff.0x2.0x3.0x12345670.0x7654321.0x64.0x1 ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x1.0x80000000.0x3.0xf.0x7654321.0x0.0x2710.0x2 ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x2.0xffffffff.0xf.0x10.0x0.0x1.0xffffffff.0x3 ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x3.0x12345670.0x10.0x64.0x1.0x2.0xfffffffe.0xf ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0xf.0x7654321.0x64.0x2710.0x2.0x3.0xfffffffd.0x10 ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x10.0x0.0x2710.0xffffffff.0x3.0xf.0xfffffff1.0x64 ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x64.0x1.0xffffffff.0xfffffffe.0xf.0x10.0xfffffff0.0x2710 ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x2710.0x2.0xfffffffe.0xfffffffd.0x10.0x64.0xffffff9c.0xffffffff ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0xffffffff.0x3.0xfffffffd.0xfffffff1.0x64.0x2710.0xffffd8f0.0xfffffffe ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0xfffffffe.0xf.0xfffffff1.0xfffffff0.0x2710.0xffffffff.0x7fffffff.0xfffffffd ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xfffffffd.0x10.0xfffffff0.0xffffff9c.0xffffffff.0xfffffffe.0x80000000.0xfffffff1 ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffff1.0x64.0xffffff9c.0xffffd8f0.0xfffffffe.0xfffffffd.0xffffffff.0xfffffff0 ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffff0.0x2710.0xffffd8f0.0x7fffffff.0xfffffffd.0xfffffff1.0x12345670.0xffffff9c ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xffffff9c.0xffffffff.0x7fffffff.0x80000000.0xfffffff1.0xfffffff0.0x7654321.0xffffd8f0 ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffd8f0.0xfffffffe.0x80000000.0xffffffff.0xfffffff0.0xffffff9c.0x0.0x7fffffff ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0x7fffffff.0xfffffffd.0xffffffff.0x12345670.0xffffff9c.0xffffd8f0.0x1.0x80000000 ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0x80000000.0xfffffff1.0x12345670.0x7654321.0xffffd8f0.0x7fffffff.0x2.0xffffffff ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffffff.0xfffffff0.0x7654321.0x0.0x7fffffff.0x80000000.0x3.0x12345670 ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x12345670.0xffffff9c.0x0.0x1.0x80000000.0xffffffff.0xf.0x7654321 ++vsellew 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x7654321.0xffffd8f0.0x1.0x2.0xffffffff.0x12345670.0x10.0x0 ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x1.0x2.0x12345670.0x7654321.0x10.0x1.0x2 ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x2.0x3.0x7654321.0x0.0x64.0x2.0x3 ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x3.0xf.0x0.0x1.0x2710.0x3.0xf ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0xf.0x10.0x1.0x2.0xffffffff.0xf.0x10 ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x10.0x64.0x2.0x3.0xfffffffe.0x10.0x64 ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x64.0x2710.0x3.0xf.0xfffffffd.0x64.0x2710 ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2710.0xffffffff.0xf.0x10.0xfffffff1.0x2710.0xffffffff ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0xffffffff.0xfffffffe.0x10.0x64.0xfffffff0.0xffffffff.0xfffffffe ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xfffffffe.0xfffffffd.0x64.0x2710.0xffffff9c.0xfffffffe.0xfffffffd ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0xfffffffd.0xfffffff1.0x2710.0xffffffff.0xffffd8f0.0xfffffffd.0xfffffff1 ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0xfffffff1.0xfffffff0.0xffffffff.0xfffffffe.0x7fffffff.0xfffffff1.0xfffffff0 ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0xfffffff0.0xffffff9c.0xfffffffe.0xfffffffd.0x80000000.0xfffffff0.0xffffff9c ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffff9c.0xffffd8f0.0xfffffffd.0xfffffff1.0xffffffff.0xffffff9c.0xffffd8f0 ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xffffd8f0.0x7fffffff.0xfffffff1.0xfffffff0.0x12345670.0xffffd8f0.0x7fffffff ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0x7fffffff.0x80000000.0xfffffff0.0xffffff9c.0x7654321.0x7fffffff.0x80000000 ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0x80000000.0xffffffff.0xffffff9c.0xffffd8f0.0x0.0x80000000.0xffffffff ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xffffffff.0x12345670.0xffffd8f0.0x7fffffff.0x1.0xffffffff.0x12345670 ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0x12345670.0x7654321.0x7fffffff.0x80000000.0x2.0x12345670.0x7654321 ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0x7654321.0x0.0x80000000.0xffffffff.0x3.0x7654321.0x0 ++vsellew 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x0.0x1.0xffffffff.0x12345670.0xf.0x0.0x1 ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x0.0x1.0x12345670.0x7654321.0xf.0x1.0x2.0x3 ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x1.0x2.0x7654321.0x0.0x10.0x2.0x3.0xf ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x2.0x3.0x0.0x1.0x64.0x3.0xf.0x10 ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x3.0xf.0x1.0x2.0x2710.0xf.0x10.0x64 ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0xf.0x10.0x2.0x3.0xffffffff.0x10.0x64.0x2710 ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x10.0x64.0x3.0xf.0xfffffffe.0x64.0x2710.0xffffffff ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x64.0x2710.0xf.0x10.0xfffffffd.0x2710.0xffffffff.0xfffffffe ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x2710.0xffffffff.0x10.0x64.0xfffffff1.0xffffffff.0xfffffffe.0xfffffffd ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xffffffff.0xfffffffe.0x64.0x2710.0xfffffff0.0xfffffffe.0xfffffffd.0xfffffff1 ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xfffffffe.0xfffffffd.0x2710.0xffffffff.0xffffff9c.0xfffffffd.0xfffffff1.0xfffffff0 ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffd.0xfffffff1.0xffffffff.0xfffffffe.0xffffd8f0.0xfffffff1.0xfffffff0.0xffffff9c ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xfffffff1.0xfffffff0.0xfffffffe.0xfffffffd.0x7fffffff.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffff0.0xffffff9c.0xfffffffd.0xfffffff1.0x80000000.0xffffff9c.0xffffd8f0.0x7fffffff ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xffffff9c.0xffffd8f0.0xfffffff1.0xfffffff0.0xffffffff.0xffffd8f0.0x7fffffff.0x80000000 ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffd8f0.0x7fffffff.0xfffffff0.0xffffff9c.0x12345670.0x7fffffff.0x80000000.0xffffffff ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0x7fffffff.0x80000000.0xffffff9c.0xffffd8f0.0x7654321.0x80000000.0xffffffff.0x12345670 ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x80000000.0xffffffff.0xffffd8f0.0x7fffffff.0x0.0xffffffff.0x12345670.0x7654321 ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffffff.0x12345670.0x7fffffff.0x80000000.0x1.0x12345670.0x7654321.0x0 ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0x12345670.0x7654321.0x80000000.0xffffffff.0x2.0x7654321.0x0.0x1 ++vsellew 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7654321.0x0.0xffffffff.0x12345670.0x3.0x0.0x1.0x2 ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0x0.0x12345670.0x7654321.0x3.0x1.0x2.0x3.0xf ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x1.0x7654321.0x0.0xf.0x2.0x3.0xf.0x10 ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x2.0x0.0x1.0x10.0x3.0xf.0x10.0x64 ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x3.0x1.0x2.0x64.0xf.0x10.0x64.0x2710 ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0xf.0x2.0x3.0x2710.0x10.0x64.0x2710.0xffffffff ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x10.0x3.0xf.0xffffffff.0x64.0x2710.0xffffffff.0xfffffffe ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x64.0xf.0x10.0xfffffffe.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0x2710.0x10.0x64.0xfffffffd.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0xffffffff.0x64.0x2710.0xfffffff1.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0xfffffffe.0x2710.0xffffffff.0xfffffff0.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0xfffffffd.0xffffffff.0xfffffffe.0xffffff9c.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xfffffff1.0xfffffffe.0xfffffffd.0xffffd8f0.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffff0.0xfffffffd.0xfffffff1.0x7fffffff.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xffffff9c.0xfffffff1.0xfffffff0.0x80000000.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xffffd8f0.0xfffffff0.0xffffff9c.0xffffffff.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0x7fffffff.0xffffff9c.0xffffd8f0.0x12345670.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0x80000000.0xffffd8f0.0x7fffffff.0x7654321.0xffffffff.0x12345670.0x7654321.0x0 ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffffff.0x7fffffff.0x80000000.0x0.0x12345670.0x7654321.0x0.0x1 ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x12345670.0x80000000.0xffffffff.0x1.0x7654321.0x0.0x1.0x2 ++vsellew 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x7654321.0xffffffff.0x12345670.0x2.0x0.0x1.0x2.0x3 ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x7654321.0x2.0x1.0x2.0x3.0xf.0x10 ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x0.0x3.0x2.0x3.0xf.0x10.0x64 ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x1.0xf.0x3.0xf.0x10.0x64.0x2710 ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x2.0x10.0xf.0x10.0x64.0x2710.0xffffffff ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0x3.0x64.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0xf.0x2710.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x10.0xffffffff.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x64.0xfffffffe.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0x2710.0xfffffffd.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xffffffff.0xfffffff1.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffe.0xfffffff0.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffffd.0xffffff9c.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff1.0xffffd8f0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xfffffff0.0x7fffffff.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffff9c.0x80000000.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0xffffd8f0.0xffffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x7fffffff.0x12345670.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0x80000000.0x7654321.0x12345670.0x7654321.0x0.0x1.0x2 ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0xffffffff.0x0.0x7654321.0x0.0x1.0x2.0x3 ++vsellew 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x12345670.0x1.0x0.0x1.0x2.0x3.0xf ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 = 0x7654321.0x1.0x1.0x2.0x3.0xf.0x10.0x64 ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff | 0x0.0x1.0x2.0x3.0xf.0x10.0x64.0x2710 = 0x0.0x2.0x2.0x3.0xf.0x10.0x64.0x2710 ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe | 0x1.0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff = 0x1.0x3.0x3.0xf.0x10.0x64.0x2710.0xffffffff ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd | 0x2.0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe = 0x2.0xf.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 | 0x3.0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd = 0x3.0x10.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 | 0xf.0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 = 0xf.0x64.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1 ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c | 0x10.0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 = 0x10.0x2710.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0 ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 | 0x64.0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c = 0x64.0xffffffff.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff | 0x2710.0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 = 0x2710.0xfffffffe.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0 ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 | 0xffffffff.0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff = 0xffffffff.0xfffffffd.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff | 0xfffffffe.0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 = 0xfffffffe.0xfffffff1.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000 ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 | 0xfffffffd.0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff = 0xfffffffd.0xfffffff0.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 | 0xfffffff1.0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 = 0xfffffff1.0xffffff9c.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670 ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 | 0xfffffff0.0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 = 0xfffffff0.0xffffd8f0.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321 ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 | 0xffffff9c.0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 = 0xffffff9c.0x7fffffff.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0 ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 | 0xffffd8f0.0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 = 0xffffd8f0.0x80000000.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1 ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 | 0x7fffffff.0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 = 0x7fffffff.0xffffffff.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2 ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf | 0x80000000.0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3 = 0x80000000.0x12345670.0x12345670.0x7654321.0x0.0x1.0x2.0x3 ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 | 0xffffffff.0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf = 0xffffffff.0x7654321.0x7654321.0x0.0x1.0x2.0x3.0xf ++vsellew 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x7654321.0x0.0x1.0x2.0x3.0xf.0x10.0x64 | 0x12345670.0x7654321.0x0.0x1.0x2.0x3.0xf.0x10 = 0x12345670.0x0.0x0.0x1.0x2.0x3.0xf.0x10 +diff --git a/none/tests/sw64/simd-int.vgtest.disable b/none/tests/sw64/simd-int.vgtest.disable +new file mode 100644 +index 000000000..127b87d7d +--- /dev/null ++++ b/none/tests/sw64/simd-int.vgtest.disable +@@ -0,0 +1,2 @@ ++prog: simd-int ++vgopts: -q +diff --git a/none/tests/sw64/stack.c b/none/tests/sw64/stack.c +new file mode 100644 +index 000000000..8393ed86e +--- /dev/null ++++ b/none/tests/sw64/stack.c +@@ -0,0 +1,51 @@ ++volatile void *p_; ++ ++void __attribute__ ((noinline)) func(void *p) { ++ p_ = p; ++} ++ ++void stack_32k(void) ++{ ++ int array[8192] = { 0 }; ++ func(array); ++} ++ ++void stack_24k(void) ++{ ++ int array[6144] = { 0 }; ++ func(array); ++} ++ ++void stack_16k(void) ++{ ++ int array[4096] = { 0 }; ++ func(array); ++} ++ ++void stack_8k(void) ++{ ++ int array[2048] = { 0 }; ++ func(array); ++} ++ ++void stack_4k(void) ++{ ++ int array[1024] = { 0 }; ++ func(array); ++} ++ ++void stack_2k(void) ++{ ++ int array[512] = { 0 }; ++ func(array); ++} ++ ++int main(void) ++{ ++ stack_2k(); ++ stack_4k(); ++ stack_8k(); ++ stack_16k(); ++ stack_24k(); ++ stack_32k(); ++} +diff --git a/none/tests/sw64/stack.stderr.exp b/none/tests/sw64/stack.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/stack.stdout.exp b/none/tests/sw64/stack.stdout.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/stack.vgtest b/none/tests/sw64/stack.vgtest +new file mode 100644 +index 000000000..ebb6b8bbe +--- /dev/null ++++ b/none/tests/sw64/stack.vgtest +@@ -0,0 +1,2 @@ ++prog: stack ++vgopts: -q +diff --git a/none/tests/sw64/unique.c b/none/tests/sw64/unique.c +new file mode 100644 +index 000000000..01022e9ab +--- /dev/null ++++ b/none/tests/sw64/unique.c +@@ -0,0 +1,98 @@ ++#include ++ ++char dummy; ++ ++void __attribute__ ((noinline)) *do_rdunique(void) ++{ ++ void *ret; ++ __asm__ __volatile__ ( ++ " ldi $0, 0xbebe\n" ++ " sys_call 0x9e\n" ++ " mov $0, %0\n" ++ : "=r"(ret) ++ : ++ : "$0" ++ ); ++ return ret; ++} ++ ++void __attribute__ ((noinline)) *do_rtid(void) ++{ ++ void *ret; ++ __asm__ __volatile__ ( ++ " ldi $0, 0xbebe\n" ++ " rtid $0\n" ++ " mov $0, %0\n" ++ : "=r"(ret) ++ : ++ : "$0" ++ ); ++ return ret; ++} ++ ++void __attribute__ ((noinline)) do_wrunique(void *ptr) ++{ ++ __asm__ __volatile__ ( ++ " ldi $0, 0xbebe\n" ++ " ldi $1, 0xbebe\n" ++ " ldi $2, 0xbebe\n" ++ " ldi $3, 0xbebe\n" ++ " ldi $4, 0xbebe\n" ++ " ldi $5, 0xbebe\n" ++ " ldi $6, 0xbebe\n" ++ " ldi $7, 0xbebe\n" ++ " ldi $8, 0xbebe\n" ++ " ldi $16, 0xbebe\n" ++ " ldi $17, 0xbebe\n" ++ " ldi $18, 0xbebe\n" ++ " ldi $19, 0xbebe\n" ++ " ldi $20, 0xbebe\n" ++ " ldi $21, 0xbebe\n" ++ " ldi $22, 0xbebe\n" ++ " ldi $23, 0xbebe\n" ++ " ldi $24, 0xbebe\n" ++ " ldi $25, 0xbebe\n" ++ " ldi $27, 0xbebe\n" ++ " mov %0, $16\n" ++ " sys_call 0x9f\n" ++ : ++ : "r"(ptr) ++ : "$0", "$1", "$2", "$3", "$4", "$5", "$6", "$7", "$8", "$16", "$17", ++ "$18", "$19", "$20", "$21", "$22", "$23", "$24", "$25", "$27" ++ ); ++} ++ ++void test_read() { ++ void *builtin = __builtin_thread_pointer(); ++ void *rdunique = do_rdunique(); ++ void *rtid = do_rtid(); ++ if (builtin == rdunique && builtin == rtid) { ++ puts("READ PASS"); ++ } else { ++ puts("READ FAIL"); ++ } ++} ++ ++void test_write() { ++ void *saved = __builtin_thread_pointer(); ++ ++ __builtin_set_thread_pointer(&dummy); ++ void *builtin = do_rdunique(); ++ ++ do_wrunique(&dummy); ++ void *wrunique = do_rdunique(); ++ ++ __builtin_set_thread_pointer(saved); ++ ++ if (&dummy == builtin && &dummy == wrunique) { ++ puts("WRITE PASS"); ++ } else { ++ puts("WRITE FAIL"); ++ } ++} ++ ++int main(void) ++{ ++ test_read(); ++ test_write(); ++} +diff --git a/none/tests/sw64/unique.stderr.exp b/none/tests/sw64/unique.stderr.exp +new file mode 100644 +index 000000000..e69de29bb +diff --git a/none/tests/sw64/unique.stdout.exp b/none/tests/sw64/unique.stdout.exp +new file mode 100644 +index 000000000..a12f81bd3 +--- /dev/null ++++ b/none/tests/sw64/unique.stdout.exp +@@ -0,0 +1,2 @@ ++READ PASS ++WRITE PASS +diff --git a/none/tests/sw64/unique.vgtest b/none/tests/sw64/unique.vgtest +new file mode 100644 +index 000000000..16fc49709 +--- /dev/null ++++ b/none/tests/sw64/unique.vgtest +@@ -0,0 +1,2 @@ ++prog: unique ++vgopts: -q +diff --git a/perf/bigcode.c b/perf/bigcode.c +index e2adf0ec4..04d1cff1d 100644 +--- a/perf/bigcode.c ++++ b/perf/bigcode.c +@@ -85,7 +85,7 @@ int main(int argc, char* argv[]) + + #if defined(__mips__) + syscall(__NR_cacheflush, a, FN_SIZE * n_fns, ICACHE); +-#elif defined(__nanomips__) ++#elif defined(__nanomips__) || defined(__aarch64__) + __builtin___clear_cache(a, (char*)a + FN_SIZE * n_fns); + #endif + +diff --git a/perf/tinycc.c b/perf/tinycc.c +index ff757a0dc..fef6e9919 100644 +--- a/perf/tinycc.c ++++ b/perf/tinycc.c +@@ -287,7 +287,8 @@ typedef struct + chances of collision with official or non-GNU unofficial values. */ + + #define EM_ALPHA 0x9026 +-#define EM_C60 0x9c60 ++#define EM_C60 0x9c60 ++#define EM_SW_64 0x9906 + + /* Legal values for e_version (version). */ + +diff --git a/tests/arch_test.c b/tests/arch_test.c +index 37cc1bc76..74f8c98a6 100644 +--- a/tests/arch_test.c ++++ b/tests/arch_test.c +@@ -34,6 +34,7 @@ char* all_archs[] = { + "mips32", + "mips64", + "nanomips", ++ "sw64", + NULL + }; + +@@ -79,6 +80,8 @@ static Bool go(char* arch) + + #elif defined(VGP_nanomips_linux) + if ( 0 == strcmp( arch, "nanomips" ) ) return True; ++#elif defined(VGP_sw64_linux) ++ if ( 0 == strcmp( arch, "sw64" ) ) return True; + #else + # error Unknown platform + #endif // VGP_* +diff --git a/tests/check_headers_and_includes b/tests/check_headers_and_includes +index 70e134896..9e341b12b 100755 +--- a/tests/check_headers_and_includes ++++ b/tests/check_headers_and_includes +@@ -69,7 +69,10 @@ my %dirs_to_ignore = ( + "tests" => 1, + "gdbserver_tests" => 1, + "mpi" => 1, +- "solaris" => 1 ++ "solaris" => 1, ++ ".idea" => 1, ++ "build" => 1, ++ "debian" => 1 + ); + + my %tool_export_header = ( +diff --git a/tests/platform_test b/tests/platform_test +index c23a4f645..dae757351 100644 +--- a/tests/platform_test ++++ b/tests/platform_test +@@ -17,6 +17,7 @@ all_platforms="$all_platforms s390x-linux mips32-linux mips64-linux" + all_platforms="$all_platforms x86-darwin amd64-darwin" + all_platforms="$all_platforms x86-solaris amd64-solaris" + all_platforms="$all_platforms x86-freebsd amd64-freebsd" ++all_platforms="$all_platforms sw64-linux" + + if [ $# -ne 2 ] ; then + echo "usage: platform_test " +-- +2.33.0 + diff --git a/valgrind.spec b/valgrind.spec index 4317cb8288648b5f8f42dc30795fa4f20110a327..d21e730de971815020f4ce1ff755e10b93dd8a2a 100644 --- a/valgrind.spec +++ b/valgrind.spec @@ -18,10 +18,14 @@ %define arch_val ppc64le %define arch_old_val %{nil} %endif +%ifarch sw_64 +%define arch_val sw_64 +%define arch_old_val %{nil} +%endif Name: valgrind Version: 3.22.0 -Release: 3 +Release: 4 Epoch: 1 Summary: An instrumentation framework for building dynamic analysis tools License: GPLv2+ @@ -44,6 +48,7 @@ Patch6: valgrind-3.22.0-rodata.patch # Add fchmodat2 syscall on linux # https://bugs.kde.org/show_bug.cgi?id=477198 Patch7: valgrind-3.22.0-fchmodat2.patch +Patch8: Add-SW64-Linux-support.patch BuildRequires: glibc glibc-devel gdb procps gcc-c++ perl(Getopt::Long) BuildRequires: automake autoconf @@ -114,6 +119,9 @@ popd %{_mandir}/man1/* %changelog +* Thu Feb 20 2025 Liu Hanxu - 1:3.22.0-4 +- Add SW64 Linux support + * Tue Jan 14 2025 Ge Wang - 1:3.22.0-3 - Remove empty soft link file